From 12fb1015511ac3804d0785bb0d1fe539385548ad Mon Sep 17 00:00:00 2001 From: Hameer Abbasi Date: Fri, 10 May 2019 19:14:35 -0700 Subject: ENH: Radix sort --- numpy/core/setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'numpy/core/setup.py') diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 45b4fb3c7..81d140d5e 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -710,6 +710,7 @@ def configuration(parent_package='',top_path=None): join('src', 'npysort', 'mergesort.c.src'), join('src', 'npysort', 'timsort.c.src'), join('src', 'npysort', 'heapsort.c.src'), + join('src', 'npysort', 'radixsort.c.src'), join('src', 'common', 'npy_partition.h.src'), join('src', 'npysort', 'selection.c.src'), join('src', 'common', 'npy_binsearch.h.src'), -- cgit v1.2.1 From dfe7b9db2350505903ba19867bf27dabda2bff71 Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Sun, 9 Dec 2018 01:08:33 -0800 Subject: ENH/DEP: Use a ufunc under the hood for ndarray.clip This includes: * The addition of 3-input PyObject inner loop * The removal of `->f->fastclip` for builtin types, which now use ufuncs instead * A deprecation in `PyArray_Clip` for third-party types that still use `->f->fastclip` * A deprecation of the unusual casting behavior of `clip` * A deprecation of the broken `nan`-behavior of `clip`, which was previously dependent on dimensionality and byte-order. --- numpy/core/setup.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'numpy/core/setup.py') diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 81d140d5e..62147d22b 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -906,6 +906,8 @@ def configuration(parent_package='',top_path=None): join('src', 'umath', 'loops.c.src'), join('src', 'umath', 'matmul.h.src'), join('src', 'umath', 'matmul.c.src'), + join('src', 'umath', 'clip.h.src'), + join('src', 'umath', 'clip.c.src'), join('src', 'umath', 'ufunc_object.c'), join('src', 'umath', 'extobj.c'), join('src', 'umath', 'cpuid.c'), -- cgit v1.2.1