Tagged Questions
7
votes
2answers
2k views
Fast sine/cosine for ARMv7+NEON: looking for testers…
Could somebody with access to an iPhone 3GS or a Pandora please test the following assembly routine I just wrote?
It is supposed to compute sines and cosines really really fast on the NEON vector ...
5
votes
2answers
180 views
Problems with Qualcomm Scorpion dual-core ARM NEON code?
I am developing a native library for Android where I use ARM assembly optimizations and multithreading in order to get maximum performance on the dual-core ARM chipset MSM8660. While doing some ...
1
vote
2answers
104 views
Is there much difference between ARM SoCs that have the same core?
Is there much difference (in terms of performance) between two ARM SoCs that have the same core?
e.g., What differences (aside from those that can be attributed to the different clock rates) could ...
0
votes
2answers
60 views
Best compiler flags for an objective C project with the opencv framekwork
I´m compiling and ios project using an opencv framework, so I´m interested to know what are the best compiler flags to my project.
The project process a lot of matrix pixels , so I need from the side ...
0
votes
4answers
267 views
Why this code is not efficient?
I want to improve the next code, calculating the mean:
void calculateMeanStDev8x8Aux(cv::Mat* patch, int sx, int sy, int& mean, float& stdev)
{
unsigned sum=0;
unsigned sqsum=0;
...