You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/running/hyperqueue.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,7 @@ echo "Everything done!"
80
80
81
81
To submit this job, use `sbatch`:
82
82
```bash
83
-
$ sbatch job.sh
83
+
sbatch job.sh
84
84
```
85
85
86
86
[](){#ref-hyperqueue-example-script-advanced}
@@ -153,13 +153,13 @@ echo "Everything done!"
153
153
154
154
To submit a new job, use `sbatch`:
155
155
```bash
156
-
$ sbatch job.sh
156
+
sbatch job.sh
157
157
```
158
158
159
159
If the job fails for any reason, you can resubmit it and tell HyperQueue to pick up where it left off by passing the original Slurm job ID as an argument:
160
160
161
161
```bash
162
-
$ sbatch job.sh <job-id>
162
+
sbatch job.sh <job-id>
163
163
```
164
164
165
165
The script will detect the argument, load the journal file from the previous run, and only execute the tasks that haven't been completed.
0 commit comments