#BSUB -L /bin/bash # uses the bash login shell for the job's execution environment. #BSUB -J circlator # job name #BSUB -n 20 # assigns 20 cores for execution #BSUB -R "span[ptile=20]" # assigns 20 cores per node #BSUB -R "rusage[mem=12300]" # reserves 12300MB memory per core #BSUB -M 12300 # sets to 12300MB per process enforceable memory limit. (M * n) #BSUB -R "select[mem256gb]" # select 256GB memory node #BSUB -W 48:00 # sets to 48 hour the job's runtime wall-clock limit. #BSUB -o stdout.%J # directs the job's standard output to stdout.jobid #BSUB -e stderr.%J # directs the job's standard error to stderr.jobid module load Circlator/1.5.5-intel-2017A-Python-3.5.2 <