Skip to content

Commit

Permalink
Changed number of iterations
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz committed Sep 25, 2024
1 parent d276efc commit 1301c03
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion group/group_inclusive_scan_upstream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class MicroBenchGroupInclusiveScanKernel;
/**
* Microbenchmark benchmarking group_reduce
*/
template <typename DataT, int Iterations = 10000>
template <typename DataT, int Iterations = 1000>
class MicroBenchGroupInclusiveScan {
protected:
BenchmarkArgs args;
Expand Down
2 changes: 1 addition & 1 deletion group/group_reduce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class MicroBenchGroupReduceKernel;
/**
* Microbenchmark benchmarking group_reduce/aaaax
*/
template <typename DataT, bool IsVector = false, int Iterations = 10000>
template <typename DataT, bool IsVector = false, int Iterations = 100000>
class MicroBenchGroupReduce {
protected:
BenchmarkArgs args;
Expand Down
2 changes: 1 addition & 1 deletion group/group_reduce_upstream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class MicroBenchGroupReduceKernel;
/**
* Microbenchmark benchmarking group_reduce/aaaax
*/
template <typename DataT, bool IsVector = false, int Iterations = 10000>
template <typename DataT, bool IsVector = false, int Iterations = 1000>
class MicroBenchGroupReduce {
protected:
BenchmarkArgs args;
Expand Down

0 comments on commit 1301c03

Please sign in to comment.