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
ErrorMessage
Gets or sets any error message if the operation failed.
public string? ErrorMessage { get; set; }
Property Value
ExecutionTime
Gets or sets the execution time for the operation.
public TimeSpan ExecutionTime { get; set; }
Property Value
Metrics
Gets or sets performance metrics for the operation.
public TensorCoreMetrics? Metrics { get; set; }
Property Value
OutputData
Gets or sets the output data pointer.
public nint OutputData { get; set; }
Property Value
Success
Gets or sets whether the operation completed successfully.
public bool Success { get; set; }
Property Value
TFlops
Gets or sets the theoretical TFLOPS achieved.
public double TFlops { get; set; }