Top "Gpu-shared-memory" questions

The memory space on a GPU computation core which is shared by all threads of a block in a work grid ("work-items" in a "work-group" of the grid in OpenCL parlance).

allocating shared memory

i am trying to allocate shared memory by using a constant parameter but getting an error. my kernel looks like …

c++ c cuda gpu-shared-memory
GPU shared memory size is very small - what can I do about it?

The size of the shared memory ("local memory" in OpenCL terms) is only 16 KiB on most nVIDIA GPUs of today. …

gpu nvidia gpu-shared-memory
How to define a CUDA shared memory with a size known at run time?

The __shared__ memory in CUDA seems to require a known size at compile time. However, in my problem, the __shared__ …

cuda gpu-shared-memory
Is there a limit to OpenCL local memory?

Today I added four more __local variables to my kernel to dump intermediate results in. But just adding the four …

opencl gpgpu gpu-shared-memory