//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;

struct tint_module_vars_struct {
  device packed_half3* prevent_dce;
};

half3 subgroupShuffleXor_1f2590() {
  half3 res = simd_shuffle_xor(half3(1.0h), 1u);
  return res;
}

fragment void fragment_main(device packed_half3* prevent_dce [[buffer(0)]]) {
  tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
  (*tint_module_vars.prevent_dce) = packed_half3(subgroupShuffleXor_1f2590());
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;

struct tint_module_vars_struct {
  device packed_half3* prevent_dce;
};

half3 subgroupShuffleXor_1f2590() {
  half3 res = simd_shuffle_xor(half3(1.0h), 1u);
  return res;
}

[[max_total_threads_per_threadgroup(1)]]
kernel void compute_main(device packed_half3* prevent_dce [[buffer(0)]]) {
  tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
  (*tint_module_vars.prevent_dce) = packed_half3(subgroupShuffleXor_1f2590());
}
