blob: f69a53c3c07137e0769c5537fd08e1f4e3e3fa25 [file] [log] [blame]
//
// 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;
}