Changes between Version 27 and Version 28 of cypress/using
- Timestamp:
- 08/19/15 11:50:33 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/using
v27 v28 63 63 With our SLURM script complete, we’re ready to run our program on the cluster. To submit our script to SLURM, we invoke the '''sbatch''' command. Suppose we saved our script in the file helloworld.srun (the extension is not important). Then our submission would look like: 64 64 65 {{{#!comment 65 66 [[Image(sbatch.png, 50%, center)]] 67 }}} 68 69 {{{ 70 [tulaneID@cypress1 ~]$ sbatch helloworld.srun 71 Submitted batch job 6041 72 [tulaneID@cypress1 ~]$ 73 }}} 66 74 67 75 Our job was successfully submitted and was assigned the job number 6041. We can check the output of our job by examining the contents of our output and error files. Referring back to the helloworld.srun SLURM script, notice the lines … … 74 82 These specify files in which to store the output written to standard out and standard error, respectively. If our code ran without issue, then the Hi.err file should be empty and the Hi.out file should contain our greeting. 75 83 84 {{{#!comment 76 85 [[Image(Hi_output.png, 50%, center)]] 86 }}} 87 {{{ 88 [tulaneID@cypress1 ~]$ cat Hi.err 89 [tulaneID@cypress1 ~]$ cat Hi.out 90 Hello World 91 [tulaneID@cypress1 ~]$ 92 }}} 77 93 78 94 There are two more commands we should familiarize ourselves with before we begin. The first is the “squeue” command. This shows us the list of jobs that have been submitted to SLURM that are either currently running or are in the queue waiting to run. The last is the “scancel” command. This allows us to terminate a job that is currently in the queue. To see these commands in action, let's simulate a one hour job by using the sleep command at the end of a new submission script.