GPU Usage
{% for info in data %}
{{info.name}} (#{{info.index}})
{% if 'memory' in info %}
- Memory
-
{{info.memory.used|sizeof_fmt}} / {{info.memory.total|sizeof_fmt}}
({{(100.0 * info.memory.used / info.memory.total)|round(1)}}%)
{% endif %}
{% if 'utilization' in info %}
- GPU Utilization
- {{info.utilization.gpu}}%
{% endif %}
{% if 'temperature' in info %}
- Temperature
- {{info.temperature}} °C
{% endif %}
{% endfor %}