Update sgemm_kernel_8x4_haswell.c

This commit is contained in:
wjc404 2020-02-06 01:47:46 +00:00 committed by GitHub
parent 4e00d96a78
commit 8b5cdcc64c
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, float alpha, float * __restrict__ A, f
,BLASLONG offset
#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(float);
float constval = alpha;
float *const_val=&constval;