#include "../test_static.isph" static float float4(uniform float a, uniform float b, uniform float c, uniform float d) { float ret = 0; for (uniform int i = 0; i < programCount; i += 4) { ret = insert(ret, i + 0, a); ret = insert(ret, i + 1, b); ret = insert(ret, i + 2, c); ret = insert(ret, i + 3, d); } return ret; } bool ok(float x, float ref) { return (abs(x - ref) < 1e-6) || abs((x-ref)/ref) < 1e-5; } task void f_v(uniform float RET[]) { float a = float4((8.998542785644531),(5.330646991729736),(2.699711084365845),(7.423774242401123)); float b = float4((-6.729081153869629),(2.082883834838867),(-2.190436124801636),(0.000000000000000)); float ref = float4((0.000000379575283),(32.643608093261719),(0.113560430705547),(1.000000000000000)); RET[programIndex] = ok(pow(a, b), ref) ? 1. : 0.; } task void result(uniform float RET[]) { RET[programIndex] = 1.; }