aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas/common.h
Commit message (Collapse)AuthorAge
* Consistently use EIGEN_BLAS_FUNC in BLAS.Gravatar Sameer Agarwal2019-02-27
| | | | | | | | | | Previously, for a few functions, eithe BLASFUNC or, EIGEN_CAT was being used. This change uses EIGEN_BLAS_FUNC consistently everywhere. Also introduce EIGEN_BLAS_FUNC_SUFFIX, which by default is equal to "_", this allows the user to inject a new suffix as needed.
* Fix numerous shadow-warnings for GCC<=4.8Gravatar Christoph Hertzberg2018-08-28
|
* Improve constness of level2 blas API.Gravatar Gael Guennebaud2016-04-11
|
* Improve constness of blas level-3 interface.Gravatar Gael Guennebaud2016-04-11
|
* typoGravatar Gael Guennebaud2015-02-10
|
* Rename the vector() factories defined in blas/common.h into make_vector() to ↵Gravatar Benoit Steiner2014-04-01
| | | | prevent a possible name conflict with std::vector.
* Merged in jdh8/eigen (pull request PR-17)Gravatar Gael Guennebaud2012-09-11
|\
* | fix compilation on freebsdGravatar Gael Guennebaud2012-09-11
| |
| * Implement packed triangular solver.Gravatar Chen-Pang He2012-09-10
| |
| * Implement packed triangular matrix-vector product.Gravatar Chen-Pang He2012-09-09
| |
| * Extend rank-1 updates for different storage orders.Gravatar Chen-Pang He2012-09-09
| |
| * Implement rank-1 update for self-adjoint packed matrices.Gravatar Chen-Pang He2012-09-08
|/
* Implement functors for rank-1 and rank-2 update.Gravatar Chen-Pang He2012-09-08
|
* Fix a typo in blas/common.hGravatar Chen-Pang He2012-09-03
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* mv blas.h to src/misc such that it would be possible to use any blas libraries,Gravatar Gael Guennebaud2011-12-09
| | | | | | however, this requires some more works: - add const qualifiers in the declarations of blas.h - add the possibility to add a suffix to blas function names
* add code for band triangular problems:Gravatar Gael Guennebaud2011-12-01
| | | | | - currently available from the BLAS interface only - and for vectors only
* move the blas.h header to blas/ and remove declaration of function returning ↵Gravatar Gael Guennebaud2011-10-19
| | | | a complex
* BTL: add a Eigen-blas backendGravatar Gael Guennebaud2011-03-23
|
* forgot to include this file in previous commit (needed for lapack)Gravatar Gael Guennebaud2011-02-18
|
* split level 1 and 2 implementation files into smaller ones and fix a couple ↵Gravatar Gael Guennebaud2010-11-22
| | | | of numerical and tricky issues discovered by the lapack test suite
* some cleaning in blas level 2Gravatar Gael Guennebaud2010-11-19
|
* implement HER and HER2 blas routinesGravatar Gael Guennebaud2010-11-19
|
* implement proper error handling in level 3 routinesGravatar Gael Guennebaud2010-11-03
|
* add the prototype of all level2 functionsGravatar Gael Guennebaud2010-10-08
|
* finish/fix level1 blas, all test passGravatar Gael Guennebaud2010-07-17
|
* fix a couple a issue with blas (new TRMM api, and enforece column major)Gravatar Gael Guennebaud2010-07-16
|
* email changeGravatar Gael Guennebaud2010-06-24
|
* 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
* Even more NestByValue cleanup...Gravatar Hauke Heibel2009-12-01
|
* Much more NestByValue cleanup.Gravatar Hauke Heibel2009-12-01
|
* 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