We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b829e93 commit 7f6209bCopy full SHA for 7f6209b
src/libtorchaudio/lfilter.cpp
@@ -168,7 +168,7 @@ class DifferentiableIIR : public torch::autograd::Function<DifferentiableIIR> {
168
169
da = F::conv1d(
170
dyda.view({1, n_batch * n_channel, -1}),
171
- dy.view({n_batch * n_channel, 1, -1}),
+ dy.reshape({n_batch * n_channel, 1, -1}),
172
F::Conv1dFuncOptions().groups(n_batch * n_channel))
173
.view({n_batch, n_channel, -1})
174
.sum(0)
0 commit comments