mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:05:07 +08:00
36 lines
1.4 KiB
C++
36 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2017-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/test/unit_test/fixtures/memory_manager_fixture.h"
|
|
|
|
#include "shared/source/command_stream/preemption.h"
|
|
#include "shared/source/helpers/hw_helper.h"
|
|
#include "shared/source/os_interface/os_context.h"
|
|
|
|
#include "opencl/test/unit_test/mocks/mock_csr.h"
|
|
#include "opencl/test/unit_test/mocks/mock_memory_manager.h"
|
|
|
|
using namespace NEO;
|
|
|
|
void MemoryManagerWithCsrFixture::SetUp() {
|
|
executionEnvironment.prepareRootDeviceEnvironments(1);
|
|
executionEnvironment.rootDeviceEnvironments[0]->setHwInfo(defaultHwInfo.get());
|
|
csr = std::make_unique<MockCommandStreamReceiver>(this->executionEnvironment, 0, 1);
|
|
memoryManager = new MockMemoryManager(executionEnvironment);
|
|
executionEnvironment.memoryManager.reset(memoryManager);
|
|
csr->tagAddress = ¤tGpuTag;
|
|
auto hwInfo = executionEnvironment.rootDeviceEnvironments[0]->getHardwareInfo();
|
|
auto engine = HwHelper::get(hwInfo->platform.eRenderCoreFamily).getGpgpuEngineInstances(*hwInfo)[0];
|
|
auto osContext = memoryManager->createAndRegisterOsContext(csr.get(), EngineTypeUsage{engine.first, EngineUsage::Regular}, 1,
|
|
PreemptionHelper::getDefaultPreemptionMode(*hwInfo),
|
|
false);
|
|
csr->setupContext(*osContext);
|
|
}
|
|
|
|
void MemoryManagerWithCsrFixture::TearDown() {
|
|
}
|