Added test script automating the usage of the MPI test suite.
This commit is contained in:
parent
317b33ee8c
commit
21070c63e5
1 changed files with 12 additions and 0 deletions
12
tests/mpi/mpi_test_suite.sh
Executable file
12
tests/mpi/mpi_test_suite.sh
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
ROOT=$HOME/mpi_test_suite
|
||||
|
||||
cd $ROOT
|
||||
./autogen.sh
|
||||
CC=mpicc ./configure
|
||||
#--enable-mpi2 --enable-mpi2-io --enable-mpi-onesided
|
||||
make -j $(grep -c processor /proc/cpuinfo)
|
||||
|
||||
mpirun mpi_test_suite -x relaxed -d All,^MPI_TYPE_MIX,^MPI_SHORT_INT -t All,^One-sided
|
Loading…
Reference in a new issue