2018-09-20 12:18:19 +00:00
|
|
|
/*
|
2020-01-20 15:46:03 +01:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2018-09-20 12:18:19 +00:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
#include "CL/cl.h"
|
2019-02-27 11:39:32 +01:00
|
|
|
|
2018-09-20 12:18:19 +00:00
|
|
|
#include <cstdint>
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2019-03-19 12:10:01 +01:00
|
|
|
struct HardwareInfo;
|
|
|
|
|
|
|
|
|
|
namespace DeviceHelper {
|
2019-04-17 10:33:45 +02:00
|
|
|
void getExtraDeviceInfo(const HardwareInfo &hwInfo, cl_device_info paramName, cl_uint ¶m, const void *&src, size_t &size, size_t &retSize);
|
2019-03-19 12:10:01 +01:00
|
|
|
}; // namespace DeviceHelper
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|