blob: 431e1599e3dbfc3dbc3357531aed35fc9567c3c0 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
half a = 1.0h;
half b = 0.0h;
half const r = fmod(a, (b + b));
return;
}