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