Calling intrinsics from global kernel

This commit is contained in:
Aditya Atluri
2016-03-29 11:17:55 -05:00
orang tua e652426715
melakukan 3b3db60c25
7 mengubah file dengan 26 tambahan dan 44 penghapusan
+12
Melihat File
@@ -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(){}