192 cores

Jump to: navigation, search

could you please provide resources such as:

how to display number of CUDA cores? is it a property?

is there a CUDA tutorial on efficiently coding for 192 cores, ie presumably 193 something false over, takes longer, whatever....

not clear to me that this is only CUDA related. ie does it impact openGLES 3?

many thanks once again

Jonathan

03:51, 18 July 2014

These are general CUDA topics, so I recommend that you learn CUDA if you are genuinely interested, such as by reading one of the popular CUDA books or taking a free online course mentioned at "https://developer.nvidia.com/cuda-training". To quickly summarize, the answer is that CUDA takes care of the parallelization for you, so that you just write your CUDA code to be highly parallel, and the CUDA architecture + driver + hardware automatically takes care of using 192 CUDA cores if it is on a Jetson TK1 or 96 CUDA cores if it is on a laptop GPU or 10,000 CUDA cores if it is on a server GPU, etc.

PS: After you learn more about CUDA, you can run the "deviceQuery" sample program on Jetson TK1 to see various info about the GPU such as how many CUDA cores and blocks it has.

00:36, 29 July 2014