Enum MemorySpace
- Namespace
- DotCompute.Abstractions.Kernels
- Assembly
- DotCompute.Abstractions.dll
Defines the memory space where kernel parameters reside.
public enum MemorySpace
Fields
Constant = 3Constant memory space for read-only data.
Device = 5Device memory space for GPU devices.
Global = 0Global memory space accessible by all work items.
Local = 1Local memory space shared within a work group.
Private = 4Private memory space for each work item.
Shared memory space within a thread block (CUDA terminology).