aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas
Commit message (Collapse)AuthorAge
* Update BLAS API unit testsGravatar Gael Guennebaud2015-11-30
|
* Remove dead code in selfadjoint_matrix_vector_productGravatar Gael Guennebaud2015-10-09
|
* Modify GEMM to handle m=0, n=0, and k=0 cases.Gravatar Eric Martin2015-07-11
|
* fix some legitimate shadow warningsGravatar Gael Guennebaud2015-06-09
|
* Cygwin does not like weak linking either.Gravatar Christoph Hertzberg2015-02-28
|
* merge Tensor module within Eigen/unsupported and update gemv BLAS wrapperGravatar Gael Guennebaud2015-02-12
|\
* | remove useless includeGravatar Gael Guennebaud2015-02-10
| |
* | typoGravatar Gael Guennebaud2015-02-10
| |
| * Pulled the latest changes from the trunkGravatar Benoit Steiner2015-02-06
| |\ | |/ |/|
* | Remove unused fortran filesGravatar Gael Guennebaud2014-12-13
| |
* | 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.
| * Made the blocking computation aware of the l3 cacheGravatar Benoit Steiner2014-10-15
|/ | | | Also optimized the blocking parameters to take into account the number of threads used for a computation
* Fix bug #61: gemm was broken since we changed the blocking orderGravatar Gael Guennebaud2014-07-24
|
* Fix implicit long to int conversions in blas interfaceGravatar Gael Guennebaud2014-07-08
|
* The BLAS interface is complete.Gravatar Gael Guennebaud2014-06-06
|
* Fix bug #776: it seems that mingw does not support weak linkingGravatar Gael Guennebaud2014-04-01
|
* 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.
* Fix Fortran compiler detectionGravatar Gael Guennebaud2014-02-13
|
* Fix dot*w to return 0 for empty vectors (BLAS interface)Gravatar Gael Guennebaud2013-10-01
|
* Add missing changes.Gravatar Gael Guennebaud2013-06-12
|
* bug #482: pass scalar arguments by const references. Still remains a few ↵Gravatar Gael Guennebaud2013-02-25
| | | | cases that might affect the ABI (see the bug entry)
* Fix bug #496: generalize internal rank1_update implementation to accept ↵Gravatar Gael Guennebaud2013-02-24
| | | | | | uplo(A) += v * w and make A.triangularView() += v * w uses it. Update unit tests and blas interface respectively.
* Fix bug #314:Gravatar Gael Guennebaud2012-11-06
| | | | | - remove most of the metaprogramming kung fu in MathFunctions.h (only keep functions that differs from the std) - remove the overloads for array expression that were in the std namespace
* Merged in jdh8/eigen (pull request PR-17)Gravatar Gael Guennebaud2012-09-11
|\
* | fix compilation on freebsdGravatar Gael Guennebaud2012-09-11
| |
| * 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
| |
| * Use conj_expr_if to clarify what it's doing.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
| |
| * Simplify Rank2Update.hGravatar Chen-Pang He2012-09-08
| |
| * Comment FIXMEs on Rank2Update.h and remove unused files.Gravatar Chen-Pang He2012-09-08
| |
| * Implement rank-2 update for packed matrices.Gravatar Chen-Pang He2012-09-08
| |
| * Perform direct calls in xHEMV and xSYMV.Gravatar Chen-Pang He2012-09-08
|/
* Implement SDSDOT with DSDOT and avoid allocating buffers in DSDOT.Gravatar Chen-Pang He2012-09-08
|
* Implement functors for rank-1 and rank-2 update.Gravatar Chen-Pang He2012-09-08
|
* Fix memory leak in DSDOT.Gravatar Chen-Pang He2012-09-07
|
* BLAS: implement DSDOT and SDSDOT; update test for them.Gravatar Chen-Pang He2012-09-05
|
* 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
|
* remove dynamic allocation for fixed size object and triangular matrix-matrix ↵Gravatar Gael Guennebaud2012-06-26
| | | | products
* update blas interface for trsmGravatar Gael Guennebaud2012-06-12
|
* enforce weak linking of xerblaGravatar Gael Guennebaud2011-12-10
|
* 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
* Intel(R) MKL support added.Gravatar karturov2011-12-05
| | | | | | | | | | * * * License disclaimer changed to BSD license for MKL_support.h * * * Pardiso support fixed, test added. blas/lapack tests fixed: Scalar parameter was added in Cholesky, product_matrix_vector_triangular remaned to triangular_matrix_vector_product. * * * PARDISO test was added physically.
* remove useless blas reference codeGravatar Gael Guennebaud2011-12-01
|
* add code for band triangular problems:Gravatar Gael Guennebaud2011-12-01
| | | | | - currently available from the BLAS interface only - and for vectors only
* output error messages in blas unit testsGravatar Gael Guennebaud2011-12-01
|