Table of Contents

Interface IKernelExecutionParameters

Namespace
DotCompute.Abstractions.Interfaces
Assembly
DotCompute.Abstractions.dll

Interface for kernel execution parameters.

public interface IKernelExecutionParameters

Properties

Arguments

Gets the kernel arguments.

IReadOnlyList<object> Arguments { get; }

Property Value

IReadOnlyList<object>

CancellationToken

Gets the cancellation token.

CancellationToken CancellationToken { get; }

Property Value

CancellationToken

Options

Gets the execution options.

IDictionary<string, object> Options { get; }

Property Value

IDictionary<string, object>

PreferredBackend

Gets the preferred backend.

string? PreferredBackend { get; }

Property Value

string