#include #include "registration.h" #include "torch_binding.h" TORCH_LIBRARY_EXPAND(TORCH_EXTENSION_NAME, ops) { ops.def("mel_spectrogram(Tensor! out, Tensor! samples, Tensor! filters, int fft_size, int fft_step) -> ()"); ops.impl("mel_spectrogram", torch::kCUDA, &mel_spectrogram); } REGISTER_EXTENSION(TORCH_EXTENSION_NAME)