HomeSort by: relevance | last modified time | path
    Searched refs:local_size (Results 1 - 25 of 85) sorted by relevancy

1 2 3 4

  /xsrc/external/mit/MesaLib/dist/src/freedreno/computerator/
ir3_asm.c 43 kernel->base.local_size[0] = v->local_size[0];
44 kernel->base.local_size[1] = v->local_size[1];
45 kernel->base.local_size[2] = v->local_size[2];
a4xx.c 287 const unsigned *local_size = kernel->local_size; local
299 A4XX_HLSQ_CL_NDRANGE_0_LOCALSIZEX(local_size[0] - 1) |
300 A4XX_HLSQ_CL_NDRANGE_0_LOCALSIZEY(local_size[1] - 1) |
301 A4XX_HLSQ_CL_NDRANGE_0_LOCALSIZEZ(local_size[2] - 1));
303 A4XX_HLSQ_CL_NDRANGE_1_SIZE_X(local_size[0] * num_groups[0]));
306 A4XX_HLSQ_CL_NDRANGE_3_SIZE_Y(local_size[1] * num_groups[1]));
309 A4XX_HLSQ_CL_NDRANGE_5_SIZE_Z(local_size[2] * num_groups[2]));
main.h 41 uint32_t local_size[3]; member in struct:kernel
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a5xx/
fd5_compute.c 76 const unsigned *local_size = info->block; local
90 if ((local_size[0] * local_size[1] * local_size[2]) < 512) {
218 const unsigned *local_size = info->block; // v->shader->nir->info->cs.local_size; local
224 A5XX_HLSQ_CS_NDRANGE_0_LOCALSIZEX(local_size[0] - 1) |
225 A5XX_HLSQ_CS_NDRANGE_0_LOCALSIZEY(local_size[1] - 1) |
226 A5XX_HLSQ_CS_NDRANGE_0_LOCALSIZEZ(local_size[2] - 1));
227 OUT_RING(ring, A5XX_HLSQ_CS_NDRANGE_1_GLOBALSIZE_X(local_size[0] * num_groups[0]))
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
evergreen_compute_internal.h 46 unsigned local_size; member in struct:r600_pipe_compute
  /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
