mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-09 06:23:01 +08:00
Updating files modified in 2018 only. Older files remain with old style copyright header Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/execution_environment/execution_environment.h"
|
|
#include "unit_tests/os_interface/windows/os_interface_win_tests.h"
|
|
#include "unit_tests/gen_common/test.h"
|
|
|
|
typedef OsInterfaceTest OsInterfaceTestCnl;
|
|
|
|
GEN10TEST_F(OsInterfaceTestCnl, askKmdIfPreemptionRegisterWhitelisted) {
|
|
HardwareInfo *hwInfo = nullptr;
|
|
const HardwareInfo *refHwinfo = *platformDevices;
|
|
size_t numDevices = 0;
|
|
|
|
ExecutionEnvironment executionEnvironment;
|
|
bool success = DeviceFactory::getDevices(&hwInfo, numDevices, executionEnvironment);
|
|
EXPECT_TRUE(success);
|
|
|
|
for (size_t i = 0u; i < numDevices; i++) {
|
|
if (hwInfo[i].pWaTable->waEnablePreemptionGranularityControlByUMD) {
|
|
EXPECT_TRUE(hwInfo[i].capabilityTable.whitelistedRegisters.csChicken1_0x2580);
|
|
} else {
|
|
EXPECT_FALSE(hwInfo[i].capabilityTable.whitelistedRegisters.csChicken1_0x2580);
|
|
}
|
|
}
|
|
|
|
DeviceFactory::releaseDevices();
|
|
}
|