Browse Source

Update dgemm_kernel_16x2_skylakex.c

tags/v0.3.8^2
wjc404 GitHub 6 years ago
parent
commit
4e00d96a78
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/dgemm_kernel_16x2_skylakex.c

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


Loading…
Cancel
Save