| /xsrc/external/mit/MesaLib/src/gallium/auxiliary/ |
| H A D | u_tracepoints.c | 99 fprintf(out, "work_dim=%u, block=%ux%ux%u, grid=%ux%ux%u\n" 100 , __entry->work_dim 120 __entry->work_dim = pgrid->work_dim;
|
| H A D | u_tracepoints.h | 84 uint8_t work_dim; member in struct:trace_grid_info
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a5xx/ |
| H A D | fd5_compute.c | 220 /* for some reason, mesa/st doesn't set info->work_dim, so just assume 3: */ 221 const unsigned work_dim = info->work_dim ? info->work_dim : 3; local in function:fd5_launch_grid 223 OUT_RING(ring, A5XX_HLSQ_CS_NDRANGE_0_KERNELDIM(work_dim) |
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a6xx/ |
| H A D | fd6_compute.c | 165 /* for some reason, mesa/st doesn't set info->work_dim, so just assume 3: */ 166 const unsigned work_dim = info->work_dim ? info->work_dim : 3; local in function:fd6_launch_grid 168 OUT_RING(ring, A6XX_HLSQ_CS_NDRANGE_0_KERNELDIM(work_dim) |
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a5xx/ |
| H A D | fd5_compute.c | 147 /* for some reason, mesa/st doesn't set info->work_dim, so just assume 3: */ 148 const unsigned work_dim = info->work_dim ? info->work_dim : 3; local in function:fd5_launch_grid 150 OUT_RING(ring, A5XX_HLSQ_CS_NDRANGE_0_KERNELDIM(work_dim) |
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a6xx/ |
| H A D | fd6_compute.c | 155 /* for some reason, mesa/st doesn't set info->work_dim, so just assume 3: */ 156 const unsigned work_dim = info->work_dim ? info->work_dim : 3; local in function:fd6_launch_grid 158 OUT_RING(ring, A6XX_HLSQ_CS_NDRANGE_0_KERNELDIM(work_dim) |
|
| /xsrc/external/mit/MesaLib/dist/src/microsoft/clc/ |
| H A D | clc_compiler.h | 154 unsigned work_dim; member in struct:clc_work_properties_data
|
| H A D | clc_nir.c | 62 work_dim)),
|
| H A D | compute_test.cpp | 503 if (work_props.work_dim == 0) 504 work_props.work_dim = 3;
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/computerator/ |
| H A D | a4xx.c | 290 unsigned work_dim = 0; local in function:a4xx_emit_grid 294 work_dim++; 298 OUT_RING(ring, A4XX_HLSQ_CL_NDRANGE_0_KERNELDIM(work_dim) |
|
| H A D | a6xx.c | 397 unsigned work_dim = 0; local in function:a6xx_emit_grid 401 work_dim++; 405 OUT_RING(ring, A6XX_HLSQ_CS_NDRANGE_0_KERNELDIM(work_dim) |
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/include/pipe/ |
| H A D | p_state.h | 831 * Grid number of dimensions, 1-3, e.g. the work_dim parameter passed to 835 uint work_dim; member in struct:pipe_grid_info
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/ |
| H A D | zink_program.h | 59 unsigned work_dim; member in struct:zink_cs_push_constant
|
| H A D | zink_draw.cpp | 904 offsetof(struct zink_cs_push_constant, work_dim), sizeof(uint32_t), 905 &info->work_dim);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/ |
| H A D | lp_jit.h | 513 uint32_t work_dim,
|
| H A D | lp_state_cs.c | 61 unsigned work_dim; member in struct:lp_cs_job_info 175 lp_build_name(work_dim_arg, "work_dim"); 371 system_values.work_dim = work_dim_arg; 1326 job_info->grid_size[0], job_info->grid_size[1], job_info->grid_size[2], job_info->work_dim, 1380 job_info.work_dim = info->work_dim;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/include/pipe/ |
| H A D | p_state.h | 928 * Grid number of dimensions, 1-3, e.g. the work_dim parameter passed to 932 uint work_dim; member in struct:pipe_grid_info
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_tgsi.h | 181 LLVMValueRef work_dim; member in struct:lp_bld_tgsi_system_values
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/ |
| H A D | kernel.cpp | 79 info.work_dim = grid_size.size();
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nvc0/ |
| H A D | nvc0_compute.c | 414 /* (7) as we only upload work_dim on nvc0, the rest uses special regs */ 416 PUSH_DATA (push, info->work_dim);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/ |
| H A D | freedreno_draw.c | 568 DBG("%p: work_dim=%u, block=%ux%ux%u, grid=%ux%ux%u", 569 batch, info->work_dim,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nvc0/ |
| H A D | nvc0_compute.c | 414 /* (7) as we only upload work_dim on nvc0, the rest uses special regs */ 416 PUSH_DATA (push, info->work_dim);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/api/ |
| H A D | dispatch.hpp | 448 cl_uint work_dim,
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/ |
| H A D | u_dump_state.c | 970 util_dump_member(stream, uint, state, work_dim);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| H A D | u_dump_state.c | 973 util_dump_member(stream, uint, state, work_dim);
|