Calling intrinsics from global kernel

이 커밋은 다음에 포함됨:
Aditya Atluri
2016-03-29 11:17:55 -05:00
부모 f518d0f818
커밋 61cd2bb399
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);