SWDEV-507874 - Psdb perf: reduce test iterations (#618)

Change-Id: Ia9af40ecfb2ea121388a3c7a932805b49cef7669

Co-authored-by: agunashe <ajay.gunashekar@amd.com>
Этот коммит содержится в:
systems-assistant[bot]
2025-10-20 09:00:05 -07:00
коммит произвёл GitHub
родитель ee4021d6c5
Коммит ad3cb435ee
2 изменённых файлов: 6 добавлений и 5 удалений
+4 -3
Просмотреть файл
@@ -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;
+2 -2
Просмотреть файл
@@ -212,8 +212,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);