Skip to content

Commit d71cf5c

Browse files
fix
1 parent 0fdd0a5 commit d71cf5c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/impl/depthwiseconv_im2col.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ function ∇depthwiseconv_data_im2col!(
107107
dx::AbstractArray{T,5}, dy::AbstractArray{T,5},
108108
w::AbstractArray{T,5}, cdims::DepthwiseConvDims;
109109
col::AbstractArray{T,3} = similar(dx, im2col_dims(cdims)),
110-
alpha::T=T(1), beta::T=T(0)) where T
110+
alpha::T=T(1), beta::T=T(0),
111+
ntasks::Int=nthreads()) where T
111112
check_dims(size(dx), size(w), size(dy), cdims)
112113

113114
M = prod(output_size(cdims))

0 commit comments

Comments
 (0)