Skip to content

Commit bbcedfc

Browse files
author
Raghuveer Devulapalli
committed
Add MAXSTORE and MAXLOAD for f64 data
1 parent 40ad3e0 commit bbcedfc

File tree

1 file changed

+2
-0
lines changed
  • numpy/_core/src/common/simd/avx512

1 file changed

+2
-0
lines changed

numpy/_core/src/common/simd/avx512/avx512.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
// Enough limit to allow us to use _mm512_i32gather_* and _mm512_i32scatter_*
1212
#define NPY_SIMD_MAXLOAD_STRIDE32 (0x7fffffff / 16)
1313
#define NPY_SIMD_MAXSTORE_STRIDE32 (0x7fffffff / 16)
14+
#define NPY_SIMD_MAXLOAD_STRIDE64 (0x7fffffff / 16)
15+
#define NPY_SIMD_MAXSTORE_STRIDE64 (0x7fffffff / 16)
1416

1517
typedef __m512i npyv_u8;
1618
typedef __m512i npyv_s8;

0 commit comments

Comments
 (0)