Table of Contents

Class BatchExecutionResult

Namespace
Orleans.GpuBridge.Abstractions.Providers.Execution.Results
Assembly
Orleans.GpuBridge.Abstractions.dll

Result of batch execution

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

Constructors

BatchExecutionResult(int, int, IReadOnlyList<KernelExecutionResult>, TimeSpan)

Result of batch execution

public BatchExecutionResult(int SuccessCount, int FailureCount, IReadOnlyList<KernelExecutionResult> Results, TimeSpan TotalExecutionTime)

Parameters

SuccessCount int
FailureCount int
Results IReadOnlyList<KernelExecutionResult>
TotalExecutionTime TimeSpan

Properties

FailureCount

public int FailureCount { get; init; }

Property Value

int

Results

public IReadOnlyList<KernelExecutionResult> Results { get; init; }

Property Value

IReadOnlyList<KernelExecutionResult>

SuccessCount

public int SuccessCount { get; init; }

Property Value

int

TotalExecutionTime

public TimeSpan TotalExecutionTime { get; init; }

Property Value

TimeSpan