NEON is a vector-processing instruction set for ARM processors.
0
votes
1answer
40 views
How to compute dotproduct with NEON and double values in ARM processor
I need to do a lot of vector calculations. Therefore I seems wise that NEON should be used. The problem is that the function depends on doubles. This gives me two options, re-writing the entire code ...
-3
votes
2answers
52 views
how to initialize and process arrays in arm neon assembly
I want to convert this C program into ARM NEON assembly:
int main()
{
int str1[]={1,2,3,4,5,6,7,8,9,10};
int str2[]={11,12,3,4,8,1,4,5,8,3};
int str3[10],i;
for(i=0;i<10;i++)
...
1
vote
1answer
46 views
Converting arm code to use NEON intrinsics
I have been trying to modify the code beneath to work with NEON Intrinsics, thereby creating a speedup. Unfortunately nothing seems to work correctly. Does anyone have any idea what is going wrong? I ...
0
votes
0answers
50 views
what does this instruction do ,VLD1.32 {D0,D1},[R0]! IN ARM NEON
What does this instruction do
VLD1.32 {D0,D1},[R0]!
in ARM NEON. I want to load Q register wich is 128 bit(4 word) with 4 different values.
It is something like this
Q0[0:31]=some_value1;
...
0
votes
1answer
50 views
ARM Neon Compiler [closed]
I want compile & run an ARM assembly code.I have downloaded a evaluation version of ARM DS-5.
But i am facing a problem to run the code,it gives an error "No entrypoint defined".
I am trying to ...
1
vote
1answer
55 views
Reorder values when storing from NEON registers
I have 128 32-bit values (numbered from 0 to 127) and have them ordered in the following way:
0, 32, 64, 96, 1, 33, 65, 97, ... 31, 63, 95, 127
With this ordering I load them in groups of 4 into ...
0
votes
1answer
53 views
How to Build & Decode using OpenMAX Development Layer (DL) By ARM
I have tried study long time some easy way to build and utilize ARM Optimized OpenMax DL Library without success which is available here https://silver.arm.com/browse/OX002 but need login to download.
...
0
votes
0answers
193 views
ARM vectorization Qualcomm ARMv7/Cortex-A8 versus Tegra Cortex-A9
I am applying some vectorization to algorithms, running on ARM-Android. I begin development with my own phone (HTC Desire S, CPU Snapdragon MSM8255).
I have vectorized 2 algorithms.
First works with ...
0
votes
2answers
85 views
Building ARMv7a regular and neon at the same time
Since I have a very processing intensive App I would like to build a variant with NEON / Advanced SIMD support. Also I have multiple source files with algorithms, so I don't want to enable neon for ...
0
votes
0answers
59 views
ARM NEON count compare result
I need to make some parallel compare under uint16x8_t vectors, and increment some local variable (counter) according to it, for example +8 increment, if all elements of vector compared as true. I ...
1
vote
1answer
57 views
Vectorizing Code for efficient implementation
The following is an IIR code. I need to vectorize the code so that I can write NEON code efficiently.
Example of vectorization
Non vectorized code
for(i=0;i<100;i++)
a[i] =a[i]*b[i]; //only ...
2
votes
4answers
115 views
performance optimizing critical code in iOS app
I am trying to optimize the performance of a critical part of my app. Written in C, the code loops through all pixels of sourceImage and calculates the "color distance" to each of its neighbors, ...
2
votes
1answer
114 views
NEON Fixed point coding and Fixed vs Floating point operations performance comparison
As we can see here "arm integer NEON operations cycles " and arm float NEON operations cycles ,the integer Multiply operations does not seem to have a definite advantage over the Floating point ...
0
votes
1answer
80 views
NEON output generated by the simulator regarding (pipeline information, stalls, execution cycles) not clear
I have some problem understanding the output of NEON simulator. The output generated is cryptic and there is no proper documentation for understanding the simulator output.
for example :
In the ...
0
votes
0answers
129 views
Arm NEON not able to understand the cycles?
I am working on optimizing the code for FFT algorithm using NEON of ARM. I am running Beagle Board xM as target. I am running my program without any operating system on the board(Running program ...
1
vote
1answer
199 views
ARM NEON support in Qemu
Android emulator that comes with the Android SDK has support for NEON instruction set emulation (tested that myself).
And it's based on QEMU.
I recently tried to create a custom VM with QEMU ...
0
votes
2answers
96 views
Summing 3 vectors and get the result in neon
I'm trying to sum d0,d1,d2 + d3,d4,d5+ d6,d7,d8. I don't know the best instruction for that and then take the average by 9. I know how to do the averaging using approximation, but summing those lanes, ...
0
votes
1answer
115 views
algorithm for downsample an image by 3 using Neon
I would like to know is it possible to with neon vectors to downsample an image by 3 ?
I'm trying to write an algorithm for that on paper, but it seems it is not possible. Because when you get for ...
0
votes
2answers
314 views
Bilinear Interpolation from C to Neon
I'm trying to downsample an Image using Neon. So I tried to exercise neon by writing a function that subtracts two images using neon and I have succeeded.
Now I came back to write the bilinear ...
0
votes
1answer
93 views
Subtracting two images using NEON
I'm trying to subtract two images(grayscaled) by using Neon intrinsics as an exercise, I don't know what is the best way to subtract two vectors using the C intrinsics.
void ...
-1
votes
1answer
72 views
arm neon instruction [closed]
I have some code and, I want to use Neon instruction to change it, but I really don't know how to complete it... Can anyone help me?
void add(int n,float *a,float *b,float t) {
int i, size = ...
0
votes
1answer
211 views
Explaining ARM Neon Image Sampling
I'm trying to write a better version of cv::resize() of the OpenCV, and I came a cross a code that is here: https://github.com/rmaz/NEON-Image-Downscaling/blob/master/ImageResize/BDPViewController.m
...
1
vote
1answer
64 views
Fastest way to test a 128 bit NEON register for a value of 0 using intrinsics?
I'm looking for the fastest way to test if a 128 NEON register contains all zeros, using NEON intrinsics.
I'm currently using 3 OR operations, and 2 MOVs:
uint32x4_t vr = vorrq_u32(vcmp0, vcmp1);
...
0
votes
1answer
82 views
NEON simple vector assignment intrinsic?
Having r1,r3 and r4 of type uint32x4_t loaded into NEON registers I have the following code:
r3 = veorq_u32(r0,r3);
r4 = r1;
r1 = vandq_u32(r1,r3);
r4 = veorq_u32(r4,r2);
r1 = ...
4
votes
1answer
151 views
Constant out of range with NEON intrinsics
Im compiling the following ARM NEON intrinsics test code (in Eclipse with Android NDK):
void foo(uint64_t* Res)
{
uint64_t x = 0xff12aa8902acf78dULL;
uint64x1_t a,b;
a = vld1_u64 ...
3
votes
1answer
114 views
Which compiler should be used for porting C code to ARM?
I am new to ARM. I have written C code,but I'm looking to port the code to ARM which runs on all ARM processors. I am going to develop high end applications such as those which run on smartphones/ ...
1
vote
2answers
64 views
Vectorization with floating point in Android
I am calculating a lot of instances of the distance from a n dimensional (10-39) point to an array. I want it to go as fast as possible, for Android 4.0+, specifically for the Galaxy S3.
I have got ...
3
votes
2answers
231 views
ARM NEON SIMD version 2
What is the difference between NEON SIMD and NEON SIMD version 2 as in Cortex A15?
2
votes
1answer
153 views
ARM NEON vectorization failure
I would like to enable NEON vectorization on my ARM cortex-a9, but I get this output at compile:
"not vectorized: relevant stmt not supported: D.14140_82 = D.14143_77 * D.14141_81"
Here is my loop:
...
0
votes
0answers
38 views
How can I enable compiler autovectorization with Neon in XCode compling for ipad4 (A15)? [duplicate]
My code is in C/C++ without any asm or intrinsic functions.
The code was compiled on ARM-A9 using android-ndk-r8d.
After I added
"-O3 mfpu=neon -mfloat-abi=softfp"
The compiler vectorized ...
0
votes
1answer
55 views
how to program neon register index
I have a 8x8 data. After processing, I want to keep resulting 8x8 data for time being for further
process. My question is if it is possible to program 4 Q-registers to store them by loop. But the ...
1
vote
1answer
76 views
What neon assembly code to combine two vectors into long vector?
ARM Neon intrinsic vcombine_s16 combinese two vectors into one long vector. What is its assembly code?
1
vote
2answers
221 views
ARM: runtime CPU type detection
What is the simplest method to determine CPU type from within a running C application? I am interested in determining how many cores current CPU has and whether it has a NEON unit. One simple solution ...
4
votes
1answer
140 views
NEON Instruction throws exception on Windows CE 7
I am happy to ask questions in stack overflow due to prompt reply from experts world wide:-) I wish to explain clearly the issue I am facing.
What I wish to do?
I wish to evaluate NEON instruction ...
2
votes
3answers
246 views
C versus vDSP versus NEON - How could NEON be as slow as C?
How could NEON be as slow as C?
I have been trying to build a fast Histogram function that would bucket incoming values into ranges by assigning them a value - which is the range threshold they are ...
-2
votes
1answer
239 views
Run Length Encoding - SIMD
I am trying to optimise the run length coding. I was thinking of implementing it in SIMD. I spent a few hours working on the algo but couldn't proceed much. Is it worth giving it a shot? I am working ...
2
votes
1answer
91 views
Improve code with NEON on iOS - use VCEQ then VBIT
I am writing a histogram like function which looks at vector data and then puts the elements in predefined "histogram" buckets based on which range they are closest to.
I can obviously do this using ...
1
vote
1answer
65 views
NE10 NEON library not working
NE10 NEON optimized floating point library.
Is there any reference output available to check the output, I am currently working on checking the output validity of functions in NE10. I am working with ...
2
votes
1answer
193 views
Neon VLD consuming more cycles than what is expected?
I have a simple asm code which loads 12 quad registers of NEON, and have paralleled pairwise add instruction along with the load instruction ( to exploit the dual issue capability). I have verified ...
0
votes
2answers
82 views
Anyway to use variable in register name in NEON?
NEON extension registers can be viewed as 16 quadwords or 32 doublewords. In most programming, the specific register to be used is fixed. For example,
vmov.i8 d0, 0xff
vmov.i8 d1, 0xee
vmov.i8 d2, ...
1
vote
2answers
168 views
Bench marking ARM NEON OpenMAx Numbers
I am currently working on bench marking the performance of Cortex-A8 processor by using various compilers(tried DS-5 and IAR) and various libraries (Openmax,NE10).
I am specifically working on to see ...
2
votes
1answer
92 views
Alignment in VLD1
I have a question about ARM Neon VLD1 instruction's alignment. How does the alignment in the following code work?
DATA .req r0
vld1.16 {d16, d17, d18, d19}, [DATA, :128]!
...
-1
votes
1answer
295 views
Windows phone 8 neon inline assembly ffmpeg [duplicate]
Possible Duplicate:
windows phone8 wp8 arm neon assembly
I am about to transplant a project just like ffmpeg onto wp8(ARM). Unfortunately, most part of the project was written by arm neon ...
0
votes
0answers
88 views
Porting of NE10 NEON Library to any compiler
NE10 is an open source library written specifically for NEON unit of ARM. It works with GCC and in UNIX.http://projectne10.github.com/Ne10/
The only tutorial available online is ...
1
vote
1answer
76 views
What does :constant mean in ARM and what does it mean specifically in VLDn's address register?
I am learning neon and found a line of code as the following:
DATA .req r0
vld1.16 {d16, d17, d18, d19}, [DATA, :128]!
I can not find any information about what the :128 ...
-1
votes
1answer
182 views
windows phone8 wp8 arm neon assembly [closed]
I am about to transplant a project onto wp8. Unfortunately, most part of the project was written by arm neon assembly code with AT&T format, just like ffmpeg(neon).
Any suggestion about tools or ...
2
votes
1answer
138 views
Not able to load Floating point Values using NEON Intrinsics
I am not able to load floating point values in to NEON 128 bit registers no matter what!
I tried every possible way to load floating point numbers but the registers remain zero (found via ...
-2
votes
1answer
112 views
How many functional units does NEON on Cortex-a8 have? [closed]
My question is how many and what all functional units does the NEON unit on ARM cortex-a8 have? If I have read correctly, the TRM doesn't explicitly say anything about the number of functional units ...
1
vote
1answer
172 views
NEON assembly code, how to convert BYTE to float?
now i have a code want to improve. the datatype of src data is byte. i want to calculate with float and store the result to byte. but i dont know how to convert datatype of data bwtween BYTE and ...
0
votes
1answer
83 views
assembly asm code, how to load data from different source points?
i tried to improve some code, but it seems so difficult to me.
i develop on Android NDK.
the C++ code i want to improve followed:
unsigned int test_add_C(unsigned int *x, unsigned int *y) {
unsigned ...

