Skip to content

Commit 725ffbf

Browse files
committed
fix typo
1 parent d9ba491 commit 725ffbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/x86_64/srot_microk_haswell-2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ static void srot_kernel(BLASLONG n, FLOAT *x, FLOAT *y, FLOAT c, FLOAT s)
7070
y0 = _mm256_loadu_ps(&y[i]);
7171

7272
t0 = _mm256_mul_ps(s_256, y0);
73-
t0 = _mm256_fmadd_ps(c_256, s0, t0);
73+
t0 = _mm256_fmadd_ps(c_256, x0, t0);
7474
_mm256_storeu_ps(&x[i], t0);
7575

7676
t0 = _mm256_mul_ps(s_256, x0);

0 commit comments

Comments
 (0)