SWDEV-404118 - Change to uint.

Change-Id: Ib9ced171a4330e868a584bfb86d7ee5418e784ed


[ROCm/clr commit: 9daf8e3177]
Этот коммит содержится в:
Jaydeep Patel
2023-06-06 07:51:13 +00:00
коммит произвёл Jaydeepkumar Patel
родитель 06213e3b4b
Коммит 7be6ca6306
+1 -1
Просмотреть файл
@@ -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);