Merge pull request #285 from aaronenyeshi/fix-ilogb-unreachable

Fix ilogb/ilogbf functions to return int

[ROCm/hip commit: 6293d3f887]
This commit is contained in:
Maneesh Gupta
2017-12-12 10:47:33 +05:30
committed by GitHub
commit 39f2afa9e3
2 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
+2 -2
Näytä tiedosto
@@ -158,7 +158,7 @@ __device__ float hypotf(float x, float y)
{
return hc::precise_math::hypotf(x, y);
}
__device__ float ilogbf(float x)
__device__ int ilogbf(float x)
{
return hc::precise_math::ilogbf(x);
}
@@ -539,7 +539,7 @@ __device__ double hypot(double x, double y)
{
return hc::precise_math::hypot(x, y);
}
__device__ double ilogb(double x)
__device__ int ilogb(double x)
{
return hc::precise_math::ilogb(x);
}