10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-07 20:05:56 +02:00
quantum_package/install/scripts/install_gpi2.sh

16 lines
248 B
Bash
Raw Normal View History

2017-07-21 03:34:07 +02:00
#!/bin/bash -x
TARGET=gpi2
#GPI_OPTIONS=--with-infiniband
GPI_OPTIONS=--with-ethernet
function _install()
{
2017-08-15 17:56:23 +02:00
cd _build/gpi2
2017-07-21 03:34:07 +02:00
./install.sh -p $QP_ROOT $GPI_OPTIONS
2017-08-15 17:56:23 +02:00
cp src/GASPI.f90 $QP_ROOT/plugins/GPI2/
2017-07-21 03:34:07 +02:00
return 0
}
source scripts/build.sh