run_mpi_tests.sh 113 Bytes
Newer Older
Tom Birch's avatar
Tom Birch committed
1
2
3
4
5
6
#!/bin/bash

set -e
for WORKERS in {1..5}; do
    mpirun -n $WORKERS python -m pytest tests/nn/pipe_process
done