Skip to content

Commit

Permalink
Silence useless "Insufficient parallelism" autoscheduler warning (hal…
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-johnson authored and ardier committed Mar 3, 2024
1 parent fa9de6d commit 52a345e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/autoschedulers/mullapudi2016/AutoSchedule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2804,9 +2804,12 @@ void Partitioner::generate_group_cpu_schedule(
}
}

if (can_prove(def_par < arch_params.parallelism)) {
user_warning << "Insufficient parallelism for " << f_handle.name() << "\n";
}
// Silenced: the user can't really do anything about it,
// and it triggers on things like tiny lookup tables
//
// if (can_prove(def_par < arch_params.parallelism)) {
// user_warning << "Insufficient parallelism for " << f_handle.name() << "\n";
// }

// Find the level at which group members will be computed.
int tile_inner_index = dims.size() - outer_dims.size() - 1;
Expand Down

0 comments on commit 52a345e

Please sign in to comment.