Update sgemm_kernel_8x4_haswell.c
This commit is contained in:
parent
4e00d96a78
commit
8b5cdcc64c
|
@ -467,7 +467,7 @@ CNAME(BLASLONG m, BLASLONG n, BLASLONG k, float alpha, float * __restrict__ A, f
|
||||||
,BLASLONG offset
|
,BLASLONG offset
|
||||||
#endif
|
#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);
|
int64_t ldc_in_bytes = (int64_t)LDC * sizeof(float);
|
||||||
float constval = alpha;
|
float constval = alpha;
|
||||||
float *const_val=&constval;
|
float *const_val=&constval;
|
||||||
|
|
Loading…
Reference in New Issue