Browse Source

revised fix windows compatible for #2313

Signed-off-by: Wang, Long <long1.wang@intel.com>
tags/v0.3.8^2
Wang, Long 6 years ago
parent
commit
bfb5fbdb4d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel/x86_64/sgemm_kernel_16x4_skylakex.c

+ 1
- 1
kernel/x86_64/sgemm_kernel_16x4_skylakex.c View File

@@ -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)
{
unsigned long mnk = M * N * K;
unsigned long long mnk = M * N * K;
/* large matrixes -> not performant */
if (mnk >= 28 * 512 * 512)
return 0;


Loading…
Cancel
Save