Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I Perform Integer SIMD operations on the iPad A4 Processor?

Tags:

ipad

simd

neon

I feel the need for speed. Double for loops are killing my iPad apps performance. I need SIMD. How do I perform integer SIMD operations on the iPad A4 processor?

Thanks,
Doug

like image 865
dugla Avatar asked Jan 22 '23 08:01

dugla


1 Answers

The instruction set is NEON, intrinsics reference

I've never been able to find good documentation on what they all actually are. But you pick it up pretty quickly if you've had any exposure to SSE

like image 153
Joshua Weinberg Avatar answered Jan 29 '23 21:01

Joshua Weinberg