refactor: remove not needed code

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2025-10-07 14:53:00 +00:00
committed by Compute-Runtime-Automation
parent fd2c7fdc1a
commit b807b43b35
74 changed files with 49 additions and 1014 deletions

View File

@@ -60,14 +60,13 @@ void AUBFixtureL0::setUp(const NEO::HardwareInfo *hardwareInfo, bool debuggingEn
executionEnvironment->setDebuggingMode(NEO::DebuggingMode::online);
}
auto &gfxCoreHelper = executionEnvironment->rootDeviceEnvironments[0]->getHelper<NEO::GfxCoreHelper>();
auto engineType = getChosenEngineType(hwInfo);
const ::testing::TestInfo *const testInfo = ::testing::UnitTest::GetInstance()->current_test_info();
std::stringstream strfilename;
strfilename << NEO::ApiSpecificConfig::getAubPrefixForSpecificApi();
strfilename << testInfo->test_case_name() << "_" << testInfo->name() << "_" << gfxCoreHelper.getCsTraits(engineType).name;
strfilename << testInfo->test_case_name() << "_" << testInfo->name() << "_" << NEO::EngineHelpers::engineTypeToString(engineType);
aubFileName = strfilename.str();
NEO::ultHwConfig.aubTestName = aubFileName.c_str();
@@ -139,4 +138,4 @@ ze_module_handle_t AUBFixtureL0::createModuleFromFile(const std::string &fileNam
return moduleHandle;
}
} // namespace L0
} // namespace L0