2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2020-12-30 21:36:22 +08:00
|
|
|
* Copyright (C) 2017-2021 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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/device/device.h"
|
|
|
|
#include "shared/source/helpers/hw_helper.h"
|
|
|
|
#include "shared/source/indirect_heap/indirect_heap.h"
|
|
|
|
#include "shared/source/os_interface/os_context.h"
|
2020-02-24 08:01:38 +08:00
|
|
|
#include "shared/test/unit_test/helpers/debug_manager_state_restore.h"
|
|
|
|
#include "shared/test/unit_test/helpers/ult_hw_config.h"
|
2020-04-02 15:22:51 +08:00
|
|
|
#include "shared/test/unit_test/helpers/variable_backup.h"
|
2020-07-15 18:38:34 +08:00
|
|
|
#include "shared/test/unit_test/mocks/ult_device_factory.h"
|
2020-02-24 17:22:30 +08:00
|
|
|
|
2020-05-25 18:11:30 +08:00
|
|
|
#include "opencl/source/command_stream/tbx_command_stream_receiver.h"
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/platform/platform.h"
|
2020-05-28 20:05:12 +08:00
|
|
|
#include "opencl/test/unit_test/fixtures/cl_device_fixture.h"
|
2020-02-23 22:20:22 +08:00
|
|
|
#include "opencl/test/unit_test/helpers/unit_test_helper.h"
|
|
|
|
#include "opencl/test/unit_test/libult/ult_command_stream_receiver.h"
|
|
|
|
#include "opencl/test/unit_test/mocks/mock_context.h"
|
|
|
|
#include "opencl/test/unit_test/mocks/mock_csr.h"
|
|
|
|
#include "opencl/test/unit_test/mocks/mock_execution_environment.h"
|
2020-03-17 21:25:44 +08:00
|
|
|
#include "opencl/test/unit_test/mocks/mock_platform.h"
|
2018-07-13 20:11:04 +08:00
|
|
|
#include "test.h"
|
2020-02-23 05:50:57 +08:00
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
#include <memory>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
using namespace NEO;
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2020-05-28 20:05:12 +08:00
|
|
|
typedef Test<ClDeviceFixture> DeviceTest;
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2018-04-24 19:06:49 +08:00
|
|
|
TEST_F(DeviceTest, givenDeviceWhenGetProductAbbrevThenReturnsHardwarePrefix) {
|
|
|
|
const auto productAbbrev = pDevice->getProductAbbrev();
|
2019-05-08 22:00:24 +08:00
|
|
|
const auto hwPrefix = hardwarePrefix[pDevice->getHardwareInfo().platform.eProductFamily];
|
2018-04-24 19:06:49 +08:00
|
|
|
EXPECT_EQ(hwPrefix, productAbbrev);
|
|
|
|
}
|
|
|
|
|
2020-02-13 18:19:18 +08:00
|
|
|
TEST_F(DeviceTest, WhenDeviceIsCreatedThenCommandStreamReceiverIsNotNull) {
|
2019-07-15 20:28:09 +08:00
|
|
|
EXPECT_NE(nullptr, &pDevice->getGpgpuCommandStreamReceiver());
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
|
2020-05-05 22:40:31 +08:00
|
|
|
TEST_F(DeviceTest, WhenDeviceIsCreatedThenEnabledClVersionMatchesHardwareInfo) {
|
|
|
|
auto version = pClDevice->getEnabledClVersion();
|
2017-12-21 07:45:38 +08:00
|
|
|
auto version2 = pDevice->getHardwareInfo().capabilityTable.clVersionSupport;
|
|
|
|
|
|
|
|
EXPECT_EQ(version, version2);
|
|
|
|
}
|
|
|
|
|
2020-06-24 00:59:36 +08:00
|
|
|
TEST_F(DeviceTest, WhenDeviceIsCheckedForOcl21ConformanceThenCorrectValueIsReturned) {
|
|
|
|
auto hwInfo = pClDevice->getHardwareInfo();
|
|
|
|
for (auto supportsOcl21Features : ::testing::Bool()) {
|
|
|
|
hwInfo.capabilityTable.supportsOcl21Features = supportsOcl21Features;
|
|
|
|
for (auto supportsIfp : ::testing::Bool()) {
|
|
|
|
hwInfo.capabilityTable.supportsIndependentForwardProgress = supportsIfp;
|
|
|
|
for (auto supportsDeviceEnqueue : ::testing::Bool()) {
|
|
|
|
hwInfo.capabilityTable.supportsDeviceEnqueue = supportsDeviceEnqueue;
|
|
|
|
for (auto supportsPipes : ::testing::Bool()) {
|
|
|
|
hwInfo.capabilityTable.supportsPipes = supportsPipes;
|
|
|
|
|
|
|
|
auto pClDevice = std::make_unique<MockClDevice>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(&hwInfo));
|
|
|
|
|
|
|
|
auto expectedOcl21Conformance = (supportsOcl21Features && supportsIfp && supportsDeviceEnqueue && supportsPipes);
|
|
|
|
EXPECT_EQ(expectedOcl21Conformance, pClDevice->isOcl21Conformant());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-23 21:26:06 +08:00
|
|
|
TEST_F(DeviceTest, givenDeviceWhenEngineIsCreatedThenSetInitialValueForTag) {
|
|
|
|
for (auto &engine : pDevice->engines) {
|
|
|
|
auto tagAddress = engine.commandStreamReceiver->getTagAddress();
|
2018-11-28 16:02:55 +08:00
|
|
|
ASSERT_NE(nullptr, const_cast<uint32_t *>(tagAddress));
|
|
|
|
EXPECT_EQ(initialHardwareTag, *tagAddress);
|
|
|
|
}
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
|
2020-05-04 03:33:11 +08:00
|
|
|
TEST_F(DeviceTest, givenDeviceWhenAskedForSpecificEngineThenReturnIt) {
|
2020-09-15 23:29:02 +08:00
|
|
|
auto hwInfo = *defaultHwInfo;
|
|
|
|
hwInfo.featureTable.ftrCCSNode = true;
|
|
|
|
|
|
|
|
MockClDevice mockClDevice{MockDevice::createWithNewExecutionEnvironment<MockDevice>(&hwInfo, 0)};
|
|
|
|
|
|
|
|
auto &engines = HwHelper::get(hwInfo.platform.eRenderCoreFamily).getGpgpuEngineInstances(hwInfo);
|
2019-03-23 21:26:06 +08:00
|
|
|
for (uint32_t i = 0; i < engines.size(); i++) {
|
2020-09-15 23:29:02 +08:00
|
|
|
auto &deviceEngine = mockClDevice.getEngine(engines[i].first, false, false);
|
|
|
|
EXPECT_EQ(deviceEngine.osContext->getEngineType(), engines[i].first);
|
|
|
|
EXPECT_EQ(deviceEngine.osContext->isLowPriority(), false);
|
2019-03-23 21:26:06 +08:00
|
|
|
}
|
|
|
|
|
2020-09-15 23:29:02 +08:00
|
|
|
auto &deviceEngine = mockClDevice.getEngine(hwInfo.capabilityTable.defaultEngineType, true, false);
|
|
|
|
EXPECT_EQ(deviceEngine.osContext->getEngineType(), hwInfo.capabilityTable.defaultEngineType);
|
|
|
|
EXPECT_EQ(deviceEngine.osContext->isLowPriority(), true);
|
|
|
|
|
|
|
|
EXPECT_THROW(mockClDevice.getEngine(aub_stream::ENGINE_VCS, false, false), std::exception);
|
2019-03-23 21:26:06 +08:00
|
|
|
}
|
|
|
|
|
2020-05-04 03:33:11 +08:00
|
|
|
TEST_F(DeviceTest, givenDeviceWhenAskedForEngineWithValidIndexThenReturnIt) {
|
|
|
|
auto &engines = HwHelper::get(defaultHwInfo->platform.eRenderCoreFamily).getGpgpuEngineInstances(*defaultHwInfo);
|
|
|
|
for (uint32_t i = 0; i < engines.size(); i++) {
|
|
|
|
auto &deviceEngine = pDevice->getEngine(i);
|
2020-09-15 23:29:02 +08:00
|
|
|
EXPECT_EQ(deviceEngine.osContext->getEngineType(), engines[i].first);
|
2020-05-04 03:33:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-09 23:46:23 +08:00
|
|
|
TEST_F(DeviceTest, givenDebugVariableToAlwaysChooseEngineZeroWhenNotExistingEngineSelectedThenIndexZeroEngineIsReturned) {
|
|
|
|
DebugManagerStateRestore restore;
|
|
|
|
DebugManager.flags.OverrideInvalidEngineWithDefault.set(true);
|
2020-03-24 23:03:47 +08:00
|
|
|
auto &engines = HwHelper::get(defaultHwInfo->platform.eRenderCoreFamily).getGpgpuEngineInstances(*defaultHwInfo);
|
2020-09-15 23:29:02 +08:00
|
|
|
auto &deviceEngine = pDevice->getEngine(engines[0].first, false, false);
|
|
|
|
auto ¬ExistingEngine = pDevice->getEngine(aub_stream::ENGINE_VCS, false, false);
|
2019-04-09 23:46:23 +08:00
|
|
|
EXPECT_EQ(¬ExistingEngine, &deviceEngine);
|
|
|
|
}
|
|
|
|
|
2020-02-13 18:19:18 +08:00
|
|
|
TEST_F(DeviceTest, WhenDeviceIsCreatedThenOsTimeIsNotNull) {
|
2018-07-25 23:12:44 +08:00
|
|
|
auto pDevice = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(nullptr));
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
OSTime *osTime = pDevice->getOSTime();
|
|
|
|
ASSERT_NE(nullptr, osTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(DeviceTest, GivenDebugVariableForcing32BitAllocationsWhenDeviceIsCreatedThenMemoryManagerHasForce32BitFlagSet) {
|
|
|
|
DebugManager.flags.Force32bitAddressing.set(true);
|
2018-07-25 23:12:44 +08:00
|
|
|
auto pDevice = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(nullptr));
|
2017-12-21 07:45:38 +08:00
|
|
|
if (is64bit) {
|
|
|
|
EXPECT_TRUE(pDevice->getDeviceInfo().force32BitAddressess);
|
|
|
|
EXPECT_TRUE(pDevice->getMemoryManager()->peekForce32BitAllocations());
|
|
|
|
} else {
|
|
|
|
EXPECT_FALSE(pDevice->getDeviceInfo().force32BitAddressess);
|
|
|
|
EXPECT_FALSE(pDevice->getMemoryManager()->peekForce32BitAllocations());
|
|
|
|
}
|
|
|
|
DebugManager.flags.Force32bitAddressing.set(false);
|
|
|
|
}
|
|
|
|
|
2020-02-13 18:19:18 +08:00
|
|
|
TEST_F(DeviceTest, WhenRetainingThenReferenceIsOneAndApiIsUsed) {
|
2020-01-14 21:32:11 +08:00
|
|
|
ASSERT_NE(nullptr, pClDevice);
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2020-01-14 21:32:11 +08:00
|
|
|
pClDevice->retainApi();
|
|
|
|
pClDevice->retainApi();
|
|
|
|
pClDevice->retainApi();
|
|
|
|
ASSERT_EQ(1, pClDevice->getReference());
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2020-01-14 21:32:11 +08:00
|
|
|
ASSERT_FALSE(pClDevice->releaseApi().isUnused());
|
|
|
|
ASSERT_EQ(1, pClDevice->getReference());
|
|
|
|
}
|
|
|
|
|
2020-02-21 22:25:04 +08:00
|
|
|
HWTEST_F(DeviceTest, WhenDeviceIsCreatedThenActualEngineTypeIsSameAsDefault) {
|
2020-03-24 18:42:54 +08:00
|
|
|
HardwareInfo hwInfo = *defaultHwInfo;
|
2020-02-21 22:25:04 +08:00
|
|
|
if (hwInfo.capabilityTable.defaultEngineType == aub_stream::EngineType::ENGINE_CCS) {
|
|
|
|
hwInfo.featureTable.ftrCCSNode = true;
|
|
|
|
}
|
2017-11-14 18:15:09 +08:00
|
|
|
|
2020-02-21 22:25:04 +08:00
|
|
|
auto device = std::unique_ptr<MockDevice>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(&hwInfo, 0));
|
2017-11-14 18:15:09 +08:00
|
|
|
|
2020-02-21 22:25:04 +08:00
|
|
|
auto actualEngineType = device->getDefaultEngine().osContext->getEngineType();
|
|
|
|
auto defaultEngineType = device->getHardwareInfo().capabilityTable.defaultEngineType;
|
|
|
|
|
|
|
|
EXPECT_EQ(&device->getDefaultEngine().commandStreamReceiver->getOsContext(), device->getDefaultEngine().osContext);
|
2017-11-14 18:15:09 +08:00
|
|
|
EXPECT_EQ(defaultEngineType, actualEngineType);
|
|
|
|
}
|
2018-01-18 16:09:01 +08:00
|
|
|
|
2020-05-25 18:11:30 +08:00
|
|
|
HWTEST_F(DeviceTest, givenNoHwCsrTypeAndModifiedDefaultEngineIndexWhenIsSimulationIsCalledThenTrueIsReturned) {
|
|
|
|
EXPECT_FALSE(pDevice->isSimulation());
|
2020-10-28 23:08:37 +08:00
|
|
|
auto csr = TbxCommandStreamReceiver::create("", false, *pDevice->executionEnvironment, 0, 1);
|
2020-05-25 18:11:30 +08:00
|
|
|
pDevice->defaultEngineIndex = 1;
|
|
|
|
pDevice->resetCommandStreamReceiver(csr);
|
|
|
|
|
|
|
|
EXPECT_TRUE(pDevice->isSimulation());
|
|
|
|
|
|
|
|
std::array<CommandStreamReceiverType, 3> exptectedEngineTypes = {CommandStreamReceiverType::CSR_HW,
|
|
|
|
CommandStreamReceiverType::CSR_TBX,
|
|
|
|
CommandStreamReceiverType::CSR_HW};
|
|
|
|
|
|
|
|
for (uint32_t i = 0u; i < 3u; ++i) {
|
|
|
|
auto engineType = pDevice->engines[i].commandStreamReceiver->getType();
|
|
|
|
EXPECT_EQ(exptectedEngineTypes[i], engineType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-09 21:48:42 +08:00
|
|
|
TEST(DeviceCleanup, givenDeviceWhenItIsDestroyedThenFlushBatchedSubmissionsIsCalled) {
|
2018-07-03 16:00:12 +08:00
|
|
|
auto mockDevice = std::unique_ptr<MockDevice>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(nullptr));
|
2020-10-28 23:08:37 +08:00
|
|
|
MockCommandStreamReceiver *csr = new MockCommandStreamReceiver(*mockDevice->getExecutionEnvironment(), mockDevice->getRootDeviceIndex(), mockDevice->getDeviceBitfield());
|
2018-03-09 21:48:42 +08:00
|
|
|
mockDevice->resetCommandStreamReceiver(csr);
|
|
|
|
int flushedBatchedSubmissionsCalledCount = 0;
|
|
|
|
csr->flushBatchedSubmissionsCallCounter = &flushedBatchedSubmissionsCalledCount;
|
|
|
|
mockDevice.reset(nullptr);
|
|
|
|
|
|
|
|
EXPECT_EQ(1, flushedBatchedSubmissionsCalledCount);
|
2018-03-30 02:37:43 +08:00
|
|
|
}
|
2018-06-06 16:34:51 +08:00
|
|
|
|
|
|
|
TEST(DeviceCreation, givenSelectedAubCsrInDebugVarsWhenDeviceIsCreatedThenIsSimulationReturnsTrue) {
|
|
|
|
DebugManagerStateRestore dbgRestorer;
|
|
|
|
DebugManager.flags.SetCommandStreamReceiver.set(CommandStreamReceiverType::CSR_AUB);
|
|
|
|
|
2020-02-03 20:19:12 +08:00
|
|
|
VariableBackup<UltHwConfig> backup(&ultHwConfig);
|
|
|
|
ultHwConfig.useHwCsr = true;
|
2018-07-03 16:00:12 +08:00
|
|
|
auto mockDevice = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
|
2018-06-06 16:34:51 +08:00
|
|
|
EXPECT_TRUE(mockDevice->isSimulation());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(DeviceCreation, givenSelectedTbxCsrInDebugVarsWhenDeviceIsCreatedThenIsSimulationReturnsTrue) {
|
|
|
|
DebugManagerStateRestore dbgRestorer;
|
|
|
|
DebugManager.flags.SetCommandStreamReceiver.set(CommandStreamReceiverType::CSR_TBX);
|
|
|
|
|
2020-02-03 20:19:12 +08:00
|
|
|
VariableBackup<UltHwConfig> backup(&ultHwConfig);
|
|
|
|
ultHwConfig.useHwCsr = true;
|
2018-07-03 16:00:12 +08:00
|
|
|
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
|
2018-06-06 16:34:51 +08:00
|
|
|
EXPECT_TRUE(device->isSimulation());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(DeviceCreation, givenSelectedTbxWithAubCsrInDebugVarsWhenDeviceIsCreatedThenIsSimulationReturnsTrue) {
|
|
|
|
DebugManagerStateRestore dbgRestorer;
|
|
|
|
DebugManager.flags.SetCommandStreamReceiver.set(CommandStreamReceiverType::CSR_TBX_WITH_AUB);
|
|
|
|
|
2020-02-03 20:19:12 +08:00
|
|
|
VariableBackup<UltHwConfig> backup(&ultHwConfig);
|
|
|
|
ultHwConfig.useHwCsr = true;
|
2018-07-03 16:00:12 +08:00
|
|
|
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
|
2018-06-06 16:34:51 +08:00
|
|
|
EXPECT_TRUE(device->isSimulation());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(DeviceCreation, givenHwWithAubCsrInDebugVarsWhenDeviceIsCreatedThenIsSimulationReturnsFalse) {
|
|
|
|
DebugManagerStateRestore dbgRestorer;
|
|
|
|
DebugManager.flags.SetCommandStreamReceiver.set(CommandStreamReceiverType::CSR_HW_WITH_AUB);
|
|
|
|
|
2018-07-03 16:00:12 +08:00
|
|
|
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
|
2018-06-06 16:34:51 +08:00
|
|
|
EXPECT_FALSE(device->isSimulation());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(DeviceCreation, givenDefaultHwCsrInDebugVarsWhenDeviceIsCreatedThenIsSimulationReturnsFalse) {
|
2018-07-03 16:00:12 +08:00
|
|
|
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
|
2018-06-06 16:34:51 +08:00
|
|
|
EXPECT_FALSE(device->isSimulation());
|
|
|
|
}
|
2018-07-11 16:32:17 +08:00
|
|
|
|
2018-09-06 15:01:13 +08:00
|
|
|
TEST(DeviceCreation, givenDeviceWhenItIsCreatedThenOsContextIsRegistredInMemoryManager) {
|
2019-11-05 20:38:20 +08:00
|
|
|
auto device = std::unique_ptr<MockDevice>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(nullptr));
|
2018-09-06 15:01:13 +08:00
|
|
|
auto memoryManager = device->getMemoryManager();
|
2020-02-21 22:25:04 +08:00
|
|
|
auto &hwInfo = device->getHardwareInfo();
|
|
|
|
auto numEnginesForDevice = HwHelper::get(hwInfo.platform.eRenderCoreFamily).getGpgpuEngineInstances(hwInfo).size();
|
2019-10-07 18:42:28 +08:00
|
|
|
if (device->getNumAvailableDevices() > 1) {
|
|
|
|
numEnginesForDevice *= device->getNumAvailableDevices();
|
2019-11-05 20:38:20 +08:00
|
|
|
numEnginesForDevice += device->engines.size();
|
2019-10-07 18:42:28 +08:00
|
|
|
}
|
|
|
|
EXPECT_EQ(numEnginesForDevice, memoryManager->getRegisteredEnginesCount());
|
2018-09-06 15:01:13 +08:00
|
|
|
}
|
|
|
|
|
2019-10-24 19:34:25 +08:00
|
|
|
TEST(DeviceCreation, givenMultiRootDeviceWhenTheyAreCreatedThenEachOsContextHasUniqueId) {
|
2020-02-03 23:18:21 +08:00
|
|
|
ExecutionEnvironment *executionEnvironment = platform()->peekExecutionEnvironment();
|
2018-11-28 16:02:55 +08:00
|
|
|
const size_t numDevices = 2;
|
2019-11-15 16:59:48 +08:00
|
|
|
executionEnvironment->prepareRootDeviceEnvironments(numDevices);
|
2020-03-04 15:51:02 +08:00
|
|
|
for (auto i = 0u; i < numDevices; i++) {
|
2020-03-25 01:07:46 +08:00
|
|
|
executionEnvironment->rootDeviceEnvironments[i]->setHwInfo(defaultHwInfo.get());
|
2020-03-04 15:51:02 +08:00
|
|
|
}
|
2020-03-24 18:42:54 +08:00
|
|
|
auto hwInfo = *defaultHwInfo;
|
2020-03-03 16:21:18 +08:00
|
|
|
const auto &numGpgpuEngines = static_cast<uint32_t>(HwHelper::get(hwInfo.platform.eRenderCoreFamily).getGpgpuEngineInstances(hwInfo).size());
|
2018-11-28 16:02:55 +08:00
|
|
|
|
2019-05-06 18:33:44 +08:00
|
|
|
auto device1 = std::unique_ptr<MockDevice>(Device::create<MockDevice>(executionEnvironment, 0u));
|
|
|
|
auto device2 = std::unique_ptr<MockDevice>(Device::create<MockDevice>(executionEnvironment, 1u));
|
2018-09-06 21:54:29 +08:00
|
|
|
|
2019-01-23 18:59:54 +08:00
|
|
|
auto ®isteredEngines = executionEnvironment->memoryManager->getRegisteredEngines();
|
2019-02-18 20:59:16 +08:00
|
|
|
EXPECT_EQ(numGpgpuEngines * numDevices, registeredEngines.size());
|
|
|
|
|
2019-01-10 20:57:40 +08:00
|
|
|
for (uint32_t i = 0; i < numGpgpuEngines; i++) {
|
2019-03-23 21:26:06 +08:00
|
|
|
EXPECT_EQ(i, device1->engines[i].osContext->getContextId());
|
|
|
|
EXPECT_EQ(1u, device1->engines[i].osContext->getDeviceBitfield().to_ulong());
|
|
|
|
EXPECT_EQ(i + numGpgpuEngines, device2->engines[i].osContext->getContextId());
|
2019-10-24 19:34:25 +08:00
|
|
|
EXPECT_EQ(1u, device2->engines[i].osContext->getDeviceBitfield().to_ulong());
|
2019-02-18 20:59:16 +08:00
|
|
|
|
|
|
|
EXPECT_EQ(registeredEngines[i].commandStreamReceiver,
|
2019-03-23 21:26:06 +08:00
|
|
|
device1->engines[i].commandStreamReceiver);
|
2019-02-18 20:59:16 +08:00
|
|
|
EXPECT_EQ(registeredEngines[i + numGpgpuEngines].commandStreamReceiver,
|
2019-03-23 21:26:06 +08:00
|
|
|
device2->engines[i].commandStreamReceiver);
|
2018-11-28 16:02:55 +08:00
|
|
|
}
|
2019-01-23 18:59:54 +08:00
|
|
|
EXPECT_EQ(numGpgpuEngines * numDevices, executionEnvironment->memoryManager->getRegisteredEnginesCount());
|
2018-09-06 21:54:29 +08:00
|
|
|
}
|
|
|
|
|
2019-10-24 19:34:25 +08:00
|
|
|
TEST(DeviceCreation, givenMultiRootDeviceWhenTheyAreCreatedThenEachDeviceHasSeperateDeviceIndex) {
|
2020-02-03 23:18:21 +08:00
|
|
|
ExecutionEnvironment *executionEnvironment = platform()->peekExecutionEnvironment();
|
2019-10-24 19:34:25 +08:00
|
|
|
const size_t numDevices = 2;
|
2019-11-15 16:59:48 +08:00
|
|
|
executionEnvironment->prepareRootDeviceEnvironments(numDevices);
|
2020-03-04 15:51:02 +08:00
|
|
|
for (auto i = 0u; i < executionEnvironment->rootDeviceEnvironments.size(); i++) {
|
2020-03-25 01:07:46 +08:00
|
|
|
executionEnvironment->rootDeviceEnvironments[i]->setHwInfo(defaultHwInfo.get());
|
2020-03-04 15:51:02 +08:00
|
|
|
}
|
2019-10-24 19:34:25 +08:00
|
|
|
auto device = std::unique_ptr<MockDevice>(Device::create<MockDevice>(executionEnvironment, 0u));
|
|
|
|
auto device2 = std::unique_ptr<MockDevice>(Device::create<MockDevice>(executionEnvironment, 1u));
|
2018-09-07 14:45:13 +08:00
|
|
|
|
2019-10-24 19:34:25 +08:00
|
|
|
EXPECT_EQ(0u, device->getRootDeviceIndex());
|
|
|
|
EXPECT_EQ(1u, device2->getRootDeviceIndex());
|
2018-09-07 14:45:13 +08:00
|
|
|
}
|
|
|
|
|
2019-10-24 19:34:25 +08:00
|
|
|
TEST(DeviceCreation, givenMultiRootDeviceWhenTheyAreCreatedThenEachDeviceHasSeperateCommandStreamReceiver) {
|
2020-02-03 23:18:21 +08:00
|
|
|
ExecutionEnvironment *executionEnvironment = platform()->peekExecutionEnvironment();
|
2018-11-28 16:02:55 +08:00
|
|
|
const size_t numDevices = 2;
|
2019-11-15 16:59:48 +08:00
|
|
|
executionEnvironment->prepareRootDeviceEnvironments(numDevices);
|
2020-03-04 15:51:02 +08:00
|
|
|
for (auto i = 0u; i < executionEnvironment->rootDeviceEnvironments.size(); i++) {
|
2020-03-25 01:07:46 +08:00
|
|
|
executionEnvironment->rootDeviceEnvironments[i]->setHwInfo(defaultHwInfo.get());
|
2020-03-04 15:51:02 +08:00
|
|
|
}
|
2020-03-24 18:42:54 +08:00
|
|
|
auto hwInfo = *defaultHwInfo;
|
2020-03-03 16:21:18 +08:00
|
|
|
const auto &numGpgpuEngines = HwHelper::get(hwInfo.platform.eRenderCoreFamily).getGpgpuEngineInstances(hwInfo).size();
|
2019-05-06 18:33:44 +08:00
|
|
|
auto device1 = std::unique_ptr<MockDevice>(Device::create<MockDevice>(executionEnvironment, 0u));
|
|
|
|
auto device2 = std::unique_ptr<MockDevice>(Device::create<MockDevice>(executionEnvironment, 1u));
|
2018-09-11 21:55:04 +08:00
|
|
|
|
2019-11-05 20:38:20 +08:00
|
|
|
EXPECT_EQ(numGpgpuEngines, device1->commandStreamReceivers.size());
|
|
|
|
EXPECT_EQ(numGpgpuEngines, device2->commandStreamReceivers.size());
|
2018-11-28 16:02:55 +08:00
|
|
|
|
2019-01-10 20:57:40 +08:00
|
|
|
for (uint32_t i = 0; i < static_cast<uint32_t>(numGpgpuEngines); i++) {
|
2019-11-05 20:38:20 +08:00
|
|
|
EXPECT_NE(device2->engines[i].commandStreamReceiver, device1->engines[i].commandStreamReceiver);
|
2018-11-23 21:59:27 +08:00
|
|
|
}
|
2018-09-11 21:55:04 +08:00
|
|
|
}
|
|
|
|
|
2020-02-21 22:25:04 +08:00
|
|
|
HWTEST_F(DeviceTest, givenDeviceWhenAskingForDefaultEngineThenReturnValidValue) {
|
2020-02-03 23:18:21 +08:00
|
|
|
ExecutionEnvironment *executionEnvironment = platform()->peekExecutionEnvironment();
|
2020-03-04 15:51:02 +08:00
|
|
|
executionEnvironment->prepareRootDeviceEnvironments(1u);
|
2020-02-21 22:25:04 +08:00
|
|
|
auto &hwHelper = HwHelperHw<FamilyType>::get();
|
2020-03-04 15:51:02 +08:00
|
|
|
hwHelper.adjustDefaultEngineType(executionEnvironment->rootDeviceEnvironments[0]->getMutableHardwareInfo());
|
2020-02-21 22:25:04 +08:00
|
|
|
|
2019-05-06 18:33:44 +08:00
|
|
|
auto device = std::unique_ptr<MockDevice>(Device::create<MockDevice>(executionEnvironment, 0));
|
2019-03-20 17:56:22 +08:00
|
|
|
auto osContext = device->getDefaultEngine().osContext;
|
2018-11-28 16:02:55 +08:00
|
|
|
|
2020-03-03 16:21:18 +08:00
|
|
|
EXPECT_EQ(device->getHardwareInfo().capabilityTable.defaultEngineType, osContext->getEngineType());
|
2019-03-20 17:56:22 +08:00
|
|
|
EXPECT_FALSE(osContext->isLowPriority());
|
2018-11-28 16:02:55 +08:00
|
|
|
}
|
|
|
|
|
2018-07-11 16:32:17 +08:00
|
|
|
TEST(DeviceCreation, givenFtrSimulationModeFlagTrueWhenNoOtherSimulationFlagsArePresentThenIsSimulationReturnsTrue) {
|
2020-03-24 18:42:54 +08:00
|
|
|
HardwareInfo hwInfo = *defaultHwInfo;
|
2019-05-08 22:00:24 +08:00
|
|
|
hwInfo.featureTable.ftrSimulationMode = true;
|
2018-07-11 16:32:17 +08:00
|
|
|
|
2019-05-08 22:00:24 +08:00
|
|
|
bool simulationFromDeviceId = hwInfo.capabilityTable.isSimulation(hwInfo.platform.usDeviceID);
|
2018-07-11 16:32:17 +08:00
|
|
|
EXPECT_FALSE(simulationFromDeviceId);
|
|
|
|
|
|
|
|
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(&hwInfo));
|
|
|
|
EXPECT_TRUE(device->isSimulation());
|
|
|
|
}
|
2019-05-15 21:12:55 +08:00
|
|
|
|
|
|
|
TEST(DeviceCreation, givenDeviceWhenCheckingEnginesCountThenNumberGreaterThanZeroIsReturned) {
|
|
|
|
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
|
2020-01-20 22:46:03 +08:00
|
|
|
EXPECT_GT(HwHelper::getEnginesCount(device->getHardwareInfo()), 0u);
|
2019-05-15 21:12:55 +08:00
|
|
|
}
|
2019-11-05 20:38:20 +08:00
|
|
|
|
2020-07-15 18:38:34 +08:00
|
|
|
TEST(DeviceCreation, givenDeviceWhenCheckingParentDeviceThenCorrectValueIsReturned) {
|
|
|
|
UltDeviceFactory deviceFactory{2, 2};
|
|
|
|
|
|
|
|
EXPECT_EQ(nullptr, deviceFactory.rootDevices[0]->getParentDevice());
|
|
|
|
EXPECT_EQ(deviceFactory.rootDevices[0], deviceFactory.subDevices[0]->getParentDevice());
|
|
|
|
EXPECT_EQ(deviceFactory.rootDevices[0], deviceFactory.subDevices[1]->getParentDevice());
|
|
|
|
|
|
|
|
EXPECT_EQ(nullptr, deviceFactory.rootDevices[1]->getParentDevice());
|
|
|
|
EXPECT_EQ(deviceFactory.rootDevices[1], deviceFactory.subDevices[2]->getParentDevice());
|
|
|
|
EXPECT_EQ(deviceFactory.rootDevices[1], deviceFactory.subDevices[3]->getParentDevice());
|
|
|
|
}
|
|
|
|
|
2020-12-30 21:36:22 +08:00
|
|
|
TEST(DeviceCreation, givenRootDeviceWithSubDevicesWhenCheckingEngineGroupsThenItHasOneNonEmptyGroup) {
|
|
|
|
UltDeviceFactory deviceFactory{1, 2};
|
|
|
|
EXPECT_EQ(static_cast<size_t>(EngineGroupType::MaxEngineGroups), deviceFactory.rootDevices[0]->getEngineGroups().size());
|
|
|
|
EXPECT_NE(nullptr, deviceFactory.rootDevices[0]->getNonEmptyEngineGroup(0));
|
|
|
|
EXPECT_EQ(nullptr, deviceFactory.rootDevices[0]->getNonEmptyEngineGroup(1));
|
|
|
|
}
|
|
|
|
|
2019-11-05 20:38:20 +08:00
|
|
|
using DeviceHwTest = ::testing::Test;
|
|
|
|
|
2019-12-27 18:32:12 +08:00
|
|
|
HWTEST_F(DeviceHwTest, givenHwHelperInputWhenInitializingCsrThenCreatePageTableManagerIfNeeded) {
|
2020-03-24 18:42:54 +08:00
|
|
|
HardwareInfo localHwInfo = *defaultHwInfo;
|
2019-11-05 20:38:20 +08:00
|
|
|
localHwInfo.capabilityTable.ftrRenderCompressedBuffers = false;
|
|
|
|
localHwInfo.capabilityTable.ftrRenderCompressedImages = false;
|
|
|
|
|
2020-01-30 16:36:05 +08:00
|
|
|
MockExecutionEnvironment executionEnvironment;
|
2019-12-27 18:32:12 +08:00
|
|
|
executionEnvironment.prepareRootDeviceEnvironments(3);
|
2019-11-05 20:38:20 +08:00
|
|
|
executionEnvironment.incRefInternal();
|
2020-03-04 15:51:02 +08:00
|
|
|
for (auto i = 0u; i < executionEnvironment.rootDeviceEnvironments.size(); i++) {
|
|
|
|
executionEnvironment.rootDeviceEnvironments[i]->setHwInfo(&localHwInfo);
|
|
|
|
}
|
2019-11-05 20:38:20 +08:00
|
|
|
executionEnvironment.initializeMemoryManager();
|
2019-12-27 18:32:12 +08:00
|
|
|
auto defaultEngineType = getChosenEngineType(localHwInfo);
|
2019-11-05 20:38:20 +08:00
|
|
|
std::unique_ptr<MockDevice> device;
|
|
|
|
device.reset(MockDevice::createWithExecutionEnvironment<MockDevice>(&localHwInfo, &executionEnvironment, 0));
|
|
|
|
auto &csr0 = device->getUltCommandStreamReceiver<FamilyType>();
|
|
|
|
EXPECT_FALSE(csr0.createPageTableManagerCalled);
|
|
|
|
|
2020-03-04 15:51:02 +08:00
|
|
|
auto hwInfo = executionEnvironment.rootDeviceEnvironments[1]->getMutableHardwareInfo();
|
2019-11-05 20:38:20 +08:00
|
|
|
hwInfo->capabilityTable.ftrRenderCompressedBuffers = true;
|
|
|
|
hwInfo->capabilityTable.ftrRenderCompressedImages = false;
|
2019-12-27 18:32:12 +08:00
|
|
|
device.reset(MockDevice::createWithExecutionEnvironment<MockDevice>(&localHwInfo, &executionEnvironment, 1));
|
2019-11-05 20:38:20 +08:00
|
|
|
auto &csr1 = device->getUltCommandStreamReceiver<FamilyType>();
|
2019-12-27 18:32:12 +08:00
|
|
|
EXPECT_EQ(csr1.needsPageTableManager(defaultEngineType), csr1.createPageTableManagerCalled);
|
2019-11-05 20:38:20 +08:00
|
|
|
|
2020-03-04 15:51:02 +08:00
|
|
|
hwInfo = executionEnvironment.rootDeviceEnvironments[2]->getMutableHardwareInfo();
|
2019-11-05 20:38:20 +08:00
|
|
|
hwInfo->capabilityTable.ftrRenderCompressedBuffers = false;
|
|
|
|
hwInfo->capabilityTable.ftrRenderCompressedImages = true;
|
2019-12-27 18:32:12 +08:00
|
|
|
device.reset(MockDevice::createWithExecutionEnvironment<MockDevice>(&localHwInfo, &executionEnvironment, 2));
|
2019-11-05 20:38:20 +08:00
|
|
|
auto &csr2 = device->getUltCommandStreamReceiver<FamilyType>();
|
2019-12-27 18:32:12 +08:00
|
|
|
EXPECT_EQ(csr2.needsPageTableManager(defaultEngineType), csr2.createPageTableManagerCalled);
|
2019-11-05 20:38:20 +08:00
|
|
|
}
|
2020-01-21 16:35:12 +08:00
|
|
|
|
2020-02-06 03:00:08 +08:00
|
|
|
HWTEST_F(DeviceHwTest, givenDeviceCreationWhenCsrFailsToCreateGlobalSyncAllocationThenReturnNull) {
|
|
|
|
class MockUltCsrThatFailsToCreateGlobalFenceAllocation : public UltCommandStreamReceiver<FamilyType> {
|
|
|
|
public:
|
2020-10-29 22:33:35 +08:00
|
|
|
MockUltCsrThatFailsToCreateGlobalFenceAllocation(ExecutionEnvironment &executionEnvironment,
|
|
|
|
const DeviceBitfield deviceBitfield)
|
2020-10-28 23:08:37 +08:00
|
|
|
: UltCommandStreamReceiver<FamilyType>(executionEnvironment, 0, deviceBitfield) {}
|
2020-02-06 03:00:08 +08:00
|
|
|
bool createGlobalFenceAllocation() override {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
class MockDeviceThatFailsToCreateGlobalFenceAllocation : public MockDevice {
|
|
|
|
public:
|
|
|
|
MockDeviceThatFailsToCreateGlobalFenceAllocation(ExecutionEnvironment *executionEnvironment, uint32_t deviceIndex)
|
|
|
|
: MockDevice(executionEnvironment, deviceIndex) {}
|
|
|
|
std::unique_ptr<CommandStreamReceiver> createCommandStreamReceiver() const override {
|
2020-10-28 23:08:37 +08:00
|
|
|
return std::make_unique<MockUltCsrThatFailsToCreateGlobalFenceAllocation>(*executionEnvironment, getDeviceBitfield());
|
2020-02-06 03:00:08 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
auto executionEnvironment = platform()->peekExecutionEnvironment();
|
|
|
|
auto mockDevice(MockDevice::create<MockDeviceThatFailsToCreateGlobalFenceAllocation>(executionEnvironment, 0));
|
|
|
|
EXPECT_EQ(nullptr, mockDevice);
|
|
|
|
}
|
|
|
|
|
2020-01-21 16:35:12 +08:00
|
|
|
TEST(DeviceGenEngineTest, givenHwCsrModeWhenGetEngineThenDedicatedForInternalUsageEngineIsReturned) {
|
|
|
|
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
|
|
|
|
|
|
|
|
auto &internalEngine = device->getInternalEngine();
|
|
|
|
auto &defaultEngine = device->getDefaultEngine();
|
|
|
|
EXPECT_NE(defaultEngine.commandStreamReceiver, internalEngine.commandStreamReceiver);
|
|
|
|
}
|
2020-02-10 16:44:00 +08:00
|
|
|
|
|
|
|
TEST(DeviceGenEngineTest, whenCreateDeviceThenInternalEngineHasDefaultType) {
|
|
|
|
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
|
|
|
|
|
|
|
|
auto internalEngineType = device->getInternalEngine().osContext->getEngineType();
|
|
|
|
auto defaultEngineType = getChosenEngineType(device->getHardwareInfo());
|
|
|
|
EXPECT_EQ(defaultEngineType, internalEngineType);
|
|
|
|
}
|
2020-03-07 02:02:24 +08:00
|
|
|
|
|
|
|
TEST(DeviceGenEngineTest, givenCreatedDeviceWhenRetrievingDefaultEngineThenOsContextHasDefaultFieldSet) {
|
|
|
|
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
|
|
|
|
|
|
|
|
auto &defaultEngine = device->getDefaultEngine();
|
|
|
|
EXPECT_TRUE(defaultEngine.osContext->isDefaultContext());
|
|
|
|
}
|
2020-11-16 19:43:03 +08:00
|
|
|
|
|
|
|
TEST(DeviceGenEngineTest, givenNoEmptyGroupsWhenGettingNonEmptyGroupsThenReturnCorrectResults) {
|
|
|
|
const auto nonEmptyEngineGroup = std::vector<EngineControl>{EngineControl{nullptr, nullptr}};
|
|
|
|
|
|
|
|
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
|
|
|
|
auto &engineGroups = device->getEngineGroups();
|
|
|
|
engineGroups.clear();
|
|
|
|
engineGroups.push_back(nonEmptyEngineGroup);
|
|
|
|
engineGroups.push_back(nonEmptyEngineGroup);
|
|
|
|
engineGroups.push_back(nonEmptyEngineGroup);
|
|
|
|
engineGroups.push_back(nonEmptyEngineGroup);
|
|
|
|
|
|
|
|
EXPECT_EQ(&engineGroups[0], device->getNonEmptyEngineGroup(0));
|
|
|
|
EXPECT_EQ(&engineGroups[1], device->getNonEmptyEngineGroup(1));
|
|
|
|
EXPECT_EQ(&engineGroups[2], device->getNonEmptyEngineGroup(2));
|
|
|
|
EXPECT_EQ(&engineGroups[3], device->getNonEmptyEngineGroup(3));
|
|
|
|
EXPECT_EQ(nullptr, device->getNonEmptyEngineGroup(4));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(DeviceGenEngineTest, givenEmptyGroupsWhenGettingNonEmptyGroupsThenReturnCorrectResults) {
|
|
|
|
const auto emptyEngineGroup = std::vector<EngineControl>{};
|
|
|
|
const auto nonEmptyEngineGroup = std::vector<EngineControl>{EngineControl{nullptr, nullptr}};
|
|
|
|
|
|
|
|
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
|
|
|
|
auto &engineGroups = device->getEngineGroups();
|
|
|
|
engineGroups.clear();
|
|
|
|
engineGroups.push_back(emptyEngineGroup);
|
|
|
|
engineGroups.push_back(nonEmptyEngineGroup);
|
|
|
|
engineGroups.push_back(emptyEngineGroup);
|
|
|
|
engineGroups.push_back(nonEmptyEngineGroup);
|
|
|
|
|
|
|
|
EXPECT_EQ(&engineGroups[1], device->getNonEmptyEngineGroup(0));
|
|
|
|
EXPECT_EQ(&engineGroups[3], device->getNonEmptyEngineGroup(1));
|
|
|
|
EXPECT_EQ(nullptr, device->getNonEmptyEngineGroup(2));
|
|
|
|
}
|
2020-11-24 22:49:04 +08:00
|
|
|
|
|
|
|
TEST(DeviceGenEngineTest, whenGettingQueueFamilyCapabilitiesAllThenReturnCorrectValue) {
|
2020-12-15 02:07:09 +08:00
|
|
|
const cl_command_queue_capabilities_intel expectedProperties = CL_QUEUE_CAPABILITY_CREATE_SINGLE_QUEUE_EVENTS_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_CREATE_CROSS_QUEUE_EVENTS_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_SINGLE_QUEUE_EVENT_WAIT_LIST_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_CROSS_QUEUE_EVENT_WAIT_LIST_INTEL |
|
2020-11-24 22:49:04 +08:00
|
|
|
CL_QUEUE_CAPABILITY_TRANSFER_BUFFER_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_TRANSFER_BUFFER_RECT_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_MAP_BUFFER_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_FILL_BUFFER_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_TRANSFER_IMAGE_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_MAP_IMAGE_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_FILL_IMAGE_INTEL |
|
2020-12-08 20:40:04 +08:00
|
|
|
CL_QUEUE_CAPABILITY_TRANSFER_BUFFER_IMAGE_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_TRANSFER_IMAGE_BUFFER_INTEL |
|
2020-11-24 22:49:04 +08:00
|
|
|
CL_QUEUE_CAPABILITY_MARKER_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_BARRIER_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_KERNEL_INTEL;
|
|
|
|
EXPECT_EQ(expectedProperties, MockClDevice::getQueueFamilyCapabilitiesAll());
|
|
|
|
}
|
|
|
|
|
2020-12-17 00:04:38 +08:00
|
|
|
TEST(DeviceGenEngineTest, givenComputeQueueWhenGettingQueueFamilyCapabilitiesThenDoNotReturnKernel) {
|
2020-11-24 22:49:04 +08:00
|
|
|
auto device = std::make_unique<MockClDevice>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(defaultHwInfo.get()));
|
2020-12-08 20:40:04 +08:00
|
|
|
EXPECT_EQ(CL_QUEUE_DEFAULT_CAPABILITIES_INTEL, device->getQueueFamilyCapabilities(NEO::EngineGroupType::Compute));
|
|
|
|
EXPECT_EQ(CL_QUEUE_DEFAULT_CAPABILITIES_INTEL, device->getQueueFamilyCapabilities(NEO::EngineGroupType::RenderCompute));
|
2020-12-17 00:04:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(DeviceGenEngineTest, givenCopyQueueWhenGettingQueueFamilyCapabilitiesThenDoNotReturnKernel) {
|
|
|
|
const cl_command_queue_capabilities_intel capabilitiesNotSupportedOnBlitter = CL_QUEUE_CAPABILITY_KERNEL_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_FILL_BUFFER_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_TRANSFER_IMAGE_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_FILL_IMAGE_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_TRANSFER_BUFFER_IMAGE_INTEL |
|
|
|
|
CL_QUEUE_CAPABILITY_TRANSFER_IMAGE_BUFFER_INTEL;
|
|
|
|
const cl_command_queue_capabilities_intel expectedBlitterCapabilities = setBits(MockClDevice::getQueueFamilyCapabilitiesAll(), false, capabilitiesNotSupportedOnBlitter);
|
|
|
|
|
|
|
|
auto device = std::make_unique<MockClDevice>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(defaultHwInfo.get()));
|
|
|
|
EXPECT_EQ(expectedBlitterCapabilities, device->getQueueFamilyCapabilities(NEO::EngineGroupType::Copy));
|
2020-11-24 22:49:04 +08:00
|
|
|
}
|