Skip to content

Commit

Permalink
Missed a case
Browse files Browse the repository at this point in the history
  • Loading branch information
Developer-Ecosystem-Engineering committed Aug 11, 2022
1 parent ae8bf91 commit eb2e09f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/core/src/common/simd/neon/conversion.h
Expand Up @@ -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
Expand Down

0 comments on commit eb2e09f

Please sign in to comment.