Tagged Questions

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 ...
7
votes
1answer
383 views

NEON vs Intel SSE - equivalence of certain operations

I'm having some trouble figuring out the NEON equivalence of a couple of Intel SSE operations. It seems that NEON is not capable to handle an entire Q register at once(128 bit value data type). I ...
6
votes
2answers
283 views

how to divide in neon intrinsics by a float number

First of all, sorry for my english is not perfect but i will try to explain my problem all i can. A little of background of what I'm doing is processing a image by four pixels at the time, this on a ...
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 ...
3
votes
3answers
545 views

128bit hash comparison with SSE

In my current project, I have to compare 128bit values (actually md5 hashes) and I thought it would be possible to accelerate the comparison by using SSE instructions. My problem is that I can't ...
3
votes
1answer
684 views

How to initialize const float32x4x4_t (ARM NEON intrinsic, GCC)?

I can initialize float32x4_t like this: const float32x4x4_t zero = { 0.0f, 0.0f, 0.0f, 0.0f }; But this code makes an error Incompatible types in initializer: const float32x4x4_t one = { 1.0f, ...
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 ...
1
vote
1answer
111 views

Aliasing of NEON vector data types

Does NEON support aliasing of the vector data types with their scalar components? E.g.(Intel SSE) typedef long long __m128i __attribute__ ((__vector_size__ (16), __may_alias__)); The above will ...
1
vote
3answers
592 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 ...
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
2answers
120 views

comparison with floats in neon intrinsics

I think this a silly problem but i tried for a day to resolve this with not luck, so here is. i have register of four vectors (float32x4), and i want to make some process on some of them and the ...