Im rather new to assembly and although the arm information center is often helpful sometimes the instructions can be a little confusing to a newbie. Basically what I need to do is sum 4 float values in a quadword register and store the result in a single precision register. I think the instruction VPADD can do what I need but I'm not quite sure.
|
feedback
|
|
It seems that you want to get the sum of a certain length of array, and not only four float values. In that case, your code will work, but is far from optimized :
Assuming the length of the array is a multiple of 8 and at least 16 :
I hope the rest of the code above is self explanatory. You will notice that this version is many times faster than your initial one. | ||||
|
feedback
|
|
You might try this (it's not in ASM, but you should be able to convert it easily):
In ASM it would be probably only VADD and VPADD. I'm not sure if this is only one method to do this (and most optimal), but I haven't figured/found better one... PS. I'm new to NEON too | |||||
feedback
|
|
Here is the code in ASM:
I may have forgotten to mention that in C the code would look like this:
I have omitted the multiplication from this little piece asm of code. | |||
|
feedback
|