Home
last modified time | relevance | path

Searched defs:clc_kernel_info (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/mesa3d/src/compiler/clc/
H A Dclc.h156 struct clc_kernel_info { struct
157 const char *name;
158 size_t num_args;
159 const struct clc_kernel_arg *args;
161 unsigned vec_hint_size;
162 enum clc_vec_hint_type vec_hint_type;
164 unsigned local_size[3];
165 unsigned local_size_hint[3];
/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/mesa/compiler/clc/
H A Dspirv.rs225 fn kernel_infos(&self) -> &[clc_kernel_info] { in kernel_infos()
234 pub fn kernel_info(&self, name: &str) -> Option<&clc_kernel_info> { in kernel_info()
537 impl SpirvKernelInfo for clc_kernel_info { implementation
/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/core/
H A Dprogram.rs101 pub fn spirv_info(&self, kernel: &str, d: &Device) -> Option<&clc_kernel_info> { in spirv_info()
H A Dkernel.rs1044 kernel_info: &clc_kernel_info, in new()