Skip to content

Commit

Permalink
Make --propeller_chain_split defaults to true. (#221)
Browse files Browse the repository at this point in the history
In our internal version, this defautls to true, and this option is always recommended.
  • Loading branch information
shenhanc78 authored Jul 25, 2024
1 parent caad26b commit 51b3474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion create_llvm_prof.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ ABSL_FLAG(std::string, propeller_cfg_dump_dir, "",
ABSL_FLAG(uint32_t, propeller_chain_split_threshold, 0,
"Maximum chain length (in number of nodes) for which propeller tries "
"splitting and remerging at every splitting position.");
ABSL_FLAG(bool, propeller_chain_split, false,
ABSL_FLAG(bool, propeller_chain_split, true,
"Whether propeller is allowed to split chains before merging with "
"other chains.");
ABSL_FLAG(bool, propeller_verbose_cluster_output, false,
Expand Down

0 comments on commit 51b3474

Please sign in to comment.