You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"torchaudio::sox_io_load_audio_file(str path, int frame_offset, int num_frames, bool normalize, bool channels_first) -> __torch__.torch.classes.torchaudio.TensorSignal signal")
54
-
.catchAllKernel<
55
-
decltype(sox_io::load_audio_file),
56
-
&sox_io::load_audio_file>());
50
+
staticauto registerLoadAudioFile =
51
+
torch::RegisterOperators()
52
+
.op(torch::RegisterOperators::options()
53
+
.schema(
54
+
"torchaudio::sox_io_load_audio_file(str path, int frame_offset, int num_frames, bool normalize, bool channels_first) -> __torch__.torch.classes.torchaudio.TensorSignal signal")
55
+
.catchAllKernel<
56
+
decltype(sox_io::load_audio_file),
57
+
&sox_io::load_audio_file>())
58
+
.op(torch::RegisterOperators::options()
59
+
.schema(
60
+
"torchaudio::sox_io_load_audio_file_v1(str path, int frame_offset, int num_frames, bool normalize, bool channels_first, int sample_rate) -> __torch__.torch.classes.torchaudio.TensorSignal signal")
0 commit comments