first commit

This commit is contained in:
Carl Pearson
2020-03-24 08:18:43 -05:00
commit 9849273411
13 changed files with 18165 additions and 0 deletions

19
ci/build.sh Executable file
View File

@@ -0,0 +1,19 @@
set -x -e
source ci/env.sh
which g++
which nvcc
which cmake
g++ --version
nvcc --version
cmake --version
mkdir build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
-DCMAKE_PREFIX_PATH=$OPENMPI_PATH \
-DMPI_HOME=/usr/lib/x86_64-linux-gnu/openmpi/
make VERBOSE=1