Scott Wolchok (@scottwolchok) 's Twitter Profile
Scott Wolchok

@scottwolchok

Software engineer on performance and efficiency, currently @Pytorch Edge (e.g., ExecuTorch). The opinions stated here are my own, not those of my company.

ID: 2551066939

linkhttps://wolchok.org/ calendar_today06-06-2014 21:52:14

549 Tweet

385 Followers

187 Following

Scott Wolchok (@scottwolchok) 's Twitter Profile Photo

C++ pet peeve (not that I have a suggestion for how to fix it): The following are not the same. struct Outer { T1 x; T2 y; T3 z; }; struct Outer { struct Inner { T1 x; T2 y; } inner; T3 z; }; (For example, if T1 is int64_t and T2/T3 are both int8_t)

Scott Wolchok (@scottwolchok) 's Twitter Profile Photo

Will anything go wrong if setup.py does a cmake build with a build directory that isn't under build_temp? github.com/pytorch/execut…