Skip to content

Commit 017e9b0

Browse files
committed
add partition info in output
1 parent 11d6840 commit 017e9b0

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

ansible/roles/hpctests/tasks/hpl-solo.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,11 @@
116116
tags: postpro
117117
debug:
118118
msg: |
119-
Summary for hpl-solo ({{ hpctests_computes.stdout_lines | length }} nodes) job {{ hpctests_hplsolo_sbatch.stdout.split()[-1] }} using {{ hpctests_ucx_net_devices }}:
119+
Summary for hpl-solo on {{ hpctests_computes.stdout_lines | length }} nodes in '{{ hpctests_partition }}' partition, job ID {{ hpctests_hplsolo_sbatch.stdout.split()[-1] }}, device '{{ hpctests_ucx_net_devices }}':
120+
120121
Max: {{ perf.stdout_lines | map('float') | max }} gflops
121122
Min: {{ perf.stdout_lines | map('float') | min }} gflops
122-
Mean: {{ (perf.stdout_lines | map('float') | sum) / (hpctests_computes.stdout_lines | length) }} gflops
123+
Mean: {{ (perf.stdout_lines | map('float') | sum) / (hpctests_computes.stdout_lines | length) }} gflops
123124
124125
Individual node results (gflops):
125126
{{ dict(hpctests_computes.stdout_lines | zip(perf.stdout_lines | map('float') )) | to_nice_yaml }}

ansible/roles/hpctests/tasks/pingmatrix.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@
6161
- name: Summarise results
6262
debug:
6363
msg: |
64-
Summary for pingmatrix (pairwise on {{ slurm_names.stdout_lines | length }} nodes) job {{ hpctests_pingmatrix_sbatch.stdout.split()[-1] }} using {{ hpctests_ucx_net_devices }}:
64+
Summary for pingmatrix pairwise over {{ slurm_names.stdout_lines | length }} nodes in '{{ hpctests_partition }}' partition, job ID {{ hpctests_pingmatrix_sbatch.stdout.split()[-1] }}, device '{{ hpctests_ucx_net_devices }}':
65+
6566
{{ nxnlatbw['stats'] | to_nice_yaml }}
67+
6668
Tabular output on ansible control host at {{ hpctests_outdir }}/pingmatrix.html

ansible/roles/hpctests/tasks/pingpong.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,11 @@
5555

5656
- debug:
5757
msg: |
58-
Summary for pingpong (2x scheduler-selected nodes) job {{ _pingpong_jobid }} (using interface {{ hpctests_ucx_net_devices }}):
59-
nodes: {{ hpctests_pingpong_run_nodes.stdout.split()[1] }}
60-
zero-size msg latency: {{ hpctests_pingpong_out['columns']['latency'][0] }} us
61-
max bandwidth: {{ hpctests_pingpong_out['columns']['bandwidth'] | max }} Mbytes/s ({{ (hpctests_pingpong_out['columns']['bandwidth'] | max) / 125.0 }} Gbit/s)
58+
Summary for pingpong using 2x scheduler-selected nodes in '{{ hpctests_partition }}' partition, job ID {{ _pingpong_jobid }}, device '{{ hpctests_ucx_net_devices }}':
59+
60+
Nodes: {{ hpctests_pingpong_run_nodes.stdout.split()[1] }}
61+
Zero-size msg latency: {{ hpctests_pingpong_out['columns']['latency'][0] }} us
62+
Max bandwidth: {{ hpctests_pingpong_out['columns']['bandwidth'] | max }} Mbytes/s ({{ (hpctests_pingpong_out['columns']['bandwidth'] | max) / 125.0 }} Gbit/s)
6263
6364
See plot on localhost:
6465
{{ _pingpong_plot.stdout }}

0 commit comments

Comments
 (0)