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 = 4Performance is degrading over time, showing worse values for the metric. Indicates negative trends such as slower execution times or lower throughput.
Improving = 3Performance is improving over time, showing better values for the metric. Indicates positive trends such as faster execution times or higher throughput.
None = 1No clear trend direction detected. Performance shows random variation without clear pattern.
Stable = 2Performance is stable over time, showing consistent values for the metric. Indicates predictable performance with minimal variation.
Unknown = 0Unknown or indeterminate trend direction. May indicate insufficient data or analysis errors.