Saturation arithmetic mul and div for int8/int16/int32 and div for int64 was added
This commit is contained in:
28
tests/pmulus_i8.ispc
Normal file
28
tests/pmulus_i8.ispc
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
export uniform int width() { return programCount; }
|
||||
|
||||
export void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
|
||||
uniform unsigned int8 a_max = 255, a_min = 0; // max and min unsigned int8
|
||||
if (programIndex % 3 == 0) {
|
||||
RET[programIndex] = saturating_mul(a_max, (uniform unsigned int8) b);
|
||||
}
|
||||
else if (programIndex % 3 == 1) {
|
||||
RET[programIndex] = saturating_mul(a_min, (uniform unsigned int8) -b);
|
||||
}
|
||||
else {
|
||||
RET[programIndex] = saturating_mul((uniform unsigned int8) b,
|
||||
(uniform unsigned int8) b);
|
||||
}
|
||||
}
|
||||
|
||||
export void result(uniform float RET[]) {
|
||||
if (programIndex % 3 == 0) {
|
||||
RET[programIndex] = (uniform unsigned int8) 255;
|
||||
}
|
||||
else if (programIndex % 3 == 1) {
|
||||
RET[programIndex] = (uniform unsigned int8) 0;
|
||||
}
|
||||
else {
|
||||
RET[programIndex] = (uniform unsigned int8) 25;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user