Files
spack-psi/.gitea/workflows/sbatch/q-e_cpu.sbatch
germann_e 0600d4c2c4
Some checks failed
QE-GPU Merlin7 Scheduler / checkout (push) Successful in 34m14s
QE-GH Merlin7 Scheduler / checkout (push) Successful in 1h32m23s
QE-CPU Merlin7 Scheduler / checkout (push) Successful in 5m2s
OPAL-X-GPU Merlin7 Scheduler / checkout (push) Failing after 3h13m18s
IPPL GPU Merlin7 Scheduler / checkout (push) Has started running
OPAL-X GH Merlin7 Scheduler / checkout (push) Successful in 14m56s
IPPL GH Merlin7 Scheduler / checkout (push) Has started running
FIX: remain tmerlin7
2025-08-06 09:13:29 +02:00

26 lines
803 B
Bash
Executable File

#!/bin/bash
#SBATCH --job-name="qe-scheduled-CPU"
#SBATCH --output=_scheduler-stdout.txt
#SBATCH --error=_scheduler-stderr.txt
#SBATCH --partition=daily
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=16
#SBATCH --time=01:00:00
#SBATCH --cluster=merlin7
#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 use Spack unstable
module load gcc/12.3 openmpi/main-syah fftw/3.3.10.6-qbxu-omp hdf5/1.14.5-t46c openblas/0.3.29-omp cmake/3.31.6-oe7u
git clone https://gitlab.com/QEF/q-e.git
cd q-e
mkdir build
cd build
cmake -DQE_ENABLE_MPI:BOOL=ON -DQE_ENABLE_OPENMP:BOOL=ON -DCMAKE_C_COMPILER:STRING=mpicc -DCMAKE_Fortran_COMPILER:STRING=mpif90 -DQE_ENABLE_HDF5:BOOL=ON ..
make -j 16