File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,11 @@ New argument to searchsorted
154
154
The function searchsorted now accepts a 'sorter' argument that is a
155
155
permutation array that sorts the array to search.
156
156
157
+ Build system
158
+ ------------
159
+
160
+ Added experimental support for the AArch64 architecture.
161
+
157
162
C API
158
163
-----
159
164
Original file line number Diff line number Diff line change 66
66
#define NPY_CPU_MIPSEL
67
67
#elif defined(__MIPSEB__ )
68
68
#define NPY_CPU_MIPSEB
69
+ #elif defined(__aarch64__ )
70
+ #define NPY_CPU_AARCH64
69
71
#else
70
72
#error Unknown CPU, please report this to numpy maintainers with \
71
73
information about your platform (OS, CPU and compiler)
Original file line number Diff line number Diff line change 25
25
|| defined(NPY_CPU_IA64 ) \
26
26
|| defined(NPY_CPU_ALPHA ) \
27
27
|| defined(NPY_CPU_ARMEL ) \
28
+ || defined(NPY_CPU_AARCH64 ) \
28
29
|| defined(NPY_CPU_SH_LE ) \
29
30
|| defined(NPY_CPU_MIPSEL )
30
31
#define NPY_BYTE_ORDER NPY_LITTLE_ENDIAN
You can’t perform that action at this time.
0 commit comments