Size of local memory

Hello All,

What is the size of the local memory for each thread? What is the size of the local memory available to each processor or multiprocessor?

I cannot seem to find this information in the manual

Since local memory is just thread-specific storage placed physically in global memory, I would expect the amount of local memory available for all running threads is the size of global memory (less any memory in use for video drivers, etc).

local memory is allocated from global memory, so there’s no actual restricitions.