@@ -86,37 +86,37 @@ inline void abs(const T* src, T* dst, size_t n) {
8686// / numpy.exp(x, /, out=None, *, where=True, ...)
8787template <typename T>
8888inline void exp (const T* src, T* dst, size_t n) {
89- NUMPY_UNROLL4 (i, dst[i] = svml ::exp (src[i]));
89+ NUMPY_UNROLL4 (i, dst[i] = detail ::exp (src[i]));
9090}
9191
9292// / numpy.log(x, /, out=None, *, where=True, ...)
9393template <typename T>
9494inline void log (const T* src, T* dst, size_t n) {
95- NUMPY_UNROLL4 (i, dst[i] = svml ::log (src[i]));
95+ NUMPY_UNROLL4 (i, dst[i] = detail ::log (src[i]));
9696}
9797
9898// / numpy.sin(x, /, out=None, *, where=True, ...)
9999template <typename T>
100100inline void sin (const T* src, T* dst, size_t n) {
101- NUMPY_UNROLL4 (i, dst[i] = svml ::sin (src[i]));
101+ NUMPY_UNROLL4 (i, dst[i] = detail ::sin (src[i]));
102102}
103103
104104// / numpy.cos(x, /, out=None, *, where=True, ...)
105105template <typename T>
106106inline void cos (const T* src, T* dst, size_t n) {
107- NUMPY_UNROLL4 (i, dst[i] = svml ::cos (src[i]));
107+ NUMPY_UNROLL4 (i, dst[i] = detail ::cos (src[i]));
108108}
109109
110110// / numpy.tan(x, /, out=None, *, where=True, ...)
111111template <typename T>
112112inline void tan (const T* src, T* dst, size_t n) {
113- NUMPY_UNROLL4 (i, dst[i] = svml ::tan (src[i]));
113+ NUMPY_UNROLL4 (i, dst[i] = detail ::tan (src[i]));
114114}
115115
116116// / numpy.power(x1, x2, /, out=None, *, where=True, ...)
117117template <typename T>
118118inline void power (const T* src, T* dst, size_t n, T exponent) {
119- NUMPY_UNROLL4 (i, dst[i] = svml ::pow (src[i], exponent));
119+ NUMPY_UNROLL4 (i, dst[i] = detail ::pow (src[i], exponent));
120120}
121121
122122// / numpy.clip(a, a_min, a_max, out=None, **kwargs)
@@ -128,31 +128,31 @@ inline void clip(const T* src, T* dst, size_t n, T min_val, T max_val) {
128128// / numpy.log10(x, /, out=None, *, where=True, ...)
129129template <typename T>
130130inline void log10 (const T* src, T* dst, size_t n) {
131- NUMPY_UNROLL4 (i, dst[i] = svml ::log10 (src[i]));
131+ NUMPY_UNROLL4 (i, dst[i] = detail ::log10 (src[i]));
132132}
133133
134134// / numpy.log2(x, /, out=None, *, where=True, ...)
135135template <typename T>
136136inline void log2 (const T* src, T* dst, size_t n) {
137- NUMPY_UNROLL4 (i, dst[i] = svml ::log2 (src[i]));
137+ NUMPY_UNROLL4 (i, dst[i] = detail ::log2 (src[i]));
138138}
139139
140140// / numpy.arcsin(x, /, out=None, *, where=True, ...)
141141template <typename T>
142142inline void arcsin (const T* src, T* dst, size_t n) {
143- NUMPY_UNROLL4 (i, dst[i] = svml ::asin (src[i]));
143+ NUMPY_UNROLL4 (i, dst[i] = detail ::asin (src[i]));
144144}
145145
146146// / numpy.arccos(x, /, out=None, *, where=True, ...)
147147template <typename T>
148148inline void arccos (const T* src, T* dst, size_t n) {
149- NUMPY_UNROLL4 (i, dst[i] = svml ::acos (src[i]));
149+ NUMPY_UNROLL4 (i, dst[i] = detail ::acos (src[i]));
150150}
151151
152152// / numpy.arctan(x, /, out=None, *, where=True, ...)
153153template <typename T>
154154inline void arctan (const T* src, T* dst, size_t n) {
155- NUMPY_UNROLL4 (i, dst[i] = svml ::atan (src[i]));
155+ NUMPY_UNROLL4 (i, dst[i] = detail ::atan (src[i]));
156156}
157157
158158// / numpy.round(a, decimals=0, out=None)
@@ -414,12 +414,12 @@ inline void isfinite(const T* src, bool* dst, size_t n) {
414414// / numpy.arctan2(x1, x2, /, out=None, *, where=True, ...) — array-array
415415template <typename T>
416416inline void arctan2_array (const T* a, const T* b, T* dst, size_t n) {
417- NUMPY_UNROLL4 (i, dst[i] = svml ::atan2 (a[i], b[i]));
417+ NUMPY_UNROLL4 (i, dst[i] = detail ::atan2 (a[i], b[i]));
418418}
419419// / numpy.arctan2(x1, x2, /, out=None, *, where=True, ...) — array-scalar
420420template <typename T>
421421inline void arctan2_scalar (const T* src, T* dst, size_t n, T b) {
422- NUMPY_UNROLL4 (i, dst[i] = svml ::atan2 (src[i], b));
422+ NUMPY_UNROLL4 (i, dst[i] = detail ::atan2 (src[i], b));
423423}
424424// / numpy.maximum(x1, x2, /, out=None, *, where=True, ...) — array-array
425425template <typename T>
0 commit comments