Skip to content

Commit 19c81f7

Browse files
authored
Update csub.py
1 parent a87ca44 commit 19c81f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def build_parser() -> argparse.ArgumentParser:
5656
parser.add_argument("--secret-name", type=str, help="Override RUNAI_SECRET_NAME from the env file")
5757
parser.add_argument("--pvc", type=str, help="Override SCRATCH_PVC from the env file")
5858
parser.add_argument("--backofflimit", type=int, default=0, help="Retries before marking a training job as failed")
59-
parser.add_argument("--node-type", nargs="*", type=str, choices=["", "v100", "h100", "h200", "default", "a100-40g"], default="", help="GPU node pool(s) to target. Multiple values are accepted; the job will be scheduled on the first pool where it fits")
59+
parser.add_argument("--node-type", nargs="*", type=str, choices=["v100", "h100", "h200", "default", "a100-40g"], default=[], help="GPU node pool(s) to target. Multiple values are accepted; the job will be scheduled on the first pool where it fits")
6060
parser.add_argument("--host-ipc", action="store_true", help="Share the host IPC namespace")
6161
parser.add_argument("--large-shm", action="store_true", help="Request a larger /dev/shm")
6262
return parser

0 commit comments

Comments
 (0)