mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
add SSE4 support, start with integer multiplication
This commit is contained in:
@@ -147,33 +147,45 @@ macro(ei_testing_print_summary)
|
||||
|
||||
if(EIGEN_TEST_SSE2)
|
||||
message("SSE2: ON")
|
||||
else(EIGEN_TEST_SSE2)
|
||||
else()
|
||||
message("SSE2: Using architecture defaults")
|
||||
endif(EIGEN_TEST_SSE2)
|
||||
endif()
|
||||
|
||||
if(EIGEN_TEST_SSE3)
|
||||
message("SSE3: ON")
|
||||
else(EIGEN_TEST_SSE3)
|
||||
else()
|
||||
message("SSE3: Using architecture defaults")
|
||||
endif(EIGEN_TEST_SSE3)
|
||||
endif()
|
||||
|
||||
if(EIGEN_TEST_SSSE3)
|
||||
message("SSSE3: ON")
|
||||
else(EIGEN_TEST_SSSE3)
|
||||
else()
|
||||
message("SSSE3: Using architecture defaults")
|
||||
endif(EIGEN_TEST_SSSE3)
|
||||
endif()
|
||||
|
||||
if(EIGEN_TEST_SSE4_1)
|
||||
message("SSE4.1: ON")
|
||||
else()
|
||||
message("SSE4.1: Using architecture defaults")
|
||||
endif()
|
||||
|
||||
if(EIGEN_TEST_SSE4_2)
|
||||
message("SSE4.2: ON")
|
||||
else()
|
||||
message("SSE4.2: Using architecture defaults")
|
||||
endif()
|
||||
|
||||
if(EIGEN_TEST_ALTIVEC)
|
||||
message("Altivec: Using architecture defaults")
|
||||
else(EIGEN_TEST_ALTIVEC)
|
||||
else()
|
||||
message("Altivec: Using architecture defaults")
|
||||
endif(EIGEN_TEST_ALTIVEC)
|
||||
endif()
|
||||
|
||||
if(EIGEN_TEST_NO_EXPLICIT_VECTORIZATION)
|
||||
message("Explicit vec: OFF")
|
||||
else(EIGEN_TEST_NO_EXPLICIT_VECTORIZATION)
|
||||
else()
|
||||
message("Explicit vec: Using architecture defaults")
|
||||
endif(EIGEN_TEST_NO_EXPLICIT_VECTORIZATION)
|
||||
endif()
|
||||
|
||||
message("\n${EIGEN_TESTING_SUMMARY}")
|
||||
# message("CXX: ${CMAKE_CXX_COMPILER}")
|
||||
|
||||
Reference in New Issue
Block a user