Skip to content

Commit 9f07de3

Browse files
Adjust KMD Notify timeout for BDW
Change-Id: I135c4b013a3451d3914ec7ed53edc1fb9153aee0
1 parent 3f59acf commit 9f07de3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

runtime/gen8/hw_info_bdw.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ const RuntimeCapabilityTable BDW::capabilityTable{
6969
{false, false},
7070
&isSimulationBDW,
7171
true,
72-
true, // forceStatelessCompilationFor32Bit
73-
{true, 50000, true, 500, true, 200000}, // KmdNotifyProperties
74-
false, // ftr64KBpages
75-
EngineType::ENGINE_RCS, // defaultEngineType
76-
MemoryConstants::pageSize //requiredPreemptionSurfaceSize
72+
true, // forceStatelessCompilationFor32Bit
73+
{true, 50000, true, 5000, true, 200000}, // KmdNotifyProperties
74+
false, // ftr64KBpages
75+
EngineType::ENGINE_RCS, // defaultEngineType
76+
MemoryConstants::pageSize //requiredPreemptionSurfaceSize
7777
};
7878

7979
const HardwareInfo BDW_1x2x6::hwInfo = {

unit_tests/gen8/test_device_caps.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ GEN8TEST_F(Gen8DeviceCaps, kmdNotifyMechanism) {
5959
EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.enableKmdNotify);
6060
EXPECT_EQ(50000, pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.delayKmdNotifyMicroseconds);
6161
EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.enableQuickKmdSleep);
62-
EXPECT_EQ(500, pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.delayQuickKmdSleepMicroseconds);
62+
EXPECT_EQ(5000, pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.delayQuickKmdSleepMicroseconds);
6363
EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits);
6464
EXPECT_EQ(200000, pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds);
6565
}

0 commit comments

Comments
 (0)