aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Propagate compile-time size with "all" and add c++11 array unit testGravatar Gael Guennebaud2017-01-06
|
* Use "fix" for compile-time values, propagate compile-time sizes for span, ↵Gravatar Gael Guennebaud2017-01-06
| | | | clean some cleanup.
* Add unit test for indexed viewsGravatar Gael Guennebaud2017-01-06
|
* Initial commit to add a generic indexed-based view of matrices.Gravatar Gael Guennebaud2017-01-06
| | | | | This version already works as a read-only expression. Numerous refactoring, renaming, extension, tuning passes are expected...
* Convert integers to real numbers when computing relative L2 errorGravatar Gael Guennebaud2017-01-05
|
* Fix and workaround several doxygen issues/warningsGravatar Gael Guennebaud2017-01-04
|
* Add doc for sparse triangular solve functionsGravatar Gael Guennebaud2017-01-04
|
* Add missing snippet files.Gravatar Gael Guennebaud2017-01-04
|
* bug #1336: workaround doxygen failing to include numerous members of ↵Gravatar Gael Guennebaud2017-01-04
| | | | MatriBase in Matrix
* Document selfadjointViewGravatar Gael Guennebaud2017-01-04
|
* bug #1336: fix doxygen issue regarding EIGEN_CWISE_BINARY_RETURN_TYPEGravatar Gael Guennebaud2017-01-04
|
* Add debug outputGravatar Gael Guennebaud2017-01-03
|
* Fix inclusionGravatar Gael Guennebaud2017-01-03
|
* bug #1370: add doc for StorageIndexGravatar Gael Guennebaud2017-01-03
|
* bug #1370: rename _Index to _StorageIndex in SparseMatrix, and add a warning ↵Gravatar Gael Guennebaud2017-01-03
| | | | in the doc regarding the 3.2 to 3.3 change of SparseMatrix::Index
* Added += and + operators to inner iteratorsGravatar Valentin Roussellet2016-12-28
| | | | | Fix #1340 #1340
* Move common cwise-unary method from MatrixBase/ArrayBase to the common ↵Gravatar Gael Guennebaud2017-01-02
| | | | DenseBase class.
* doc: Fix trivial typo in AsciiQuickReference.txtGravatar Marco Falke2017-01-01
| | | | | * * * fixup!
* bug #1365: fix another type mismatch warningGravatar Gael Guennebaud2016-12-28
| | | | (sync is set from and compared to an Index)
* bug #1369: fix type mismatch warning.Gravatar Gael Guennebaud2016-12-28
| | | | | Returned values of omp thread id and numbers are int, o let's use int instead of Index here.
* Fix compilationGravatar Gael Guennebaud2016-12-27
|
* Cleanup because trait<CwiseBinaryOp>::Flags now expose the correct storage orderGravatar Gael Guennebaud2016-12-27
|
* Make sure that traits<CwiseBinaryOp>::Flags reports the correct storage ↵Gravatar Gael Guennebaud2016-12-27
| | | | order so that methods like .outerSize()/.innerSize() work properly.
* Add missing .outer() member to iterators of evaluators of cwise sparse ↵Gravatar Gael Guennebaud2016-12-27
| | | | binary expression
* Fix check of storage order mismatch for "sparse cwiseop sparse".Gravatar Gael Guennebaud2016-12-27
|
* Harmless typoGravatar Gael Guennebaud2016-12-27
|
* Avoid using horizontal adds since they're not very efficient.Gravatar Benoit Steiner2016-12-21
|
* Use native AVX512 types instead of Eigen Packets whenever possible.Gravatar Benoit Steiner2016-12-21
|
* Pulled latest update from trunkGravatar Benoit Steiner2016-12-21
|\
* | Simplified the contraction code`Gravatar Benoit Steiner2016-12-21
| |
| * Merged in benoitsteiner/opencl (pull request PR-279)Gravatar Benoit Steiner2016-12-21
|/| | | | | | | Fix for auto appearing in functor template argument.
* | Added support for libxsmm kernel in multithreaded contractionsGravatar Benoit Steiner2016-12-21
| |
* | Simplified the way we link libxsmmGravatar Benoit Steiner2016-12-21
| |
* | Pulled latest updates from trunkGravatar Benoit Steiner2016-12-21
|\ \
* | | Automatically include and link libxsmm when present.Gravatar Benoit Steiner2016-12-21
| | |
| * | Merged in joaoruileal/eigen (pull request PR-276)Gravatar Gael Guennebaud2016-12-21
|/| | | | | | | | | | | Minor improvements to Umfpack support
* | | Leverage libxsmm kernels within signle threaded contractionsGravatar Benoit Steiner2016-12-21
| | |
* | | Added support for libxsmm in the eigen makefilesGravatar Benoit Steiner2016-12-21
| | |
* | | Merged in benoitsteiner/opencl (pull request PR-278)Gravatar Benoit Steiner2016-12-21
|\ \ \
| | | * Fix for auto appearing in functor template argument.Gravatar Luke Iwanski2016-12-21
| | |/ | |/|
| | * renamed methods umfpackReportControl(), umfpackReportInfo(), and ↵Gravatar Joao Rui Leal2016-12-21
| | | | | | | | | | | | umfpackReportStatus() from UmfPackLU to printUmfpackControl(), printUmfpackInfo(), and printUmfpackStatus()
| * | Merged eigen/eigen into defaultGravatar Benoit Steiner2016-12-20
| |\ \
| * | | Fixed order of initialisation in ExecExprFunctorKernel functor.Gravatar Luke Iwanski2016-12-20
| | | |
| * | | Matching parameters order between lambda and the functor.Gravatar Luke Iwanski2016-12-20
| | | |
| * | | Added an OpenCL regression testGravatar Benoit Steiner2016-12-19
| | | |
| | | * it is now possible to change Umfpack control settings before factorizations; ↵Gravatar Joao Rui Leal2016-12-19
| | | | | | | | | | | | | | | | added access to the report functions of Umfpack
* | | | Remove superfluous const's (can cause warnings on some Intel compilers)Gravatar Angelos Mantzaflaris2016-12-07
| |/ / |/| | | | | | | | | | | (grafted from e236d3443c79f38aa721d95e64c275abbb5df10f )
* | | Remove MSVC warning 4127 - conditional expression is constant from the ↵Gravatar Gael Guennebaud2016-12-20
| | | | | | | | | | | | disabled list as we now have a local workaround.
* | | bug #1362: workaround constant conditional warning produced by MSVCGravatar Gael Guennebaud2016-12-20
| | |
* | | Fix bug #1367: compilation fix for gcc 4.1!Gravatar Gael Guennebaud2016-12-20
| | |