Class MemorySegmentStats
- Namespace
- DotCompute.Core.Telemetry.Analysis
- Assembly
- DotCompute.Core.dll
Contains statistical information about memory usage for a specific memory segment. Provides insights into how different memory regions are being utilized.
public sealed class MemorySegmentStats
- Inheritance
-
MemorySegmentStats
- Inherited Members
Properties
AverageBandwidth
Gets or sets the average bandwidth achieved for operations on this memory segment. Provides insight into the performance characteristics of this memory region.
public double AverageBandwidth { get; set; }
Property Value
- double
The average bandwidth in GB/s.
OperationCount
Gets or sets the total number of operations performed on this memory segment. Indicates the level of activity for this memory region.
public int OperationCount { get; set; }
Property Value
- int
The operation count as an integer.
TotalBytes
Gets or sets the total number of bytes transferred to/from this memory segment. Indicates the volume of data processed in this memory region.
public long TotalBytes { get; set; }
Property Value
- long
The total bytes as a long integer.