Tagged Questions
11
votes
3answers
154 views
Fastest way of bitwise AND between two arrays on iPhone?
I have two image blocks stored as 1D arrays and have do the following bitwise AND operations among the elements of them.
int compare(unsigned char *a, int a_pitch,
unsigned char *b, int ...
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 ...
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 ...
3
votes
2answers
1k views
How to enable Neon instruction in Xcode
I want to use Neon SIMD instruction for the iphone.
I heard we have to put flags "-mfloat-abi=softfp -mfpu=neon" in the "Other C Flags" field of the Target inspector, but when building I get "error: ...
2
votes
2answers
330 views
vreinterpret NEON Intrinsics Problem
Okay, I've been banging my head for the last day and I'm sure it's something simple so here goes. Why does this code not work? I'm using Xcode 3.2.5 and LLVM and when I try to compile something like ...
2
votes
5answers
2k views
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
1answer
630 views
How to convert to 16 bit pixel format for use in OpenGL ES 2.0 when reading frames from a video (AV Foundation)
I'm using OpenGL to do some image processing on each frame of a 1280x720 quicktime video. The frames are then read back and a new video is created from these. The problem is the large amount of data ...
0
votes
1answer
291 views
Why using '-mfpu=neon' on XCODE4 causes errors?
I recently tries to use NEON for my applications. Many posts and Q&A tells that I have to specify "-mfpu=neon -mfloat-abi=softfp" to use NEON on iphone.
However, when I added this options to ...