SWDEV-404118 - Change to uint.

Change-Id: Ib9ced171a4330e868a584bfb86d7ee5418e784ed


[ROCm/clr commit: 9daf8e3177]
This commit is contained in:
Jaydeep Patel
2023-06-06 07:51:13 +00:00
committed by Jaydeepkumar Patel
parent 06213e3b4b
commit 7be6ca6306
@@ -595,7 +595,7 @@ __device__ static inline double __longlong_as_double(long long int x) {
return tmp;
}
__device__ static inline double __uint2double_rn(int x) { return (double)x; }
__device__ static inline double __uint2double_rn(unsigned int x) { return (double)x; }
__device__ static inline float __uint2float_rd(unsigned int x) {
return __ocml_cvtrtn_f32_u32(x);