aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas/CMakeLists.txt
Commit message (Collapse)AuthorAge
* Replace language_support module with builtin CheckLanguageGravatar Samir Benmendil2021-01-27
| | | | | | | | | | | | The workaround_9220 function was introduced a long time ago to workaround a CMake issue with enable_language(OPTIONAL). Since then CMake has clarified that the OPTIONAL keywords has not been implemented[0]. A CheckLanguage module is now provided with CMake to check if a language can be enabled. Use that instead. [0] https://cmake.org/cmake/help/v3.18/command/enable_language.html
* add cmake-option to enable/disable creation of testsGravatar NeroBurner2017-01-02
| | | | | | | | | * * * disable unsupportet/test when test are disabled * * * rename EIGEN_ENABLE_TESTS to BUILD_TESTING * * * consider BUILD_TESTING in blas
* Reenable the generation of dynamic blas libraries.Gravatar Benoit Steiner2016-11-03
|
* Pulled latest updates from trunkGravatar Benoit Steiner2016-10-05
|
* Use f2c generated code instead of the original fortran code, except for ↵Gravatar Gael Guennebaud2014-12-11
| | | | dotc/dotu.
* Adds a modified f2c-generated C implmentation for BLAS.Gravatar Tim Murray2014-11-24
| | | | | | | | | This adds an optional implementation for the BLAS library that does not require the use of a FORTRAN compiler. It can be enabled with EIGEN_USE_F2C_BLAS. The C implementation uses the standard gfortran calling convention and does not require the use of -ff2c when compiled with gfortran.
* Fix Fortran compiler detectionGravatar Gael Guennebaud2014-02-13
|
* Fix rank-1 update for self-adjoint packed matrices.Gravatar Chen-Pang He2012-09-10
|
* Implement packed triangular solver.Gravatar Chen-Pang He2012-09-10
|
* Implement packed triangular matrix-vector product.Gravatar Chen-Pang He2012-09-09
|
* Implement rank-1 update for self-adjoint packed matrices.Gravatar Chen-Pang He2012-09-08
|
* Implement rank-2 update for packed matrices.Gravatar Chen-Pang He2012-09-08
|
* add code for band triangular problems:Gravatar Gael Guennebaud2011-12-01
| | | | | - currently available from the BLAS interface only - and for vectors only
* hopefully this workaround of cmake bug #9220 works for MSVC tooGravatar Gael Guennebaud2011-10-24
|
* Enable incomplete BLAS/Lapack builds when no fortran compiler has been found.Gravatar Gael Guennebaud2011-09-21
| | | | Works here with gcc. Hopefully this will work for MSVC too.
* enable instalation of blas and lapack libsGravatar Gael Guennebaud2011-07-11
|
* forgot that one, againGravatar Gael Guennebaud2011-02-18
|
* forgot to include this file in one pretty old commit (missing EXCLUDE_FROM_ALL)Gravatar Gael Guennebaud2011-02-17
|
* implement GBMVGravatar Gael Guennebaud2011-02-02
|
* enforce compilation of blas unit tests when running ctestGravatar Gael Guennebaud2010-12-12
|
* Remove parentheses for compatibility with cmake 2.6.2Gravatar Jitse Niesen2010-11-24
|
* now the full blas folder requires a fortran compilerGravatar Gael Guennebaud2010-11-22
|
* import reference BLAS routines which are not already implemented in Eigen : ↵Gravatar Gael Guennebaud2010-11-22
| | | | modified givens rotations, and packed and banded storages
* fix issue 114: workaround cmake enable_language bugGravatar Gael Guennebaud2010-11-20
|
* import BLAS test suiteGravatar Gael Guennebaud2010-10-14
|
* add platform check for how to link to the standard math library.Gravatar Benoit Jacob2010-04-19
| | | | This allows to support QNX.
* blas: fix compilation and build both a shared and static libGravatar Gael Guennebaud2010-03-24
|
* blas: add a default implementation of xerblaGravatar Gael Guennebaud2010-03-02
|
* blas interface: fix compilation, fix GEMM, SYMM, TRMM, and TRSM,Gravatar Gael Guennebaud2010-03-01
| | | | i,e., they all pass the blas test suite. More to come
* Added cmake project definitions.Gravatar Hauke Heibel2009-10-02
|
* * Introduce make targets btest (build tests), blas (build blas lib), demos ↵Gravatar Benoit Jacob2009-09-27
| | | | | | | | | (build demos). * remove EIGEN_BUILD_TESTS and siblings * add summary at the end of cmake run, hopefully not too verbose * fix build of quaternion demo * kill remnants of old binary library option
* add a wip blas library built on top of Eigen. TODO:Gravatar Gael Guennebaud2009-09-25
- write extentive unit tests (maybe this already exist in other projects) - the level2 functions still have to be implemented