19 lines
440 B
Plaintext
19 lines
440 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];
|
|
float x[SIZE];
|
|
uniform int i;
|
|
#pragma ignore warning
|
|
cfor (i = 0; i < SIZE; ++i)
|
|
x[i] = a+b;
|
|
#pragma ignore warning(perf)
|
|
RET[programIndex] = x[a];
|
|
}
|
|
|
|
|
|
task void result(uniform float RET[]) {
|
|
RET[programIndex] = 6 + programIndex;;
|
|
}
|