Skip to content

Commit 3dc371d

Browse files
authored
Fix debug string (#169)
1 parent 07852a8 commit 3dc371d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/conv.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ for front_name in (:conv, :∇conv_data, :∇conv_filter,
9494
y::AbstractArray{yT,N}, in1::AbstractArray{T1,N},
9595
in2::AbstractArray{T2,N}, cdims::ConvDims;
9696
kwargs...) where {yT, T1, T2, N}
97-
@debug string("Slow fallback implementation invoked for ", $front_name, "! ",
98-
"You probably don't want this; check your datatypes.")
97+
@debug string("Slow fallback implementation invoked for ", $(string(front_name)), "! ",
98+
"You probably don't want this; check your datatypes.") yT T1 T2
9999
$(Symbol("$(front_name)_direct!"))(y, in1, in2, cdims; kwargs...)
100100
end
101101
end

0 commit comments

Comments
 (0)