mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-09 06:23:01 +08:00
Related-To: NEO-3938 Change-Id: I6c518c25d9868d7a94a20d3a1fcaf9a3631ebc0b Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
19 lines
395 B
C++
19 lines
395 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "CL/cl.h"
|
|
|
|
#include <cstdint>
|
|
namespace NEO {
|
|
class ClDevice;
|
|
|
|
namespace ClDeviceHelper {
|
|
void getExtraDeviceInfo(const ClDevice &clDevice, cl_device_info paramName, cl_uint ¶m, const void *&src, size_t &size, size_t &retSize);
|
|
}; // namespace ClDeviceHelper
|
|
} // namespace NEO
|