Skip to content

Commit 8b5cdcc

Browse files
authored
Update sgemm_kernel_8x4_haswell.c
1 parent 4e00d96 commit 8b5cdcc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/x86_64/sgemm_kernel_8x4_haswell.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ CNAME(BLASLONG m, BLASLONG n, BLASLONG k, float alpha, float * __restrict__ A, f
467467
,BLASLONG offset
468468
#endif
469469
){
470-
if(m==0||n==0||k==0||alpha==0.0) return 0;
470+
if(m==0||n==0) return 0;
471471
int64_t ldc_in_bytes = (int64_t)LDC * sizeof(float);
472472
float constval = alpha;
473473
float *const_val=&constval;

0 commit comments

Comments
 (0)