ir3_assembler.c 54 /* Provide a default local_size in case the shader doesn't set it, so that
57 v->local_size[0] = v->local_size[1] = v->local_size[2] = 1;
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_lower_system_values.c 34 nir_ssa_def *local_size; local
41 local_size = nir_load_local_group_size(b);
47 local_size_const[0].u32 = b->shader->info.cs.local_size[0];
48 local_size_const[1].u32 = b->shader->info.cs.local_size[1];
49 local_size_const[2].u32 = b->shader->info.cs.local_size[2];
50 local_size = nir_build_imm(b, 3, 32, local_size_const);
53 return nir_u2u(b, local_size, bit_size);
81 nir_ssa_def *local_size = build_local_group_size(b, 32); local
89 nir_channel(b, local_size, 0));
91 nir_channel(b, local_size, 0))
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a5xx/
fd5_compute.c 144 const unsigned *local_size = variable
151 A5XX_HLSQ_CS_NDRANGE_0_LOCALSIZEX(local_size[0] - 1) |
152 A5XX_HLSQ_CS_NDRANGE_0_LOCALSIZEY(local_size[1] - 1) |
153 A5XX_HLSQ_CS_NDRANGE_0_LOCALSIZEZ(local_size[2] - 1));
155 A5XX_HLSQ_CS_NDRANGE_1_GLOBALSIZE_X(local_size[0] * num_groups[0]));
158 A5XX_HLSQ_CS_NDRANGE_3_GLOBALSIZE_Y(local_size[1] * num_groups[1]));
161 A5XX_HLSQ_CS_NDRANGE_5_GLOBALSIZE_Z(local_size[2] * num_groups[2]));
178 A5XX_CP_EXEC_CS_INDIRECT_3_LOCALSIZEX(local_size[0] - 1) |
179 A5XX_CP_EXEC_CS_INDIRECT_3_LOCALSIZEY(local_size[1] - 1) |
180 A5XX_CP_EXEC_CS_INDIRECT_3_LOCALSIZEZ(local_size[2] - 1))
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a6xx/
fd6_compute.c 152 const unsigned *local_size = variable
159 A6XX_HLSQ_CS_NDRANGE_0_LOCALSIZEX(local_size[0] - 1) |
160 A6XX_HLSQ_CS_NDRANGE_0_LOCALSIZEY(local_size[1] - 1) |
161 A6XX_HLSQ_CS_NDRANGE_0_LOCALSIZEZ(local_size[2] - 1));
163 A6XX_HLSQ_CS_NDRANGE_1_GLOBALSIZE_X(local_size[0] * num_groups[0]));
166 A6XX_HLSQ_CS_NDRANGE_3_GLOBALSIZE_Y(local_size[1] * num_groups[1]));
169 A6XX_HLSQ_CS_NDRANGE_5_GLOBALSIZE_Z(local_size[2] * num_groups[2]));
187 A5XX_CP_EXEC_CS_INDIRECT_3_LOCALSIZEX(local_size[0] - 1) |
188 A5XX_CP_EXEC_CS_INDIRECT_3_LOCALSIZEY(local_size[1] - 1) |
189 A5XX_CP_EXEC_CS_INDIRECT_3_LOCALSIZEZ(local_size[2] - 1))
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a6xx/
fd6_compute.c 163 const unsigned *local_size = info->block; // v->shader->nir->info->cs.local_size; local
169 A6XX_HLSQ_CS_NDRANGE_0_LOCALSIZEX(local_size[0] - 1) |
170 A6XX_HLSQ_CS_NDRANGE_0_LOCALSIZEY(local_size[1] - 1) |
171 A6XX_HLSQ_CS_NDRANGE_0_LOCALSIZEZ(local_size[2] - 1));
172 OUT_RING(ring, A6XX_HLSQ_CS_NDRANGE_1_GLOBALSIZE_X(local_size[0] * num_groups[0]));
174 OUT_RING(ring, A6XX_HLSQ_CS_NDRANGE_3_GLOBALSIZE_Y(local_size[1] * num_groups[1]));
176 OUT_RING(ring, A6XX_HLSQ_CS_NDRANGE_5_GLOBALSIZE_Z(local_size[2] * num_groups[2]));
190 OUT_RING(ring, A5XX_CP_EXEC_CS_INDIRECT_3_LOCALSIZEX(local_size[0] - 1) |
191 A5XX_CP_EXEC_CS_INDIRECT_3_LOCALSIZEY(local_size[1] - 1)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
brw_nir_lower_cs_intrinsics.c 75 nir_ssa_def *size_x = nir_imm_int(b, nir->info.cs.local_size[0]);
76 nir_ssa_def *size_y = nir_imm_int(b, nir->info.cs.local_size[1]);
156 nir->info.cs.local_size[0] * nir->info.cs.local_size[1] *
157 nir->info.cs.local_size[2];
202 state.local_workgroup_size = nir->info.cs.local_size[0] *
203 nir->info.cs.local_size[1] *
204 nir->info.cs.local_size[2];
208 assert(nir->info.cs.local_size[0] % 2 == 0);
209 assert(nir->info.cs.local_size[1] % 2 == 0)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
lp_cs_tpool.h 55 unsigned local_size; member in struct:lp_cs_local_mem
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
evergreen_compute_internal.h 83 unsigned local_size; member in struct:r600_pipe_compute
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_compute.h 49 unsigned local_size; member in struct:si_compute
  /xsrc/external/mit/xorg-server/dist/glx/
indirect_util.h 33 size_t local_size, unsigned alignment);
  /xsrc/external/mit/xorg-server.old/dist/glx/
indirect_util.h 32 size_t required_size, void * local_buffer, size_t local_size,
  /xsrc/external/mit/MesaLib/dist/src/microsoft/clc/
clc_compiler.h 87 uint16_t local_size[3]; member in struct:clc_dxil_metadata
120 uint16_t local_size[3]; member in struct:clc_runtime_kernel_conf
compute_test.cpp 445 if (!shader.dxil->metadata.local_size[0])
446 conf.local_size[0] = compile_args.x;
448 conf.local_size[0] = shader.dxil->metadata.local_size[0];
450 if (!shader.dxil->metadata.local_size[1])
451 conf.local_size[1] = compile_args.y;
453 conf.local_size[1] = shader.dxil->metadata.local_size[1];
455 if (!shader.dxil->metadata.local_size[2])
456 conf.local_size[2] = compile_args.z
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mapi/glapi/gen/
gl_x86-64_asm.py 42 def local_size(registers): function
56 adjust_stack = local_size(registers)
67 adjust_stack = local_size(registers)
  /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
radv_meta_buffer.c 14 b.shader->info.cs.local_size[0] = 64;
15 b.shader->info.cs.local_size[1] = 1;
16 b.shader->info.cs.local_size[2] = 1;
21 b.shader->info.cs.local_size[0],
22 b.shader->info.cs.local_size[1],
23 b.shader->info.cs.local_size[2], 0);
68 b.shader->info.cs.local_size[0] = 64;
69 b.shader->info.cs.local_size[1] = 1;
70 b.shader->info.cs.local_size[2] = 1;
75 b.shader->info.cs.local_size[0]
    [all...]
radv_meta_fmask_expand.c 45 b.shader->info.cs.local_size[0] = 16;
46 b.shader->info.cs.local_size[1] = 16;
47 b.shader->info.cs.local_size[2] = 1;
62 b.shader->info.cs.local_size[0],
63 b.shader->info.cs.local_size[1],
64 b.shader->info.cs.local_size[2], 0);
radv_meta_bufimage.c 50 b.shader->info.cs.local_size[0] = 16;
51 b.shader->info.cs.local_size[1] = 16;
52 b.shader->info.cs.local_size[2] = 1;
66 b.shader->info.cs.local_size[0],
67 b.shader->info.cs.local_size[1],
68 b.shader->info.cs.local_size[2], 0);
279 b.shader->info.cs.local_size[0] = 16;
280 b.shader->info.cs.local_size[1] = 16;
281 b.shader->info.cs.local_size[2] = 1;
295 b.shader->info.cs.local_size[0]
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/gen/
gl_x86-64_asm.py 44 def local_size(registers): function
58 adjust_stack = local_size(registers)
69 adjust_stack = local_size(registers)
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
zink_pipeline.h 97 uint32_t local_size[3]; member in struct:zink_compute_pipeline_state
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/
shader_info.h 242 unsigned local_size[3]; member in struct:shader_info::__anon3439::__anon3443

Completed in 25 milliseconds

1 2 3 4