23 lines
701 B
Plaintext
23 lines
701 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
void atomicExchange_0a5dca(threadgroup atomic_uint* const tint_symbol) {
|
||
|
uint arg_1 = 1u;
|
||
|
uint res = atomic_exchange_explicit(tint_symbol, arg_1, memory_order_relaxed);
|
||
|
}
|
||
|
|
||
|
void compute_main_inner(uint local_invocation_index, threadgroup atomic_uint* const tint_symbol_1) {
|
||
|
{
|
||
|
atomic_store_explicit(tint_symbol_1, 0u, memory_order_relaxed);
|
||
|
}
|
||
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
||
|
atomicExchange_0a5dca(tint_symbol_1);
|
||
|
}
|
||
|
|
||
|
kernel void compute_main(uint local_invocation_index [[thread_index_in_threadgroup]]) {
|
||
|
threadgroup atomic_uint tint_symbol_2;
|
||
|
compute_main_inner(local_invocation_index, &(tint_symbol_2));
|
||
|
return;
|
||
|
}
|
||
|
|