Difference between revisions of "Running jobs on Intrepid"

From Tau Wiki
Jump to: navigation, search
 
Line 10: Line 10:
  
 
This will give you a new prompt eventually where you can run mpirun directly:
 
This will give you a new prompt eventually where you can run mpirun directly:
  mpirun -env TAU_COMPENSATE=1 -n 1 ./simple
+
  mpirun -nofree -env TAU_COMPENSATE=1 -n 1 ./simple

Revision as of 23:49, 27 October 2009

To run jobs on Intrepid, you simply use cqsub:

qsub -A Performance -n 4 --proccount 16 -q prod-devel -t 10 --mode vn --env TAU_PROFILE_FORMAT=merged:TAU_VERBOSE=1:BG_MAXALIGNEXP=-1 ./ring

BG_MAXALIGNEXP=1 is needed for TAU_PROFILE_FORMAT=merged


To run interactively:

isub -q prod-devel -t 60 -n 16 -A Performance

This will give you a new prompt eventually where you can run mpirun directly:

mpirun -nofree -env TAU_COMPENSATE=1 -n 1 ./simple