{% for t in tags %}
{% if t.slug == 'gpu-util-bound' %}
{% endif %}
{% if t.slug == 'cpu-bound' %}
{% endif %}
{% if t.slug == 'memory-bound' %}
{% endif %}
{% if t.slug == 'gpu-memory-bound' %}
{% endif %}
{% if t.slug == 'normal' %}
{% endif %}
{% if t.slug == 'gpu-allocated-but-not-used' %}
{% endif %}
{{ t.name }}
{% endfor %}
| Metric |
AVG |
MIN |
MAX |
Total/Limit |
{% for row in metrics %}
| {{ row.name }} |
{{ '%.2f' % row.avg }} |
{{ '%.2f' % row.min }} |
{{ '%.2f' % row.max }} |
{{ row.total }} |
{% endfor %}