Table of Contents

Class CacheStatistics

Namespace
DotCompute.Backends.CUDA.Types
Assembly
DotCompute.Backends.CUDA.dll

Cache statistics for CUDA operations

public sealed class CacheStatistics
Inheritance
CacheStatistics
Inherited Members

Properties

AverageAccessCount

Gets or sets the average access count.

public double AverageAccessCount { get; set; }

Property Value

double

The average access count.

CacheSizeBytes

Gets or sets the cache size bytes.

public long CacheSizeBytes { get; set; }

Property Value

long

The cache size bytes.

HitCount

Gets or sets the hit count.

public int HitCount { get; set; }

Property Value

int

The hit count.

HitRate

Gets or sets the hit rate.

public double HitRate { get; set; }

Property Value

double

The hit rate.

LastAccess

Gets or sets the last access.

public DateTime LastAccess { get; set; }

Property Value

DateTime

The last access.

MissCount

Gets or sets the miss count.

public int MissCount { get; set; }

Property Value

int

The miss count.

NewestEntryTime

Gets or sets the newest entry time.

public DateTime? NewestEntryTime { get; set; }

Property Value

DateTime?

The newest entry time.

OldestEntryTime

Gets or sets the oldest entry time.

public DateTime? OldestEntryTime { get; set; }

Property Value

DateTime?

The oldest entry time.

TotalEntries

Gets or sets the total entries.

public int TotalEntries { get; set; }

Property Value

int

The total entries.

TotalRequests

Gets or sets the total requests.

public int TotalRequests { get; }

Property Value

int

The total requests.

TotalSizeBytes

Gets or sets the total size bytes.

public long TotalSizeBytes { get; set; }

Property Value

long

The total size bytes.