mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00
19 lines
317 B
C++
19 lines
317 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "opencl/source/helpers/cl_hw_helper.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct ClHwHelperMock : public ClHwHelper {
|
|
using ClHwHelper::makeDeviceIpVersion;
|
|
using ClHwHelper::makeDeviceRevision;
|
|
};
|
|
|
|
} // namespace NEO
|