ops.cpp 143 Bytes
Newer Older
mibaumgartner's avatar
NMS  
mibaumgartner committed
1
2
3
4
5
6
#include <torch/extension.h>
#include "cpu/nms.cpp"

PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
  m.def("nms", &nms, "NMS C++ and/or CUDA");
}