15 lines
363 B
Plaintext
15 lines
363 B
Plaintext
#include "../test_static.isph"
|
|
uniform int32 s = 0;
|
|
|
|
task void f_f(uniform float RET[], uniform float aFOO[]) {
|
|
int32 a = aFOO[programIndex];
|
|
int32 b = 0;
|
|
if (programIndex & 1)
|
|
b = atomic_max_local(&s, a);
|
|
RET[programIndex] = s;
|
|
}
|
|
|
|
task void result(uniform float RET[]) {
|
|
RET[programIndex] = (programCount == 1) ? 0 : programCount;
|
|
}
|