aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/BenchSparseUtil.h
Commit message (Collapse)AuthorAge
* add support for ublasGravatar Gael Guennebaud2011-03-23
|
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* add support for oskiGravatar Gael Guennebaud2010-06-24
|
* add a spmv mini becnhmark for Eigen, GMM++, ublas, mtl4, and oskiGravatar Gael Guennebaud2010-06-22
|
* remove USING_PART_OF_NAMESPACE_EIGEN, leaving it in Eigen2Support.Gravatar Benoit Jacob2010-04-22
| | | | improve porting-Eigen2-to-3 docs
* extend sparse product benchmark with ublasGravatar Gael Guennebaud2010-02-09
|
* extend benchmark for sparse productsGravatar Gael Guennebaud2010-01-05
|
* extend the sparse matrix assembly benchmarkGravatar Gael Guennebaud2009-10-07
|
* various updates in the (still messy) sparse benchmarksGravatar Gael Guennebaud2009-01-28
|
* add ublas vector of vector in sparse setter benchGravatar Gael Guennebaud2009-01-17
|
* add a sparse setter benchGravatar Gael Guennebaud2009-01-17
|
* add a sparse * dense_vector benchGravatar Gael Guennebaud2009-01-14
|
* add/update some benchmark files used to test/compare sparse module featuresGravatar Gael Guennebaud2008-10-19
|
* Big API change in Cholesky module:Gravatar Gael Guennebaud2008-10-13
| | | | | | | | | | | | | | | | * rename Cholesky to LLT * rename CholeskyWithoutSquareRoot to LDLT * rename MatrixBase::cholesky() to llt() * rename MatrixBase::choleskyNoSqrt() to ldlt() * make {LLT,LDLT}::solve() API consistent with other modules Note that we are going to keep a source compatibility untill the next beta release. E.g., the "old" Cholesky* classes, etc are still available for some time. To be clear, Eigen beta2 should be (hopefully) source compatible with beta1, and so beta2 will contain all the deprecated API of beta1. Those features marked as deprecated will be removed in beta3 (or in the final 2.0 if there is no beta 3 !). Also includes various updated in sparse Cholesky.
* add Cholesky and eigensolver benchmarkGravatar Gael Guennebaud2008-07-08
|
* * added an in-place version of inverseProduct whichGravatar Gael Guennebaud2008-06-29
| | | | | | | might be twice faster fot small fixed size matrix * added a sparse triangular solver (sparse version of inverseProduct) * various other improvements in the Sparse module
* * added innerSize / outerSize functions to MatrixBaseGravatar Gael Guennebaud2008-06-28
* added complete implementation of sparse matrix product (with a little glue in Eigen/Core) * added an exhaustive bench of sparse products including GMM++ and MTL4 => Eigen outperforms in all transposed/density configurations !