diff options
author | mattip <matti.picus@gmail.com> | 2018-10-19 15:38:53 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-11-25 12:23:35 -0600 |
commit | 8c9450a7fd69d5b74b47ffec60b5c235361daeff (patch) | |
tree | c8d86a390ff4c167dcf1ff84d17cf189e6ed17c6 /numpy/core/setup.py | |
parent | d7e411bcbf4fb8279b4a8485517fd38ce6eb43a9 (diff) | |
download | numpy-8c9450a7fd69d5b74b47ffec60b5c235361daeff.tar.gz |
ENH: make matmul into a ufunc
MAINT: fixes from review
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'), |