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