Skip to content

Commit

Permalink
enable cinn relative flags (PaddlePaddle#65734)
Browse files Browse the repository at this point in the history
  • Loading branch information
phlrain authored Jul 8, 2024
1 parent bce5b68 commit 8205626
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions paddle/cinn/runtime/flags.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ PD_DEFINE_bool(general_fusion_merge_pass,
"Whether to use general fusion_merge pass.");

PD_DEFINE_bool(cinn_new_group_scheduler,
BoolFromEnv("FLAGS_cinn_new_group_scheduler", false),
BoolFromEnv("FLAGS_cinn_new_group_scheduler", true),
"Whether to use new group scheduler.");

PD_DEFINE_bool(cinn_bucket_compile,
BoolFromEnv("FLAGS_cinn_bucket_compile", false),
BoolFromEnv("FLAGS_cinn_bucket_compile", true),
"Whether to enable bucket compile for dynamic shape.");

PD_DEFINE_bool(group_schedule_tiling_first,
BoolFromEnv("FLAGS_group_schedule_tiling_first", false),
BoolFromEnv("FLAGS_group_schedule_tiling_first", true),
"Whether to enable new group scheduler tiling first strategy.");

PD_DEFINE_bool(cinn_use_common_subexpression_elimination,
Expand Down

0 comments on commit 8205626

Please sign in to comment.