| // |
| // fragment_main |
| // |
| #include <metal_stdlib> |
| |
| using namespace metal; |
| half2 subgroupInclusiveAdd_a7c60f() { |
| half2 res = simd_prefix_inclusive_sum(half2(1.0h)); |
| return res; |
| } |
| |
| fragment void fragment_main(device half2* tint_symbol [[buffer(0)]]) { |
| *(tint_symbol) = subgroupInclusiveAdd_a7c60f(); |
| return; |
| } |
| |
| // |
| // compute_main |
| // |
| #include <metal_stdlib> |
| |
| using namespace metal; |
| half2 subgroupInclusiveAdd_a7c60f() { |
| half2 res = simd_prefix_inclusive_sum(half2(1.0h)); |
| return res; |
| } |
| |
| kernel void compute_main(device half2* tint_symbol [[buffer(0)]]) { |
| *(tint_symbol) = subgroupInclusiveAdd_a7c60f(); |
| return; |
| } |
| |