simde icon indicating copy to clipboard operation
simde copied to clipboard

Change !defined(SIMDE_X86_SSE4_1_NATIVE) to !defined(SIMDE_X86_SSE4_2_NATIVE) in line 186 of simde/simde-features.h

Open johnplatts opened this issue 2 years ago • 0 comments

Here are lines 186-188 of simde/simde-features.h:

#if defined(SIMDE_X86_AVX_NATIVE) && !defined(SIMDE_X86_SSE4_1_NATIVE)
  #define SIMDE_X86_SSE4_2_NATIVE
#endif

Here is how lines 186-188 of simde/simde-features.h should read:

#if defined(SIMDE_X86_AVX_NATIVE) && !defined(SIMDE_X86_SSE4_2_NATIVE)
  #define SIMDE_X86_SSE4_2_NATIVE
#endif

Note that !defined(SIMDE_X86_SSE4_1_NATIVE) should be changed to !defined(SIMDE_X86_SSE4_2_NATIVE) in line 186 of simde/simde-features.h.

johnplatts avatar May 07 '22 01:05 johnplatts