We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1d4be2 commit 884ac2bCopy full SHA for 884ac2b
include/xsimd/arch/xsimd_avx2.hpp
@@ -200,12 +200,6 @@ namespace xsimd
200
{
201
return _mm256_sllv_epi32(self, other);
202
}
203
-#if XSIMD_WITH_AVX512VL
204
- else XSIMD_IF_CONSTEXPR(sizeof(T) == 8)
205
- {
206
- return _mm256_sllv_epi64(self, other);
207
- }
208
-#endif
209
else
210
211
return bitwise_lshift(self, other, avx {});
@@ -345,12 +339,6 @@ namespace xsimd
345
339
346
340
return _mm256_srlv_epi32(self, other);
347
341
348
349
350
351
- return _mm256_srlv_epi64(self, other);
352
353
354
342
355
343
356
344
return bitwise_rshift(self, other, avx {});
0 commit comments