mirror of
https://github.com/amd/blis.git
synced 2026-04-19 15:18:52 +00:00
Fixed bad loop counter in bli_[cz]scal2bbs_mxn().
Details: - Fixed a typo in the loop counter for the 'd' (duplication) dimension in the complex macros of frame/include/level0/bb/bli_scal2bbs_mxn.h. They shouldn't be used by anyone yet, but thankfully clang via AppVeyor spit out warnings that alerted me to the issue.
This commit is contained in:
@@ -155,7 +155,7 @@ static void PASTEMAC(ch,opname) \
|
||||
*chiij_r, *chiij_i, \
|
||||
*psiij_r, *psiij_i ); \
|
||||
\
|
||||
for ( dim_t p = 1; i < d; ++p ) \
|
||||
for ( dim_t p = 1; p < d; ++p ) \
|
||||
{ \
|
||||
ctype_r* restrict psiijd_r = psiij_r + p*ds_y; \
|
||||
ctype_r* restrict psiijd_i = psiij_i + p*ds_y; \
|
||||
@@ -186,7 +186,7 @@ static void PASTEMAC(ch,opname) \
|
||||
*chiij_r, *chiij_i, \
|
||||
*psiij_r, *psiij_i ); \
|
||||
\
|
||||
for ( dim_t p = 1; i < d; ++p ) \
|
||||
for ( dim_t p = 1; p < d; ++p ) \
|
||||
{ \
|
||||
ctype_r* restrict psiijd_r = psiij_r + p*ds_y; \
|
||||
ctype_r* restrict psiijd_i = psiij_i + p*ds_y; \
|
||||
|
||||
Reference in New Issue
Block a user