Changes between Version 11 and Version 12 of cypress/using
- Timestamp:
- 04/13/15 11:11:35 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/using
v11 v12 60 60 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: 61 61 62 [[Image(sbatch.png, 50% )]]62 [[Image(sbatch.png, 50%, center)]] 63 63 64 64 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 … … 71 71 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. 72 72 73 [[Image(Hi_output.png, 50% )]]73 [[Image(Hi_output.png, 50%, center)]] 74 74 75 75 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. So that we can see these commands in action, let’s extend our jobs run time by adding a sleep command to the end of our SLURM script. 76 76 77 [[Image(squeue_scancel.png, 5 0%)]]77 [[Image(squeue_scancel.png, 55%, center)]] 78 78 79 79 Congratulations, you are now ready to start running jobs on Cypress.