We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b12520f + 996bb1a commit e82ecbbCopy full SHA for e82ecbb
vtr_flow/scripts/run_vtr_flow.py
@@ -184,7 +184,7 @@ def vtr_command_argparser(prog=None):
184
185
house_keeping.add_argument(
186
"-track_memory_usage",
187
- default=False,
+ default=True,
188
action="store_true",
189
dest="track_memory_usage",
190
help="Track the memory usage for each stage."
@@ -448,7 +448,7 @@ def vtr_command_main(arg_list, prog=None):
448
temp_dir = Path(args.temp_dir)
449
# Specify how command should be run
450
command_runner = vtr.CommandRunner(
451
- track_memory=True,
+ track_memory=args.track_memory_usage,
452
max_memory_mb=args.limit_memory_usage,
453
timeout_sec=args.timeout,
454
verbose=args.verbose,
0 commit comments