From 11a2ddac3d8d2e5b59afff18cf817e301db66f6e Mon Sep 17 00:00:00 2001 From: Han Shen Date: Thu, 25 Jul 2024 11:57:19 -0700 Subject: [PATCH] Make --propeller_chain_split defaults to true. In our internal version, this defautls to true, and this option is always recommended. --- create_llvm_prof.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_llvm_prof.cc b/create_llvm_prof.cc index 4c75f8e..def3011 100644 --- a/create_llvm_prof.cc +++ b/create_llvm_prof.cc @@ -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,