Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
CallumWalley committed Sep 19, 2023
1 parent 17b4260 commit 65ec4d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _episodes/05-scheduler.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ We can see many details about our job, most importantly is it's _STATE_, the mos
- `PENDING`: The job is waiting in the queue, likely waiting for resources to free up or higher prioroty jobs to run.
because other jobs have priority.
- `RUNNING`: The job has been sent to a compute node and it is processing our commands.
- `COMPLETED`: Your commands completed succesfully as far as Slurm can tell (e.g. exit 0).
- `COMPLETED`: Your commands completed successfully as far as Slurm can tell (e.g. exit 0).
- `FAILED`: (e.g. exit not 0).
- `CANCELLED`:
- `TIMEOUT`: Your job has running for longer than your `--time` and was killed.
Expand Down
2 changes: 1 addition & 1 deletion _episodes/07-resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Below is a table of common resources and issues you may face if you do not reque

## Measuring Resource Usage of a Finished Job

Since we have already run a job (succesful or otherwise), this is the best source of info we currently have.
Since we have already run a job (successful or otherwise), this is the best source of info we currently have.
If we check the status of our finished job using the `sacct` command we learned earlier.

```
Expand Down

0 comments on commit 65ec4d7

Please sign in to comment.