Skip to content

Commit 1103316

Browse files
committed
Correct Mistaken 'C' Definition is BLAS Standard.
Thanks @jd-foster. C.f. http://www.netlib.org/blas/blasqr.pdf C.f. https://github.com/flame/blis/blob/master/frame/base/bli_param_map.h#L86 Addresses #4. TODO: Add more tests.
1 parent 496e91f commit 1103316

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/types.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ char_to_trans = Dict( 'N' => BLIS_NO_TRANSPOSE,
114114
'n' => BLIS_NO_TRANSPOSE,
115115
'T' => BLIS_TRANSPOSE,
116116
't' => BLIS_TRANSPOSE,
117-
'C' => BLIS_CONJ_NO_TRANSPOSE,
118-
'c' => BLIS_CONJ_NO_TRANSPOSE )
117+
'C' => BLIS_CONJ_TRANSPOSE,
118+
'c' => BLIS_CONJ_TRANSPOSE )
119119

120120
char_to_conj = Dict( 'N' => BLIS_NO_CONJUGATE,
121121
'n' => BLIS_NO_CONJUGATE,

0 commit comments

Comments
 (0)