Files
compute-runtime/unit_tests/fixtures/device_instrumentation_fixture.h
Stefanowski, Adam c202c95634 Stop creating osInterface in WddmCSR and DrmCSR constructors
Change-Id: Ic8ca21824882dfae5df3fe05c7ec1ff96311f286
2018-10-31 15:01:50 +01:00

21 lines
342 B
C++

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