200 lines
8.5 KiB
C++
200 lines
8.5 KiB
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/execution_environment/execution_environment.h"
|
|
#include "runtime/helpers/hw_info.h"
|
|
#include "runtime/helpers/options.h"
|
|
#include "runtime/os_interface/device_factory.h"
|
|
#include "runtime/os_interface/os_library.h"
|
|
#include "runtime/memory_manager/memory_constants.h"
|
|
#include "unit_tests/helpers/debug_manager_state_restore.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace OCLRT;
|
|
|
|
OsLibrary *setAdapterInfo(const PLATFORM *platform, const GT_SYSTEM_INFO *gtSystemInfo);
|
|
|
|
struct DeviceFactoryTest : public ::testing::Test {
|
|
public:
|
|
void SetUp() override {
|
|
const HardwareInfo hwInfo = *platformDevices[0];
|
|
mockGdiDll = setAdapterInfo(hwInfo.pPlatform, hwInfo.pSysInfo);
|
|
}
|
|
|
|
void TearDown() override {
|
|
delete mockGdiDll;
|
|
}
|
|
|
|
protected:
|
|
OsLibrary *mockGdiDll;
|
|
ExecutionEnvironment executionEnvironment;
|
|
};
|
|
|
|
TEST_F(DeviceFactoryTest, GetDevices_Expect_True_If_Returned) {
|
|
DeviceFactoryCleaner cleaner;
|
|
HardwareInfo *hwInfo = nullptr;
|
|
size_t numDevices = 0;
|
|
bool success = DeviceFactory::getDevices(&hwInfo, numDevices, executionEnvironment);
|
|
|
|
EXPECT_TRUE((numDevices > 0) ? success : !success);
|
|
}
|
|
|
|
TEST_F(DeviceFactoryTest, GetDevices_Check_HwInfo_Null) {
|
|
DeviceFactoryCleaner cleaner;
|
|
HardwareInfo *hwInfo = nullptr;
|
|
size_t numDevices = 0;
|
|
bool success = DeviceFactory::getDevices(&hwInfo, numDevices, executionEnvironment);
|
|
EXPECT_TRUE((numDevices > 0) ? success : !success);
|
|
|
|
if (numDevices > 0) {
|
|
ASSERT_NE(hwInfo, nullptr);
|
|
EXPECT_NE(hwInfo->pPlatform, nullptr);
|
|
EXPECT_NE(hwInfo->pSkuTable, nullptr);
|
|
EXPECT_NE(hwInfo->pSysInfo, nullptr);
|
|
EXPECT_NE(hwInfo->pWaTable, nullptr);
|
|
}
|
|
}
|
|
|
|
TEST_F(DeviceFactoryTest, GetDevices_Check_HwInfo_Platform) {
|
|
DeviceFactoryCleaner cleaner;
|
|
HardwareInfo *hwInfo = nullptr;
|
|
const HardwareInfo *refHwinfo = *platformDevices;
|
|
size_t numDevices = 0;
|
|
|
|
bool success = DeviceFactory::getDevices(&hwInfo, numDevices, executionEnvironment);
|
|
EXPECT_TRUE((numDevices > 0) ? success : !success);
|
|
|
|
if (numDevices > 0) {
|
|
ASSERT_NE(hwInfo, nullptr);
|
|
EXPECT_NE(hwInfo->pPlatform, nullptr);
|
|
|
|
EXPECT_EQ(refHwinfo->pPlatform->eDisplayCoreFamily, hwInfo->pPlatform->eDisplayCoreFamily);
|
|
}
|
|
}
|
|
|
|
TEST_F(DeviceFactoryTest, overrideKmdNotifySettings) {
|
|
DeviceFactoryCleaner cleaner;
|
|
DebugManagerStateRestore stateRestore;
|
|
|
|
HardwareInfo *hwInfoReference = nullptr;
|
|
HardwareInfo *hwInfoOverriden = nullptr;
|
|
size_t numDevices = 0;
|
|
|
|
bool success = DeviceFactory::getDevices(&hwInfoReference, numDevices, executionEnvironment);
|
|
ASSERT_TRUE(success);
|
|
auto refEnableKmdNotify = hwInfoReference->capabilityTable.kmdNotifyProperties.enableKmdNotify;
|
|
auto refDelayKmdNotifyMicroseconds = hwInfoReference->capabilityTable.kmdNotifyProperties.delayKmdNotifyMicroseconds;
|
|
auto refEnableQuickKmdSleep = hwInfoReference->capabilityTable.kmdNotifyProperties.enableQuickKmdSleep;
|
|
auto refDelayQuickKmdSleepMicroseconds = hwInfoReference->capabilityTable.kmdNotifyProperties.delayQuickKmdSleepMicroseconds;
|
|
auto refEnableQuickKmdSleepForSporadicWaits = hwInfoReference->capabilityTable.kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits;
|
|
auto refDelayQuickKmdSleepForSporadicWaitsMicroseconds = hwInfoReference->capabilityTable.kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds;
|
|
DeviceFactory::releaseDevices();
|
|
|
|
DebugManager.flags.OverrideEnableKmdNotify.set(!refEnableKmdNotify);
|
|
DebugManager.flags.OverrideKmdNotifyDelayMicroseconds.set(static_cast<int32_t>(refDelayKmdNotifyMicroseconds) + 10);
|
|
|
|
DebugManager.flags.OverrideEnableQuickKmdSleep.set(!refEnableQuickKmdSleep);
|
|
DebugManager.flags.OverrideQuickKmdSleepDelayMicroseconds.set(static_cast<int32_t>(refDelayQuickKmdSleepMicroseconds) + 11);
|
|
|
|
DebugManager.flags.OverrideEnableQuickKmdSleepForSporadicWaits.set(!refEnableQuickKmdSleepForSporadicWaits);
|
|
DebugManager.flags.OverrideDelayQuickKmdSleepForSporadicWaitsMicroseconds.set(static_cast<int32_t>(refDelayQuickKmdSleepForSporadicWaitsMicroseconds) + 12);
|
|
|
|
success = DeviceFactory::getDevices(&hwInfoOverriden, numDevices, executionEnvironment);
|
|
ASSERT_TRUE(success);
|
|
|
|
EXPECT_EQ(!refEnableKmdNotify, hwInfoOverriden->capabilityTable.kmdNotifyProperties.enableKmdNotify);
|
|
EXPECT_EQ(refDelayKmdNotifyMicroseconds + 10, hwInfoOverriden->capabilityTable.kmdNotifyProperties.delayKmdNotifyMicroseconds);
|
|
|
|
EXPECT_EQ(!refEnableQuickKmdSleep, hwInfoOverriden->capabilityTable.kmdNotifyProperties.enableQuickKmdSleep);
|
|
EXPECT_EQ(refDelayQuickKmdSleepMicroseconds + 11, hwInfoOverriden->capabilityTable.kmdNotifyProperties.delayQuickKmdSleepMicroseconds);
|
|
|
|
EXPECT_EQ(!refEnableQuickKmdSleepForSporadicWaits,
|
|
hwInfoOverriden->capabilityTable.kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits);
|
|
EXPECT_EQ(refDelayQuickKmdSleepForSporadicWaitsMicroseconds + 12,
|
|
hwInfoOverriden->capabilityTable.kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds);
|
|
}
|
|
|
|
TEST_F(DeviceFactoryTest, getEngineTypeDebugOverride) {
|
|
DeviceFactoryCleaner cleaner;
|
|
DebugManagerStateRestore dbgRestorer;
|
|
int32_t debugEngineType = 2;
|
|
DebugManager.flags.NodeOrdinal.set(debugEngineType);
|
|
HardwareInfo *hwInfoOverriden = nullptr;
|
|
size_t numDevices = 0;
|
|
|
|
bool success = DeviceFactory::getDevices(&hwInfoOverriden, numDevices, executionEnvironment);
|
|
ASSERT_TRUE(success);
|
|
ASSERT_NE(nullptr, hwInfoOverriden);
|
|
int32_t actualEngineType = static_cast<int32_t>(hwInfoOverriden->capabilityTable.defaultEngineType);
|
|
EXPECT_EQ(debugEngineType, actualEngineType);
|
|
}
|
|
|
|
TEST_F(DeviceFactoryTest, givenPointerToHwInfoWhenGetDevicedCalledThenRequiedSurfaceSizeIsSettedProperly) {
|
|
DeviceFactoryCleaner cleaner;
|
|
HardwareInfo *hwInfo = nullptr;
|
|
size_t numDevices = 0;
|
|
bool success = DeviceFactory::getDevices(&hwInfo, numDevices, executionEnvironment);
|
|
ASSERT_TRUE(success);
|
|
|
|
EXPECT_EQ(hwInfo->pSysInfo->CsrSizeInMb * MemoryConstants::megaByte, hwInfo->capabilityTable.requiredPreemptionSurfaceSize);
|
|
}
|
|
|
|
TEST_F(DeviceFactoryTest, givenCreateMultipleDevicesDebugFlagWhenGetDevicesIsCalledThenNumberOfReturnedDevicesIsEqualToDebugVariable) {
|
|
DeviceFactoryCleaner cleaner;
|
|
DebugManagerStateRestore stateRestore;
|
|
auto requiredDeviceCount = 2u;
|
|
DebugManager.flags.CreateMultipleDevices.set(requiredDeviceCount);
|
|
HardwareInfo *hwInfo = nullptr;
|
|
size_t numDevices = 0;
|
|
bool success = DeviceFactory::getDevices(&hwInfo, numDevices, executionEnvironment);
|
|
ASSERT_NE(nullptr, hwInfo);
|
|
|
|
for (auto deviceIndex = 0u; deviceIndex < requiredDeviceCount; deviceIndex++) {
|
|
EXPECT_NE(nullptr, hwInfo[deviceIndex].pPlatform);
|
|
EXPECT_NE(nullptr, hwInfo[deviceIndex].pSkuTable);
|
|
EXPECT_NE(nullptr, hwInfo[deviceIndex].pSysInfo);
|
|
EXPECT_NE(nullptr, hwInfo[deviceIndex].pWaTable);
|
|
}
|
|
|
|
EXPECT_EQ(hwInfo[0].pPlatform->eDisplayCoreFamily, hwInfo[1].pPlatform->eDisplayCoreFamily);
|
|
|
|
ASSERT_TRUE(success);
|
|
EXPECT_EQ(requiredDeviceCount, numDevices);
|
|
}
|
|
|
|
TEST_F(DeviceFactoryTest, givenCreateMultipleDevicesDebugFlagWhenGetDevicesForProductFamilyOverrideIsCalledThenNumberOfReturnedDevicesIsEqualToDebugVariable) {
|
|
DeviceFactoryCleaner cleaner;
|
|
DebugManagerStateRestore stateRestore;
|
|
auto requiredDeviceCount = 2u;
|
|
DebugManager.flags.CreateMultipleDevices.set(requiredDeviceCount);
|
|
HardwareInfo *hwInfo = nullptr;
|
|
size_t numDevices = 0;
|
|
bool success = DeviceFactory::getDevicesForProductFamilyOverride(&hwInfo, numDevices, executionEnvironment);
|
|
ASSERT_NE(nullptr, hwInfo);
|
|
|
|
for (auto deviceIndex = 0u; deviceIndex < requiredDeviceCount; deviceIndex++) {
|
|
EXPECT_NE(nullptr, hwInfo[deviceIndex].pPlatform);
|
|
EXPECT_NE(nullptr, hwInfo[deviceIndex].pSkuTable);
|
|
EXPECT_NE(nullptr, hwInfo[deviceIndex].pSysInfo);
|
|
EXPECT_NE(nullptr, hwInfo[deviceIndex].pWaTable);
|
|
}
|
|
|
|
EXPECT_EQ(hwInfo[0].pPlatform->eDisplayCoreFamily, hwInfo[1].pPlatform->eDisplayCoreFamily);
|
|
|
|
ASSERT_TRUE(success);
|
|
EXPECT_EQ(requiredDeviceCount, numDevices);
|
|
}
|
|
|
|
TEST_F(DeviceFactoryTest, givenGetDevicesCallWhenItIsDoneThenOsInterfaceIsAllocated) {
|
|
DeviceFactoryCleaner cleaner;
|
|
HardwareInfo *hwInfo = nullptr;
|
|
size_t numDevices = 0;
|
|
bool success = DeviceFactory::getDevices(&hwInfo, numDevices, executionEnvironment);
|
|
EXPECT_TRUE(success);
|
|
EXPECT_NE(nullptr, executionEnvironment.osInterface);
|
|
}
|