Skip to content

Commit 884ac2b

Browse files
committed
removed avx512vl
1 parent c1d4be2 commit 884ac2b

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

include/xsimd/arch/xsimd_avx2.hpp

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,6 @@ namespace xsimd
200200
{
201201
return _mm256_sllv_epi32(self, other);
202202
}
203-
#if XSIMD_WITH_AVX512VL
204-
else XSIMD_IF_CONSTEXPR(sizeof(T) == 8)
205-
{
206-
return _mm256_sllv_epi64(self, other);
207-
}
208-
#endif
209203
else
210204
{
211205
return bitwise_lshift(self, other, avx {});
@@ -345,12 +339,6 @@ namespace xsimd
345339
{
346340
return _mm256_srlv_epi32(self, other);
347341
}
348-
#if XSIMD_WITH_AVX512VL
349-
else XSIMD_IF_CONSTEXPR(sizeof(T) == 8)
350-
{
351-
return _mm256_srlv_epi64(self, other);
352-
}
353-
#endif
354342
else
355343
{
356344
return bitwise_rshift(self, other, avx {});

0 commit comments

Comments
 (0)