Example of script file
#!/bin/bash
#PBS -l select=2:ncpus=40:mpiprocs=40
#PBS -l place=scatter
#PBS -N Test
#PBS -q cf160
#PBS -P ProjectName
#PBS -j oe
module purge
module load ProgramModuleFile
cd $PBS_O_WORKDIR
NPROCS=$(wc -l < $PBS_NODEFILE)
mpirun -n $NPROCS -hostfile $PBS_NODEFILE ProgramName job.inp > job.out
For more detail please refer to Tutorial of Taiwania 1
Example of script file
#!/bin/bash
#SBATCH --account=XXXXXXXXX
#SBATCH -p gp4d # partition (queue)
#SBATCH -N 1 # number of nodes
#SBATCH -n 8 # number of cores
#SBATCH --gres=gpu:2
#SBATCH -o test.out # STDOUT
#SBATCH -e test.err # STDERR
module purge
module load nvidia/cuda/10.0.130
blender -b bmw27_gpu.blend -P set1.py
For more detail please refer to Tutorial of Taiwania 2 (TWCC)
For the utilization of singularity/docker please refer to HPC Tutorial of NVIDIA GPU CLOUD (NGC)