16 lines
556 B
Plaintext
16 lines
556 B
Plaintext
#include "../test_static.isph"
|
|
// rule: skip on cpu=tgllp
|
|
// rule: skip on cpu=dg2
|
|
bool ok(double x, double ref) { return (abs(x - ref) < 1d-6) || abs((x-ref)/ref) < 1d-5; }
|
|
task void f_du(uniform float RET[], uniform double aFOO[], uniform double b) {
|
|
varying double arg = aFOO[programIndex];
|
|
varying double arg2 = aFOO[programIndex] / b;
|
|
varying double ref = pow((float)arg, (float)arg2);
|
|
varying double res = pow(arg, arg2);
|
|
RET[programIndex] = ok(res, ref) ? 0. : 1.;
|
|
}
|
|
|
|
task void result(uniform float RET[]) {
|
|
RET[programIndex] = 0.0;
|
|
}
|