Skip to content

Commit 1a0bdd0

Browse files
authored
Fix gradient of convolution for complex values
1 parent fd1b939 commit 1a0bdd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gemm.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ for (gemm, elt) in gemm_datatype_mappings
3535
beta::$(elt), C::Ptr{$elt})
3636
# Convert our compile-time transpose marker to a char for BLAS
3737
convtrans(V::Val{false}) = 'N'
38-
convtrans(V::Val{true}) = 'T'
38+
convtrans(V::Val{true}) = 'C'
3939

4040
if transA == Val(false)
4141
lda = M

0 commit comments

Comments
 (0)