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
parser.add_argument("--secret-name", type=str, help="Override RUNAI_SECRET_NAME from the env file")
57
57
parser.add_argument("--pvc", type=str, help="Override SCRATCH_PVC from the env file")
58
58
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")
60
60
parser.add_argument("--host-ipc", action="store_true", help="Share the host IPC namespace")
61
61
parser.add_argument("--large-shm", action="store_true", help="Request a larger /dev/shm")
0 commit comments