To submit acuSolve job use
module load radioss/12
or
module load /share/apps/EC_STRUCT_SIM/modulefiles/radioss/rad_12.0.1
Then put the following slurm submission script in your working folder with all input files etc:
#!/bin/bash
## acuRun slurm queue submission script
## ------------- put by Alex Pedcenko -------------
#
#SBATCH --time=00:10:00
## number of nodes needed (each node has max 8 cpu-cores)
#SBATCH --nodes=2
#SBATCH --partition=all
#
## Nr of cpu-cores per node to reserve:
#
#SBATCH --ntasks-per-node=8
#SBATCH --job-name="acu_job"
WORKDIR=${SLURM_SUBMIT_DIR}
#
## -------- Lets generate comma-separated hosts list:-----------
HOSTS=`srun /bin/hostname|sort`
hosts=`echo ${HOSTS} | sed 's/ /,/g'`
#
## ------------ Nr of CPU's in total we reserved ---------
NPROCS=$(( $SLURM_JOB_NUM_NODES * $SLURM_NTASKS_PER_NODE ))
ap="/share/apps/EC_STRUCT_SIM/HYPERWORKS/v12.0.1/altair/acusolve/linux64/bin"
export PATH=${ap}:${PATH}
#
##------your executable to launch on the nodes---------
EXECUTABLE=acuRun
#
##some arguments if needed for executable
ARGS="-pdir $SLURM_SUBMIT_DIR -mp mpi -np $NPROCS -hosts $hosts"
${EXECUTABLE} ${ARGS}
submit with usual:
sbatch acuRun.slurm
——
Alex Pedcenko
0 Comments.