mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 18:00:01 +08:00
Change-Id: I6cbec8d6ff5006b418179f9d6c54842b89ed57e1 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
14 lines
273 B
C++
14 lines
273 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "CL/cl.h"
|
|
#include <cstdint>
|
|
namespace OCLRT {
|
|
void getExtraDeviceInfo(cl_device_info paramName, cl_uint ¶m, const void *&src, size_t &size, size_t &retSize);
|
|
}
|