Table of Contents

Class PipelineExecutionConfig

Namespace
DotCompute.Backends.OpenCL.Execution
Assembly
DotCompute.Backends.OpenCL.dll

Configuration for pipeline stage execution.

public sealed class PipelineExecutionConfig
Inheritance
PipelineExecutionConfig
Inherited Members

Properties

Arguments

Gets the kernel argument specifications.

public required IReadOnlyList<PipelineArgumentSpec> Arguments { get; init; }

Property Value

IReadOnlyList<PipelineArgumentSpec>

GlobalSize

Gets the global work size for kernel execution.

public required NDRange GlobalSize { get; init; }

Property Value

NDRange

LocalSize

Gets the optional local work size.

public NDRange? LocalSize { get; init; }

Property Value

NDRange