Fix ilogb/ilogbf functions to return int

This patch will fix hipDoublePrecisionMathDevice test on ThinLTO, which uncovered that hip math_function's ilogb/ilogbf should return type int instead of double. This will match rocdl.
Tá an tiomantas seo le fáil i:
Aaron En Ye Shi
2017-12-05 23:14:10 +00:00
tuismitheoir a0cec19d6e
tiomantas 707aaef99d
D'athraigh 2 comhad le 4 breiseanna agus 4 scriosta
+2 -2
Féach ar an gComhad
@@ -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);
}
@@ -544,7 +544,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);
}