2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-06-06 14:45:45 +08:00
|
|
|
#include "runtime/helpers/hw_helper.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
#include "test.h"
|
2018-07-18 20:11:05 +08:00
|
|
|
#include "unit_tests/fixtures/device_fixture.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
using namespace OCLRT;
|
|
|
|
|
|
|
|
typedef Test<DeviceFixture> Gen8DeviceCaps;
|
|
|
|
|
|
|
|
GEN8TEST_F(Gen8DeviceCaps, defaultPreemptionMode) {
|
|
|
|
EXPECT_TRUE(PreemptionMode::Disabled == pDevice->getHardwareInfo().capabilityTable.defaultPreemptionMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
GEN8TEST_F(Gen8DeviceCaps, whitelistedRegister) {
|
|
|
|
EXPECT_FALSE(pDevice->getWhitelistedRegisters().csChicken1_0x2580);
|
|
|
|
EXPECT_FALSE(pDevice->getWhitelistedRegisters().chicken0hdc_0xE5F0);
|
|
|
|
}
|
|
|
|
|
|
|
|
GEN8TEST_F(Gen8DeviceCaps, kmdNotifyMechanism) {
|
2018-03-23 02:48:03 +08:00
|
|
|
EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.enableKmdNotify);
|
|
|
|
EXPECT_EQ(50000, pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.delayKmdNotifyMicroseconds);
|
|
|
|
EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.enableQuickKmdSleep);
|
2018-03-28 19:26:48 +08:00
|
|
|
EXPECT_EQ(5000, pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.delayQuickKmdSleepMicroseconds);
|
2018-03-23 02:48:03 +08:00
|
|
|
EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits);
|
|
|
|
EXPECT_EQ(200000, pDevice->getHardwareInfo().capabilityTable.kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds);
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
GEN8TEST_F(Gen8DeviceCaps, compression) {
|
2018-07-18 20:11:05 +08:00
|
|
|
EXPECT_FALSE(pDevice->getHardwareInfo().capabilityTable.ftrRenderCompressedBuffers);
|
|
|
|
EXPECT_FALSE(pDevice->getHardwareInfo().capabilityTable.ftrRenderCompressedImages);
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
2018-02-19 16:50:17 +08:00
|
|
|
|
|
|
|
GEN8TEST_F(Gen8DeviceCaps, image3DDimensions) {
|
|
|
|
const auto &caps = pDevice->getDeviceInfo();
|
|
|
|
EXPECT_EQ(2048u, caps.image3DMaxWidth);
|
|
|
|
EXPECT_EQ(2048u, caps.image3DMaxDepth);
|
|
|
|
EXPECT_EQ(2048u, caps.image3DMaxHeight);
|
|
|
|
}
|