We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17b7366 commit 9f6ec17Copy full SHA for 9f6ec17
src/autoschedulers/mullapudi2016/AutoSchedule.cpp
@@ -2804,9 +2804,12 @@ void Partitioner::generate_group_cpu_schedule(
2804
}
2805
2806
2807
- if (can_prove(def_par < arch_params.parallelism)) {
2808
- user_warning << "Insufficient parallelism for " << f_handle.name() << "\n";
2809
- }
+ // Silenced: the user can't really do anything about it,
+ // and it triggers on things like tiny lookup tables
+ //
2810
+ // if (can_prove(def_par < arch_params.parallelism)) {
2811
+ // user_warning << "Insufficient parallelism for " << f_handle.name() << "\n";
2812
+ // }
2813
2814
// Find the level at which group members will be computed.
2815
int tile_inner_index = dims.size() - outer_dims.size() - 1;
0 commit comments