test: add bcs suffix for copy tests

Related-To: NEO-13003, NEO-14814

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-19 13:04:32 +00:00 committed by Compute-Runtime-Automation
parent 60eecb4ad4
commit ccf4a0ff03
2 changed files with 4 additions and 0 deletions

View File

@ -69,6 +69,9 @@ void MulticontextAubFixture::setUp(uint32_t numberOfTiles, EnabledCommandStreame
}
isRenderEngineSupported = (renderEngine != aub_stream::NUM_ENGINES);
auto firstEngine = isRenderEngineSupported ? renderEngine : aub_stream::ENGINE_CCS;
if (isFirstEngineBcs) {
firstEngine = aub_stream::ENGINE_BCS;
}
std::stringstream strfilename;
strfilename << ApiSpecificConfig::getAubPrefixForSpecificApi();

View File

@ -118,6 +118,7 @@ struct MulticontextAubFixture {
uint32_t numberOfEnabledTiles = 0;
bool isCcs1Supported = false;
bool isRenderEngineSupported = true;
bool isFirstEngineBcs = false;
bool skipped = false;
DispatchMode dispatchMode = DispatchMode::batchedDispatch;
};