Calling intrinsics from global kernel

[ROCm/clr commit: 3b3db60c25]
This commit is contained in:
Aditya Atluri
2016-03-29 11:17:55 -05:00
parent b22b03fba3
commit 98f1e31c9b
7 changed files with 26 additions and 44 deletions
@@ -0,0 +1,12 @@
#include"test_common.h"
#include"hip_runtime.h"
__device__ void test(){
test__popc(1);
}
__global__ void Test(hipLaunchParm lp, int a){
test();
}
int main(){}