Browse Source

Update sgemm_kernel_8x4_haswell.c

tags/v0.3.8^2
wjc404 GitHub 6 years ago
parent
commit
8b5cdcc64c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel/x86_64/sgemm_kernel_8x4_haswell.c

+ 1
- 1
kernel/x86_64/sgemm_kernel_8x4_haswell.c 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;


Loading…
Cancel
Save