Tuesday 30 May 2017

What are memories which are particular to each thread in CUDA?


                   Local Memory and Registers are particular to each thread.

1. Local Memory
Each SP uses Local memory. All variables declared in a kernel(a function to be executed on GPU) are saved into Local memory. 

2. Registers

Kernel may consist of several expressions. During execution of an expression, values are saved into the Registers of SP. 

No comments:

Post a Comment