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;
|
2021-07-09 20:21:49 +00:00
|
|
|
|
|
|
|
template <typename A, typename T>
|
|
|
|
vec<T, 2> 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};
|
|
|
|
}
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
void atomicCompareExchangeWeak_b2ab2c(threadgroup atomic_uint* const tint_symbol) {
|
|
|
|
uint2 res = atomicCompareExchangeWeak_1(tint_symbol, 1u, 1u);
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
void compute_main_inner(uint local_invocation_index, threadgroup atomic_uint* const tint_symbol_1) {
|
2021-07-30 14:08:06 +00:00
|
|
|
{
|
2021-08-04 22:15:28 +00:00
|
|
|
atomic_store_explicit(tint_symbol_1, uint(), memory_order_relaxed);
|
2021-06-29 11:53:15 +00:00
|
|
|
}
|
|
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
2021-08-04 22:15:28 +00:00
|
|
|
atomicCompareExchangeWeak_b2ab2c(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));
|
2021-06-29 11:53:15 +00:00
|
|
|
return;
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|