mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-12 08:05:53 +00:00
This matches the term used in the WGSL spec. Change-Id: I4603332b828450c126ef806f1064ed54f372013f Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/78787 Reviewed-by: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com>
22 lines
668 B
Plaintext
22 lines
668 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
void atomicMax_a89cc3(threadgroup atomic_int* const tint_symbol) {
|
|
int res = atomic_fetch_max_explicit(tint_symbol, 1, memory_order_relaxed);
|
|
}
|
|
|
|
void compute_main_inner(uint local_invocation_index, threadgroup atomic_int* const tint_symbol_1) {
|
|
{
|
|
atomic_store_explicit(tint_symbol_1, int(), memory_order_relaxed);
|
|
}
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
|
atomicMax_a89cc3(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));
|
|
return;
|
|
}
|
|
|