2022-11-09 22:04:11 +00:00
|
|
|
int tint_mod(int lhs, int rhs) {
|
2023-02-10 15:01:02 +00:00
|
|
|
const int rhs_or_one = (((rhs == 0) | ((lhs == -2147483648) & (rhs == -1))) ? 1 : rhs);
|
|
|
|
if (any(((uint((lhs | rhs_or_one)) & 2147483648u) != 0u))) {
|
|
|
|
return (lhs - ((lhs / rhs_or_one) * rhs_or_one));
|
|
|
|
} else {
|
|
|
|
return (lhs % rhs_or_one);
|
|
|
|
}
|
2022-11-09 22:04:11 +00:00
|
|
|
}
|
|
|
|
|
2021-07-17 17:38:46 +00:00
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void f() {
|
2022-09-19 14:05:21 +00:00
|
|
|
const int a = 1;
|
|
|
|
const int b = 2;
|
2022-11-09 22:04:11 +00:00
|
|
|
const int r = tint_mod(a, b);
|
2021-07-17 17:38:46 +00:00
|
|
|
return;
|
|
|
|
}
|