lsopt
1. How to Access the Software
module load TECHNICS module load lsopt |
2. Example Batch Scripts
Serial Job
#!/usr/local_rwth/bin/zsh ### Job name #SBATCH --job-name=LSOPT_SERIAL ### File / path which STDOUT will be written to, %J is the job ID #SBATCH --output=LSOPT_SERIAL.%J ### Request the time you need for execution. The full format is D-HH:MM:SS ### You must at least specify minutes or days and hours and may add or ### leave out any other parameters #SBATCH --time=80 ### Request the memory you need for your job. You can specify this ### in either MB (1024M) or GB (4G). #SBATCH --mem-per-cpu=1850M ### Load required modules module load TECHNICS module load lsopt lsdyna ### Go to inputfile location, if not in submit script directory #cd <location> ### start non-interactive batch job lsopt inputfile.lsopt |
Shared Memory Parallel Job
#!/usr/local_rwth/bin/zsh ### Job name #SBATCH --job-name=LSOPT_OMP ### File / path which STDOUT will be written to, %J is the job ID #SBATCH --output=LSOPT_OMP.%J ### Request the time you need for execution. The full format is D-HH:MM:SS ### You must at least specify minutes or days and hours and may add or ### leave out any other parameters #SBATCH --time=80 ### Request the memory you need for your job. You can specify this ### in either MB (1024M) or GB (4G). #SBATCH --mem-per-cpu=1850M ### Request the amount of compute slots you want to use #SBATCH --cpus-per-task=12 ### Load required modules module load TECHNICS module load lsdyna lsopt ### Go to inputfile location, if not in submit script directory #cd <location> ### start non-interactive batch job lsopt inputfile.lsopt ncpus=$OMP_NUM_THREADS |