Class GpuMemoryStats
GPU memory statistics
public sealed class GpuMemoryStats
- Inheritance
-
GpuMemoryStats
- Inherited Members
Properties
AllocationCount
Gets the total number of allocations
public int AllocationCount { get; init; }
Property Value
CurrentInUse
Gets the current bytes in use
public long CurrentInUse { get; init; }
Property Value
LeakedBytes
Gets the number of leaked bytes (allocated but not returned)
public long LeakedBytes { get; }
Property Value
PeakUsage
Gets the peak memory usage in bytes
public long PeakUsage { get; init; }
Property Value
SegmentCount
Gets the number of memory segments
public int SegmentCount { get; init; }
Property Value
TotalAllocated
Gets the total bytes allocated
public long TotalAllocated { get; init; }
Property Value
TotalReturned
Gets the total bytes returned to the pool
public long TotalReturned { get; init; }
Property Value
UtilizationPercent
Gets the memory utilization percentage
public double UtilizationPercent { get; }