Merge pull request #2315 from ewanglong/develop
revised fix windows compatible for #2313
This commit is contained in:
commit
b09b5be0a4
|
@ -1215,7 +1215,7 @@ CNAME(BLASLONG m, BLASLONG n, BLASLONG k, float alpha, float * __restrict A, flo
|
||||||
|
|
||||||
int sgemm_kernel_direct_performant(BLASLONG M, BLASLONG N, BLASLONG K)
|
int sgemm_kernel_direct_performant(BLASLONG M, BLASLONG N, BLASLONG K)
|
||||||
{
|
{
|
||||||
unsigned long mnk = M * N * K;
|
unsigned long long mnk = M * N * K;
|
||||||
/* large matrixes -> not performant */
|
/* large matrixes -> not performant */
|
||||||
if (mnk >= 28 * 512 * 512)
|
if (mnk >= 28 * 512 * 512)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue