Table of Contents

Enum MemorySpace

Namespace
DotCompute.Abstractions.Kernels
Assembly
DotCompute.Abstractions.dll

Defines the memory space where kernel parameters reside.

public enum MemorySpace

Fields

Constant = 3

Constant memory space for read-only data.

Device = 5

Device memory space for GPU devices.

Global = 0

Global memory space accessible by all work items.

Local = 1

Local memory space shared within a work group.

Private = 4

Private memory space for each work item.

Shared = 2

Shared memory space within a thread block (CUDA terminology).