Intel(R) MKL support added.

* * *
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.
This commit is contained in:
karturov
2011-12-05 14:52:21 +07:00
parent e270a5656a
commit 015c331252
41 changed files with 3494 additions and 58 deletions

26
test/pardiso_support.cpp Normal file
View File

@@ -0,0 +1,26 @@
/*
Intel Copyright (C) ....
*/
#include "sparse_solver.h"
#include <Eigen/PARDISOSupport>
template<typename T> void test_pardiso_T()
{
//PardisoLLT < SparseMatrix<T, RowMajor> > pardiso_llt;
//PardisoLDLT< SparseMatrix<T, RowMajor> > pardiso_ldlt;
PardisoLU < SparseMatrix<T, RowMajor> > pardiso_lu;
//check_sparse_spd_solving(pardiso_llt);
check_sparse_square_solving(pardiso_lu);
}
void test_pardiso_support()
{
for(int i = 0; i < g_repeat; i++) {
CALL_SUBTEST_1(test_pardiso_T<float>());
CALL_SUBTEST_2(test_pardiso_T<double>());
CALL_SUBTEST_3(test_pardiso_T< std::complex<float> >());
CALL_SUBTEST_4(test_pardiso_T< std::complex<double> >());
}
}