mel_spectrogram / torch-ext /torch_binding.cpp
drbh
feat: improve tests and bump build
916419b
Raw
History Blame Contribute Delete
351 Bytes
#include <torch/library.h>
#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)