Skip to content

Commit 95d7782

Browse files
committed
Update comment to have proper signatures
1 parent 60b2b92 commit 95d7782

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pooling.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ export maxpool, maxpool!, meanpool, meanpool!, ∇maxpool, ∇maxpool!, ∇meanp
1111
# - meanpool(x, pdims)
1212
# - meanpool!(y, x, pdims)
1313
# - Pooling input backprop
14-
# - ∇maxpool(dy, pdims)
15-
# - ∇maxpool!(dx, dy, pdims)
16-
# - ∇meanpool(dy, pdims)
17-
# - ∇meanpool!(dx, dy, pdims)
14+
# - ∇maxpool(dy, y, x, pdims)
15+
# - ∇maxpool!(dx, dy, y, x, pdims)
16+
# - ∇meanpool(dy, y, x, pdims)
17+
# - ∇meanpool!(dx, dy, y, x pdims)
1818
#
1919
# All methods require a `PoolDims` object to define the dimensions and optional
2020
# elements of the convolution (stride, dilation, etc...), which is easily constructable

0 commit comments

Comments
 (0)