Data Definition
The structure of AMD GPU memory statistics is as follows:
1 2 3 4 5 6 | struct container_mem_stats { char container_id[128]; size_t total_vram; size_t total_gtt; struct list_head list; }; |
The structure of DC GPU memory statistics is as follows:
1 2 3 4 5 | struct container_mem_stats { char container_id[128]; size_t total_vram; struct list_head list; }; |
Parent topic: GPU Memory Monitoring Development