test: support for multiple dispatch modes

Signed-off-by: Jack Myers <jack.myers@intel.com>
Signed-off-by: Bellekallu Rajkiran <bellekallu.rajkiran@intel.com>
This commit is contained in:
Bellekallu Rajkiran
2025-05-12 19:07:29 +00:00
committed by Compute-Runtime-Automation
parent 5221b5b00e
commit 764f4d5bdd
2 changed files with 2 additions and 1 deletions

View File

@@ -23,7 +23,7 @@ void MulticontextAubFixture::setUp(uint32_t numberOfTiles, EnabledCommandStreame
this->numberOfEnabledTiles = numberOfTiles;
const ::testing::TestInfo *const testInfo = ::testing::UnitTest::GetInstance()->current_test_info();
debugManager.flags.CsrDispatchMode.set(static_cast<int32_t>(DispatchMode::batchedDispatch));
debugManager.flags.CsrDispatchMode.set(static_cast<int32_t>(dispatchMode));
debugManager.flags.CreateMultipleSubDevices.set(numberOfTiles);
HardwareInfo localHwInfo = *defaultHwInfo;

View File

@@ -119,5 +119,6 @@ struct MulticontextAubFixture {
bool isCcs1Supported = false;
bool isRenderEngineSupported = true;
bool skipped = false;
DispatchMode dispatchMode = DispatchMode::batchedDispatch;
};
} // namespace NEO