Correct USM function signatures
Change-Id: I555c87edcb063114305223bb912472d61016b3c7 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
parent
060c1ac10b
commit
cb6777ee73
|
@ -3501,7 +3501,7 @@ clSetPerformanceConfigurationINTEL(
|
|||
|
||||
void *clHostMemAllocINTEL(
|
||||
cl_context context,
|
||||
cl_mem_properties_intel *properties,
|
||||
const cl_mem_properties_intel *properties,
|
||||
size_t size,
|
||||
cl_uint alignment,
|
||||
cl_int *errcodeRet) {
|
||||
|
@ -3540,7 +3540,7 @@ void *clHostMemAllocINTEL(
|
|||
void *clDeviceMemAllocINTEL(
|
||||
cl_context context,
|
||||
cl_device_id device,
|
||||
cl_mem_properties_intel *properties,
|
||||
const cl_mem_properties_intel *properties,
|
||||
size_t size,
|
||||
cl_uint alignment,
|
||||
cl_int *errcodeRet) {
|
||||
|
@ -3582,7 +3582,7 @@ void *clDeviceMemAllocINTEL(
|
|||
void *clSharedMemAllocINTEL(
|
||||
cl_context context,
|
||||
cl_device_id device,
|
||||
cl_mem_properties_intel *properties,
|
||||
const cl_mem_properties_intel *properties,
|
||||
size_t size,
|
||||
cl_uint alignment,
|
||||
cl_int *errcodeRet) {
|
||||
|
@ -3654,7 +3654,7 @@ cl_int clMemFreeCommon(cl_context context,
|
|||
|
||||
cl_int clMemFreeINTEL(
|
||||
cl_context context,
|
||||
const void *ptr) {
|
||||
void *ptr) {
|
||||
return clMemFreeCommon(context, ptr, false);
|
||||
}
|
||||
|
||||
|
|
|
@ -927,7 +927,7 @@ extern CL_API_ENTRY cl_program CL_API_CALL clCreateProgramWithILKHR(
|
|||
|
||||
void *clHostMemAllocINTEL(
|
||||
cl_context context,
|
||||
cl_mem_properties_intel *properties,
|
||||
const cl_mem_properties_intel *properties,
|
||||
size_t size,
|
||||
cl_uint alignment,
|
||||
cl_int *errcodeRet);
|
||||
|
@ -935,7 +935,7 @@ void *clHostMemAllocINTEL(
|
|||
void *clDeviceMemAllocINTEL(
|
||||
cl_context context,
|
||||
cl_device_id device,
|
||||
cl_mem_properties_intel *properties,
|
||||
const cl_mem_properties_intel *properties,
|
||||
size_t size,
|
||||
cl_uint alignment,
|
||||
cl_int *errcodeRet);
|
||||
|
@ -943,14 +943,14 @@ void *clDeviceMemAllocINTEL(
|
|||
void *clSharedMemAllocINTEL(
|
||||
cl_context context,
|
||||
cl_device_id device,
|
||||
cl_mem_properties_intel *properties,
|
||||
const cl_mem_properties_intel *properties,
|
||||
size_t size,
|
||||
cl_uint alignment,
|
||||
cl_int *errcodeRet);
|
||||
|
||||
cl_int clMemFreeINTEL(
|
||||
cl_context context,
|
||||
const void *ptr);
|
||||
void *ptr);
|
||||
|
||||
cl_int clMemBlockingFreeINTEL(
|
||||
cl_context context,
|
||||
|
|
Loading…
Reference in New Issue