All checks were successful
QE-CPU Merlin7 Scheduler / checkout (push) Successful in 4m2s
QE-GPU Merlin7 Scheduler / checkout (push) Successful in 6m50s
QE-GH Merlin7 Scheduler / checkout (push) Successful in 5m39s
OPAL-X-GPU Merlin7 Scheduler / checkout (push) Successful in 10m23s
OPAL-X GH Merlin7 Scheduler / checkout (push) Successful in 7m43s
IPPL GPU Merlin7 Scheduler / checkout (push) Successful in 4m30s
IPPL GH Merlin7 Scheduler / checkout (push) Successful in 3m26s
32 lines
1004 B
Bash
Executable File
32 lines
1004 B
Bash
Executable File
#!/bin/bash
|
|
#SBATCH --job-name="ippl-scheduled-GH-GPU"
|
|
#SBATCH --output=_scheduler-stdout.txt
|
|
#SBATCH --error=_scheduler-stderr.txt
|
|
#SBATCH --partition=gh-daily
|
|
#SBATCH --nodes=1
|
|
#SBATCH --ntasks-per-node=16
|
|
#SBATCH --time=01:00:00
|
|
#SBATCH --cluster=tgmerlin7
|
|
#SBATCH --gpus=1
|
|
#SBATCH --wait
|
|
|
|
export SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
|
|
export REQUESTS_CA_BUNDLE=/etc/ssl/ca-bundle.pem
|
|
PMODULES_VERSION='2.0.0.2'
|
|
source /opt/psi/config/profile.bash
|
|
|
|
module purge
|
|
module use Spack unstable
|
|
module load gcc/13.2.0 openmpi/5.0.3-3lmi-GH200-gpu
|
|
module load boost/1.82.0-3ns6 fftw/3.3.10 gnutls/3.8.3 googletest/1.14.0 gsl/2.7.1 h5hut/2.0.0rc7 openblas/0.3.26 cmake/3.31.4-u2nm
|
|
|
|
git clone https://github.com/IPPL-framework/ippl.git
|
|
cd ippl
|
|
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DKokkos_ARCH_HOPPER90=ON -DCMAKE_CXX_STANDARD=20 -DIPPL_ENABLE_FFT=ON -DIPPL_ENABLE_TESTS=ON -DUSE_ALTERNATIVE_VARIANT=ON -DIPPL_ENABLE_SOLVERS=ON -DIPPL_ENABLE_ALPINE=True -DIPPL_PLATFORMS=cuda ..
|
|
make -j 16
|
|
|