blob: 73601058cdb42892b31afcacf5d8032264e8ced6 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
float const a = 1.0f;
float const b = 2.0f;
float const r = fmod(a, b);
}