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.

46 lines
1.7 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. #define EIGEN_NO_DEBUG_SMALL_PRODUCT_BLOCKS
  11. #include "sparse_solver.h"
  12. #include <Eigen/PaStiXSupport>
  13. #include <unsupported/Eigen/SparseExtra>
  14. template<typename T> void test_pastix_T()
  15. {
  16. PastixLLT< SparseMatrix<T, ColMajor>, StormEigen::Lower > pastix_llt_lower;
  17. PastixLDLT< SparseMatrix<T, ColMajor>, StormEigen::Lower > pastix_ldlt_lower;
  18. PastixLLT< SparseMatrix<T, ColMajor>, StormEigen::Upper > pastix_llt_upper;
  19. PastixLDLT< SparseMatrix<T, ColMajor>, StormEigen::Upper > pastix_ldlt_upper;
  20. PastixLU< SparseMatrix<T, ColMajor> > pastix_lu;
  21. check_sparse_spd_solving(pastix_llt_lower);
  22. check_sparse_spd_solving(pastix_ldlt_lower);
  23. check_sparse_spd_solving(pastix_llt_upper);
  24. check_sparse_spd_solving(pastix_ldlt_upper);
  25. check_sparse_square_solving(pastix_lu);
  26. }
  27. // There is no support for selfadjoint matrices with PaStiX.
  28. // Complex symmetric matrices should pass though
  29. template<typename T> void test_pastix_T_LU()
  30. {
  31. PastixLU< SparseMatrix<T, ColMajor> > pastix_lu;
  32. check_sparse_square_solving(pastix_lu);
  33. }
  34. void test_pastix_support()
  35. {
  36. CALL_SUBTEST_1(test_pastix_T<float>());
  37. CALL_SUBTEST_2(test_pastix_T<double>());
  38. CALL_SUBTEST_3( (test_pastix_T_LU<std::complex<float> >()) );
  39. CALL_SUBTEST_4(test_pastix_T_LU<std::complex<double> >());
  40. }