aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* fixes in determinant and homogeneousGravatar Gael Guennebaud2009-08-06
|
* compilation fix in EigenSolver,Gravatar Gael Guennebaud2009-08-06
| | | | bugfix in PartialLU
* fix a couple of compilations issuesGravatar Gael Guennebaud2009-08-06
|
* more product refactoringGravatar Gael Guennebaud2009-08-06
|
* big refactoring in Product.h:Gravatar Gael Guennebaud2009-08-05
| | | | | | | | - all specialized products now inherits ProductBase - the default product evaluated by Assign is still here, but it is currently enabled for small fixed sizes only - => this significantly speed up compilation for large matrices - I left the OuterProduct specialization empty as an exercise...
* implement a ProductBase class and, as a proof of concept, update ↵Gravatar Gael Guennebaud2009-08-04
| | | | | | TriangularProduct and SelfAdjointMatrixProduct to take advantage of it => fewer LOC
* mergeGravatar Gael Guennebaud2009-08-04
|\
* | implement two levels of blocking in PartialLU => high speedupGravatar Gael Guennebaud2009-08-04
| |
| * make the dot product linear in the second variable, not the first variableGravatar Benoit Jacob2009-08-03
|/
* merge with special_matrix branchGravatar Gael Guennebaud2009-08-03
|\
* \ mergeGravatar Gael Guennebaud2009-08-03
|\ \
| * | add new Householder moduleGravatar Benoit Jacob2009-08-03
| | |
* | | implements a blocked version of PartialLUGravatar Gael Guennebaud2009-08-03
| | |
* | | bugfix in trsmGravatar Gael Guennebaud2009-08-02
| | |
| | * apply patch from Marcus Hanwell: Improved quoting of tests when added to the ↵Gravatar Benoit Jacob2009-08-02
| | | | | | | | | | | | build
* | | add blocked LLT, and bugfix in trsm assertsGravatar Gael Guennebaud2009-08-01
|/ /
* | add selfadjointView from a trinagularViewGravatar Gael Guennebaud2009-07-31
| |
* | fix a couple of issues related to recent productsGravatar Gael Guennebaud2009-07-28
| |
* | synch with main branchGravatar Gael Guennebaud2009-07-28
|\|
* | add a debug mechanism to compute the number of intermediate evaluations ↵Gravatar Gael Guennebaud2009-07-28
| | | | | | | | (only for dynamic size)
* | bug fix in inverse for 1x1 matrix,Gravatar Gael Guennebaud2009-07-27
| | | | | | | | some compilation fixes in sparse_solvers
* | compilation fixesGravatar Gael Guennebaud2009-07-27
| |
* | various compilation and bug fixes in selfadjoint stuffGravatar Gael Guennebaud2009-07-27
| |
* | trmm is now fully working and available via TriangularView::operator*Gravatar Gael Guennebaud2009-07-27
| |
* | finalize trsm: works in all situations, and it is now used by solve() and ↵Gravatar Gael Guennebaud2009-07-26
| | | | | | | | solveInPlace()
* | split and add unit tests for symm and syrk,Gravatar Gael Guennebaud2009-07-23
| | | | | | | | the .rank*update() functions now returns a reference to *this
* | improve SYMV it is now faster and ready for useGravatar Gael Guennebaud2009-07-23
| |
* | addd matrix * self adjoint high level APIGravatar Gael Guennebaud2009-07-23
| |
* | bugfix in SYMMGravatar Gael Guennebaud2009-07-22
| |
* | implement high level API for SYMM and fix a couple of bugs related to complexGravatar Gael Guennebaud2009-07-22
| |
* | * refactoring of the matrix product into multiple small kernelsGravatar Gael Guennebaud2009-07-21
| | | | | | | | | | * started an efficient selfadjoint matrix * general matrix product based on the generic kernels ( => need a very little LOC)
* | * various fixes related to sub diagonals and band matrixGravatar Gael Guennebaud2009-07-21
| | | | | | | | * allows 0 sized objects in Block/Map
| * minor compilation fixes for Sun CC and ICCGravatar Gael Guennebaud2009-07-20
| |
| * bugfix for a = a * b; when a has to be resizedGravatar Gael Guennebaud2009-07-20
| |
| * re-implement stableNorm using a homemade blocky andGravatar Gael Guennebaud2009-07-17
| | | | | | | | vectorization friendly algorithm (slow if no vectorization)
* | * bugfixes in Product, and test/product_selfadjointGravatar Gael Guennebaud2009-07-16
| | | | | | | | * speed up in the extraction of the matrix Q in Tridiagonalization
* | synch with main devel branchGravatar Gael Guennebaud2009-07-15
|\|
* | change the implementation of BandMatrix to follow the BLAS/LAPACK storage schemeGravatar Gael Guennebaud2009-07-15
| |
| * fix issue #25 : the problem was that we assumed Dynamic was a multiple of a ↵Gravatar Gael Guennebaud2009-07-15
| | | | | | | | | | | | packet size (also disable the test of blueNorm)
* | started an implementation of BandMatrix: at least the read/write accessGravatar Gael Guennebaud2009-07-14
| | | | | | | | to the main/sub/super diagonals seems to work well.
* | synch with main devel branchGravatar Gael Guennebaud2009-07-14
|\ \
| | * fix typo in blue normGravatar Gael Guennebaud2009-07-14
| |/
| * add a blueNorm() function implementing the Blues's stable normGravatar Gael Guennebaud2009-07-13
| | | | | | | | | | algorithm. it is currently provided for experimentation purpose only.
| * add a SparseNestByValue expression and fix issue in sparse adjoint evaluationGravatar Gael Guennebaud2009-07-13
| |
* | add triangular * vector productGravatar Gael Guennebaud2009-07-13
| |
* | Add an efficient rank2 update function (like the level2 blas xSYR2 routine).Gravatar Gael Guennebaud2009-07-11
| | | | | | | | Note that it is already used in Tridiagonalization.
| * Set of fixes and workaround to make sun studio more happy.Gravatar Gael Guennebaud2009-07-10
| | | | | | | | Still remains the problem of alignment and vectorization.
* | add a meta unroller for the triangular solver (only for vectors as rhs)Gravatar Gael Guennebaud2009-07-10
| |
* | finally directly calling the low-level products is fasterGravatar Gael Guennebaud2009-07-10
| |
* | started to simplify the triangular solversGravatar Gael Guennebaud2009-07-09
| |