Files
compute-runtime/unit_tests/fixtures/device_instrumentation_fixture.h
Filip Hazubski 8fcff2241f Add ClDevice
Decouple cl_device_id from Device class.

Related-To: NEO-3938

Change-Id: I68543a753aea562f3b47ba0d23a059ff3cffa906
Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
2020-01-17 12:43:11 +01:00

23 lines
362 B
C++

/*
* Copyright (C) 2018-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#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