aboutsummaryrefslogtreecommitdiffstats
path: root/resources/template/mem-metrics.j2
blob: 6b1b6bd4cdbf51d636b917a66617659d28939372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Memory
======

{% for host in groups['compute'] %}
{{ hostvars[host].ansible_hostname }}
-----------------------------

INTEGER
^^^^^^^
{% set metrics=hostvars[host].intmem_metrics %}
{{ ('Copy', metrics.integer_copy[0])|justify }}
{{ ('Scale', metrics.integer_scale[0])|justify }}
{{ ('Add', metrics.integer_add[0])|justify }}
{{ ('Triad', metrics.integer_triad[0])|justify }}

FL-POINT
^^^^^^^^
{% set metrics=hostvars[host].floatmem_metrics %}
{{ ('Copy', metrics.float_copy[0])|justify }}
{{ ('Scale', metrics.float_scale[0])|justify }}
{{ ('Add', metrics.float_add[0])|justify }}
{{ ('Triad', metrics.float_triad[0])|justify }}

{% endfor %}