From f5c292707a540f9fd816a93c8a399ec2c8607ae1 Mon Sep 17 00:00:00 2001 From: Marcin Zalewski Date: Thu, 7 Sep 2023 08:48:17 -0700 Subject: [PATCH] Try more workers --- .github/workflows/ci-ucx.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-ucx.yml b/.github/workflows/ci-ucx.yml index 1dde80d19..4496a9823 100644 --- a/.github/workflows/ci-ucx.yml +++ b/.github/workflows/ci-ucx.yml @@ -71,12 +71,12 @@ jobs: fail-fast: false matrix: include: - - {name: 2 rank 1 CPU test, options: -j 1 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --cpus 1 --unit --debug, log: cpu, instance: 1} - - {name: 2 rank 2 CPUs test, options: -j 1 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --cpus 2 --debug, log: cpus, instance: 1} - - {name: 2 rank GPU test, options: -j 1 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --use cuda --gpus 1 --debug, log: gpu, instance: 2} - - {name: 2 rank 2 GPUs test, options: -j 1 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --use cuda --gpus 2 --debug, log: gpus, instance: 4} - - {name: 2 rank OpenMP test, options: -j 1 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --use openmp --omps 1 --ompthreads 2 --debug, log: omp, instance: 1} - - {name: 2 rank 2 NUMA OpenMPs test, options: -j 1 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --use openmp --omps 2 --ompthreads 2 --numamem 2048 --debug, log: omps, instance: 1} + - {name: 2 rank 1 CPU test, options: -j 8 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --cpus 1 --unit --debug, log: cpu, instance: 1} + - {name: 2 rank 2 CPUs test, options: -j 8 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --cpus 2 --debug, log: cpus, instance: 1} + - {name: 2 rank GPU test, options: -j 4 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --use cuda --gpus 1 --debug, log: gpu, instance: 2} + - {name: 2 rank 2 GPUs test, options: -j 4 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --use cuda --gpus 2 --debug, log: gpus, instance: 4} + - {name: 2 rank OpenMP test, options: -j 8 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --use openmp --omps 1 --ompthreads 2 --debug, log: omp, instance: 1} + - {name: 2 rank 2 NUMA OpenMPs test, options: -j 4 --ranks-per-node 2 --launcher mpirun --launcher-extra=--oversubscribe --use openmp --omps 2 --ompthreads 2 --numamem 2048 --debug, log: omps, instance: 1} - {name: Eager execution test, options: --use eager --debug, log: eager, instance: 1} name: ${{ matrix.name }} steps: