You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.6 KiB

  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // Copyright (C) 2008-2012 Gael Guennebaud <gael.guennebaud@inria.fr>
  5. // Copyright (C) 2012 Désiré Nuentsa-Wakam <desire.nuentsa_wakam@inria.fr>
  6. //
  7. // This Source Code Form is subject to the terms of the Mozilla
  8. // Public License v. 2.0. If a copy of the MPL was not distributed
  9. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  10. #include "sparse_solver.h"
  11. #include <Eigen/PaStiXSupport>
  12. #include <unsupported/Eigen/SparseExtra>
  13. template<typename T> void test_pastix_T()
  14. {
  15. PastixLLT< SparseMatrix<T, ColMajor>, Eigen::Lower > pastix_llt_lower;
  16. PastixLDLT< SparseMatrix<T, ColMajor>, Eigen::Lower > pastix_ldlt_lower;
  17. PastixLLT< SparseMatrix<T, ColMajor>, Eigen::Upper > pastix_llt_upper;
  18. PastixLDLT< SparseMatrix<T, ColMajor>, Eigen::Upper > pastix_ldlt_upper;
  19. PastixLU< SparseMatrix<T, ColMajor> > pastix_lu;
  20. check_sparse_spd_solving(pastix_llt_lower);
  21. check_sparse_spd_solving(pastix_ldlt_lower);
  22. check_sparse_spd_solving(pastix_llt_upper);
  23. check_sparse_spd_solving(pastix_ldlt_upper);
  24. check_sparse_square_solving(pastix_lu);
  25. }
  26. // There is no support for selfadjoint matrices with PaStiX.
  27. // Complex symmetric matrices should pass though
  28. template<typename T> void test_pastix_T_LU()
  29. {
  30. PastixLU< SparseMatrix<T, ColMajor> > pastix_lu;
  31. check_sparse_square_solving(pastix_lu);
  32. }
  33. void test_pastix_support()
  34. {
  35. CALL_SUBTEST_1(test_pastix_T<float>());
  36. CALL_SUBTEST_2(test_pastix_T<double>());
  37. CALL_SUBTEST_3( (test_pastix_T_LU<std::complex<float> >()) );
  38. CALL_SUBTEST_4(test_pastix_T_LU<std::complex<double> >());
  39. }