First of all, sorry for my english is not perfect but i will try to explain my problem all i can.
A little of background of what I'm doing is processing a image by four pixels at the time, this on a armv7 for an android application.
I want to divide a float32x4_t vector by another vector but that numbers in it are variable and around 0.7 to 3.85 more less, and the only way i look to divide is with right shift but that for a number 2^n, so if some could help to get this.
Also I'm new in this, so any comment is welcome, or if you need more info about what I'm doing i will try to do my best to respond any question.
ok i will try it explain it with a example:
how i can perform this instructions with neon intrinsics
float32x4_t a = {25.3,34.1,11.0,25.1};
float32x4_t b = {1.2,3.5,2.5,2.0};
// somthing like this
float32x4 resultado = a/b; // {21.08,9.74,4.4,12.55}
just remember that b can change between intervals because all this is on a for that alter the vector b
floats, as it won't offer the same results as withints because of the internal layout. – Constantinius Jul 25 '11 at 13:56