Files
ispc/tests/pmulus_vi32.ispc

29 lines
950 B
Plaintext

export uniform int width() { return programCount; }
export void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
varying unsigned int32 a_max = 4294967295, a_min = 0; // max and min unsigned int32
if (programIndex % 3 == 0) {
RET[programIndex] = saturating_mul(a_max, (varying unsigned int32) b);
}
else if (programIndex % 3 == 1) {
RET[programIndex] = saturating_mul(a_min, (varying unsigned int32) -b);
}
else {
RET[programIndex] = saturating_mul((varying unsigned int32) b,
(varying unsigned int32) b);
}
}
export void result(uniform float RET[]) {
if (programIndex % 3 == 0) {
RET[programIndex] = (varying unsigned int32) 4294967295;
}
else if (programIndex % 3 == 1) {
RET[programIndex] = (varying unsigned int32) 0;
}
else {
RET[programIndex] = (varying unsigned int32) 25;
}
}