#!/bin/tcsh
# first line specifies shell
#BSUB -J betwcentp289 #name the job "jobname"
#BSUB -o out.o%J #output-> out.o<jobID>
#BSUB -e err.o%J #error -> error.o<jobID>
#BSUB -n 289 -W 2:00 #1 CPU cores and 0hr+15min
#BSUB -q normal #Use development queue.
#BSUB -R 'span[ptile=4]' # 4 MPI task per node
set echo #Echo all commands.
cd $LS_SUBCWD #cd to directory of submission
ibrun ./betwcent $WORK/SCALE24BTW-TRANSBOOL 12 256 # 16 processors on the row, each has batch=512/8=32; 2^12 = 4096 starting vertices overall
|