Table of Contents

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

int

EvictionCount

Gets the cache eviction count.

public required long EvictionCount { get; init; }

Property Value

long

HitCount

Gets the cache hit count.

public required long HitCount { get; init; }

Property Value

long

HitRate

Gets the cache hit rate.

public required double HitRate { get; init; }

Property Value

double

MemoryUsedBytes

Gets the total memory used by cache in bytes.

public required long MemoryUsedBytes { get; init; }

Property Value

long

MissCount

Gets the cache miss count.

public required long MissCount { get; init; }

Property Value

long