Class CacheStatistics
- Namespace
- DotCompute.Runtime.Services.Interfaces
- Assembly
- DotCompute.Runtime.dll
Statistics about kernel cache usage.
public class CacheStatistics
- Inheritance
-
CacheStatistics
- Inherited Members
Properties
AverageTimeSavedPerHit
Gets or sets the average compilation time saved per hit.
public TimeSpan AverageTimeSavedPerHit { get; init; }
Property Value
EntryCount
Gets or sets the total number of cache entries.
public int EntryCount { get; init; }
Property Value
HitCount
Gets or sets the number of cache hits.
public long HitCount { get; init; }
Property Value
HitRate
Gets the cache hit rate.
public double HitRate { get; }
Property Value
MissCount
Gets or sets the number of cache misses.
public long MissCount { get; init; }
Property Value
TotalSizeBytes
Gets or sets the total cache size in bytes.
public long TotalSizeBytes { get; init; }