Skip to content

Commit e896670

Browse files
committed
remove deprecations
1 parent aea28fd commit e896670

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/conv.jl

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -216,11 +216,3 @@ meanpool_cpu!(y::AbstractArray{<:Real,5}, x::AbstractArray{<:Real,5}, k::Dims{3}
216216
k::Dims{3}; pad = (0,0), stride = k) =
217217
meanpool3d_grad!(dx, dy, y, x,
218218
window = k, padding = pad, stride = stride)
219-
220-
# Deprecated 0.3
221-
222-
export conv2d, maxpool2d, avgpool2d
223-
224-
@deprecate conv2d(x, w; kw...) NNlib.conv(x, w; kw...)
225-
@deprecate maxpool2d(x::AbstractArray{<:Real,4}, k::Integer) maxpool(x, (k,k))
226-
@deprecate meanpool2d(x::AbstractArray{<:Real,4}, k::Integer) meanpool(x, (k,k))

0 commit comments

Comments
 (0)