Skip to content

Commit

Permalink
Turn on -debug to diagnose failures in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
abadams committed Dec 4, 2023
1 parent b6bad30 commit 3c99931
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/correctness/boundary_conditions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,10 @@ int main(int argc, char **argv) {
vector_width_max = 8;
}

if (target.has_feature(Target::CUDA)) {
target.set_feature(Target::Debug);
}

std::vector<Task> tasks;
for (int vector_width = 1; vector_width <= vector_width_max; vector_width *= 2) {
add_all(vector_width, Partition::Auto, target, tasks);
Expand Down

0 comments on commit 3c99931

Please sign in to comment.