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