File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
ansible/roles/hpctests/templates Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -16,4 +16,8 @@ echo UCX_NET_DEVICES: $UCX_NET_DEVICES
1616module load {{ hpctests_pingmatrix_modules | join(' ' ) }}
1717
1818mpicc -o nxnlatbw mpi_nxnlatbw.c
19- mpirun nxnlatbw
19+
20+ # mpirun flags force using UCX TCP transports, overriding higher
21+ # priority of OpenMPI btl/openib component, which is also using RDMA
22+ # https://wiki.stackhpc.com/s/985dae84-7bd8-4924-94b7-9629a7827100
23+ mpirun -mca pml_ucx_tls any -mca pml_ucx_devices any nxnlatbw
Original file line number Diff line number Diff line change @@ -16,4 +16,8 @@ echo UCX_NET_DEVICES: $UCX_NET_DEVICES
1616module load {{ hpctests_pingpong_modules | join(' ' ) }}
1717
1818# srun --mpi=pmi2 IMB-MPI1 pingpong # doesn't work in ohpc v2.1
19- mpirun IMB-MPI1 pingpong
19+
20+ # mpirun flags force using UCX TCP transports, overriding higher
21+ # priority of OpenMPI btl/openib component, which is also using RDMA
22+ # https://wiki.stackhpc.com/s/985dae84-7bd8-4924-94b7-9629a7827100
23+ mpirun -mca pml_ucx_tls any -mca pml_ucx_devices any IMB-MPI1 pingpong
You can’t perform that action at this time.
0 commit comments