Table of Contents

Class ExecutionResult

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

Represents the result of kernel execution.

public sealed record ExecutionResult : IEquatable<ExecutionResult>
Inheritance
ExecutionResult
Implements
Inherited Members

Properties

Event

Gets the event associated with kernel execution.

public required OpenCLEventHandle Event { get; init; }

Property Value

OpenCLEventHandle

ExecutionTime

Gets the execution time of the kernel.

public required TimeSpan ExecutionTime { get; init; }

Property Value

TimeSpan

GlobalSize

Gets the global work size used for execution.

public required NDRange GlobalSize { get; init; }

Property Value

NDRange

LocalSize

Gets the local work size used for execution.

public required NDRange LocalSize { get; init; }

Property Value

NDRange