Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove max size assert from Anderson2021 #8253

Merged
merged 1 commit into from
Jun 2, 2024
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: 0 additions & 6 deletions src/autoschedulers/anderson2021/LoopNest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1565,12 +1565,6 @@ int64_t LoopNest::points_accessed_per_thread(
int64_t num_points = 1;
for (int i = 0; i < producer->dimensions; i++) {
num_points *= bounds->region_required(i).extent();

// If the min is >= 100000, there's a good chance that the bounds are
// uninitialized, indicating a bug
internal_assert(std::abs(bounds->region_required(i).min()) < 100000)
<< "region_required min = " << std::abs(bounds->region_required(i).min())
<< "; region_required max = " << std::abs(bounds->region_required(i).max());
if (verbose) {
aslog(2) << "region_required(" << i << ") = " << bounds->region_required(i).extent() << "; ";
}
Expand Down
Loading