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.
1 parent f4cc9a3 commit 996bb1aCopy full SHA for 996bb1a
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."
@@ -406,7 +406,7 @@ def vtr_command_main(arg_list, prog=None):
406
temp_dir = Path(args.temp_dir)
407
# Specify how command should be run
408
command_runner = vtr.CommandRunner(
409
- track_memory=True,
+ track_memory=args.track_memory_usage,
410
max_memory_mb=args.limit_memory_usage,
411
timeout_sec=args.timeout,
412
verbose=args.verbose,
0 commit comments