Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

Inhalt
typeflat

Description

Quantum ESPRESSO (QE) is

Auszug

an  an integrated suite of codes for electronic structure calculations and materials modeling at the nanoscale, based on DFT, plane waves, and pseudopotentials.

...

QE is a hybrid MPI/OpenMP parallel application. It is recommended to use mpirun as the job starter for QE at HLRN. An MPI module providing the mpirun command needs to be loaded ahead of the QE module.

QE versionQE modulefileQE requirements
6.4.1qe/6.4.1impi/*   (any version)

Job Script Examples

  1. For Intel Cascade Lake compute nodes – plain MPI case (no OpenMP threading) of a QE job using a total of 1152 CPU cores distributed over 12 nodes, 96 tasks each. Here 3 pools (nk=3) are created for k-point parallelization (384 tasks per k-point), 3D-FFT is performed using 8 task groups (48 tasks each, nt=8).

    Codeblock
    linenumberstrue
    #!/bin/bash
    #SBATCH -t 12:00:00
    #SBATCH -p standard96
    #SBATCH -N 12
    #SBATCH --tasks-per-node 96
     
    module load impi/2018.5
    module load qe/6.4.1
    
    export SLURM_CPU_BIND=none
    export OMP_NUM_THREADS=1
    
    mpirun pw.x -nk 3 -nt 8 -i inputfile > outputfile


...