The Following User Says Thank You to don_falcone For This Useful Post: | ||
|
2013-06-22
, 16:42
|
|
Posts: 1,974 |
Thanked: 1,834 times |
Joined on Mar 2013
@ india
|
#472
|
The Following User Says Thank You to nokiabot For This Useful Post: | ||
|
2013-06-22
, 21:40
|
Posts: 15 |
Thanked: 26 times |
Joined on Feb 2013
@ Leipzig
|
#473
|
The Following User Says Thank You to Älä hakkaa For This Useful Post: | ||
|
2013-06-23
, 20:27
|
Posts: 204 |
Thanked: 754 times |
Joined on Jan 2012
@ Finland
|
#474
|
The Following 3 Users Say Thank You to Skry For This Useful Post: | ||
|
2013-06-24
, 14:45
|
Posts: 191 |
Thanked: 415 times |
Joined on Jan 2012
|
#475
|
If we think about the compiler options used, in practice we would be optimizing for cortex-a8 with neon and thumb2. This would be a benefit for other similar devices too.
NEON NEON is an extension of the VFP which allows for very efficient manipulation of matrices, and vector data in general. This is notably useful for processing audio and video data, or for fast memcpy(). Programs usually take advantage of NEON thanks to hand-crafted assembly routines. GCC can automatically vectorize code and generate NEON instructions, however this tends to have limited success. It would seem sensible NOT to require NEON in a new port since some modern ARMv7 SoCs such as Marvell Dove and NVidia Tegra2 don't implement it. It is also possible to use NEON instructions for regular scalar floating point code, and this can give significant (2-3x) speedup on Cortex-A8 hardware. However GCC does not currently implement this, and it is not always applicable as NEON instructions are not fully IEEE compliant.
|
2013-06-26
, 23:04
|
Posts: 10 |
Thanked: 94 times |
Joined on Nov 2012
|
#477
|
The Following 4 Users Say Thank You to robotanarchy For This Useful Post: | ||
|
2013-06-28
, 21:06
|
Posts: 204 |
Thanked: 754 times |
Joined on Jan 2012
@ Finland
|
#478
|
The Following 4 Users Say Thank You to Skry For This Useful Post: | ||
|
2013-06-30
, 13:33
|
Posts: 204 |
Thanked: 754 times |
Joined on Jan 2012
@ Finland
|
#479
|
The Following 8 Users Say Thank You to Skry For This Useful Post: | ||
|
2013-07-01
, 21:23
|
Posts: 15 |
Thanked: 26 times |
Joined on Feb 2013
@ Leipzig
|
#480
|
(...na gut, was erwartet man? Leute aus Leipzig sprachen eh schon immer einen Dialekt, noch schlimmer als Chemnitzer, und falsch oft dazu :P )
Last edited by don_falcone; 2013-06-22 at 16:19.