install_openmpi.sh 213 Bytes
Newer Older
Chen Xin's avatar
Chen Xin committed
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

set -ex

wget -q https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.5.tar.gz
tar xf openmpi-4.1.5.tar.gz
cd openmpi-4.1.5
./configure --prefix=/usr/local/mpi
make -j$(nproc)
make install