0

I want to find inverse of number variable which is of type float . Can any one tell me the instruction available in neon (A9 processor) . means :

 float number = 5.63;
 float inverse = 1/number ; //In neon ??
user3476225
  • 240
  • 5
  • 14
  • 1
    NEON is for SIMD operations - do you want to calculate the reciprocal for 2 or 4 floats in parallel ? – Paul R Mar 27 '15 at 11:20
  • 1
    possible duplicate of [how to divide in neon intrinsics by a float number](http://stackoverflow.com/questions/6759897/how-to-divide-in-neon-intrinsics-by-a-float-number) – Paul R Mar 27 '15 at 12:16
  • @PaulR,I want do to reciprocal for 4 floats parallel (float32x4_t) – user3476225 Mar 27 '15 at 18:28
  • You should make that clear in your question, but it looks like your question is a duplicate anyway. – Paul R Mar 27 '15 at 18:37

0 Answers0