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

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