Table of Contents

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

string

Backend2

Gets the second backend name.

public string Backend2 { get; init; }

Property Value

string

Details

Gets additional comparison details.

public Dictionary<string, object> Details { get; init; }

Property Value

Dictionary<string, object>

Difference

Gets the numeric difference between results.

public float Difference { get; init; }

Property Value

float

IsMatch

Gets whether the results match within tolerance.

public bool IsMatch { get; init; }

Property Value

bool