mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
Change-Id: If965c79d70392db26597aea4c2f3b7ae2820fe96 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
55 lines
2.0 KiB
C++
55 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/context/context.h"
|
|
#include "unit_tests/fixtures/device_host_queue_fixture.h"
|
|
#include "unit_tests/helpers/hw_parse.h"
|
|
#include "unit_tests/mocks/mock_device_queue.h"
|
|
|
|
using namespace NEO;
|
|
using namespace DeviceHostQueue;
|
|
|
|
typedef DeviceQueueHwTest Gen10DeviceQueueSlb;
|
|
|
|
GEN10TEST_F(Gen10DeviceQueueSlb, expectedAllocationSize) {
|
|
deviceQueue = createQueueObject();
|
|
ASSERT_NE(deviceQueue, nullptr);
|
|
|
|
auto expectedSize = getMinimumSlbSize<FamilyType>();
|
|
expectedSize *= 128; //num of enqueues
|
|
expectedSize += sizeof(typename FamilyType::MI_BATCH_BUFFER_START);
|
|
expectedSize = alignUp(expectedSize, MemoryConstants::pageSize);
|
|
expectedSize += MockDeviceQueueHw<FamilyType>::getExecutionModelCleanupSectionSize();
|
|
expectedSize += (4 * MemoryConstants::pageSize);
|
|
expectedSize = alignUp(expectedSize, MemoryConstants::pageSize);
|
|
|
|
ASSERT_NE(deviceQueue->getSlbBuffer(), nullptr);
|
|
EXPECT_EQ(deviceQueue->getSlbBuffer()->getUnderlyingBufferSize(), expectedSize);
|
|
|
|
delete deviceQueue;
|
|
}
|
|
|
|
GEN10TEST_F(Gen10DeviceQueueSlb, SlbCommandsWa) {
|
|
auto mockDeviceQueueHw = new MockDeviceQueueHw<FamilyType>(pContext, device,
|
|
DeviceHostQueue::deviceQueueProperties::minimumProperties[0]);
|
|
EXPECT_FALSE(mockDeviceQueueHw->arbCheckWa);
|
|
EXPECT_FALSE(mockDeviceQueueHw->pipeControlWa);
|
|
EXPECT_FALSE(mockDeviceQueueHw->miAtomicWa);
|
|
EXPECT_FALSE(mockDeviceQueueHw->lriWa);
|
|
|
|
delete mockDeviceQueueHw;
|
|
}
|
|
|
|
GEN10TEST_F(DeviceQueueHwTest, CSPrefetchSizeWA) {
|
|
EXPECT_EQ(612u, DeviceQueueHw<FamilyType>::getCSPrefetchSize());
|
|
auto mockDeviceQueueHw = new MockDeviceQueueHw<FamilyType>(pContext, device,
|
|
DeviceHostQueue::deviceQueueProperties::minimumProperties[0]);
|
|
|
|
EXPECT_EQ(752u, mockDeviceQueueHw->getMinimumSlbSize() + mockDeviceQueueHw->getWaCommandsSize());
|
|
delete mockDeviceQueueHw;
|
|
}
|