Rename getEnginesCount() -> getGpgpuEnginesCount()

Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk
2021-06-28 16:24:32 +00:00
committed by Compute-Runtime-Automation
parent 84653008b9
commit 9372360efd
4 changed files with 8 additions and 8 deletions

View File

@@ -469,9 +469,9 @@ TEST(DeviceCreation, givenFtrSimulationModeFlagTrueWhenNoOtherSimulationFlagsAre
EXPECT_TRUE(device->isSimulation());
}
TEST(DeviceCreation, givenDeviceWhenCheckingEnginesCountThenNumberGreaterThanZeroIsReturned) {
TEST(DeviceCreation, givenDeviceWhenCheckingGpgpuEnginesCountThenNumberGreaterThanZeroIsReturned) {
auto device = std::unique_ptr<Device>(MockDevice::createWithNewExecutionEnvironment<Device>(nullptr));
EXPECT_GT(HwHelper::getEnginesCount(device->getHardwareInfo()), 0u);
EXPECT_GT(HwHelper::getGpgpuEnginesCount(device->getHardwareInfo()), 0u);
}
TEST(DeviceCreation, givenDeviceWhenCheckingParentDeviceThenCorrectValueIsReturned) {