我要评分
获取效率
正确性
完整性
易理解

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;
};