blob: 0899c36bf72c3d80400cdbfe773a1418fda28d89 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device half2* prevent_dce;
};
half2 subgroupInclusiveMul_ac5df5() {
half2 res = simd_prefix_inclusive_product(half2(1.0h));
return res;
}
fragment void fragment_main(device half2* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
(*tint_module_vars.prevent_dce) = subgroupInclusiveMul_ac5df5();
}
kernel void compute_main(device half2* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
(*tint_module_vars.prevent_dce) = subgroupInclusiveMul_ac5df5();
}