Skip to content

Commit 2359726

Browse files
committed
Add TODO
1 parent 9c1d598 commit 2359726

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numexpr/bespoke_functions.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ inline long rintl(long x) {return x;}
3030
inline int fabsi(int x) {return x<0 ? -x: x;}
3131
inline long fabsl(long x) {return x<0 ? -x: x;}
3232
// fmod function for ints
33-
/* Have to add FUNC_III, FUNC_LLL signatures to functions.hpp*/
33+
// TODO: Have to add FUNC_III, FUNC_LLL signatures to functions.hpp to enable these
3434
// inline int fmodi(int x, int y) {return (int)fmodf((float)x, (float)y);}
3535
// inline long fmodl(long x, long y) {return (long)fmodf((long)x, (long)y);}
3636

@@ -85,7 +85,7 @@ static void vdfmod(MKL_INT n, const double* x1, const double* x2, double* dest)
8585
dest[j] = fmod(x1[j], x2[j]);
8686
};
8787
};
88-
/* Have to add FUNC_III, FUNC_LLL signatures to functions.hpp*/
88+
// TODO: Have to add FUNC_III, FUNC_LLL signatures to functions.hpp
8989
// static void vifmod(MKL_INT n, const int* x1, const int* x2, int* dest)
9090
// {
9191
// MKL_INT j;

0 commit comments

Comments
 (0)