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 68e4e4a commit b56e1bfCopy full SHA for b56e1bf
include/xsimd/arch/xsimd_avx512vbmi2.hpp
@@ -60,7 +60,7 @@ namespace xsimd
60
template <class A>
61
XSIMD_INLINE batch<int8_t, A> expand(batch<int8_t, A> const& self, batch_bool<int8_t, A> const& mask, requires_arch<avx512vbmi2>) noexcept
62
{
63
- return _mm512_maskz_expand_epi8((mask.mask(), self);
+ return _mm512_maskz_expand_epi8(mask.mask(), self);
64
}
65
66
XSIMD_INLINE batch<uint8_t, A> expand(batch<uint8_t, A> const& self, batch_bool<uint8_t, A> const& mask, requires_arch<avx512vbmi2>) noexcept
0 commit comments