File: python3-mpi-network

package info (click to toggle)
h5py 3.15.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,716 kB
  • sloc: python: 11,528; ansic: 578; makefile: 432; sh: 33
file content (12 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

export PRTE_MCA_rmaps_default_mapping_policy=:oversubscribe

for py in $(py3versions -s 2>/dev/null);
do
    cd "$AUTOPKGTEST_TMP"

    echo "\n=== Testing network support in mpi build with $py ==="
    mpirun -n 4 $py -mpytest -o cache_dir=$AUTOPKGTEST_TMP -v --with-mpi -p no:xvfb -k ros3 /usr/lib/python3/dist-packages/h5py/_debian_h5py_mpi/tests
done