Skip to content

Commit c4ac366

Browse files
committed
wdims error fix
1 parent 904b733 commit c4ac366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/conv.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function wdims(x::NTuple{N}, y::NTuple{N}, pad, stride, dilation) where N
4242
elseif i == N-1
4343
x[i]
4444
else # i == N
45-
y[i]
45+
y[i-1]
4646
end
4747
end
4848
end

0 commit comments

Comments
 (0)