17 lines
443 B
Plaintext
17 lines
443 B
Plaintext
#include "../test_static.isph"
|
|
// rule: skip on cpu=tgllp
|
|
// rule: skip on cpu=dg2
|
|
|
|
task void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
|
|
float a = aFOO[programIndex];
|
|
double udx[5];
|
|
for (uniform int i = 0; i < 5; ++i)
|
|
udx[i] = i + a;
|
|
|
|
int x = b-4;
|
|
#pragma ignore warning(perf)
|
|
RET[programIndex] = udx[x];
|
|
}
|
|
|
|
task void result(uniform float RET[]) { RET[programIndex] = 2+programIndex; }
|