Skip to content

Instantly share code, notes, and snippets.

@brockpalen
Last active August 29, 2015 13:57
Show Gist options
  • Save brockpalen/9608937 to your computer and use it in GitHub Desktop.
Save brockpalen/9608937 to your computer and use it in GitHub Desktop.
hfss/2014.0.0 shared memory parallel example PBS script
#PBS -N jobname
#PBS -A account_flux
#PBS -l qos=flux
#PBS -l walltime=1:00:00,nodes=1:ppn=12,pmem=3800mb
#PBS -q flux
#PBS -V
#brockp@umich.edu
#3/2014
# The above requests 1 node with 12 core and 3800mb of ram for each core
# It submits to account_flux a standard Flux allocation, HFSS memory intensive runs
# may benefit from FluxM, the larger memory Flux resource
# Before submitting this script run:
# module load hfss/2014.0.0
# change to input directory
cd $PBS_O_WORKDIR
# there are many other options for hfss, many are cryptic;
# contact hpc-support@umich.edu for help if behavior is unexpected
# ==>update NumCoresPerDistributedTask=N to the value of ppn=N
hfss -ng -batchsolve -batchoptions "HFSS/NumCoresPerDistributedTask=12 HFSS/UseLegacyMultiprocessingLicense=1" Test1.hfss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment