Revert "feature: Use zesInit on windows always"

This reverts commit cf7a4bc0dd.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2025-09-17 08:53:43 +02:00
committed by Compute-Runtime-Automation
parent 10c37fbb78
commit 63051f0635
15 changed files with 12 additions and 54 deletions

View File

@@ -17,7 +17,6 @@ namespace L0 {
namespace ult {
void SysmanDeviceFixture::SetUp() {
debugManager.flags.EnableSysmanLegacyModeUsingZesInit.set(false);
if (!sysmanUltsEnable) {
GTEST_SKIP();
}

View File

@@ -37,7 +37,6 @@ class SysmanDeviceFixture : public DeviceFixture, public SysmanEnabledFixture {
SysmanDeviceImp *pSysmanDeviceImp = nullptr;
OsSysman *pOsSysman = nullptr;
PublicWddmSysmanImp *pWddmSysmanImp = nullptr;
DebugManagerStateRestore restorer;
};
} // namespace ult

View File

@@ -95,12 +95,5 @@ TEST_F(SysmanDeviceFixture, GivenValidSysmanDeviceImpWhenOsSysmanInitFailsThenUn
delete testOsSysman;
}
TEST_F(SysmanDeviceFixture, GivenValidWddmSysmanImpWhenExternBooleanUseZesInitOnWddmIsTrueThenFalseIsReturned) {
EXPECT_EQ(true, pWddmSysmanImp->isDriverModelSupported());
debugManager.flags.EnableSysmanLegacyModeUsingZesInit.set(true);
EXPECT_EQ(false, pWddmSysmanImp->isDriverModelSupported());
debugManager.flags.EnableSysmanLegacyModeUsingZesInit.set(false);
}
} // namespace ult
} // namespace L0