#include void foo() { } TORCH_LIBRARY_IMPL(__test, CPU, m) { m.impl("foo", foo); } PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) { m.def("bar", foo); }