Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions paddle/cinn/ir/group_schedule/config/group_tile_config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ BuildPureStaticShapeConfig(
ScheduleConfig::TileConfig tile_config{
/* warp_num = */ warp_num,
/* tree_reduce_num = */ 1,
/* spatial_inner_num = */ 1,
/* spatial_inner_num = */ 4,
/* reduce_method = */ NoneReduceMethod()};
return {{bucket_info, tile_config}};
} else if (base_info->reduce_numel <= 256) {
Expand Down Expand Up @@ -227,7 +227,7 @@ BuildStaticReduceConfig(
ScheduleConfig::TileConfig tile_config__1024_1M{
/* warp_num = */ 32,
/* tree_reduce_num = */ 1,
/* spatial_inner_num = */ 1,
/* spatial_inner_num = */ 4,
/* reduce_method = */ NoneReduceMethod()};
BucketInfo bucket_info__1M_INF{/* sp_lower_bound = */ 1024 * 1024,
/* sp_upper_bound = */ kMaxNumel,
Expand All @@ -236,7 +236,7 @@ BuildStaticReduceConfig(
ScheduleConfig::TileConfig tile_config__1M_INF{
/* warp_num = */ 32,
/* tree_reduce_num = */ 1,
/* spatial_inner_num = */ 16,
/* spatial_inner_num = */ 4,
/* reduce_method = */ NoneReduceMethod()};
return {{bucket_info__1_1023, tile_config__1_1023},
{bucket_info__1024_1M, tile_config__1024_1M},
Expand Down