summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorDeveloper-Ecosystem-Engineering <65677710+Developer-Ecosystem-Engineering@users.noreply.github.com>2022-12-06 17:42:00 -0800
committerDeveloper-Ecosystem-Engineering <65677710+Developer-Ecosystem-Engineering@users.noreply.github.com>2023-01-04 02:19:31 -0800
commitd6ae74d8867c4be940a0e1b3ae8bb7837e4fb8dc (patch)
tree815c46f6d087aa81f14ae204d195504c68c464b7 /numpy
parent4e38cee3ba690511778da3d925934db6737955ee (diff)
downloadnumpy-d6ae74d8867c4be940a0e1b3ae8bb7837e4fb8dc.tar.gz
Clean-up merge to main
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/src/umath/simd.inc.src42
1 files changed, 0 insertions, 42 deletions
diff --git a/numpy/core/src/umath/simd.inc.src b/numpy/core/src/umath/simd.inc.src
index 1a5c0ffb8..803c45948 100644
--- a/numpy/core/src/umath/simd.inc.src
+++ b/numpy/core/src/umath/simd.inc.src
@@ -82,48 +82,6 @@ run_unary_avx512f_@func@_@TYPE@(char **args, const npy_intp *dimensions, const n
/**end repeat1**/
/**end repeat**/
-/*
- *****************************************************************************
- ** FLOAT DISPATCHERS
- *****************************************************************************
- */
-
-/**begin repeat
- * Float types
- * #type = npy_float, npy_double, npy_longdouble#
- * #TYPE = FLOAT, DOUBLE, LONGDOUBLE#
- * #vector = 1, 1, 0#
- * #VECTOR = NPY_SIMD, NPY_SIMD_F64, 0 #
- */
-
-/**begin repeat1
- * #func = negative#
- * #check = IS_BLOCKABLE_UNARY#
- * #name = unary#
- */
-
-#if @vector@ && defined NPY_HAVE_SSE2_INTRINSICS
-
-/* prototypes */
-static void
-sse2_@func@_@TYPE@(@type@ *, @type@ *, const npy_intp n);
-
-#endif
-
-static inline int
-run_@name@_simd_@func@_@TYPE@(char **args, npy_intp const *dimensions, npy_intp const *steps)
-{
-#if @vector@ && defined NPY_HAVE_SSE2_INTRINSICS
- if (@check@(sizeof(@type@), VECTOR_SIZE_BYTES)) {
- sse2_@func@_@TYPE@((@type@*)args[1], (@type@*)args[0], dimensions[0]);
- return 1;
- }
-#endif
- return 0;
-}
-/**end repeat1**/
-/**end repeat**/
-
#ifdef NPY_HAVE_SSE2_INTRINSICS
/*