Skip to content

Commit

Permalink
Check convtrans(V::Val{true}) = 'C' again
Browse files Browse the repository at this point in the history
  • Loading branch information
zsoerenm committed Feb 17, 2022
1 parent f8d53b8 commit 9b6d233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gemm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ for (gemm, elt) in gemm_datatype_mappings
beta::$(elt), C::Ptr{$elt})
# Convert our compile-time transpose marker to a char for BLAS
convtrans(V::Val{false}) = 'N'
convtrans(V::Val{true}) = $elt <: Complex ? 'C' : 'T'
convtrans(V::Val{true}) = 'C'

if transA == Val(false)
lda = M
Expand Down

0 comments on commit 9b6d233

Please sign in to comment.