diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-12-04 08:27:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-04 08:27:42 -0800 |
commit | 82428bb72589c6fd781689feb1f501a6a29c6fdc (patch) | |
tree | 970eb9cc1f850ad9b0e71be136cebcf302a5c636 /numpy/core/setup.py | |
parent | 2562e52fe1720ea4c451f45c6a279e6422ca5ff0 (diff) | |
parent | 18476f5285bdd3f1405086e37240a9bd2640ff16 (diff) | |
download | numpy-82428bb72589c6fd781689feb1f501a6a29c6fdc.tar.gz |
Merge pull request #12219 from mattip/matmul-as-ufunc2
ENH: make matmul into a ufunc
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 23a9e268b..467b590ac 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -732,6 +732,7 @@ def configuration(parent_package='',top_path=None): join('src', 'common', 'cblasfuncs.h'), join('src', 'common', 'lowlevel_strided_loops.h'), join('src', 'common', 'mem_overlap.h'), + join('src', 'common', 'npy_cblas.h'), join('src', 'common', 'npy_config.h'), join('src', 'common', 'npy_ctypes.h'), join('src', 'common', 'npy_extint128.h'), @@ -892,6 +893,8 @@ def configuration(parent_package='',top_path=None): join('src', 'umath', 'simd.inc.src'), join('src', 'umath', 'loops.h.src'), join('src', 'umath', 'loops.c.src'), + join('src', 'umath', 'matmul.h.src'), + join('src', 'umath', 'matmul.c.src'), join('src', 'umath', 'ufunc_object.c'), join('src', 'umath', 'extobj.c'), join('src', 'umath', 'cpuid.c'), |