-
Notifications
You must be signed in to change notification settings - Fork 71
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Above pull request only implemented a subset of supported function for core 3.0. There are other functions that needs to be implemented. But these do not have high priority.
fpga-runtime-for-opencl/include/CL/cl_icd.h
Lines 154 to 170 in 950f21d
#ifdef CL_VERSION_3_0 | |
typedef CL_API_ENTRY cl_mem(CL_API_CALL *cl_api_clCreateBufferWithProperties)( | |
cl_context context, const cl_mem_properties *properties, cl_mem_flags flags, | |
size_t size, void *host_ptr, | |
cl_int *errcode_ret) CL_API_SUFFIX__VERSION_3_0; | |
typedef CL_API_ENTRY cl_mem(CL_API_CALL *cl_api_clCreateImageWithProperties)( | |
cl_context context, const cl_mem_properties *properties, cl_mem_flags flags, | |
const cl_image_format *image_format, const cl_image_desc *image_desc, | |
void *host_ptr, cl_int *errcode_ret) CL_API_SUFFIX__VERSION_3_0; | |
typedef CL_API_ENTRY cl_int(CL_API_CALL* cl_api_clSetContextDestructorCallback)( | |
cl_context context, | |
void(CL_CALLBACK* pfn_notify)(cl_context context, void* user_data), | |
void* user_data) CL_API_SUFFIX__VERSION_3_0; | |
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request