Skip to content

Commit

Permalink
Fix RDom usage in anderson2021_test_apps_autoscheduler (Fixes #7729) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-johnson authored Aug 1, 2023
1 parent 3ced617 commit 831fd1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/autoschedulers/anderson2021/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ int main(int argc, char **argv) {
Func f("f"), output("output");
RDom r(0, 2000, 0, 2000);
f() = 5;
output() = sum(im, r) + f();
output() = sum(im(r.x, r.y)) + f();

Pipeline(output).apply_autoscheduler(target, params);
}
Expand Down

0 comments on commit 831fd1a

Please sign in to comment.