Class ResultComparison
- Namespace
- DotCompute.Abstractions.Debugging
- Assembly
- DotCompute.Abstractions.dll
Represents a comparison between two backend execution results.
public sealed class ResultComparison
- Inheritance
-
ResultComparison
- Inherited Members
Properties
Backend1
Gets the first backend name.
public string Backend1 { get; init; }
Property Value
Backend2
Gets the second backend name.
public string Backend2 { get; init; }
Property Value
Details
Gets additional comparison details.
public Dictionary<string, object> Details { get; init; }
Property Value
Difference
Gets the numeric difference between results.
public float Difference { get; init; }
Property Value
IsMatch
Gets whether the results match within tolerance.
public bool IsMatch { get; init; }