Show / Hide Table of Contents

Enum cudaMemmoryAdvise

CUDA Memory Advise values

Namespace: Hybridizer.Runtime.CUDAImports
Assembly: Hybridizer.Runtime.CUDAImports.dll
Syntax
[IntrinsicType("")]
public enum cudaMemmoryAdvise

Fields

Name Description
cudaMemAdviseSetAccessedBy = 5

Data will be accessed by the specified device, so prevent page faults as much as possible

cudaMemAdviseSetPreferredLocation = 3

Set the preferred location for the data as the specified device

cudaMemAdviseSetReadMostly = 1

Data will mostly be read and only occassionally be written to

cudaMemAdviseUnsetAccessedBy = 6

Let the Unified Memory subsystem decide on the page faulting policy for the specified device

cudaMemAdviseUnsetPreferredLocation = 4

Clear the preferred location for the data

cudaMemAdviseUnsetReadMostly = 2

Undo the effect of ::cudaMemAdviseSetReadMostly

Back to top Generated by DocFX