From 6b2446d933e7eaaf3caf630740dd7a1ac3d331de Mon Sep 17 00:00:00 2001 From: shadchin Date: Thu, 16 Nov 2023 15:22:08 +0300 Subject: Update numpy to 1.25.2 --- contrib/python/numpy/include/numpy/core/include/numpy/_dtype_api.h | 5 +++++ .../numpy/include/numpy/core/include/numpy/experimental_dtype_api.h | 5 +++++ contrib/python/numpy/include/numpy/core/src/common/common.hpp | 5 +++++ .../numpy/include/numpy/core/src/npysort/simd_qsort.dispatch.cpp | 5 +++++ .../include/numpy/core/src/npysort/simd_qsort_16bit.dispatch.cpp | 5 +++++ .../numpy/include/numpy/core/src/npysort/x86-qsort.dispatch.cpp | 5 ----- .../numpy/include/numpy/core/src/umath/loops_autovec.dispatch.c | 5 +++++ .../numpy/include/numpy/core/src/umath/loops_autovec.dispatch.h | 5 +++++ .../numpy/include/numpy/core/src/umath/loops_logical.dispatch.c | 5 +++++ .../numpy/include/numpy/core/src/umath/loops_logical.dispatch.h | 5 +++++ .../python/numpy/include/numpy/core/src/umath/loops_unary.dispatch.c | 5 +++++ .../python/numpy/include/numpy/core/src/umath/loops_unary.dispatch.h | 5 +++++ .../include/numpy/core/src/umath/loops_unary_complex.dispatch.c | 5 +++++ .../include/numpy/core/src/umath/loops_unary_complex.dispatch.h | 5 +++++ .../numpy/include/numpy/core/src/umath/loops_unary_fp_le.dispatch.c | 5 +++++ .../numpy/include/numpy/core/src/umath/loops_unary_fp_le.dispatch.h | 5 +++++ 16 files changed, 75 insertions(+), 5 deletions(-) create mode 100644 contrib/python/numpy/include/numpy/core/include/numpy/_dtype_api.h create mode 100644 contrib/python/numpy/include/numpy/core/include/numpy/experimental_dtype_api.h create mode 100644 contrib/python/numpy/include/numpy/core/src/common/common.hpp create mode 100644 contrib/python/numpy/include/numpy/core/src/npysort/simd_qsort.dispatch.cpp create mode 100644 contrib/python/numpy/include/numpy/core/src/npysort/simd_qsort_16bit.dispatch.cpp delete mode 100644 contrib/python/numpy/include/numpy/core/src/npysort/x86-qsort.dispatch.cpp create mode 100644 contrib/python/numpy/include/numpy/core/src/umath/loops_autovec.dispatch.c create mode 100644 contrib/python/numpy/include/numpy/core/src/umath/loops_autovec.dispatch.h create mode 100644 contrib/python/numpy/include/numpy/core/src/umath/loops_logical.dispatch.c create mode 100644 contrib/python/numpy/include/numpy/core/src/umath/loops_logical.dispatch.h create mode 100644 contrib/python/numpy/include/numpy/core/src/umath/loops_unary.dispatch.c create mode 100644 contrib/python/numpy/include/numpy/core/src/umath/loops_unary.dispatch.h create mode 100644 contrib/python/numpy/include/numpy/core/src/umath/loops_unary_complex.dispatch.c create mode 100644 contrib/python/numpy/include/numpy/core/src/umath/loops_unary_complex.dispatch.h create mode 100644 contrib/python/numpy/include/numpy/core/src/umath/loops_unary_fp_le.dispatch.c create mode 100644 contrib/python/numpy/include/numpy/core/src/umath/loops_unary_fp_le.dispatch.h (limited to 'contrib/python/numpy/include') diff --git a/contrib/python/numpy/include/numpy/core/include/numpy/_dtype_api.h b/contrib/python/numpy/include/numpy/core/include/numpy/_dtype_api.h new file mode 100644 index 00000000000..449387567d1 --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/include/numpy/_dtype_api.h @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/include/numpy/experimental_dtype_api.h b/contrib/python/numpy/include/numpy/core/include/numpy/experimental_dtype_api.h new file mode 100644 index 00000000000..980091ba730 --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/include/numpy/experimental_dtype_api.h @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/common/common.hpp b/contrib/python/numpy/include/numpy/core/src/common/common.hpp new file mode 100644 index 00000000000..b803643e405 --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/common/common.hpp @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/npysort/simd_qsort.dispatch.cpp b/contrib/python/numpy/include/numpy/core/src/npysort/simd_qsort.dispatch.cpp new file mode 100644 index 00000000000..4e158241680 --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/npysort/simd_qsort.dispatch.cpp @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/npysort/simd_qsort_16bit.dispatch.cpp b/contrib/python/numpy/include/numpy/core/src/npysort/simd_qsort_16bit.dispatch.cpp new file mode 100644 index 00000000000..0e352add70f --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/npysort/simd_qsort_16bit.dispatch.cpp @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/npysort/x86-qsort.dispatch.cpp b/contrib/python/numpy/include/numpy/core/src/npysort/x86-qsort.dispatch.cpp deleted file mode 100644 index bf871ae6943..00000000000 --- a/contrib/python/numpy/include/numpy/core/src/npysort/x86-qsort.dispatch.cpp +++ /dev/null @@ -1,5 +0,0 @@ -#ifdef USE_PYTHON3 -#include -#else -#error #include -#endif diff --git a/contrib/python/numpy/include/numpy/core/src/umath/loops_autovec.dispatch.c b/contrib/python/numpy/include/numpy/core/src/umath/loops_autovec.dispatch.c new file mode 100644 index 00000000000..6a72ddbf7a7 --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/umath/loops_autovec.dispatch.c @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/umath/loops_autovec.dispatch.h b/contrib/python/numpy/include/numpy/core/src/umath/loops_autovec.dispatch.h new file mode 100644 index 00000000000..8aa140e9028 --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/umath/loops_autovec.dispatch.h @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/umath/loops_logical.dispatch.c b/contrib/python/numpy/include/numpy/core/src/umath/loops_logical.dispatch.c new file mode 100644 index 00000000000..0ede76f59e9 --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/umath/loops_logical.dispatch.c @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/umath/loops_logical.dispatch.h b/contrib/python/numpy/include/numpy/core/src/umath/loops_logical.dispatch.h new file mode 100644 index 00000000000..4d07e71f60e --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/umath/loops_logical.dispatch.h @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/umath/loops_unary.dispatch.c b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary.dispatch.c new file mode 100644 index 00000000000..c04c6104bdf --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary.dispatch.c @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/umath/loops_unary.dispatch.h b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary.dispatch.h new file mode 100644 index 00000000000..be551a5dbc5 --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary.dispatch.h @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_complex.dispatch.c b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_complex.dispatch.c new file mode 100644 index 00000000000..22b14d773c9 --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_complex.dispatch.c @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_complex.dispatch.h b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_complex.dispatch.h new file mode 100644 index 00000000000..41f56284862 --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_complex.dispatch.h @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_fp_le.dispatch.c b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_fp_le.dispatch.c new file mode 100644 index 00000000000..c565f7b638c --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_fp_le.dispatch.c @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif diff --git a/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_fp_le.dispatch.h b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_fp_le.dispatch.h new file mode 100644 index 00000000000..896327ea9c4 --- /dev/null +++ b/contrib/python/numpy/include/numpy/core/src/umath/loops_unary_fp_le.dispatch.h @@ -0,0 +1,5 @@ +#ifdef USE_PYTHON3 +#include +#else +#error #include +#endif -- cgit v1.3