Files
compute-runtime/opencl/test/unit_test/fixtures/device_instrumentation_fixture.h
Mateusz Jablonski bca852617c Remove usage of TestLegacy from opencl tests
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2022-08-16 22:16:48 +02:00

25 lines
376 B
C++

/*
* Copyright (C) 2018-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <memory>
namespace NEO {
class ClDevice;
class Device;
struct HardwareInfo;
struct DeviceInstrumentationFixture {
void setUp(bool instrumentation);
std::unique_ptr<ClDevice> device = nullptr;
HardwareInfo *hwInfo = nullptr;
};
} // namespace NEO