mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-04 05:03:54 +01:00
16 lines
245 B
Bash
16 lines
245 B
Bash
|
#!/bin/bash -x
|
||
|
|
||
|
TARGET=gpi2
|
||
|
#GPI_OPTIONS=--with-infiniband
|
||
|
GPI_OPTIONS=--with-ethernet
|
||
|
|
||
|
function _install()
|
||
|
{
|
||
|
cd gpi2
|
||
|
./install.sh -p $QP_ROOT $GPI_OPTIONS
|
||
|
cp src/GASPI.f90 $QP_ROOT/src/plugins/GPI2/
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
source scripts/build.sh
|