File size: 228 Bytes
27813b0
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
// 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);
}