python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
What is the most efficient way to handle integer multiplication overflow with saturation with ARM Neon intrinsics?
I have the following multiplication between 2 16 bit vectors:
int16x8_t dx;
int16x8_t dy;
int16x8_t dxdy = vmulq_s16(dx, dy);
In case dx and dy are both large enough, the result will overflow.
I woul...

Elad Maimoni
Votes: 0
Answers: 1