diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2022-01-25 19:18:52 -0600 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2022-01-29 06:04:34 -0800 |
commit | 707e8ccb99c46262752c591782e982510c6f4df0 (patch) | |
tree | 2715425319f659e14392eea59bd15dff579a44c9 /numpy/core/setup.py | |
parent | 829be860b68ffb9deb8d191531310e00a4c1e198 (diff) | |
download | numpy-707e8ccb99c46262752c591782e982510c6f4df0.tar.gz |
ENH: Add Wrapping array-method to wrap existing ufunc loop
This is useful for Unit DTypes, which can cast their inputs
(if necessary), and then re-use existing ufuncs.
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index c97747606..63962ab79 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -1009,6 +1009,7 @@ def configuration(parent_package='',top_path=None): join('src', 'umath', 'clip.cpp'), join('src', 'umath', 'dispatching.c'), join('src', 'umath', 'legacy_array_method.c'), + join('src', 'umath', 'wrapping_array_method.c'), join('src', 'umath', 'ufunc_object.c'), join('src', 'umath', 'extobj.c'), join('src', 'umath', 'scalarmath.c.src'), |