General
There is a VSC Wiki with basic information about the hardware, storage, and submission scripts:
https://wiki.vsc.ac.at/doku.php
Also some information on how to list and load available software can be found there.
VSC4
To load Intel 2021 compiler use:
module load compiler/latest
VSC5
w2dynamics
can be loaded via:
module load --auto w2dynamics/master-gcc-11.2.0-mqjex7z
There is an issue with UCX on the login nodes producing an error UCX WARN UCP version is incompatible, required: 1.12, actual: 1.10
, which should be resolved in the near future. Note that computation nodes suppose to have the correct version (source: Jan Zabloudil).
As for now, if you need to run it on the login node use:
module load ucx/1.12.1-gcc-11.2.0-udqocr2
An example w2dynamics
submission script can look as follows (please remember to modify the email address to yours and put the correct name of the parameters file in place of Parameters.in
as well as modify the number of nodes as needed – for two-particle calculation -N 10
or more is probably needed)
#!/bin/bash #SBATCH -N 1 #SBATCH -J square_dmft #SBATCH --ntasks-per-node=128 #SBATCH --qos=zen3_0512 #SBATCH --partition=zen3_0512 ##SBATCH --time=24:00:00 #SBATCH --mail-type=ALL # first have to state the type of event to occur #SBATCH --mail-user=<YOUR.NAME@tuwien.ac.at> # and then your email address module purge module load --auto w2dynamics/master-gcc-11.2.0-mqjex7z mpirun -np $SLURM_NTASKS DMFT.py Parameters.in > ctqmc-$SLURM_JOB_ID.log 2>&1
Table of contents