| #include <metal_stdlib> |
| using namespace metal; |
| |
| struct tint_module_vars_struct { |
| threadgroup atomic_uint* arg_0; |
| }; |
| |
| struct tint_symbol_1 { |
| atomic_uint tint_symbol; |
| }; |
| |
| void atomicStore_726882(tint_module_vars_struct tint_module_vars) { |
| atomic_store_explicit(tint_module_vars.arg_0, 1u, memory_order_relaxed); |
| } |
| |
| void compute_main_inner(uint tint_local_index, tint_module_vars_struct tint_module_vars) { |
| if ((tint_local_index == 0u)) { |
| atomic_store_explicit(tint_module_vars.arg_0, 0u, memory_order_relaxed); |
| } |
| threadgroup_barrier(mem_flags::mem_threadgroup); |
| atomicStore_726882(tint_module_vars); |
| } |
| |
| kernel void compute_main(uint tint_local_index [[thread_index_in_threadgroup]], threadgroup tint_symbol_1* v [[threadgroup(0)]]) { |
| tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.arg_0=(&(*v).tint_symbol)}; |
| compute_main_inner(tint_local_index, tint_module_vars); |
| } |