Enum DxgiComputePreemptionGranularity
Identifies the granularity at which the graphics processing unit (GPU) can be preempted from performing its current compute task.
Namespace: JeremyAnsel.DirectX.Dxgi
Assembly: JeremyAnsel.DirectX.Dxgi.dll
Syntax
public enum DxgiComputePreemptionGranularity
Fields
Name | Description |
---|---|
DispatchBoundary | Indicates the preemption granularity as a dispatch. A dispatch is a part of a compute packet. |
DmaBufferBoundary | Indicates the preemption granularity as a compute packet. |
InstructionBoundary | Indicates the preemption granularity as a compute instruction in a thread. |
ThreadBoundary | Indicates the preemption granularity as a thread in a thread group. A thread is a part of a thread group. |
ThreadGroupBoundary | Indicates the preemption granularity as a thread group. A thread group is a part of a dispatch. |