cuda dim3

Solutions on MaxInterview for cuda dim3 by the best coders in the world

showing results for - "cuda dim3"
Jessica
07 Sep 2019
1// dim3 can take 1, 2, or 3 argumetns:
2dim3 blocks1D( 5       );
3dim3 blocks2D( 5, 5    );
4dim3 blocks3D( 5, 5, 5 );
5