dawn-cmake/test/tint/builtins/workgroupUniformLoad/matrix.wgsl.expected.msl
James Price 128980f218 tint: Add support for workgroupUniformLoad
Accept any type in the intrinsics definition, and then manually
validate that there are no atomics in the type. Add manual E2E tests
for composite types.

Use the BuiltinPolyfill transform to implement it for all backends.

Update the uniformity analysis with special-case tags for the builtin.

Fixed: tint:1780
Change-Id: I95786dff4df70a0b16ed1c53b853b5d0ec6bc501
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/114862
Reviewed-by: Ben Clayton <bclayton@google.com>
Commit-Queue: James Price <jrprice@google.com>
Kokoro: James Price <jrprice@google.com>
2023-01-06 02:25:06 +00:00

15 lines
378 B
Plaintext

#include <metal_stdlib>
using namespace metal;
float3x3 tint_workgroupUniformLoad(threadgroup float3x3* const p) {
threadgroup_barrier(mem_flags::mem_threadgroup);
float3x3 const result = *(p);
threadgroup_barrier(mem_flags::mem_threadgroup);
return result;
}
float3x3 foo(threadgroup float3x3* const tint_symbol) {
return tint_workgroupUniformLoad(tint_symbol);
}