resample-poly / local_bind.cpp
phanerozoic's picture
kernel source
27813b0 verified
Raw
History Blame
228 Bytes
// JIT binding for load_local.py; the published build registers via torch_binding.cpp.
#include <torch/extension.h>
#include "torch_binding.h"
PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
m.def("rp_resample", &rp_resample);
}