mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
fix identifier naming
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
9ce0f4d0c3
commit
42115e4a1d
@@ -4327,18 +4327,18 @@ cl_program CL_API_CALL clCreateProgramWithILKHR(cl_context context,
|
||||
return program;
|
||||
}
|
||||
|
||||
cl_int CL_API_CALL clGetKernelSuggestedLocalWorkSizeKHR(cl_command_queue command_queue,
|
||||
cl_int CL_API_CALL clGetKernelSuggestedLocalWorkSizeKHR(cl_command_queue commandQueue,
|
||||
cl_kernel kernel,
|
||||
cl_uint work_dim,
|
||||
const size_t *global_work_offset,
|
||||
const size_t *global_work_size,
|
||||
size_t *suggested_local_work_size) {
|
||||
return clGetKernelSuggestedLocalWorkSizeINTEL(command_queue,
|
||||
cl_uint workDim,
|
||||
const size_t *globalWorkOffset,
|
||||
const size_t *globalWorkSize,
|
||||
size_t *suggestedLocalWorkSize) {
|
||||
return clGetKernelSuggestedLocalWorkSizeINTEL(commandQueue,
|
||||
kernel,
|
||||
work_dim,
|
||||
global_work_offset,
|
||||
global_work_size,
|
||||
suggested_local_work_size);
|
||||
workDim,
|
||||
globalWorkOffset,
|
||||
globalWorkSize,
|
||||
suggestedLocalWorkSize);
|
||||
}
|
||||
|
||||
#define RETURN_FUNC_PTR_IF_EXIST(name) \
|
||||
|
||||
Reference in New Issue
Block a user