aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* Merged kmargar/eigen/tip into defaultGravatar Konstantinos Margaritis2016-04-05
|\
| * enable all tests againGravatar Konstantinos Margaritis2016-04-05
| |
* | Add regression test for nesting type handling in blas_traitsGravatar Gael Guennebaud2016-03-29
| |
| * actually include ZVector files, passes most basic tests (float still fails)Gravatar Konstantinos Margaritis2016-03-28
| |
| * Merged eigen/eigen into defaultGravatar Konstantinos Margaritis2016-03-28
| |\ | |/ |/|
| * some primitives ported, but missing intrinsics and crash with asm() are a ↵Gravatar Konstantinos Margaritis2016-03-27
| | | | | | | | problem
* | Replace all M_PI by EIGEN_PI and add a check to the testsuite.Gravatar Christoph Hertzberg2016-03-23
| |
* | Merged patch 672 from Justin Lebar: Don't use long doubles with cudaGravatar Benoit Steiner2016-03-22
|/
* Merge specfun branch.Gravatar Eugene Brevdo2016-03-13
|\
| * Add tests in array.cpp that check igamma/igammac properties.Gravatar Eugene Brevdo2016-03-13
| | | | | | | | | | This adds to the set of existing tests, which compare a specific set of values to third party calculated ground truth.
* | Resolve bad merge.Gravatar Eugene Brevdo2016-03-08
| |
| * Make igamma and igammac work correctly.Gravatar Eugene Brevdo2016-03-04
| | | | | | | | | | This required replacing ::abs with std::abs. Modified some unit tests.
| * Initial implementation of igamma and igammac.Gravatar Eugene Brevdo2016-03-03
| |
* | Fix shortcoming in fixed-value deduction of startRow/startColGravatar Gael Guennebaud2016-02-29
| |
* | Extend unit test to stress smart_copy with empty input/output.Gravatar Gael Guennebaud2016-02-19
|/
* bug #1166: fix shortcomming in gemv when the destination is not a vector at ↵Gravatar Gael Guennebaud2016-02-15
| | | | compile-time.
* bug #901: fix triangular-view with unit diagonal of sparse rectangular matrices.Gravatar Gael Guennebaud2016-02-12
|
* Fix unit test: accessing elements in a deque by offsetting a pointer to ↵Gravatar Gael Guennebaud2016-02-12
| | | | another element causes undefined behavior.
* Merged in rmlarsen/eigen (pull request PR-163)Gravatar Gael Guennebaud2016-02-11
|\ | | | | | | Implement complete orthogonal decomposition in Eigen.
* | Added a regression test for tanhGravatar Benoit Steiner2016-02-10
| |
| * Rename inverse -> pseudoInverse.Gravatar Rasmus Munk Larsen2016-02-10
| |
| * Enable inverse() method for computing pseudo-inverse.Gravatar Rasmus Munk Larsen2016-02-09
| |
| * Add missing calls to tests of COD.Gravatar Rasmus Munk Larsen2016-02-08
| | | | | | | | Fix a few mistakes in 3.2 -> 3.3 port.
| * Merge.Gravatar Rasmus Munk Larsen2016-02-06
| |\ | |/ |/|
| * Implement complete orthogonal decomposition in Eigen.Gravatar Rasmus Munk Larsen2016-02-06
| |
* | Fix warning in unit testGravatar Gael Guennebaud2016-02-06
| |
* | bug #779: allow non aligned buffers for buffers smaller than the requested ↵Gravatar Gael Guennebaud2016-02-05
|/ | | | alignment.
* Merge.Gravatar Rasmus Munk Larsen2016-02-04
|\
* | Fix condition that made the unit test spam stdout with bogus error messages.Gravatar Rasmus Munk Larsen2016-02-04
| |
| * Merged in rmlarsen/eigen (pull request PR-161)Gravatar Gael Guennebaud2016-02-03
| |\ | |/ |/| | | Change Eigen's ColPivHouseholderQR to use numerically stable norm downdate formula
* | Fix bad line break. Don't repeat Kahan matrix test since it is deterministic.Gravatar Rasmus Munk Larsen2016-02-03
| |
| * bug #1164: fix list and deque specializations such that our aligned ↵Gravatar Damien R2016-02-03
| | | | | | | | allocator is automatically activatived only when the user did not specified an allocator (or specified the default std::allocator).
* | merging.Gravatar Rasmus Munk Larsen2016-02-01
|\|
| * bug #557: make InnerIterator of sparse storage types more versatile by ↵Gravatar Gael Guennebaud2016-02-01
| | | | | | | | adding default-ctor, copy-ctor/assignment
| * Fix integer path for num_steps==1Gravatar Gael Guennebaud2016-02-01
| |
| * bug #698: fix linspaced for integer types.Gravatar Gael Guennebaud2016-02-01
| |
| * Avoid overflow in unit test.Gravatar Gael Guennebaud2016-01-30
| |
| * Disable underflow unit test on the i387 FPU.Gravatar Gael Guennebaud2016-01-30
| |
| * bug #632: add support for "dense +/- sparse" operations. The current ↵Gravatar Gael Guennebaud2016-01-29
| | | | | | | | implementation is based on SparseView to make the dense subexpression compatible with the sparse one.
| * bug #696: enable zero-sized block at compile-time by relaxing the respective ↵Gravatar Gael Guennebaud2016-01-29
| | | | | | | | assertion
* | Change Eigen's ColPivHouseholderQR to use the numerically stable norm ↵Gravatar Rasmus Munk Larsen2016-01-28
|/ | | | | | | | | | | | | | | | | | | | | | | | downdate formula from http://www.netlib.org/lapack/lawnspdf/lawn176.pdf, which has been used in LAPACK's xGEQPF and xGEQP3 since 2006. With the old formula, the code chooses the wrong pivots and fails to correctly determine rank on graded matrices. This change also adds additional checks for non-increasing diagonal in R11 to existing unit tests, and adds a new unit test with the Kahan matrix, which consistently fails for the original code. Benchmark timings on Intel(R) Xeon(R) CPU E5-1650 v3 @ 3.50GHz. Code compiled with AVX & FMA. I just ran on square matrices of 3 difference sizes. Benchmark Time(ns) CPU(ns) Iterations ------------------------------------------------------- Before: BM_EigencolPivQR/64 53677 53627 12890 BM_EigencolPivQR/512 15265408 15250784 46 BM_EigencolPivQR/4k 15403556228 15388788368 2 After (non-vectorized version): Benchmark Time(ns) CPU(ns) Iterations Degradation -------------------------------------------------------------------- BM_EigencolPivQR/64 63736 63669 10844 18.5% BM_EigencolPivQR/512 16052546 16037381 43 5.1% BM_EigencolPivQR/4k 15149263620 15132025316 2 -2.0% Performance-wise there seems to be a ~18.5% degradation for small (64x64) matrices, probably due to the cost of more O(min(m,n)^2) sqrt operations that are not needed for the unstable formula.
* bug #178: remove additional const on nested expression, and remove several ↵Gravatar Gael Guennebaud2016-01-28
| | | | const_cast.
* mergeGravatar Gael Guennebaud2016-01-28
|\
* | bug #1158: PartialReduxExpr is a vector expression, and it thus must expose ↵Gravatar Gael Guennebaud2016-01-28
| | | | | | | | the LinearAccessBit flag
* | Extend mixing type unit test with trmv, and the following not yet supported ↵Gravatar Gael Guennebaud2016-01-27
| | | | | | | | products: trmm, symv, symm
* | add nomalloc unit test for rank2 updatesGravatar Gael Guennebaud2016-01-27
| |
* | Fix tri = complex * real product, and add respective unit test.Gravatar Gael Guennebaud2016-01-27
| |
* | Remove redundant test.Gravatar Gael Guennebaud2016-01-26
| |
* | bug #51: add block preallocation mechanism to selfadjoit*matrix product.Gravatar Gael Guennebaud2016-01-25
| |
* | bug #51: make general_matrix_matrix_triangular_product use L3-blocking ↵Gravatar Gael Guennebaud2016-01-25
| | | | | | | | helper so that general symmetric rank-updates and general-matrix-to-triangular products do not trigger dynamic memory allocation for fixed size matrices.