SWDEV-404118 - Change to uint.
Change-Id: Ib9ced171a4330e868a584bfb86d7ee5418e784ed
Этот коммит содержится в:
коммит произвёл
Jaydeepkumar Patel
родитель
16c6b365c2
Коммит
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);
|
||||
|
||||
Ссылка в новой задаче
Block a user