diff options
Diffstat (limited to 'numpy')
| -rw-r--r-- | numpy/core/src/common/simd/neon/conversion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/common/simd/neon/conversion.h b/numpy/core/src/common/simd/neon/conversion.h index 92d015f2e..03a5259f5 100644 --- a/numpy/core/src/common/simd/neon/conversion.h +++ b/numpy/core/src/common/simd/neon/conversion.h @@ -90,7 +90,7 @@ NPY_FINLINE npyv_u32x2 npyv_expand_u32_u16(npyv_u16 data) { // pack two 16-bit boolean into one 8-bit boolean vector NPY_FINLINE npyv_b8 npyv_pack_b8_b16(npyv_b16 a, npyv_b16 b) { #if defined(__aarch64__) - return vuzp1q_u8(a, b); + return vuzp1q_u8((uint8x16_t)a, (uint8x16_t)b); #else return vcombine_u8(vmovn_u16(a), vmovn_u16(b)); #endif |
