#include <metal_stdlib>

using namespace metal;
kernel void f() {
  half const a = 1.0h;
  half const b = 2.0h;
  half const r = fmod(a, b);
  return;
}