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

link|improve this question
I cannot spot a question. Maybe you should elaborate more? Another thing: you should not bit-shift floats, as it won't offer the same results as with ints because of the internal layout. – Constantinius Jul 25 '11 at 13:56
1  
Constantinius: the question is clearly stated in the title. Also see the last line of code, that clearly shows what the intent is. – rubenvb Jul 25 '11 at 16:30
feedback

2 Answers

up vote 5 down vote accepted

The NEON instruction set does not have a floating-point divide.

If you know a priori that your values are not poorly scaled, and you do not require correct rounding (this is almost certainly the case if you're doing image processing), then you can use a reciprocal estimate, refinement step, and multiply instead of a divide:

// get an initial estimate of 1/b.
float32x4_t reciprocal = vrecpeq_f32(b);

// use a couple Newton-Raphson steps to refine the estimate.  Depending on your
// application's accuracy requirements, you may be able to get away with only
// one refinement (instead of the two used here).  Be sure to test!
reciprocal = vmulq_f32(vrecpsq_f32(b, reciprocal), reciprocal);
reciprocal = vmulq_f32(vrecpsq_f32(b, reciprocal), reciprocal);

// and finally, compute a/b = a*(1/b)
float32x4_t result = vmulq_f32(a,reciprocal);
link|improve this answer
I also taught in this kind of solution but i didn't know about vrecpeq_f32, so thank you very much. I think neon intrinsics needs better documentation about the functions that it has – Darkmax Jul 25 '11 at 22:22
1  
@Darkmax: you should download the architecture reference manuals from ARM, rather than relying on the NEON header documentation. – Stephen Canon Jul 25 '11 at 22:26
feedback

@Stephen: I am able to understand some of the neon intrinsics. But can you make it clear, what you meant by the statements:

reciprocal = vmulq_f32(vrecpsq_f32(b, reciprocal), reciprocal);

reciprocal = vmulq_f32(vrecpsq_f32(b, reciprocal), reciprocal);

I was under the belief that the 1st and last statements itself would do the required maths.

link|improve this answer
1  
If you only need a very low accuracy approximation, then the first and last statements will suffice. These steps do a Newton-Raphson refinement of the initial reciprocal estimate, which make reciprocal be much closer to the true value 1/b, and thus makes the final result significantly more accurate. – Stephen Canon Nov 18 '11 at 11:24
got it.! thanks.. – Anoop K P Nov 21 '11 at 12:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.