mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-01 04:23:00 +08:00
Cleaned up files: level_zero/core/source/cmdlist/cmdlist_hw.h level_zero/core/source/cmdqueue/cmdqueue.h level_zero/core/source/event/event.h opencl/source/helpers/get_info_status_mapper.h opencl/source/helpers/hardware_commands_helper.h shared/source/helpers/per_thread_data.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
30 lines
1.2 KiB
C++
30 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2021-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/test/unit_test/fixtures/front_window_fixture.h"
|
|
|
|
#include "shared/source/gmm_helper/gmm_helper.h"
|
|
#include "shared/source/memory_manager/gfx_partition.h"
|
|
#include "shared/test/common/helpers/debug_manager_state_restore.h"
|
|
#include "shared/test/common/mocks/mock_device.h"
|
|
#include "shared/test/common/test_macros/test.h"
|
|
|
|
using namespace NEO;
|
|
|
|
MemManagerFixture::FrontWindowMemManagerMock::FrontWindowMemManagerMock(NEO::ExecutionEnvironment &executionEnvironment) : MockMemoryManager(executionEnvironment) {}
|
|
void MemManagerFixture::FrontWindowMemManagerMock::forceLimitedRangeAllocator(uint32_t rootDeviceIndex, uint64_t range) { getGfxPartition(rootDeviceIndex)->init(range, 0, 0, gfxPartitions.size(), true); }
|
|
|
|
void MemManagerFixture::setUp() {
|
|
DebugManagerStateRestore dbgRestorer;
|
|
DebugManager.flags.UseExternalAllocatorForSshAndDsh.set(true);
|
|
DeviceFixture::setUp();
|
|
memManager = std::unique_ptr<FrontWindowMemManagerMock>(new FrontWindowMemManagerMock(*pDevice->getExecutionEnvironment()));
|
|
}
|
|
void MemManagerFixture::tearDown() {
|
|
DeviceFixture::tearDown();
|
|
}
|