20 lines
606 B
Plaintext
20 lines
606 B
Plaintext
#include "../test_static.isph"
|
|
task void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
|
|
uniform unsigned int32 a_max = 0xFFFFFFFF, a_min = 0; // max and min unsigned int32
|
|
if (programIndex % 2 == 0) {
|
|
RET[programIndex] = saturating_add(a_max, b);
|
|
}
|
|
else {
|
|
RET[programIndex] = saturating_add(a_min, b);
|
|
}
|
|
}
|
|
|
|
task void result(uniform float RET[]) {
|
|
if (programIndex % 2 == 0) {
|
|
RET[programIndex] = (uniform unsigned int32) 0xFFFFFFFF; // max unsigned int32
|
|
}
|
|
else {
|
|
RET[programIndex] = (uniform unsigned int32) 5;
|
|
}
|
|
}
|