aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmake/EigenTesting.cmake
Commit message (Collapse)AuthorAge
* Use GCC flags in mingwGravatar Michael Abrahams2015-06-20
|
* bug #967: Automatically add cxx11 suffix when building in C++11 modeGravatar Christoph Hertzberg2015-02-28
|
* Remove EIGEN_TEST_C++0x option and let EIGEN_TEST_CXX11 adds the -std=c++11 flagGravatar Gael Guennebaud2015-02-20
|
* bug #914: fix compiler detection on windowsGravatar Gael Guennebaud2015-02-16
| | | | | (grafted from 77af14fb6213b833cc37a01e2a8c7eb762db9af8 )
* add EIGEN_TEST_NEON64, but it's a dummy, AArch64 implies NEON support so ↵Gravatar Konstantinos Margaritis2014-10-21
| | | | extra CXXFLAGS are needed
* bug #891: Determine sizeof(void*) via CMAKE variable instead of test programGravatar Christoph Hertzberg2014-10-14
|
* add VSX identifierGravatar Konstantinos Margaritis2014-09-25
|
* Initial VSX commitGravatar Konstantinos Margaritis2014-08-29
|
* Added proper support for AVX and FMA in the makefiles.Gravatar Benoit Steiner2014-03-24
|
* Added support for AVX to Eigen.Gravatar Benoit Steiner2014-01-29
|
* Add minimalistic unit tests for NVCC supportGravatar Gael Guennebaud2013-11-05
|
* Added build name support for VC11 and its service packs.Gravatar Hauke Heibel2013-08-01
|
* Remove superfluous testing files (as changeset ↵Gravatar Gael Guennebaud2013-07-31
| | | | | | e41bc6cbbf9863c686e464d4479b4f562e5649c3 but more complete)
* Fix bug #542: fix detection of compiler version on systems without the head ↵Gravatar Gael Guennebaud2013-06-18
| | | | command.
* Add Official/Unsupported labels to unit tests and add a ctest driver to ↵Gravatar Gael Guennebaud2013-03-20
| | | | submit subprojects to cdash
* Fixed MSVC dashboard (Experimental/Continuous) build scripts.Gravatar Hauke Heibel2013-02-27
|
* Add the possibility to define a custom build-string suffixGravatar Gael Guennebaud2013-02-26
|
* add user defined CXX and LINKER flag cmake variables for the unit testsGravatar Gael Guennebaud2011-12-09
|
* improve compiler name and version detectionGravatar Gael Guennebaud2011-12-07
|
* fix detection of ICC versionGravatar Gael Guennebaud2011-12-06
|
* improve compiler and architecture detectionGravatar Gael Guennebaud2011-12-06
|
* fix ei_add_propertyGravatar Gael Guennebaud2011-11-12
|
* merge with hauke/eigen-cdash-improvements branchGravatar Gael Guennebaud2011-11-09
|\
* | use runtest.sh script iif /bin/bash does existGravatar Gael Guennebaud2011-11-03
| |
* | add the possibility to configure the maximal matrix size in the unit testsGravatar Gael Guennebaud2011-07-12
| |
* | add the possibility to specify a list of sub-test suffixes in a compact wayGravatar Gael Guennebaud2011-03-28
| |
| * Improved site and buildname generation.Gravatar Hauke Heibel2011-02-20
|/
* failtest: a new cmake-based test suite for testing stuff that should fail to ↵Gravatar Benoit Jacob2011-02-05
| | | | build. This first batch imports some const correctness checks from bug #54.
* Added the /bigobj flag in order to enable compilation with MSVC when ↵Gravatar Hauke Heibel2011-01-29
| | | | EIGEN_SPLIT_LARGE_TESTS is not set.
* let eigen2 tests use the same ei_add_test macro, which required to prefix ↵Gravatar Benoit Jacob2011-01-25
| | | | them with eigen2_ ; rename buildtests_eigen2 to eigen2_buildtests, etc.
* Switched "MESSAGE(" -> "MESSAGE(STATUS " in CMake script, since otherwise ↵Gravatar Jose Luis Blanco2010-12-29
| | | | they may look like errors to the user.
* fix bug #92 - we were doing stupid things when passing the list of libraries ↵Gravatar Benoit Jacob2010-10-28
| | | | to link to.
* fix bug i just introduced in ei_add_test_internalGravatar Benoit Jacob2010-10-17
|
* Fix general linking issue for tests linking to multiple libs, and explicitly ↵Gravatar Benoit Jacob2010-10-17
| | | | link mpfr_real test to GMP.
* add a Transposition section in page 2Gravatar Gael Guennebaud2010-06-28
|
* dont try passing --version to qccGravatar Benoit Jacob2010-04-29
|
* add platform check for how to link to the standard math library.Gravatar Benoit Jacob2010-04-19
| | | | This allows to support QNX.
* introduce EIGEN_DONT_ALIGN_STACK (disables alignment attributes) and ↵Gravatar Benoit Jacob2010-03-06
| | | | | | EIGEN_DONT_ALIGN_HEAP (disables aligned malloc)... you can still use EIGEN_DONT_ALIGN to do both at once.
* Added initial NEON support, most tests pass however we had to use some ↵Gravatar Konstantinos Margaritis2010-03-03
| | | | | | | | 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.
* CMake cleanup.Gravatar Hauke Heibel2010-02-20
|
* Disable variadic macro warning when compiling at full warning level.Gravatar Hauke Heibel2010-01-29
| | | | I was not able to get a macro version running and thus I opted for a cmake patch.
* add EIGEN_DEFAULT_TO_ROW_MAJOR cmake option for the tests.Gravatar Benoit Jacob2010-01-27
|
* Clean up one compilation error and two warnings.Gravatar Jitse Niesen2010-01-26
|
* Removed more warnings.Gravatar Hauke Heibel2009-12-12
|
* Added to possibility to compile unit tests at maximum warning level.Gravatar Hauke Heibel2009-12-12
| | | | Silenced (amongst others) many conversion related warnings.
* * Remove test_ prefix in testsGravatar Benoit Jacob2009-12-02
| | | | * tests now honor EIGEN_REPEAT and EIGEN_SEED if no arguments were passed
* Some of our unit tests require mathematical constants and thus we rely on ↵Gravatar Hauke Heibel2009-11-30
| | | | | | | non-ansi code. It seems as if the new standard removed pow(T,int). M_PIL is only defined when _GNU_SOURCE is defined.
* improve the scripts for building unit tests:Gravatar Benoit Jacob2009-11-25
| | | | | * support unsupported/ * use egrep instead of grep, properly escape special chars.
* add SSE4 support, start with integer multiplicationGravatar Benoit Jacob2009-11-24
|
* introduce check target, and some renamingGravatar Benoit Jacob2009-11-12
|