Files
compute-runtime/opencl/test/unit_test/fixtures/built_in_fixture.h

22 lines
406 B
C
Raw Normal View History

/*
* Copyright (C) 2018-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
namespace NEO {
class BuiltIns;
class Device;
} // namespace NEO
class BuiltInFixture {
public:
void SetUp(NEO::Device *pDevice); // NOLINT(readability-identifier-naming)
void TearDown(); // NOLINT(readability-identifier-naming)
NEO::BuiltIns *pBuiltIns = nullptr;
};