mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00
22 lines
307 B
C++
22 lines
307 B
C++
/*
|
|
* 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);
|
|
void tearDown();
|
|
|
|
NEO::BuiltIns *pBuiltIns = nullptr;
|
|
};
|