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:
Field G. Van Zee
2013-04-19 15:26:29 -05:00
parent 09eacbd1ab
commit 59fca58dbe
2 changed files with 2 additions and 2 deletions

View File

@@ -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, \

View File

@@ -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, \