Skip to content

Commit

Permalink
Decrease number of iterations in repeated reduce (#121)
Browse files Browse the repository at this point in the history
omp: decrease number of iterations in repeated reduce
  • Loading branch information
csegarragonz authored Sep 5, 2023
1 parent e971fc3 commit a4a33a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion func/omp/repeated_reduce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ bool doReduce()
int main(int argc, char* argv[])
{
// Run reduce in a loop and check each iteration is correct
int nLoops = 1000;
int nLoops = 10;
for (int i = 0; i < nLoops; i++) {
bool success = doReduce();
if (!success) {
Expand Down

0 comments on commit a4a33a5

Please sign in to comment.