mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 09:58:55 +08:00
Related-To: NEO-5001 Change-Id: Ie0e4395fd3ed9a5df81c7075ef039092a0687b9c Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/test/unit_test/fixtures/preemption_fixture.h"
|
|
|
|
#include "shared/source/command_stream/preemption.h"
|
|
#include "shared/source/helpers/hw_info.h"
|
|
#include "shared/test/unit_test/cmd_parse/hw_parse.h"
|
|
#include "shared/test/unit_test/mocks/mock_device.h"
|
|
|
|
#include "opencl/test/unit_test/mocks/mock_context.h"
|
|
#include "opencl/test/unit_test/mocks/mock_kernel.h"
|
|
#include "test.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace NEO;
|
|
|
|
DevicePreemptionTests::DevicePreemptionTests() = default;
|
|
DevicePreemptionTests::~DevicePreemptionTests() = default;
|
|
|
|
void DevicePreemptionTests::SetUp() {
|
|
if (dbgRestore == nullptr) {
|
|
dbgRestore.reset(new DebugManagerStateRestore());
|
|
}
|
|
|
|
device = std::unique_ptr<MockDevice>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(nullptr));
|
|
executionEnvironment.reset(new SPatchExecutionEnvironment);
|
|
memset(executionEnvironment.get(), 0, sizeof(SPatchExecutionEnvironment));
|
|
|
|
ASSERT_NE(nullptr, device);
|
|
|
|
waTable = &device->getRootDeviceEnvironment().getMutableHardwareInfo()->workaroundTable;
|
|
}
|
|
|
|
void DevicePreemptionTests::TearDown() {
|
|
dbgRestore.reset();
|
|
}
|