{# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved. #}

Hardware

{% for info in data_gpu %}

{{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 %} {% if data_cpu %}

Process {% if 'pid' in data_cpu %}#{{data_cpu.pid}}{% endif %}

CPU Utilization
{% if 'cpu_pct' in data_cpu %}
{{data_cpu.cpu_pct}}%
{% endif %} {% if 'mem_used' in data_cpu %}
Memory
{{data_cpu.mem_used|sizeof_fmt}} {% if 'mem_pct' in data_cpu %} ({{data_cpu.mem_pct|round(1)}}%) {% endif %}
{% endif %}
{% endif %}