Browse Source

modify macro

tags/v0.3.13^2
Qiyu8 4 years ago
parent
commit
a87e537b8c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel/x86_64/srot.c

+ 1
- 1
kernel/x86_64/srot.c View File

@@ -13,7 +13,7 @@ static void srot_kernel(BLASLONG n, FLOAT *x, FLOAT *y, FLOAT c, FLOAT s)
{
BLASLONG i = 0;
#if V_SIMD && (HAVE_FMA3 || V_SIMD > 128)
#if V_SIMD && (defined(HAVE_FMA3) || V_SIMD > 128)
const int vstep = v_nlanes_f32;
const int unrollx4 = n & (-vstep * 4);
const int unrollx = n & -vstep;


Loading…
Cancel
Save