| #include <metal_stdlib> |
| using namespace metal; |
| |
| struct tint_module_vars_struct { |
| device int* prevent_dce; |
| threadgroup int* arg_0; |
| }; |
| |
| struct tint_symbol_1 { |
| int tint_symbol; |
| }; |
| |
| int workgroupUniformLoad_9d33de(tint_module_vars_struct tint_module_vars) { |
| threadgroup_barrier(mem_flags::mem_threadgroup); |
| int const v = (*tint_module_vars.arg_0); |
| threadgroup_barrier(mem_flags::mem_threadgroup); |
| int res = v; |
| return res; |
| } |
| |
| void compute_main_inner(uint tint_local_index, tint_module_vars_struct tint_module_vars) { |
| if ((tint_local_index == 0u)) { |
| (*tint_module_vars.arg_0) = 0; |
| } |
| threadgroup_barrier(mem_flags::mem_threadgroup); |
| (*tint_module_vars.prevent_dce) = workgroupUniformLoad_9d33de(tint_module_vars); |
| } |
| |
| kernel void compute_main(uint tint_local_index [[thread_index_in_threadgroup]], device int* prevent_dce [[buffer(0)]], threadgroup tint_symbol_1* v_1 [[threadgroup(0)]]) { |
| tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce, .arg_0=(&(*v_1).tint_symbol)}; |
| compute_main_inner(tint_local_index, tint_module_vars); |
| } |