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
ExecutionTime
Gets the execution time of the kernel.
public required TimeSpan ExecutionTime { get; init; }
Property Value
GlobalSize
Gets the global work size used for execution.
public required NDRange GlobalSize { get; init; }
Property Value
LocalSize
Gets the local work size used for execution.
public required NDRange LocalSize { get; init; }