Skip to content

Commit c38baab

Browse files
committed
fix br instructions abt deleting jobs + README breaks
1 parent d5989af commit c38baab

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
python-batchtools
1+
# python-batchtools
22

33
## Overview
44

@@ -55,7 +55,7 @@ The br command is how to submit batchjobs. It submits code intended to run on GP
5555

5656
Here's how to use thed br command:
5757

58-
First write a CUDA program and compile it :D
58+
First write a CUDA program and compile it :D <br>
5959
Then to submit your CUDA program to the GPU node:
6060

6161
``` sh
@@ -79,9 +79,9 @@ Run without waiting for logs (for longer runs, similar to a more traditional bat
7979
``` sh
8080
batchtools br --no-wait "./cuda_program"
8181
```
82-
***WARNING***
82+
***WARNING***<br>
8383
If you run br with the --no-wait flag, it will not be cleaned up for you. You must delete it on your own by running `batchtools bd <job-name>` or `oc delete job <job-name>`
84-
But don't worry, running with --no-wait will give you a reminder to delete your jobs!
84+
But don't worry, running with --no-wait will give you a reminder to delete your jobs!<br>
8585

8686
And if you need help or want to see more flas:
8787

batchtools/br.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def run(args: argparse.Namespace):
230230
print(
231231
f"User specified not to wait, or not to delete, so {job_name} must be deleted by user.\n"
232232
f"You can do this by running:\n"
233-
f" bd {job_name} OR\n"
233+
f" batchtools bd {job_name} OR\n"
234234
f" oc delete job {job_name}"
235235
)
236236

0 commit comments

Comments
 (0)