Saturation arithmetic mul and div for int8/int16/int32 and div for int64 was added
This commit is contained in:
28
tests/pmulus_i32.ispc
Normal file
28
tests/pmulus_i32.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 int32 a_max = 4294967295, a_min = 0; // max and min unsigned int32
|
||||
if (programIndex % 3 == 0) {
|
||||
RET[programIndex] = saturating_mul(a_max, (uniform unsigned int32) b);
|
||||
}
|
||||
else if (programIndex % 3 == 1) {
|
||||
RET[programIndex] = saturating_mul(a_min, (uniform unsigned int32) -b);
|
||||
}
|
||||
else {
|
||||
RET[programIndex] = saturating_mul((uniform unsigned int32) b,
|
||||
(uniform unsigned int32) b);
|
||||
}
|
||||
}
|
||||
|
||||
export void result(uniform float RET[]) {
|
||||
if (programIndex % 3 == 0) {
|
||||
RET[programIndex] = (uniform unsigned int32) 4294967295;
|
||||
}
|
||||
else if (programIndex % 3 == 1) {
|
||||
RET[programIndex] = (uniform unsigned int32) 0;
|
||||
}
|
||||
else {
|
||||
RET[programIndex] = (uniform unsigned int32) 25;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user