Skip to content

Commit

Permalink
fix: disabled statistics collection by default
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasrothenberger committed Oct 23, 2024
1 parent 5fb7faf commit 88d0894
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions discopop_explorer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def parse_args() -> ExplorerArguments:
help="Path to llvm-cxxfilt executable. Required for task pattern detector if non-standard path should be used.",
)
experimental_parser.add_argument(
"--disable-statistics", action="store_false", help="Disable the calculation and storing of statistics for code and generated suggestions."
"--enable-statistics", action="store_true", help="Disable the calculation and storing of statistics for code and generated suggestions."
)
# fmt: on

Expand Down Expand Up @@ -159,7 +159,7 @@ def parse_args() -> ExplorerArguments:
log_level=arguments.log.upper(),
write_log=arguments.write_log,
load_existing_doall_and_reduction_patterns=arguments.load_existing_doall_and_reduction_patterns,
collect_statistics=arguments.disable_statistics,
collect_statistics=arguments.enable_statistics,
)


Expand Down

0 comments on commit 88d0894

Please sign in to comment.