SWDEV-404118 - Change to uint.

Change-Id: Ib9ced171a4330e868a584bfb86d7ee5418e784ed
Tá an tiomantas seo le fáil i:
Jaydeep Patel
2023-06-06 07:51:13 +00:00
tiomanta ag Jaydeepkumar Patel
tuismitheoir 16c6b365c2
tiomantas 9daf8e3177
@@ -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);