Tagged Questions
15
votes
2answers
942 views
Common SIMD techniques
Where can I find information about common SIMD tricks? I have an instruction set and know, how to write non-tricky SIMD code, but I know, SIMD now is much more powerful. It can hold complex ...
11
votes
5answers
2k views
Why ARM NEON not faster than plain C++?
Here is a C++ code:
#define ARR_SIZE_TEST ( 8 * 1024 * 1024 )
void cpp_tst_add( unsigned* x, unsigned* y )
{
for ( register int i = 0; i < ARR_SIZE_TEST; ++i )
{
x[ i ] = x[ i ] + ...
9
votes
5answers
4k views
Fast 4x4 Matrix Multiplication in C
I am trying to find an optimized C or Assembler implementation of a function that multiplies two 4x4 matrices with each other. The platform is an ARM6 or ARM7 based iPhone or iPod.
Currently, I am ...
8
votes
4answers
2k views
iPhone detecting processor model / NEON support
I'm looking for a way to differentiate at runtime between devices equipped with the new ARM processor (such as iPhone 3GS and some iPods 3G) and devices equipped with the old ARM processors.
I know I ...
7
votes
3answers
2k views
ARM Cortex-A8: Whats the difference between VFP and NEON
In ARM Cortex-A8 processor, I understand what NEON is, it is an SIMD co-processor.
But is VFP(Vector Floating Point) unit, which is also a co-processor, works as a SIMD processor? If so which one is ...
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 ...
6
votes
4answers
394 views
Optimizing RGBA8888 to RGB565 conversion with NEON
I'm trying to optimize an image format conversion on iOS using the NEON vector instruction set. I assumed this would map well to that because it processes a bunch of similar data.
My attempts haven't ...
6
votes
1answer
374 views
Why does arm-gcc decrement/increment the stack pointer even when the stack is never accessed?
When compiling this program with arm-elf-gcc-4.5 -O3 -march=armv7-a -mthumb -mfpu=neon -mfloat-abi=softfp:
#include <arm_neon.h>
extern float32x4_t cross(const float32x4_t& v1, const ...
6
votes
2answers
1k views
How to use the multiply and accumulate intrinsics in ARM Cortex-a8?
how to use the Multiply-Accumulate intrinsics provided by GCC?
float32x4_t vmlaq_f32 (float32x4_t , float32x4_t , float32x4_t);
Can anyone explain what three parameters I have to pass to this ...
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 ...
5
votes
1answer
368 views
Mixing NEON assembly with non-vector functions
I think I found the answer to my question. There is an "fmacs" instruction for VFP which may do the trick which does scalar computation on NEON/VFP registers.
I'm very new to NEON or ARM ...
5
votes
3answers
502 views
ARM GCC bug? Uses chains of vldr instead of one vldmia…
Consider the following NEON-optimized function:
void mat44_multiply_neon(float32x4x4_t& result, const float32x4x4_t& a, const float32x4x4_t& b) {
// Make sure "a" is mapped to ...
5
votes
1answer
2k views
Is there a good reference for ARM Neon intrinsics?
The ARM reference manual doesn't go into too much detail into the individual instructions ( http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0348b/BABIIBBG.html ). Is there something ...
5
votes
4answers
2k views
How do I reorder vector data using ARM Neon intrinsics?
This is specifically related to ARM Neon SIMD coding. I am using ARM Neon instrinsics for certain module in a video decoder. I have a vectorized data as follows:
There are four 32 bit elements in a ...
4
votes
2answers
202 views
ARM Cortex A8 Benchmarks: can someone help me make sense of these numbers?
I'm working on writing several real-time DSP algorithms on Android, so I decided to program the ARM directly in Assembly to optimize everything as much as possible and make the math maximally ...
4
votes
2answers
422 views
ARM Cortex-A8: How many bytes are fetched in one memory read?
I'm trying to improve my image processing project running on an ARM cortex-a8 processor.
I was accessing 8-bit Grayscale Image data from memory. In my function, right now I'm accessing individual ...
4
votes
2answers
471 views
ARM NEON: What's the difference between vld4_f32 and vld4q_f32?
I'm not in a position to make out the difference between vld4_f32 and vld4q_f32 in ARM NEON instructions.
The confusion started when I raised my coding levels and started looking at the assembly ...
3
votes
2answers
101 views
ARM NEON: Which pairs of instructions have to wait for write back?
In the ARM NEON documentation, it says:
[...] some pairs of instructions might have to wait until the value is written back to the register file.
I haven't come across a list that defines the ...
3
votes
3answers
280 views
Sum all elements in a quadword vector in ARM assembly with NEON
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 ...
3
votes
4answers
447 views
NEON ASM code running much slower than C code?
I'm trying to implement Gauss-Newton optimization for a specific problem on iPhone ARM using NEON. The first function below is my original C function. The second is the NEON asm code I wrote. I ran ...
3
votes
1answer
529 views
ARM to C calling convention, NEON registers to save
There is a similar post that covers regular registers. What about NEON registers. As far as I remember either top half or bottom half of registers have to be preserved across function calls.
I can't ...
3
votes
1answer
351 views
How to use NEON comparison (greater than or equal to) instruction?
How to use the NEON comparison instructions in general?
Here is a case, I want to use, Greater-than-or-equal-to instruction?
Currently I have a,
int x;
...
...
...
if(x >= 0)
{
....
}
In ...
2
votes
1answer
62 views
Fast Image square on (int) Image- ARM neon intrinsics - iOS Dev
Can someone tell me a fast function to find the square of each pixel of an int image. I need it for iOS app dev. I am working directly on the memory of the image defined as
int *image_sqr_Baseaaddr = ...
2
votes
4answers
108 views
ARM NEON simple low pass filter vectorization
I have a simple single pole low pass filter (for parameter smoothing) that can be explained by the following formula:
y[n] = (1-a) * y[n-1] + a * x[n]
How to effective vectorize this case on ARM ...
2
votes
3answers
182 views
Converting a short array to floating point using ARM neon
I've just started trying to optimised some android code using NEON. I'm having a few issues, however. The main issue is that I really can't work out how to do a quick 16-bit to float conversion.
I ...
2
votes
2answers
545 views
Cortex A9 NEON vs VFP usage confusion
I'm trying to build a library for a Cortex A9 ARM processor(an OMAP4 to be more specific) and I'm in a little bit of confusion regarding which\when to use NEON vs VFP in the context of floating point ...
2
votes
1answer
268 views
Higher level math functions in ARM assembly with NEON
Hi im kind of new to assembly and im starting to get familiar with ARM assembly combined with the NEON coprocessor in some of the new ARM chips. One of the things I am not sure how to do is high level ...
2
votes
3answers
803 views
Neon Optimization using intrinsics
Learning about ARM NEON intrinsics, I was timing a function that I wrote to double the elements in an array.The version that used the intrinsics takes more time than a plain C version of the function.
...
2
votes
1answer
1k views
ARM Cortex-A8: How to make use of both NEON and vfpv3
I'm using Cortex-A8 processor and I'm not understanding how to use the -mfpu flag.
On the Cortex-A8 there are both vfpv3 and neon co-processors. Previously I was not knowing how to use neon so I was ...
1
vote
2answers
95 views
Fast Pixel Count on Binary Image- ARM neon intrinsics - iOS Dev
Can someone tell me a fast function to count the number of white pixels in a binary image. I need it for iOS app dev. I am working directly on the memory of the image defined as
bool *imageData = ...
1
vote
2answers
216 views
Improve code with Neon iOS
I need to improve a loop, because is called by my application thousands of times, I suppose I need to do it with Neon, but I don´t know How to begin, I copy the code to see if there is Who knows any ...
1
vote
2answers
103 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 ...
1
vote
3answers
231 views
Any Android tablet with the NEON instruction set?
I am interested in the unofficial port of VLC for Android with NEON instructions:
Even if Android smartphones with the NEON instruction set do exist, I have not been able to spot any NEON-powered ...
1
vote
3answers
138 views
“Immediate out of range errors” when assigning 0.0 to a NEON register
If I understand it correctly, because ARM instructions are 32 bits long they can only hold so many bits of immediate value. What I'm trying to do is vmov.f32 s0, #0.0, and I get "immediate out of ...
1
vote
2answers
316 views
Android build system, NEON and non-NEON builds
I want to build my library for armv6, and there is some neon code that I enable at runtime if device supports it. The neon code uses neon intrinsics and to be able to compile I must enable armeabi-v7a ...
1
vote
3answers
198 views
ARM NEON assembler error instruction cannot be conditionally
According to the arm info center vadd can be executed condtitionally however when i try
vaddeq.f32 d0,d0,d1
Xcode returns
65:instruction cannot be conditional -- vaddeq.f32 d0,d0,d1
one thing ...
1
vote
2answers
576 views
Android NEON libraries
Is there any other free vector library optimized for neon that math-neon?
I would like to get advantage of neon in my code, i have lot of objects and i am doing lot of simple vector physics-math, like ...
1
vote
1answer
260 views
NEON: How to convert an 128 bit ARGB to 32 bit ARGB with saturation?
I have an ARGB pixel stored in an 128 bit NEON register as 32bit per channel. I need to store this into memory as an 8bit channel ARGB (narrowing and saturating).
I got my result after a vmla.32 q1, ...
1
vote
3answers
593 views
Unknown GCC error, while compiling for ARM NEON (Critical)
I have a ARM NEON Cortex-A8 based processor target. I was optimizing my code by making use of NEON. But when I compile my code I get this strange error. Don't know how to fix this.
I'm trying to ...
1
vote
4answers
934 views
Load 8bit uint8_t as uint32_t?
my image processing project works with grayscale images. I have ARM Cortex-A8 processor platform. I want to make use of the NEON.
I have a grayscale image( consider the example below) and in my ...
1
vote
1answer
685 views
Compiler errors while building a project which uses Eigen, the C++ template library for linear algebra
in my project I'm making use of Eigen C++ library for linear algebra and ONLY when I turn on the vectorization flags (mfpu=neon -mfloat-abi=softfp) for ARM NEON, I get compiler errors. I'm not able to ...
0
votes
1answer
25 views
Loading 8-bit values using NEON/ARM
I'm trying to load an array of char values into NEON registers, and then treat them and 16-bit or 32-bit integer values. So something like this...
void SubVector(short* c, const unsigned char* a, ...
0
votes
1answer
52 views
Conversion short to int and sum with neon
I want to convert the next function to neon:
int dot4_c(unsigned char v0[4], unsigned char v1[4]){
int r=0;
r = v0[0]*v1[0];
r += v0[1]*v1[1];
r += v0[2]*v1[2];
r += ...
0
votes
1answer
91 views
Some doubts in optimizing the neon code
I wrote some neon code in assembly and was aiming for maximum optimization. Though the numbers seem satisfactory, I was interested in understanding the possibilities of optimizing it further. Then I ...
0
votes
4answers
265 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;
...
0
votes
3answers
129 views
Rgb to grayscale conversion with arm neon
I´m trying to convert from rgb to grayscale efficiently, so I got a function from here where it explains how to convert from rgba to grayscale. Now I´m trying to do the same but with just rgb. I ...
0
votes
1answer
50 views
ARM Neon: VPADAL for subtraction
I'm using VPADAL.U32 instruction to greatly increase my Addition code speed. However, I would need something to subtract with accumulation and carry (exactly what I got as addition).
Wishful thinking ...
0
votes
2answers
572 views
what is the fastest FFT library for iOS/Android ARM devices?
What is the fastest FFT library for iOS/Android ARM devices? And what library to people typically use on iOS/Android platforms? I'm guessing vDSP is the library most frequently used on iOS.
I've ...
0
votes
1answer
308 views
arm asm/neon optimisation for image processing
I m currently working on a painting app on ios.
I use a directly draw into a NSMutableData buffer and apply blending with my brush like this:
- (void) combineColorDestination:(unsigned char*) dest ...
0
votes
3answers
190 views
Is arm_neon.h missing all float16_t types?
I'm using NEON SIMD instruction to write a part of an Android app, targeting Cortex A8 processors. According to this reference manual, NEON supports 16-bit and 32-bit floats, that is float16_t and ...