Renable frexp(f) device math function

Change-Id: I53c022b8ddf38cd17ddb42eba457b9020db66395
This commit is contained in:
Maneesh Gupta
2017-07-20 14:41:30 +05:30
parent bd9fa80987
commit 7a446dcbc5
3 changed files with 4 additions and 4 deletions
@@ -69,7 +69,7 @@ __device__ void double_precision_math_functions()
fmax(0.0, 0.0);
fmin(0.0, 0.0);
fmod(0.0, 1.0);
// frexp(0.0, &iX);
frexp(0.0, &iX);
hypot(1.0, 0.0);
ilogb(1.0);
isfinite(0.0);
@@ -70,7 +70,7 @@ __device__ void single_precision_math_functions()
fmaxf(0.0f, 0.0f);
fminf(0.0f, 0.0f);
fmodf(0.0f, 1.0f);
//frexpf(0.0f, &iX);
frexpf(0.0f, &iX);
hypotf(1.0f, 0.0f);
ilogbf(1.0f);
isfinite(0.0f);