blob: ad0a42199efe3305517871b50a30e7f1c16f0b76 [file] [log] [blame]
float16_t tint_float_mod(float16_t lhs, float16_t rhs) {
return (lhs - (trunc((lhs / rhs)) * rhs));
}
[numthreads(1, 1, 1)]
void f() {
const float16_t a = float16_t(1.0h);
const float16_t b = float16_t(2.0h);
const float16_t r = tint_float_mod(a, b);
return;
}