Skip to content

Commit bfb5fbd

Browse files
author
Wang, Long
committed
revised fix windows compatible for #2313
Signed-off-by: Wang, Long <long1.wang@intel.com>
1 parent 1191db1 commit bfb5fbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/x86_64/sgemm_kernel_16x4_skylakex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ CNAME(BLASLONG m, BLASLONG n, BLASLONG k, float alpha, float * __restrict A, flo
12151215

12161216
int sgemm_kernel_direct_performant(BLASLONG M, BLASLONG N, BLASLONG K)
12171217
{
1218-
unsigned long mnk = M * N * K;
1218+
unsigned long long mnk = M * N * K;
12191219
/* large matrixes -> not performant */
12201220
if (mnk >= 28 * 512 * 512)
12211221
return 0;

0 commit comments

Comments
 (0)