/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
D | fd5_compute.c | 148 const unsigned work_dim = info->work_dim ? info->work_dim : 3; in fd5_launch_grid() local 150 OUT_RING(ring, A5XX_HLSQ_CS_NDRANGE_0_KERNELDIM(work_dim) | in fd5_launch_grid()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/ |
D | fd6_compute.c | 156 const unsigned work_dim = info->work_dim ? info->work_dim : 3; in fd6_launch_grid() local 158 OUT_RING(ring, A6XX_HLSQ_CS_NDRANGE_0_KERNELDIM(work_dim) | in fd6_launch_grid()
|
/third_party/mesa3d/src/freedreno/computerator/ |
D | a4xx.c | 290 unsigned work_dim = 0; in a4xx_emit_grid() local 294 work_dim++; in a4xx_emit_grid() 298 OUT_RING(ring, A4XX_HLSQ_CL_NDRANGE_0_KERNELDIM(work_dim) | in a4xx_emit_grid()
|
D | a6xx.c | 397 unsigned work_dim = 0; in a6xx_emit_grid() local 401 work_dim++; in a6xx_emit_grid() 405 OUT_RING(ring, A6XX_HLSQ_CS_NDRANGE_0_KERNELDIM(work_dim) | in a6xx_emit_grid()
|
/third_party/mesa3d/src/microsoft/clc/ |
D | clc_compiler.h | 154 unsigned work_dim; member
|
D | clc_nir.c | 62 work_dim)), in lower_load_work_dim()
|
D | compute_test.cpp | 503 if (work_props.work_dim == 0) in run_shader_with_raw_args() 504 work_props.work_dim = 3; in run_shader_with_raw_args()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_program.h | 59 unsigned work_dim; member
|
D | zink_draw.cpp | 899 offsetof(struct zink_cs_push_constant, work_dim), sizeof(uint32_t), in zink_launch_grid() 900 &info->work_dim); in zink_launch_grid()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_state_cs.c | 61 unsigned work_dim; member 371 system_values.work_dim = work_dim_arg; in generate_compute() 1326 … job_info->grid_size[0], job_info->grid_size[1], job_info->grid_size[2], job_info->work_dim, in cs_exec_fn() 1380 job_info.work_dim = info->work_dim; in llvmpipe_launch_grid()
|
D | lp_jit.h | 513 uint32_t work_dim,
|
/third_party/mesa3d/src/gallium/include/pipe/ |
D | p_state.h | 932 uint work_dim; member
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | validationCL.cpp | 2013 cl_uint work_dim, in ValidateEnqueueNDRangeKernel() argument 2040 if (work_dim == 0u || work_dim > device.getInfo().maxWorkItemSizes.size()) in ValidateEnqueueNDRangeKernel() 2060 for (cl_uint dim = 0u; dim < work_dim; ++dim) in ValidateEnqueueNDRangeKernel() 2077 for (cl_uint dim = 0u; dim < work_dim; ++dim) in ValidateEnqueueNDRangeKernel()
|
D | validationCL_autogen.h | 266 cl_uint work_dim,
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_tgsi.h | 181 LLVMValueRef work_dim; member
|
/third_party/mindspore/mindspore/lite/src/runtime/gpu/opencl/ |
D | opencl_wrapper.cc | 534 cl_int clEnqueueNDRangeKernel(cl_command_queue command_queue, cl_kernel kernel, cl_uint work_dim, in clEnqueueNDRangeKernel() argument 540 …return func(command_queue, kernel, work_dim, global_work_offset, global_work_size, local_work_size, in clEnqueueNDRangeKernel()
|
/third_party/opencl-headers/src/ |
D | opencl_wrapper.cpp | 551 cl_int clEnqueueNDRangeKernel(cl_command_queue command_queue, cl_kernel kernel, cl_uint work_dim, in clEnqueueNDRangeKernel() argument 558 …return func(command_queue, kernel, work_dim, global_work_offset, global_work_size, local_work_size, in clEnqueueNDRangeKernel()
|
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
D | cl_stubs.cpp | 973 cl_uint work_dim, in EnqueueNDRangeKernel() argument 982 kernel, work_dim, global_work_offset, global_work_size, local_work_size, in EnqueueNDRangeKernel()
|
D | entry_points_cl_autogen.cpp | 1078 cl_uint work_dim, in clEnqueueNDRangeKernel() argument 1092 (uintptr_t)command_queue, (uintptr_t)kernel, work_dim, (uintptr_t)global_work_offset, in clEnqueueNDRangeKernel() 1096 ANGLE_CL_VALIDATE_ERROR(EnqueueNDRangeKernel, command_queue, kernel, work_dim, in clEnqueueNDRangeKernel() 1100 return EnqueueNDRangeKernel(command_queue, kernel, work_dim, global_work_offset, in clEnqueueNDRangeKernel()
|
D | cl_stubs_autogen.h | 459 cl_uint work_dim,
|
/third_party/boost/boost/compute/ |
D | command_queue.hpp | 1404 size_t work_dim, in enqueue_nd_range_kernel() argument 1418 static_cast<cl_uint>(work_dim), in enqueue_nd_range_kernel()
|
/third_party/boost/libs/compute/include/boost/compute/ |
D | command_queue.hpp | 1404 size_t work_dim, in enqueue_nd_range_kernel() argument 1418 static_cast<cl_uint>(work_dim), in enqueue_nd_range_kernel()
|
/third_party/skia/third_party/externals/angle2/src/libOpenCL/ |
D | libOpenCL_autogen.cpp | 526 cl_uint work_dim, in clEnqueueNDRangeKernel() argument 535 command_queue, kernel, work_dim, global_work_offset, global_work_size, local_work_size, in clEnqueueNDRangeKernel()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_draw.c | 569 batch, info->work_dim, in fd_launch_grid()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_compute.c | 416 PUSH_DATA (push, info->work_dim); in nvc0_compute_upload_input()
|