Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions catch/include/cmd_options.hh
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ THE SOFTWARE.
#include <limits>

struct CmdOptions {
int iterations = 10;
int warmups = 100;
int cg_iterations = 5;
int iterations = 5;
int warmups = 5;
int cg_extended_run = 5;
int cg_iterations = 2;
bool no_display = false;
bool progress = false;
uint64_t accuracy_iterations = std::numeric_limits<uint32_t>::max() + 1ull;
Expand Down
4 changes: 2 additions & 2 deletions catch/performance/kernelLaunch/hipExtLaunchKernelGGL.cc
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ TEST_CASE("Performance_hipExtLaunchKernelGGL_QueryGPUFrequency") {
#endif
cout << endl;

int blocksMax = 1024;
int blockSizeMax = 1024;
int blocksMax = 64;
int blockSizeMax = 64;
bool passed = query_gpu_frequency(kernel1, wall_clock_rate, blocksMax, blockSizeMax,
props.multiProcessorCount);
REQUIRE(passed);
Expand Down
Loading