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