mirror of
https://github.com/amd/blis.git
synced 2026-05-11 17:50:00 +00:00
Fixed bug in compatibility layer (her2k/syr2k).
Details: - Fixed a bug in the BLAS compatibility layer, specifically in bla_her2k.c and bla_syr2k.c, that caused incorrect computation to occur when the BLAS interface caller requests the [conjugate-]transpose case. Thanks to Bryan Marker for reporting the behavior that led to this bug.
This commit is contained in:
@@ -79,7 +79,7 @@ void PASTEF77(ch,blasname)( \
|
||||
/* Call BLIS interface. */ \
|
||||
PASTEMAC(ch,blisname)( blis_uploc, \
|
||||
blis_transa, \
|
||||
BLIS_NO_TRANSPOSE, \
|
||||
blis_transa, \
|
||||
m0, \
|
||||
k0, \
|
||||
alpha, \
|
||||
|
||||
@@ -79,7 +79,7 @@ void PASTEF77(ch,blasname)( \
|
||||
/* Call BLIS interface. */ \
|
||||
PASTEMAC(ch,blisname)( blis_uploc, \
|
||||
blis_transa, \
|
||||
BLIS_NO_TRANSPOSE, \
|
||||
blis_transa, \
|
||||
m0, \
|
||||
k0, \
|
||||
alpha, \
|
||||
|
||||
Reference in New Issue
Block a user