meta data for this page
  •  
Translations of this page:

Abaqus

Running on 5 cores within 1 node can be specified with the “sbatch” script:

#!/bin/bash

#SBATCH --job-name=Abaqus_test
#SBATCH --output=slurm_out.txt
#SBATCH -N 1
#SBATCH -n 5

/var/DassaultSystemes/SIMULIA/Commands/abaqus job=PLATE_HOLE.inp cpus=$SLURM_NTASKS

If a program run ends with an error of type

<IBM Platform MPI>: : warning, dlopen of libhwloc.so failed (null)/lib/linux_amd64/libhwloc.so: cannot open shared object file: No such file or directory

add the following before the execution command of ABAQUS

unset SLURM_GTIDS

An explanation of the variable setting is on the documentation page for the sbatch command .