blob: fa2c3eef5d03d7b185ddcd112d2088e8b065253d [file] [log] [blame]
#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);
}