aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmake
diff options
context:
space:
mode:
authorGravatar Konstantinos Margaritis <markos@codex.gr>2010-03-03 11:25:41 -0600
committerGravatar Konstantinos Margaritis <markos@codex.gr>2010-03-03 11:25:41 -0600
commit112c550b4a3988f39e7d23e13c2f1bbd857bf55c (patch)
treed85a770308ef7fcf326896e434d7e8b440f024a6 /cmake
parent45d19afb18c0ac8d07de349dd80544f4b662210d (diff)
Added initial NEON support, most tests pass however we had to use some hackish workarounds
as gcc on ARM (both CodeSourcery 4.4.1 used and experimental 4.5) fail to ensure proper alignment with __attribute__((aligned(16))). This has to be fixed upstream to remove the workarounds.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/EigenTesting.cmake8
1 files changed, 7 insertions, 1 deletions
diff --git a/cmake/EigenTesting.cmake b/cmake/EigenTesting.cmake
index 7d90882a2..b08f8c340 100644
--- a/cmake/EigenTesting.cmake
+++ b/cmake/EigenTesting.cmake
@@ -185,11 +185,17 @@ macro(ei_testing_print_summary)
endif()
if(EIGEN_TEST_ALTIVEC)
- message("Altivec: Using architecture defaults")
+ message("Altivec: ON")
else()
message("Altivec: Using architecture defaults")
endif()
+ if(EIGEN_TEST_NEON)
+ message("ARM NEON: ON")
+ else()
+ message("ARM NEON: Using architecture defaults")
+ endif()
+
if(EIGEN_TEST_NO_EXPLICIT_VECTORIZATION)
message("Explicit vec: OFF")
else()