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-08-04 22:15:28 +00:00
|
|
|
void atomicMin_278235(threadgroup atomic_int* const tint_symbol) {
|
|
|
|
int res = atomic_fetch_min_explicit(tint_symbol, 1, memory_order_relaxed);
|
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_int* 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, int(), 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
|
|
|
atomicMin_278235(tint_symbol_1);
|
|
|
|
}
|
|
|
|
|
|
|
|
kernel void compute_main(uint local_invocation_index [[thread_index_in_threadgroup]]) {
|
|
|
|
threadgroup atomic_int 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
|
|
|
}
|
|
|
|
|