blob: ce24bafeb90c0014ee29c06e228b6f73d35ecb57 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
threadgroup float4* S;
};
struct tint_symbol_1 {
float4 tint_symbol;
};
float4 func(threadgroup float4* const pointer) {
return (*pointer);
}
void main_inner(uint tint_local_index, tint_module_vars_struct tint_module_vars) {
if ((tint_local_index < 1u)) {
(*tint_module_vars.S) = float4(0.0f);
}
threadgroup_barrier(mem_flags::mem_threadgroup);
float4 const r = func(tint_module_vars.S);
}
[[max_total_threads_per_threadgroup(1)]]
kernel void v(uint tint_local_index [[thread_index_in_threadgroup]], threadgroup tint_symbol_1* v_1 [[threadgroup(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.S=(&(*v_1).tint_symbol)};
main_inner(tint_local_index, tint_module_vars);
}