Table of Contents

Class GraphConfiguration

Namespace
DotCompute.Backends.CUDA.Execution.Graph.Configuration
Assembly
DotCompute.Backends.CUDA.dll

Configuration options for CUDA graph execution. Provides comprehensive settings for graph optimization and execution behavior.

public sealed class GraphConfiguration
Inheritance
GraphConfiguration
Inherited Members

Properties

Default

Gets the default graph configuration.

public static GraphConfiguration Default { get; }

Property Value

GraphConfiguration

EnableOptimization

Gets or sets whether graph optimization is enabled.

public bool EnableOptimization { get; set; }

Property Value

bool

MaxConcurrentExecutions

Gets or sets the maximum number of concurrent graph executions.

public int MaxConcurrentExecutions { get; set; }

Property Value

int

OptimizationTimeoutMs

Gets or sets the optimization timeout in milliseconds.

public int OptimizationTimeoutMs { get; set; }

Property Value

int