aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/pardiso_support.cpp
Commit message (Collapse)AuthorAge
* Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with ↵Gravatar Gael Guennebaud2018-07-17
| | | | | | | | | EIGEN_DECLARE_TEST(mytest) { /* code */ }. This provide several advantages: - more flexibility in designing unit tests - unit tests can be glued to speed up compilation - unit tests are compiled with same predefined macros, which is a requirement for zapcc
* modify the unit tests of sparse linear solvers to enable tests on real ↵Gravatar Desire NUENTSA2012-03-29
| | | | matrices, from MatrixMarket for instance
* fix and clean Pardiso solver and s/PARDISOSupport/PardisoSupportGravatar Gael Guennebaud2012-02-27
|
* Update the PARDISO interface to match other sparse solvers.Gravatar Gael Guennebaud2012-02-04
| | | | | | | - Add support for Upper or Lower inputs. - Add supports for sparse RHS - Remove transposed cases, remove ordering method interface - Add full access to PARDISO parameters
* Intel(R) MKL support added.Gravatar karturov2011-12-05
* * * License disclaimer changed to BSD license for MKL_support.h * * * Pardiso support fixed, test added. blas/lapack tests fixed: Scalar parameter was added in Cholesky, product_matrix_vector_triangular remaned to triangular_matrix_vector_product. * * * PARDISO test was added physically.