#include using namespace metal; template vec atomicCompareExchangeWeak_1(threadgroup A* atomic, T compare, T value) { T prev_value = compare; bool matched = atomic_compare_exchange_weak_explicit(atomic, &prev_value, value, memory_order_relaxed, memory_order_relaxed); return {prev_value, matched}; } void atomicCompareExchangeWeak_b2ab2c(threadgroup atomic_uint* const tint_symbol_1) { uint2 res = atomicCompareExchangeWeak_1(&(*(tint_symbol_1)), 1u, 1u); } kernel void compute_main(uint local_invocation_index [[thread_index_in_threadgroup]]) { threadgroup atomic_uint tint_symbol_2; if ((local_invocation_index == 0u)) { atomic_store_explicit(&(tint_symbol_2), uint(), memory_order_relaxed); } threadgroup_barrier(mem_flags::mem_threadgroup); atomicCompareExchangeWeak_b2ab2c(&(tint_symbol_2)); return; }