Table of Contents

Enum TrendDirection

Namespace
DotCompute.Abstractions.Types
Assembly
DotCompute.Abstractions.dll

Defines the possible directions for performance trends observed over time. Indicates whether a performance metric is getting better, worse, or staying consistent.

public enum TrendDirection

Fields

Degrading = 4

Performance is degrading over time, showing worse values for the metric. Indicates negative trends such as slower execution times or lower throughput.

Improving = 3

Performance is improving over time, showing better values for the metric. Indicates positive trends such as faster execution times or higher throughput.

None = 1

No clear trend direction detected. Performance shows random variation without clear pattern.

Stable = 2

Performance is stable over time, showing consistent values for the metric. Indicates predictable performance with minimal variation.

Unknown = 0

Unknown or indeterminate trend direction. May indicate insufficient data or analysis errors.