search for: kernelfunc

Displaying 1 result from an estimated 1 matches for "kernelfunc".

Did you mean: kernelfans
2012 Feb 23
0
[LLVMdev] Clang support for CUDA
...s, #include<stdio.h> #nclude<clang/test/SemaCUDA/cuda.h> __global__ void kernfunc(int *a) { *a=threadIdx.x+blockIdx.x*blockDim.x; } int main() { int *h_a,*d_a,n; n=sizeof(int); h_a=(int*)malloc(n); *h_a=5; cudaMalloc((void*)&d_a,n); cudaMemcpy(d_a,h_a,n,cudaMemcpyHostToDevice); kernelfunc<<<1,1>>>(d_a); cudaMemcpy(h_a,d_a,n,cudaMemcpyDeviceToHost); printf("%d",*h_a); return 0; } What additional header files should be included? What part of the code is currently not supported by clang 3.0? Thank you:) -------------- next part -------------- An HTML atta...