Browse Source

fix typo

tags/v0.3.13^2
Gengxin Xie 4 years ago
parent
commit
725ffbf041
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel/x86_64/srot_microk_haswell-2.c

+ 1
- 1
kernel/x86_64/srot_microk_haswell-2.c View File

@@ -70,7 +70,7 @@ static void srot_kernel(BLASLONG n, FLOAT *x, FLOAT *y, FLOAT c, FLOAT s)
y0 = _mm256_loadu_ps(&y[i]);

t0 = _mm256_mul_ps(s_256, y0);
t0 = _mm256_fmadd_ps(c_256, s0, t0);
t0 = _mm256_fmadd_ps(c_256, x0, t0);
_mm256_storeu_ps(&x[i], t0);

t0 = _mm256_mul_ps(s_256, x0);


Loading…
Cancel
Save