mirror of
https://github.com/amd/blis.git
synced 2026-05-12 10:05:38 +00:00
Change loop test expression in bli_packm_zen_int.c
PRAGMA SIMD loop has issues with test expression (k !=0) Changed usage to (k > 0) Change-Id: I50204dbd0194de43f0d6cdcbfc586bb16aa25968
This commit is contained in:
@@ -122,7 +122,7 @@ void bli_dpackm_8xk_nn_zen
|
||||
{
|
||||
//
|
||||
PRAGMA_SIMD
|
||||
for (dim_t k = n; k != 0; --k)
|
||||
for (dim_t k = n; k > 0; --k)
|
||||
{
|
||||
((*(pi1 + 0))) = ((*kappa_cast)) * ((*(alpha1 + 0 * inca)));
|
||||
((*(pi1 + 1))) = ((*kappa_cast)) * ((*(alpha1 + 1 * inca)));
|
||||
|
||||
Reference in New Issue
Block a user