aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* bug #1195: move NumTraits::Div<>::Cost to internal::scalar_div_cost (with ↵Gravatar Gael Guennebaud2016-09-08
| | | | some specializations in arch/SSE and arch/AVX)
* Workaround MSVC instantiation faillure of has_*ary_operator at the level of ↵Gravatar Gael Guennebaud2016-09-06
| | | | triats<Ref>::match so that the has_*ary_operator are really properly instantiated throughout the compilation unit.
* bug #1266: remove CUDA guards on MatrixBase::<decomposition> definitions. ↵Gravatar Gael Guennebaud2016-09-06
| | | | (those used to break old nvcc versions that we propably don't care anymore)
* Fix compilation when cuda_fp16.h does not exist.Gravatar Gael Guennebaud2016-09-05
|
* Workaround a weird msvc 2012 compilation error.Gravatar Gael Guennebaud2016-09-05
|
* bug #1286: automatically detect the available prototypes of functors passed ↵Gravatar Gael Guennebaud2016-08-31
| | | | | | | | | to CwiseNullaryExpr such that functors have only to implement the operators that matters among: operator()() operator()(i) operator()(i,j) Linear access is also automatically detected based on the availability of operator()(i,j).
* bug #1283: add regression unit testGravatar Gael Guennebaud2016-08-31
|
* Fix 4x4 inverse with non-linear destinationGravatar Gael Guennebaud2016-08-30
|
* Fix unit test for 1x1 matricesGravatar Gael Guennebaud2016-08-30
|
* bug #1271: add SparseMatrix::coeffs() methods returning a 1D view of the non ↵Gravatar Gael Guennebaud2016-08-29
| | | | zero coefficients.
* Add some pre-allocation unit tests (not working yet)Gravatar Gael Guennebaud2016-08-29
|
* Fix compilation with cuda 8Gravatar Gael Guennebaud2016-08-29
|
* Add support for non trivial scalar factor in sparse selfadjoint * dense ↵Gravatar Gael Guennebaud2016-08-24
| | | | | | products, and enable +=/-= assignement for such products. This changeset also improves the performance by working on column of the result at once.
* bug #1268: detect faillure in LDLT and report them through info()Gravatar Gael Guennebaud2016-08-23
|
* Fix compilation in non C++11 mode.Gravatar Gael Guennebaud2016-08-23
|
* bug #645: patch from Tobias Wood implementing the extraction of eigenvectors ↵Gravatar Gael Guennebaud2016-08-23
| | | | in GeneralizedEigenSolver
* Optimize expression matching "d?=a-b*c" as "d?=a; d?=b*c;"Gravatar Gael Guennebaud2016-08-23
|
* Fix compilation in check_for_aliasing due to ambiguous specializationsGravatar Gael Guennebaud2016-08-23
|
* Fix possible overflow and biais in integer random generatorGravatar Gael Guennebaud2016-08-23
|
* bug #1272: Disable assertion when total number of columns is zero.Gravatar Christoph Hertzberg2016-08-12
| | | | Also moved assertion to finished() method and adapted unit-test
* Add log1p support for CUDA and half floatsGravatar Igor Babuschkin2016-08-08
|
* bug #1272: Let CommaInitializer work for more border cases (enhances fix of ↵Gravatar Christoph Hertzberg2016-08-08
| | | | | | bug #1242). The unit test tests all combinations of 2x2 block-sizes from 0 to 3.
* Check that it's possible to forward declare the hlaf type.Gravatar Benoit Steiner2016-08-03
|
* Fix vectorization logic for coeff-based product for some corner cases.Gravatar Gael Guennebaud2016-07-31
|
* Fix testing of nearly zero input matrices.Gravatar Gael Guennebaud2016-07-26
|
* Add more very small numbers in the list of nearly "zero" values when testing ↵Gravatar Gael Guennebaud2016-07-26
| | | | SVD and EVD algorithms
* bug #1258: fix compilation of Map<SparseMatrix>::coeffRefGravatar Gael Guennebaud2016-07-26
|
* Add minimal support for Array<string>, and fix Tensor<string>Gravatar Gael Guennebaud2016-07-25
|
* Extend boost.multiprec unit test with ET on, complexes, and ↵Gravatar Gael Guennebaud2016-07-25
| | | | general/generalized eigenvalue solvers.
* Enforce scalar types in calls to max/min (helps with expression template ↵Gravatar Gael Guennebaud2016-07-25
| | | | scalar types)
* mergeGravatar Gael Guennebaud2016-07-22
|\
| * add a noteGravatar Gael Guennebaud2016-07-22
| |
| * Fix boostmultiprec for C++03Gravatar Gael Guennebaud2016-07-22
| |
* | Move half unit test from unsupported to main testsGravatar Gael Guennebaud2016-07-22
|/
* enable testing of Boost.Multiprecision with expression templatesGravatar Gael Guennebaud2016-07-20
|
* Add a unit test to stress our solvers with Boost.MultiprecisionGravatar Gael Guennebaud2016-07-20
|
* Enable custom scalar types in some unit tests.Gravatar Gael Guennebaud2016-07-20
|
* Make use of EIGEN_TEST_MAX_SIZEGravatar Gael Guennebaud2016-07-20
|
* Add missing Eigen::rsqrt global functionGravatar Gael Guennebaud2016-07-20
|
* Add missing non-const reverse method in VectorwiseOp.Gravatar Gael Guennebaud2016-07-16
|
* Fix test for nearly null inputGravatar Gael Guennebaud2016-07-12
|
* Made the packetmath test compile again. A better fix would be to move the ↵Gravatar Benoit Steiner2016-07-11
| | | | special function tests to the unsupported directory where the code now resides.
* mergeGravatar Gael Guennebaud2016-07-11
|\
| * Relax strict equalityGravatar Gael Guennebaud2016-07-09
| |
* | bug #1232: refactor special functions as a new SpecialFunctions module, ↵Gravatar Gael Guennebaud2016-07-08
|/ | | | currently in unsupported/.
* Prevent division by zero.Gravatar Gael Guennebaud2016-07-07
|
* Fix unit test.Gravatar Gael Guennebaud2016-07-06
|
* Relax is_equal to is_approx because scaling might modify last bit.Gravatar Gael Guennebaud2016-07-06
|
* Improve numerical robustness of RealSchur: add scaling and compare sub-diag ↵Gravatar Gael Guennebaud2016-07-06
| | | | entries to largest diagonal entry instead of the 2 neighbors.
* Fix warning.Gravatar Gael Guennebaud2016-07-06
|