Versionen im Vergleich

Schlüssel

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

...

The log of the solver is written to: c2.msg

Single Node Processing

Abaqus 2016 and 2017 do not run on more than one node
Warnung
Warnung

The small number of elements in this example does not allow to use all cores of two nodes (2x96). Typically, if there is sufficient memory per core, we recommend to use all physical cores. Such as, in case of standard96: #SBATCH --ntasks-per-node=96 Please refer to, to see the number of cores on your machine (Lise, Emmy) and selected partition.

Single Node Processing

Codeblock
languagebash
titleThis is an example for an Abaqus 2016 single-node job with 96 tasks.
#!/bin/bash
#SBATCH -t 00:10:00
#SBATCH --nodes=1  ## 2016 and 2017 do not run on more than one node
#SBATCH --ntasks-per-node=96
#SBATCH -p standard96:test
#SBATCH --job-name=abaqus.c2

module load abaqus/2016

# host list:
echo "SLURM_NODELIST:  $SLURM_NODELIST"
create_abaqus_hostlist_for_slurm
# This command will create the file abaqus_v6.env for you.
# If abaqus_v6.env exists in the case folder, it will append the line with the hostlist.

### ABAQUS parallel execution
abq2016 analysis job=c2 cpus=${SLURM_NTASKS} standard_parallel=all mp_mode=mpi interactive double

echo '#################### ABAQUS finished ############'

...