Added varying CFG and non-overflow part of the tests.

This commit is contained in:
Vsevolod Livinskij
2014-01-06 15:24:09 +04:00
parent 323587f10f
commit 97cc5b7f48
24 changed files with 265 additions and 144 deletions

View File

@@ -2,10 +2,26 @@
export uniform int width() { return programCount; }
export void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
uniform int8 a = -128; // min signed int8
RET[programIndex] = saturating_sub(a, b);
uniform int8 a_max = 127, a_min = -128; // max and min signed int8
if (programIndex % 3 == 0) {
RET[programIndex] = saturating_sub(a_min, b);
}
else if (programIndex % 3 == 1) {
RET[programIndex] = saturating_sub(a_max, -b);
}
else {
RET[programIndex] = saturating_sub(a_max, b);
}
}
export void result(uniform float RET[]) {
RET[programIndex] = (uniform int8) -128;
if (programIndex % 3 == 0) {
RET[programIndex] = (uniform int8) -128;
}
else if (programIndex % 3 == 1) {
RET[programIndex] = (uniform int8) 127;
}
else {
RET[programIndex] = (uniform int8) 122;
}
}