mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 06:03:34 +00:00
Zero the workgroup memory for all backends. We can probably disable this for the backends that support workgroup zeroing, but that's an optimization we can perform later. Fixed: tint:280 Change-Id: I9cad919ba3a15b8cedfe6939317d1f6b95425453 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/55244 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: David Neto <dneto@google.com> Reviewed-by: James Price <jrprice@google.com>
15 lines
367 B
Plaintext
15 lines
367 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
kernel void tint_symbol(uint local_invocation_index [[thread_index_in_threadgroup]]) {
|
|
threadgroup int tint_symbol_2;
|
|
if ((local_invocation_index == 0u)) {
|
|
tint_symbol_2 = int();
|
|
}
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
|
tint_symbol_2 = 123;
|
|
int const use = (tint_symbol_2 + 1);
|
|
return;
|
|
}
|
|
|