diff --git a/systems/Linux-cuda/config-command b/systems/Linux-cuda/config-command new file mode 100644 index 00000000..ebdb5356 --- /dev/null +++ b/systems/Linux-cuda/config-command @@ -0,0 +1,16 @@ +../../configure \ + --enable-comms=mpi \ + --enable-simd=GPU \ + --enable-gen-simd-width=64 \ + --enable-shm=nvlink \ + --with-lime=$CLIME \ + --with-gmp=$GMP \ + --with-mpfr=$MPFR \ + --enable-accelerator=cuda \ + --disable-gparity \ + --disable-fermion-reps \ + --disable-unified \ + CXX=nvcc \ + LDFLAGS="-cudart shared -L$NVIDIALIB -lcublas" \ + CXXFLAGS="-ccbin mpicxx -gencode arch=compute_80,code=sm_80 -std=c++17 -cudart shared" + diff --git a/systems/Linux-cuda/sourceme.sh b/systems/Linux-cuda/sourceme.sh new file mode 100644 index 00000000..fbec47a4 --- /dev/null +++ b/systems/Linux-cuda/sourceme.sh @@ -0,0 +1,12 @@ +. /home/paboyle/spack/share/spack/setup-env.sh +spack load cuda@12.0.0 +spack load c-lime +spack load gmp +spack load mpfr +spack load openmpi +export CUDA=`spack find --paths cuda@11.8.0 | grep cuda | cut -c 14-` +export CLIME=`spack find --paths c-lime | grep c-lime| cut -c 15-` +export GMP=`spack find --paths gmp | grep gmp | cut -c 12-` +export MPFR=`spack find --paths mpfr | grep mpfr | cut -c 13-` +export NVIDIALIB=$CUDA/targets/x86_64-linux/lib/ +export LD_LIBRARY_PATH=$NVIDIALIB:$LD_LIBRARY_PATH