aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_notemporary.cpp
Commit message (Expand)AuthorAge
* Fix regression: .conjugate() was popped out but not re-introduced.Gravatar Gael Guennebaud2019-02-18
* Set cost of conjugate to 0 (in practice it boils down to a no-op).Gravatar Gael Guennebaud2019-02-18
* GEMM: catch all scalar-multiple variants when falling-back to a coeff-based p...Gravatar Gael Guennebaud2019-02-18
* Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLAR...Gravatar Gael Guennebaud2018-07-17
* Remove local Index typedef from unit-testsGravatar Gael Guennebaud2018-07-12
* Introduce the macro ei_declare_local_nested_eval to help allocating on the st...Gravatar Gael Guennebaud2018-07-09
* bug #1435: fix aliasing issue in exressions like: A = C - B*A;Gravatar Gael Guennebaud2017-06-08
* Fix a performance regression in (mat*mat)*vec for which mat*mat was evaluated...Gravatar Gael Guennebaud2016-11-30
* Optimize expression matching "d?=a-b*c" as "d?=a; d?=b*c;"Gravatar Gael Guennebaud2016-08-23
* bug #1144: fix regression in x=y+A*x (aliasing), and move evaluator_traits::A...Gravatar Gael Guennebaud2016-01-09
* Implement temporary-free path for "D.nolias() ?= C + A*B". (I thought it was ...Gravatar Gael Guennebaud2015-10-09
* Fix nesting sub-expression in outer-productsGravatar Gael Guennebaud2015-10-08
* Fix a nesting issue in some matrix-vector cases.Gravatar Gael Guennebaud2015-10-08
* Factorize VERIFY_EVALUATION_COUNT in unit testsGravatar Gael Guennebaud2015-06-19
* Workaround dead store warnings in unit tests.Gravatar Gael Guennebaud2015-02-18
* merge with default branchGravatar Gael Guennebaud2014-07-10
|\
| * Fix many long to int implicit conversionsGravatar Gael Guennebaud2014-07-08
* | Add evaluator shortcut for triangular ?= productGravatar Gael Guennebaud2014-02-18
|/
* Workaround a bunch of stupid warnings in unit testsGravatar Gael Guennebaud2013-06-23
* Add temporary check for triangularView += productGravatar Gael Guennebaud2013-04-10
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
* add the possibility to configure the maximal matrix size in the unit testsGravatar Gael Guennebaud2011-07-12
* now gemv supports stridesGravatar Gael Guennebaud2011-01-30
* rename macroGravatar Benoit Jacob2010-12-25
* bug #54 - really fix const correctness except in SparseGravatar Benoit Jacob2010-12-22
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
* extend product unit testsGravatar Gael Guennebaud2010-07-07
* unit test fix for default to row majorGravatar Gael Guennebaud2010-06-24
* Still fixing warnings.Gravatar Hauke Heibel2010-06-20
* Utilize Index in all unit tests.Gravatar Hauke Heibel2010-06-20
* * implement the corner() API change: new methods topLeftCorner() etcGravatar Benoit Jacob2010-04-22
* fix ei_blas_traits directaccess check: in the case of vectors, having a nontr...Gravatar Benoit Jacob2010-04-16
* * add some 1x1 testsGravatar Benoit Jacob2010-04-16
* * Refactoring of the class hierarchy: introduction of DenseDirectAccessBase, ...Gravatar Benoit Jacob2010-04-16
* fix a couple of ICE with gcc 4.0.1Gravatar Gael Guennebaud2010-02-12
* Fixed notemporary unit test.Gravatar Hauke Heibel2010-02-11
* Fixed warning.Gravatar Hauke Heibel2010-02-10
* Deactivated test which requires variadic macros.Gravatar Hauke Heibel2010-02-09
* Regression tests for number of nested temporaries.Gravatar Hauke Heibel2010-02-09
* add accessors to coeff based productGravatar Gael Guennebaud2010-02-09
* Remove some Array #includes.Gravatar Jitse Niesen2010-01-21
* remove the Triangular suffix to Upper, Lower, UnitLower, etc,Gravatar Gael Guennebaud2010-01-07
* finally add a Array class with storage via the introduction of a DenseStorage...Gravatar Gael Guennebaud2009-12-17
* big huge changes, so i dont remember everything.Gravatar Benoit Jacob2009-10-28
* kill ei_add_test_multi. Now the macro ei_add_test does all that automatically...Gravatar Benoit Jacob2009-10-19
* move eigen values related stuff of the QR module to a new EigenSolver module.Gravatar Gael Guennebaud2009-09-03
* Remove last lazyness warnings.Gravatar Hauke Heibel2009-09-02
* fix issue #47: now m.noalias() = XXX properly resize m if neededGravatar Gael Guennebaud2009-09-01
* As proposed on the list:Gravatar Gael Guennebaud2009-08-15
* overload operartor* with a ProductBase such that "scalar * (mat * mat)" is op...Gravatar Gael Guennebaud2009-08-11