We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9a143c commit de6955cCopy full SHA for de6955c
setup-mpi.sh
@@ -66,6 +66,19 @@ esac
66
67
echo "::set-output name=mpi::${MPI}"
68
69
+case $MPI in
70
+ mpich)
71
+ echo "::group::Run mpichversion"
72
+ mpichversion
73
+ echo "::endgroup::"
74
+ ;;
75
+ openmpi)
76
+ echo "::group::Run ompi_info --all"
77
+ ompi_info --all
78
79
80
+esac
81
+
82
if [ $MPI == openmpi ]; then
83
openmpi_mca_params=$HOME/.openmpi/mca-params.conf
84
mkdir -p $(dirname $openmpi_mca_params)
@@ -79,4 +92,7 @@ if [ $MPI == openmpi ]; then
92
# open-mpi/ompi#5798
93
echo btl_vader_backing_directory=/tmp >> $openmpi_mca_params
94
fi
95
+ echo "::group::Configure ${openmpi_mca_params}"
96
+ cat $openmpi_mca_params
97
98
0 commit comments