mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: I56f939d99397848ccf7588dd7c822fd19035b935 Signed-off-by: Jablonski, Mateusz <mateusz.jablonski@intel.com>
22 lines
307 B
C++
22 lines
307 B
C++
/*
|
|
* Copyright (C) 2017-2020 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;
|
|
};
|