Skip to content

Commit a4a33a5

Browse files
authored
Decrease number of iterations in repeated reduce (#121)
omp: decrease number of iterations in repeated reduce
1 parent e971fc3 commit a4a33a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

func/omp/repeated_reduce.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ bool doReduce()
7878
int main(int argc, char* argv[])
7979
{
8080
// Run reduce in a loop and check each iteration is correct
81-
int nLoops = 1000;
81+
int nLoops = 10;
8282
for (int i = 0; i < nLoops; i++) {
8383
bool success = doReduce();
8484
if (!success) {

0 commit comments

Comments
 (0)