Skip to content
Snippets Groups Projects
bcumming's avatar
Benjamin Cumming authored
Added MPI support to the miniapp
- added ring model and all-to-all model
- started refactoring general model setup steps into a model class in
  miniapp
- optional -DWITH_MPI to turn on MPI support
520d27a1

cell_algorithms

# clone repo
git clone git@github.com:eth-cscs/cell_algorithms.git
cd cell_algorithms/

# setup sub modules
git submodule init
git submodule update

# setup environment
module load gcc 
module load cmake
export CC=`which gcc`
export CXX=`which g++`

# build main project (out-of-tree)
mkdir build
cd build
cmake ..
make -j

# test
cd tests
./test.exe