Enum GpuUsageLevel
GPU usage level controlling when to use GPU vs CPU for operations.
public enum GpuUsageLevel
Fields
Aggressive = 2Aggressive GPU usage - use GPU more often (high-end GPUs).
AlwaysCpu = 4Always use CPU for all operations (disable GPU entirely).
AlwaysGpu = 3Always use GPU for all operations (maximize GPU utilization).
Conservative = 0Conservative GPU usage - only for very large operations (older/slower GPUs).
Default = 1Balanced GPU usage - good for most desktop GPUs (default).
Remarks
For Beginners: This controls how aggressively the system uses GPU: - **Default**: Balanced for typical GPUs (recommended) - **Conservative**: Only use GPU for very large operations (older/slower GPUs) - **Aggressive**: Use GPU more often (high-end GPUs like RTX 4090/A100) - **AlwaysGpu**: Force all operations to GPU (maximize GPU utilization) - **AlwaysCpu**: Force all operations to CPU (disable GPU entirely)