2021-06-29 11:53:15 +00:00
|
|
|
#include <metal_stdlib>
|
2021-06-18 18:56:13 +00:00
|
|
|
|
2021-06-29 11:53:15 +00:00
|
|
|
using namespace metal;
|
|
|
|
void atomicExchange_0a5dca(threadgroup atomic_uint* const tint_symbol_1) {
|
2021-08-04 19:18:38 +00:00
|
|
|
uint res = atomic_exchange_explicit(tint_symbol_1, 1u, memory_order_relaxed);
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 11:53:15 +00:00
|
|
|
kernel void compute_main(uint local_invocation_index [[thread_index_in_threadgroup]]) {
|
|
|
|
threadgroup atomic_uint tint_symbol_2;
|
2021-07-30 14:08:06 +00:00
|
|
|
{
|
2021-06-29 11:53:15 +00:00
|
|
|
atomic_store_explicit(&(tint_symbol_2), uint(), memory_order_relaxed);
|
|
|
|
}
|
|
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
|
|
|
atomicExchange_0a5dca(&(tint_symbol_2));
|
|
|
|
return;
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|