Calling intrinsics from global kernel

このコミットが含まれているのは:
Aditya Atluri
2016-03-29 11:17:55 -05:00
コミット 3b3db60c25
7個のファイルの変更26行の追加44行の削除
+3 -1
ファイルの表示
@@ -273,9 +273,11 @@ __device__ inline unsigned long long int atomicXor(unsigned long long int* addre
// integer intrinsic function __poc __clz __ffs __brev
__device__ inline unsigned int __popc( unsigned int input)
{
return hc::__popcount_u32_b32( input);
return hc::__popcount_u32_b32(input);
}
__device__ unsigned int test__popc(unsigned int input);
__device__ inline unsigned int __popcll( unsigned long long int input)
{
return hc::__popcount_u32_b64(input);