Table of Contents

Class TensorCoreResult

Namespace
DotCompute.Core.Models
Assembly
DotCompute.Core.dll

Represents the result of a tensor core operation.

public class TensorCoreResult
Inheritance
TensorCoreResult
Inherited Members

Properties

EfficiencyPercentage

Gets or sets the percentage of peak performance achieved.

public double EfficiencyPercentage { get; set; }

Property Value

double

ErrorMessage

Gets or sets any error message if the operation failed.

public string? ErrorMessage { get; set; }

Property Value

string

ExecutionTime

Gets or sets the execution time for the operation.

public TimeSpan ExecutionTime { get; set; }

Property Value

TimeSpan

Metrics

Gets or sets performance metrics for the operation.

public TensorCoreMetrics? Metrics { get; set; }

Property Value

TensorCoreMetrics

OutputData

Gets or sets the output data pointer.

public nint OutputData { get; set; }

Property Value

nint

Success

Gets or sets whether the operation completed successfully.

public bool Success { get; set; }

Property Value

bool

TFlops

Gets or sets the theoretical TFLOPS achieved.

public double TFlops { get; set; }

Property Value

double