Fix for __ffsll() device functions.

[ROCm/hip commit: b7bd29924a]
Этот коммит содержится в:
Konstantin Pyzhov
2019-04-18 13:07:24 -04:00
родитель d4c72ad357
Коммит 53b232fb2a
+2 -2
Просмотреть файл
@@ -58,7 +58,7 @@ __device__ static inline unsigned int __ffs(unsigned int input) {
}
__device__ static inline unsigned int __ffsll(unsigned long long int input) {
return ( input == 0 ? -1 : __builtin_ctzl(input) ) + 1;
return ( input == 0 ? -1 : __builtin_ctzll(input) ) + 1;
}
__device__ static inline unsigned int __ffs(int input) {
@@ -66,7 +66,7 @@ __device__ static inline unsigned int __ffs(int input) {
}
__device__ static inline unsigned int __ffsll(long long int input) {
return ( input == 0 ? -1 : __builtin_ctzl(input) ) + 1;
return ( input == 0 ? -1 : __builtin_ctzll(input) ) + 1;
}
__device__ static inline unsigned int __brev(unsigned int input) {