Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

11 lines
312 B
Plaintext

#include "../test_static.isph"
task void f_f(uniform float RET[], uniform float aFOO[]) {
float a = aFOO[programIndex];
// calculation error 1e-6 is the same as in icc
RET[programIndex] = (exp(-log(1/a)) - a)/a < 1e-6 ? 1 : 0;
}
task void result(uniform float RET[4]) {
RET[programIndex] = 1;
}