Class KernelCacheStatistics
- Namespace
- DotCompute.Abstractions.Kernels.Types
- Assembly
- DotCompute.Abstractions.dll
Contains kernel cache statistics.
public sealed class KernelCacheStatistics
- Inheritance
-
KernelCacheStatistics
- Inherited Members
Properties
CachedKernelCount
Gets the number of cached kernels.
public required int CachedKernelCount { get; init; }
Property Value
EvictionCount
Gets the cache eviction count.
public required long EvictionCount { get; init; }
Property Value
HitCount
Gets the cache hit count.
public required long HitCount { get; init; }
Property Value
HitRate
Gets the cache hit rate.
public required double HitRate { get; init; }
Property Value
MemoryUsedBytes
Gets the total memory used by cache in bytes.
public required long MemoryUsedBytes { get; init; }
Property Value
MissCount
Gets the cache miss count.
public required long MissCount { get; init; }