We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc4dd6 commit 3377d38Copy full SHA for 3377d38
mkl_umath/src/mkl_umath_loops.c.src
@@ -154,6 +154,11 @@ static inline npy_float spacingf(npy_float x) {
154
return copysignf(nextafterf(fabsf(x), INFINITY), x) - x;
155
}
156
157
+#if defined(_MSC_VER) && defined(__INTEL_COMPILER)
158
+extern __inline float __cdecl ldexpf( float _X, int _Y) {
159
+ return (float)ldexp(_X, _Y);
160
+}
161
+#endif
162
163
/**begin repeat
164
* Float types
0 commit comments