cuda shared array

Solutions on MaxInterview for cuda shared array by the best coders in the world

showing results for - "cuda shared array"
Fynn
21 Sep 2016
1extern __shared__ int buf[];
2
3//when you launch the kernel you should launch it this way;
4
5kernel<<<blocks,threads,numbytes_for_shared>>>(...);