| 3 | #include "shencoder.h" |
| 4 | |
| 5 | PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) { |
| 6 | m.def("sh_encode_forward", &sh_encode_forward, "SH encode forward (CUDA)"); |
| 7 | m.def("sh_encode_backward", &sh_encode_backward, "SH encode backward (CUDA)"); |
| 8 | } |
nothing calls this directly
no outgoing calls
no test coverage detected