prepared driver/level3 functions for UNROLL values, that are not a power of two
This commit is contained in:
@@ -158,7 +158,7 @@ int CNAME(BLASLONG m, BLASLONG n, BLASLONG k, FLOAT alpha_r,
|
||||
|
||||
int mm, nn;
|
||||
|
||||
mm = (loop & ~(GEMM_UNROLL_MN - 1));
|
||||
mm = (loop/GEMM_UNROLL_MN) * GEMM_UNROLL_MN;
|
||||
nn = MIN(GEMM_UNROLL_MN, n - loop);
|
||||
|
||||
#ifndef LOWER
|
||||
|
||||
Reference in New Issue
Block a user