Tagged Questions
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
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 ...
3
votes
1answer
352 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 ...
1
vote
4answers
935 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
1k views
Setting GCC 4.2.1 options in Xcode
I have a few questions about Xcode and interaction with GCC 4.2.1:
It doesn't seem as if Xcode Target Properties inspector exposes all possible GCC options. Is this correct?
More specifically, I'm ...
0
votes
1answer
361 views
No xor gcc intrinsics for ARM NEON
I could not find any intrinsics for a simple xor operation.
See: http://gcc.gnu.org/onlinedocs/gcc/ARM-NEON-Intrinsics.html
Are there really no way to use NEON instructions for this?