"docs/source/vscode:/vscode.git/clone" did not exist on "404422f42ed9c59ee816dacd9b54196a59ae65b2"
Commit 676bb13d authored by Antoine Kaufmann's avatar Antoine Kaufmann
Browse files

experiments: add dist flags to dist group for clearer help

parent 05de0b1d
......@@ -87,10 +87,10 @@ g_slurm.add_argument('--slurmdir', metavar='DIR', type=str,
default='./slurm/', help='Slurm communication directory')
g_dist = parser.add_argument_group('Distributed Runtime')
g_par.add_argument('--dist', dest='runtime', action='store_const',
g_dist.add_argument('--dist', dest='runtime', action='store_const',
const='dist', default='sequential',
help='Use sequential distributed runtime instead of local')
g_par.add_argument('--auto-dist', action='store_const', const=True,
g_dist.add_argument('--auto-dist', action='store_const', const=True,
default=False,
help='Automatically distribute non-distributed experiments')
args = parser.parse_args()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment