19 lines
445 B
Plaintext
19 lines
445 B
Plaintext
#include "../test_static.isph"
|
|
#define SIZE TARGET_WIDTH+1
|
|
|
|
task void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
|
|
float a = aFOO[programIndex];
|
|
uniform float x[SIZE];
|
|
uniform int i;
|
|
#pragma ignore warning
|
|
cfor (i = 0; i < SIZE; ++i)
|
|
x[i] = i+b;
|
|
#pragma ignore warning(perf)
|
|
RET[programIndex] = x[a];
|
|
}
|
|
|
|
|
|
task void result(uniform float RET[]) {
|
|
RET[programIndex] = 6+programIndex;
|
|
}
|