Class GraphExecutionResult
- Assembly
- Orleans.GpuBridge.Abstractions.dll
Result of graph execution
public sealed record GraphExecutionResult : IEquatable<GraphExecutionResult>
- Inheritance
-
GraphExecutionResult
- Implements
- Inherited Members
Constructors
GraphExecutionResult(bool, int, TimeSpan, IReadOnlyDictionary<string, KernelTiming>?)
Result of graph execution
public GraphExecutionResult(bool Success, int NodesExecuted, TimeSpan ExecutionTime, IReadOnlyDictionary<string, KernelTiming>? NodeTimings = null)
Parameters
SuccessboolNodesExecutedintExecutionTimeTimeSpanNodeTimingsIReadOnlyDictionary<string, KernelTiming>
Properties
ExecutionTime
public TimeSpan ExecutionTime { get; init; }
Property Value
NodeTimings
public IReadOnlyDictionary<string, KernelTiming>? NodeTimings { get; init; }
Property Value
NodesExecuted
public int NodesExecuted { get; init; }
Property Value
Success
public bool Success { get; init; }