blob: 69506803440a1ac69ec17951b024b2c59701472b [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
half subgroupInclusiveAdd_dde86f() {
half res = simd_prefix_inclusive_sum(1.0h);
return res;
}
fragment void fragment_main(device half* tint_symbol [[buffer(0)]]) {
*(tint_symbol) = subgroupInclusiveAdd_dde86f();
return;
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
half subgroupInclusiveAdd_dde86f() {
half res = simd_prefix_inclusive_sum(1.0h);
return res;
}
kernel void compute_main(device half* tint_symbol [[buffer(0)]]) {
*(tint_symbol) = subgroupInclusiveAdd_dde86f();
return;
}