Update dgemm_kernel_16x2_skylakex.c

This commit is contained in:
wjc404 2020-02-06 01:46:36 +00:00 committed by GitHub
parent 096da2f51a
commit 4e00d96a78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -467,7 +467,7 @@ CNAME(BLASLONG m, BLASLONG n, BLASLONG k, double alpha, double * __restrict__ A,
#endif
)
{
if(m==0||n==0||k==0||alpha==0.0) return 0;
if(m==0||n==0) return 0;
int64_t ldc_in_bytes = (int64_t)ldc * sizeof(double); double ALPHA = alpha;
int64_t M = (int64_t)m, K = (int64_t)k, k_count = 0;
BLASLONG n_count = n, off = 0;