Skip to content

Commit 33b48fe

Browse files
committed
umath refactor
1 parent 5836505 commit 33b48fe

File tree

12 files changed

+933
-811
lines changed

12 files changed

+933
-811
lines changed

quaddtype/meson.build

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,19 @@ srcs = [
5050
'numpy_quaddtype/src/scalar_ops.h',
5151
'numpy_quaddtype/src/scalar_ops.cpp',
5252
'numpy_quaddtype/src/ops.hpp',
53-
'numpy_quaddtype/src/umath.h',
54-
'numpy_quaddtype/src/umath.cpp',
5553
'numpy_quaddtype/src/dragon4.h',
5654
'numpy_quaddtype/src/dragon4.c',
5755
'numpy_quaddtype/src/quadblas_interface.h',
58-
'numpy_quaddtype/src/quadblas_interface.cpp'
56+
'numpy_quaddtype/src/quadblas_interface.cpp',
57+
'numpy_quaddtype/src/umath/umath.h',
58+
'numpy_quaddtype/src/umath/umath.cpp',
59+
'numpy_quaddtype/src/umath/binary_ops.h',
60+
'numpy_quaddtype/src/umath/binary_ops.cpp',
61+
'numpy_quaddtype/src/umath/unary_ops.h',
62+
'numpy_quaddtype/src/umath/unary_ops.cpp',
63+
'numpy_quaddtype/src/umath/comparison_ops.h',
64+
'numpy_quaddtype/src/umath/comparison_ops.cpp',
65+
'numpy_quaddtype/src/umath/promoters.hpp',
5966
]
6067

6168
py.install_sources(

quaddtype/numpy_quaddtype/src/quaddtype_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include "scalar.h"
1616
#include "dtype.h"
17-
#include "umath.h"
17+
#include "umath/umath.h"
1818
#include "quad_common.h"
1919
#include "quadblas_interface.h"
2020
#include "float.h"

0 commit comments

Comments
 (0)