File size: 383 Bytes
aca891a 846d481 aca891a 846d481 aca891a 846d481 aca891a |
1 2 3 4 5 6 7 8 9 10 11 12 |
// torch-ext/torch_binding.cpp
#include <torch/library.h>
#include "registration.h" // included in the build
#include "torch_binding.h" // Declares our img2gray_cuda function
TORCH_LIBRARY_EXPAND(TORCH_EXTENSION_NAME, ops) {
ops.def("img2gray(Tensor input, Tensor! output) -> ()");
ops.impl("img2gray", torch::kCUDA, &img2gray_cuda);
}
REGISTER_EXTENSION(TORCH_EXTENSION_NAME)
|