test: simplify mt test, reduce number of iterations

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-12-01 08:36:58 +00:00
committed by Compute-Runtime-Automation
parent 41b55eaf77
commit 982ef34644
2 changed files with 5 additions and 5 deletions

View File

@@ -14,9 +14,9 @@ typedef HelloWorldTest<HelloWorldFixtureFactory> EnqueueKernelTestsMt;
TEST_F(EnqueueKernelTestsMt, WhenCallEnqueueKernelsThenAllCallsPass) {
size_t workSize[] = {1};
const int iterNum = 10;
const int threadNum = 10;
const int taskNum = 10;
const int iterNum = 2;
const int threadNum = 4;
const int taskNum = 4;
std::atomic<int> result = {0};
for (int iter = 0; iter < iterNum; iter++) {