Statistics::GPU
Nested class for GPU-specific statistics.
#include "Utils/Statistics.h"
Public Functions
| Name | |
|---|---|
| GPU() =delete<br>Deleted constructor to prevent instantiation. | |
| ~GPU() =delete<br>Deleted destructor to prevent destruction. |
Public Attributes
| Name | |
|---|---|
| int | AllocatedMemory <br>Size of allocated GPU memory, in megabytes. |
| int | DedicatedMemory <br>Size of dedicated GPU memory, in megabytes. |
| int | EvictedMemory <br>Size of evicted GPU memory, in megabytes. |
| int | FreeMemory <br>Size of available GPU memory, in megabytes. |
| int | TotalMemory <br>Total size of GPU memory, in megabytes. |
Public Functions Documentation
function GPU
cpp
GPU() =deleteGPU() =deleteDeleted constructor to prevent instantiation.
function ~GPU
cpp
~GPU() =delete~GPU() =deleteDeleted destructor to prevent destruction.
Public Attributes Documentation
variable AllocatedMemory
cpp
static int AllocatedMemory = 0;static int AllocatedMemory = 0;Size of allocated GPU memory, in megabytes.
variable DedicatedMemory
cpp
static int DedicatedMemory = 0;static int DedicatedMemory = 0;Size of dedicated GPU memory, in megabytes.
variable EvictedMemory
cpp
static int EvictedMemory = 0;static int EvictedMemory = 0;Size of evicted GPU memory, in megabytes.
variable FreeMemory
cpp
static int FreeMemory = 0;static int FreeMemory = 0;Size of available GPU memory, in megabytes.
variable TotalMemory
cpp
static int TotalMemory = 0;static int TotalMemory = 0;Total size of GPU memory, in megabytes.
Updated on 2026-05-21 at 15:39:35 +0000