blob: ea61c149e731626411c884112c8a609914e53dc2 [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device half2* prevent_dce;
};
half2 subgroupInclusiveAdd_a7c60f() {
half2 res = simd_prefix_inclusive_sum(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) = subgroupInclusiveAdd_a7c60f();
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device half2* prevent_dce;
};
half2 subgroupInclusiveAdd_a7c60f() {
half2 res = simd_prefix_inclusive_sum(half2(1.0h));
return res;
}
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) = subgroupInclusiveAdd_a7c60f();
}