mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Add support for MIPS SIMD (MSA)
This commit is contained in:
@@ -452,6 +452,12 @@ macro(ei_testing_print_summary)
|
||||
message(STATUS "VSX: Using architecture defaults")
|
||||
endif()
|
||||
|
||||
if(EIGEN_TEST_MSA)
|
||||
message(STATUS "MIPS MSA: ON")
|
||||
else()
|
||||
message(STATUS "MIPS MSA: Using architecture defaults")
|
||||
endif()
|
||||
|
||||
if(EIGEN_TEST_NEON)
|
||||
message(STATUS "ARM NEON: ON")
|
||||
else()
|
||||
@@ -655,6 +661,8 @@ macro(ei_get_cxxflags VAR)
|
||||
set(${VAR} SSE3)
|
||||
elseif(EIGEN_TEST_SSE2 OR IS_64BIT_ENV)
|
||||
set(${VAR} SSE2)
|
||||
elseif(EIGEN_TEST_MSA)
|
||||
set(${VAR} MSA)
|
||||
endif()
|
||||
|
||||
if(EIGEN_TEST_OPENMP)
|
||||
|
||||
Reference in New Issue
Block a user