Table of Contents

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

TimeSpan

EntryCount

Gets or sets the total number of cache entries.

public int EntryCount { get; init; }

Property Value

int

HitCount

Gets or sets the number of cache hits.

public long HitCount { get; init; }

Property Value

long

HitRate

Gets the cache hit rate.

public double HitRate { get; }

Property Value

double

MissCount

Gets or sets the number of cache misses.

public long MissCount { get; init; }

Property Value

long

TotalSizeBytes

Gets or sets the total cache size in bytes.

public long TotalSizeBytes { get; init; }

Property Value

long