# Generic NQS job script pgmt.job including microsecond wall timer gettimeofday #QSUB -s /bin/csh #QSUB -eo -o pgm.output #QSUB -lT 90 #QSUB -lM 6MW #QSUB -l mpp_t=60 #QSUB -l mpp_p=4 #QSUB -q mpp # # set echo, move to the protected temporary directory, # and turn on job accounting. set echo cd $TMP ja # # We want to run on 4 Cray T3D PE's: 0, 1, 2, and 3. # setenv MPP_NPES 4 # # This job requires the program pgm.f # Here we copy it from HOME space. You can also # retrieve files from other locations. # cp ${HOME}/pgm.f . cp ${HOME}/timeofday.c . # # Compile the program. # Use the mpp combined compiler and loader CF77 for the T3D code. # setenv TARGET cray-t3d /mpp/bin/cc -c timeofday.c /mpp/bin/cf77 -o run timeofday.o pgm.f unsetenv TARGET run # This job script file creates and runs executable called run. # Job accounting # ja -cst