Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parallel ILU factorization with a reference implementation #305

Merged
merged 17 commits into from
Jun 13, 2019

Conversation

thoasm
Copy link
Member

@thoasm thoasm commented May 21, 2019

This PR adds a parallel incomplete LU factorization to Ginkgo. I did not completely follow the example of #27 because:

  • now, the creation process is the same like the solvers (::build().with_iterations(X).on(exec))
  • it is still usable as a Composition (see the test ApplyMethodDenseSmall, where apply is called)
  • With this class, we can show that other classes depend on a LU decomposition (like a preconditioner), so they get the proper format.

For the last point it is possible for the user to change the content of L and U by calling copy_from(), so it is not 100% guaranteed that the matrices are actually triangular matrices (or that there are two of them).

closes #134, closes #27

Additionally, as part of this PR, a sort_by_column_index() method was added to the Csr matrix because the current 'ParIlu' implementation only works if the given system matrix is sorted. A reference implementation is provided which works with the custom made iterator IteratorFactory::Iterator, so no array has to be copied to work with std::sort.
It should be possible to also use this iterator to implement the OpenMP version (sort chunks in parallel, followed by a merge step), although a custom sort implementation might be faster.

TODO before merging:

  • Rebase

@thoasm thoasm added is:new-feature A request or implementation of a feature that does not exist yet. mod:core This is related to the core module. mod:reference This is related to the reference module. 1:ST:do-not-merge Please do not merge PR this yet. 1:ST:WIP This PR is a work in progress. Not ready for review. labels May 21, 2019
@thoasm thoasm self-assigned this May 21, 2019
@hartwiganzt
Copy link
Collaborator

Is the CI failing because it excesses the time limit?

@thoasm
Copy link
Member Author

thoasm commented May 22, 2019

No, it fails because the test GenerateForReverseCooSmall and GenerateForReverseCsrSmall fail, which test what happens if the system_matrix is in COO format and in reverse order (stores the matrix from bottom right to upper left), or in CSR format and in reverse order (each row from right to left). All the other tests work.
I added these tests yesterday to see if it would work, and it does not (which was expected). Now, we either have to add a sort function to the CSR matrix (which would require us to implement that on all executors), or, we try to do it inside the ParIlu.

I think adding a sort function to the CSR matrix might be a good idea, including a test to see if it is sorted, or not. I expect that other solver / preconditioner / operations might also benefit from a sort function, and in CSR, it should also be possible to implement an efficient solution for the GPU.

@pratikvn pratikvn added the type:preconditioner This is related to the preconditioners label May 22, 2019
@thoasm thoasm force-pushed the factorization_preconditioner branch 2 times, most recently from 9537775 to 2b27fc7 Compare May 23, 2019 16:33
@tcojean
Copy link
Member

tcojean commented May 24, 2019

@thoasm for some reason there are quite a bit of conflicts of the CSR files (with the Hybrid conversions?) so you will have to rebase.

@thoasm
Copy link
Member Author

thoasm commented May 24, 2019

@tcojean I know, I am not done yet with the implementation of the Csr sort function. I will do the rebase as soon as I am done there, which will be in the next couple of hours. I just did not want to do multiple rebases if multiple PRs were merged before I am done.
Currently, I am writing the tests to ensure that everything is working, then, I will push everything and remove the WIP label.

@thoasm thoasm force-pushed the factorization_preconditioner branch from 40d9859 to a75eb2e Compare May 24, 2019 19:53
@thoasm
Copy link
Member Author

thoasm commented May 24, 2019

This PR can finally be reviewed. All tests should succeed.

In addition to the ParIlu, a sort function was added for the Csr matrix (including a reference implementation). This was necessary because the current LU computation requires each row of the Csr matrix to be sorted by column index. There are two test cases which cover this behaviour: GenerateForReverseCsrSmall and GenerateForReverseCooSmall.

@thoasm thoasm added type:matrix-format This is related to the Matrix formats 1:ST:ready-for-review This PR is ready for review and removed 1:ST:do-not-merge Please do not merge PR this yet. 1:ST:WIP This PR is a work in progress. Not ready for review. labels May 24, 2019
@thoasm
Copy link
Member Author

thoasm commented May 27, 2019

Unfortunately, we get a note from g++ from the added Iterator when compiling (output see below). For clang, there is no warning. We could disable this note with #pragma GCC diagnostic and push -Wno-psabi for this function, which removes all warnings / notes for ABI changes for this function (see this stackoverflow answer for details). Alternatively, we could also just leave it as it is.

Edit: I tried the in SO suggested pragma, but it did not work. Looks like we will keep this note since I think it is a very bad idea to put -Wno-psabi (which removes this note, I tested it) in our default compiler flags since it might also remove warnings / notes for actual problems in our code.

In file included from /home/thomas/projects/ginkgo_github/reference/matrix/csr_kernels.cpp:51:
/home/thomas/projects/ginkgo_github/core/base/iterator_factory.hpp: In instantiation of ‘gko::detail::IteratorFactory<ToSortType, SecondaryType>::Reference::operator gko::detail::IteratorFactory<ToSortType, SecondaryType>::element() const [with ToSortType = int; SecondaryType = std::complex<float>]’:
/usr/include/c++/8.3.0/bits/stl_algo.h:1850:3:   required from ‘void std::__insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = gko::detail::IteratorFactory<int, std::complex<float> >::Iterator; _Compare = __gnu_cxx::__ops::_Iter_less_iter]’
/usr/include/c++/8.3.0/bits/stl_algo.h:1885:25:   required from ‘void std::__final_insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = gko::detail::IteratorFactory<int, std::complex<float> >::Iterator; _Compare = __gnu_cxx::__ops::_Iter_less_iter]’
/usr/include/c++/8.3.0/bits/stl_algo.h:1971:31:   required from ‘void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = gko::detail::IteratorFactory<int, std::complex<float> >::Iterator; _Compare = __gnu_cxx::__ops::_Iter_less_iter]’
/usr/include/c++/8.3.0/bits/stl_algo.h:4834:18:   required from ‘void std::sort(_RAIter, _RAIter) [with _RAIter = gko::detail::IteratorFactory<int, std::complex<float> >::Iterator]’
/home/thomas/projects/ginkgo_github/reference/matrix/csr_kernels.cpp:486:18:   required from ‘void gko::kernels::reference::csr::sort_by_column_index(std::shared_ptr<const gko::ReferenceExecutor>, gko::matrix::Csr<ValueType, IndexType>*) [with ValueType = std::complex<float>; IndexType = int]’
/home/thomas/projects/ginkgo_github/reference/matrix/csr_kernels.cpp:490:1:   required from here
/home/thomas/projects/ginkgo_github/core/base/iterator_factory.hpp:140:9: note: the ABI of passing structure with complex float member has changed in GCC 4.4
         operator element() const { return element{dominant(), secondary()}; }
         ^~~~~~~~

@thoasm thoasm changed the title Created Parallel Ilu factorization with a reference implementation Parallel ILU factorization with a reference implementation May 28, 2019
@thoasm thoasm force-pushed the factorization_preconditioner branch from 4dc6f51 to 89cf145 Compare May 28, 2019 15:35
@codecov
Copy link

codecov bot commented May 28, 2019

Codecov Report

Merging #305 into develop will decrease coverage by <.01%.
The diff coverage is 98%.

Impacted file tree graph

@@             Coverage Diff             @@
##           develop     #305      +/-   ##
===========================================
- Coverage    98.17%   98.17%   -0.01%     
===========================================
  Files          215      223       +8     
  Lines        16529    17180     +651     
===========================================
+ Hits         16227    16866     +639     
- Misses         302      314      +12
Impacted Files Coverage Δ
cuda/base/device_guard.hpp 100% <ø> (ø) ⬆️
include/ginkgo/core/matrix/csr.hpp 85.48% <ø> (ø) ⬆️
omp/factorization/par_ilu_kernels.cpp 0% <0%> (ø)
omp/matrix/csr_kernels.cpp 91.66% <0%> (-2.62%) ⬇️
core/base/iterator_factory.hpp 100% <100%> (ø)
core/matrix/csr.cpp 100% <100%> (ø) ⬆️
include/ginkgo/core/factorization/par_ilu.hpp 100% <100%> (ø)
reference/matrix/csr_kernels.cpp 100% <100%> (ø) ⬆️
core/factorization/par_ilu.cpp 100% <100%> (ø)
core/test/base/iterator_factory.cpp 100% <100%> (ø)
... and 14 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 2f2f09e...dbabfdb. Read the comment docs.

@thoasm
Copy link
Member Author

thoasm commented May 29, 2019

@tcojean I am currently failing SonarCloud because I have Duplicated Lines on New Code 5.3% (see here for details). This duplication is only in {omp,cuda}/factorization/par_ilu_kernels.cpp, which are the stubs for the new kernels, which are not implemented.
Is there a way to ignore or get around that?

Also, the code coverage is still not perfect apparently, but this is due to the exact same reason: I am not testing the stubs. Additionally, it detects the two apply_impl in my DummyLinOp as also not tested, even though they are inside the test file. They are not required for the test, but are required by the class, so it is not an abstract class.
I could probably use an already existing class that is not convertible to Csr (the important property for the test), but that would create a dependency that I would like to avoid (if we use a matrix, we would need to change the test as soon as we actually support a conversion to Csr).

Thomas Grützmacher added 13 commits June 6, 2019 11:06
ParIlu factorization is now inheriting from `Composition` instead from
`LinOpFactory` (or similar).
Additionally, all added files are now also mentioned inside the
appropriate `CMakeLists.txt`.
- Added `get_l` and `get_u_factor` to ParIluFactors
- Fixed compiler errors for reference implementation
- Added simple test for reference implementation
- Renamed class to `ParIlu` (and the files accordingly)
- Added `iterations` variable to `ParIlu` to set the number of iterations
  of the compute kernel
- Extended both `core` and `reference` test
- optimized conversions (`system_matrix` -> Csr, Coo) by reducing the
  number of copies
- Added apply test for ParIlu
- Made all test matrices const
- Added additional reference tests for the 3 kernels
- Fixed wrong include file in `common_kernels`
- Fixed a mistake in the compute_l_u kernel (still not correct)
- Added comments to compute_l_u kernel
- Added debug output (MUST BE REMOVED BEFORE MERGING)
- All debug output was removed
- More tests were added (to cover most of the corner cases)
- Documentation was extended
Sorting of Csr matrices is required for ParIlu to work with any
kind of matrix input.
Currently, only the reference implementation is done. It is performed
with `std::sort` with a custom Iterator. That helps to prevent both
unnecessary copies and the need to implement a custom sorting algorithm.
- Moved (and renamed) the former CustomIterator (now IteratorFactory)
  to a separate file
- Added documentation to IteratorFactory
- Added tests for IteratorFactory
- Added tests for sorting in CSR
- Added sorting to ParIlu, so all tests succeed
The core test for ParIlu used kernels from the reference module,
which are not required to exist for the core tests. All relevant
tests were moved to the reference test.
Instead of having the same default value on all executors, it now
defaults to `0`, which means the implementation can freely choose
how many iterations are appropriate for the given ressources.
- Added used LaTeX packages into `Doxyfile-usr.in`
- Improved code coverage by adding tests for
  + `IteratorFactory` (specifically for the `operator<` in Reference)
  + `ParIlu` (Added additional test with sorted CSR matrix)
- re-added the overview description for `ParIlu`
@thoasm thoasm force-pushed the factorization_preconditioner branch from 72dbf19 to e8108e8 Compare June 6, 2019 09:07
Copy link
Member

@tcojean tcojean left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Some minor documentation and include issues and other improvement suggestions.

I think you should also add some files for the documentation, namely a file in doc/headers which defines a group factor (see linop.hpp as example), and in addition, an update to the modules.dot at the same time (in fact is this used @pratikvn, I can't remember?).

doc/conf/Doxyfile-usr.in Outdated Show resolved Hide resolved
include/ginkgo/core/matrix/csr.hpp Show resolved Hide resolved
omp/factorization/par_ilu_kernels.cpp Outdated Show resolved Hide resolved
core/factorization/par_ilu_kernels.hpp Show resolved Hide resolved
reference/factorization/par_ilu_kernels.cpp Show resolved Hide resolved
core/base/iterator_factory.hpp Show resolved Hide resolved
core/base/iterator_factory.hpp Outdated Show resolved Hide resolved
reference/factorization/par_ilu_kernels.cpp Outdated Show resolved Hide resolved
reference/factorization/par_ilu_kernels.cpp Outdated Show resolved Hide resolved
core/test/base/iterator_factory.cpp Outdated Show resolved Hide resolved
Copy link
Member

@pratikvn pratikvn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mostly minor and nits. One possibly major: Is the factorization of big_mtx in the reference test correct ? I am getting a different result in MATLAB, but it is possible that I entered the matrix incorrectly.

core/factorization/par_ilu.cpp Show resolved Hide resolved
include/ginkgo/core/factorization/par_ilu.hpp Show resolved Hide resolved
reference/factorization/par_ilu_kernels.cpp Outdated Show resolved Hide resolved
reference/factorization/par_ilu_kernels.cpp Outdated Show resolved Hide resolved
reference/factorization/par_ilu_kernels.cpp Outdated Show resolved Hide resolved
reference/test/factorization/par_ilu_kernels.cpp Outdated Show resolved Hide resolved
Copy link
Member Author

@thoasm thoasm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All comments should now be dealt with. I also added doc/headers/factor.hpp and inserted factor to doc/headers/modules.dot (a very short description, but I am not sure what else I should have wrote there).

core/factorization/par_ilu_kernels.hpp Show resolved Hide resolved
core/test/base/iterator_factory.cpp Outdated Show resolved Hide resolved
doc/conf/Doxyfile-usr.in Outdated Show resolved Hide resolved
omp/factorization/par_ilu_kernels.cpp Outdated Show resolved Hide resolved
omp/factorization/par_ilu_kernels.cpp Outdated Show resolved Hide resolved
core/base/iterator_factory.hpp Show resolved Hide resolved
core/base/iterator_factory.hpp Show resolved Hide resolved
core/base/iterator_factory.hpp Outdated Show resolved Hide resolved
core/factorization/par_ilu.cpp Show resolved Hide resolved
include/ginkgo/core/factorization/par_ilu.hpp Show resolved Hide resolved
Copy link
Member

@pratikvn pratikvn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@thoasm thoasm force-pushed the factorization_preconditioner branch from 404cc14 to e9e876b Compare June 13, 2019 09:24
Copy link
Member

@pratikvn pratikvn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some minor things

reference/matrix/csr_kernels.cpp Outdated Show resolved Hide resolved
reference/matrix/csr_kernels.cpp Outdated Show resolved Hide resolved
reference/test/factorization/par_ilu_kernels.cpp Outdated Show resolved Hide resolved
@tcojean
Copy link
Member

tcojean commented Jun 13, 2019

For the CI system, we can add to .before_script_template in .gitlab-ci.yml the following:

  - export CUDA_VISIBLE_DEVICES=0

This should allow only the usage of the first GPU for all job. But we have a test such as sending data from a CUDA executor to another, in which case that will happen on the same GPU instead of on the two distinct GPUs.

Thomas Grützmacher added 2 commits June 13, 2019 12:15
To prevent conflicts with other users on the CI system, we now restrict
it to only use the first GPU (device ID 0) for all tests.

Note: That also restricts the CUDA executor copy test to a single GPU,
      meaning data will be copied internally on a single GPU instead of
      across devices.
@tcojean tcojean added 1:ST:ready-to-merge This PR is ready to merge. and removed 1:ST:ready-for-review This PR is ready for review labels Jun 13, 2019
@thoasm thoasm merged commit fce8dad into develop Jun 13, 2019
@thoasm thoasm deleted the factorization_preconditioner branch June 13, 2019 12:03
tcojean added a commit that referenced this pull request Oct 20, 2019
The Ginkgo team is proud to announce the new minor release of Ginkgo version
1.1.0. This release brings several performance improvements, adds Windows support, 
adds support for factorizations inside Ginkgo and a new ILU preconditioner
based on ParILU algorithm, among other things. For detailed information, check the respective issue.

Supported systems and requirements:
+ For all platforms, cmake 3.9+
+ Linux and MacOS
  + gcc: 5.3+, 6.3+, 7.3+, 8.1+
  + clang: 3.9+
  + Intel compiler: 2017+
  + Apple LLVM: 8.0+
  + CUDA module: CUDA 9.0+
+ Windows
  + MinGW and CygWin: gcc 5.3+, 6.3+, 7.3+, 8.1+
  + Microsoft Visual Studio: VS 2017 15.7+
  + CUDA module: CUDA 9.0+, Microsoft Visual Studio
  + OpenMP module: MinGW or CygWin.


The current known issues can be found in the [known issues
page](https://github.com/ginkgo-project/ginkgo/wiki/Known-Issues).


Additions:
+ Upper and lower triangular solvers ([#327](#327), [#336](#336), [#341](#341), [#342](#342)) 
+ New factorization support in Ginkgo, and addition of the ParILU
  algorithm ([#305](#305), [#315](#315), [#319](#319), [#324](#324))
+ New ILU preconditioner ([#348](#348), [#353](#353))
+ Windows MinGW and Cygwin support ([#347](#347))
+ Windows Visual studio support ([#351](#351))
+ New example showing how to use ParILU as a preconditioner ([#358](#358))
+ New example on using loggers for debugging ([#360](#360))
+ Add two new 9pt and 27pt stencil examples ([#300](#300), [#306](#306))
+ Allow benchmarking CuSPARSE spmv formats through Ginkgo's benchmarks ([#303](#303))
+ New benchmark for sparse matrix format conversions ([#312](#312))
+ Add conversions between CSR and Hybrid formats ([#302](#302), [#310](#310))
+ Support for sorting rows in the CSR format by column idices ([#322](#322))
+ Addition of a CUDA COO SpMM kernel for improved performance ([#345](#345))
+ Addition of a LinOp to handle perturbations of the form (identity + scalar *
  basis * projector) ([#334](#334))
+ New sparsity matrix representation format with Reference and OpenMP
  kernels ([#349](#349), [#350](#350))

Fixes:
+ Accelerate GMRES solver for CUDA executor ([#363](#363))
+ Fix BiCGSTAB solver convergence ([#359](#359))
+ Fix CGS logging by reporting the residual for every sub iteration ([#328](#328))
+ Fix CSR,Dense->Sellp conversion's memory access violation ([#295](#295))
+ Accelerate CSR->Ell,Hybrid conversions on CUDA ([#313](#313), [#318](#318))
+ Fixed slowdown of COO SpMV on OpenMP ([#340](#340))
+ Fix gcc 6.4.0 internal compiler error ([#316](#316))
+ Fix compilation issue on Apple clang++ 10 ([#322](#322))
+ Make Ginkgo able to compile on Intel 2017 and above ([#337](#337))
+ Make the benchmarks spmv/solver use the same matrix formats ([#366](#366))
+ Fix self-written isfinite function ([#348](#348))
+ Fix Jacobi issues shown by cuda-memcheck

Tools and ecosystem:
+ Multiple improvements to the CI system and tools ([#296](#296), [#311](#311), [#365](#365))
+ Multiple improvements to the Ginkgo containers ([#328](#328), [#361](#361))
+ Add sonarqube analysis to Ginkgo ([#304](#304), [#308](#308), [#309](#309))
+ Add clang-tidy and iwyu support to Ginkgo ([#298](#298))
+ Improve Ginkgo's support of xSDK M12 policy by adding the `TPL_` arguments
  to CMake ([#300](#300))
+ Add support for the xSDK R7 policy ([#325](#325))
+ Fix examples in html documentation ([#367](#367))
tcojean added a commit that referenced this pull request Oct 21, 2019
The Ginkgo team is proud to announce the new minor release of Ginkgo version
1.1.0. This release brings several performance improvements, adds Windows support,
adds support for factorizations inside Ginkgo and a new ILU preconditioner
based on ParILU algorithm, among other things. For detailed information, check the respective issue.

Supported systems and requirements:
+ For all platforms, cmake 3.9+
+ Linux and MacOS
  + gcc: 5.3+, 6.3+, 7.3+, 8.1+
  + clang: 3.9+
  + Intel compiler: 2017+
  + Apple LLVM: 8.0+
  + CUDA module: CUDA 9.0+
+ Windows
  + MinGW and Cygwin: gcc 5.3+, 6.3+, 7.3+, 8.1+
  + Microsoft Visual Studio: VS 2017 15.7+
  + CUDA module: CUDA 9.0+, Microsoft Visual Studio
  + OpenMP module: MinGW or Cygwin.


The current known issues can be found in the [known issues
page](https://github.com/ginkgo-project/ginkgo/wiki/Known-Issues).


### Additions
+ Upper and lower triangular solvers ([#327](#327), [#336](#336), [#341](#341), [#342](#342)) 
+ New factorization support in Ginkgo, and addition of the ParILU
  algorithm ([#305](#305), [#315](#315), [#319](#319), [#324](#324))
+ New ILU preconditioner ([#348](#348), [#353](#353))
+ Windows MinGW and Cygwin support ([#347](#347))
+ Windows Visual Studio support ([#351](#351))
+ New example showing how to use ParILU as a preconditioner ([#358](#358))
+ New example on using loggers for debugging ([#360](#360))
+ Add two new 9pt and 27pt stencil examples ([#300](#300), [#306](#306))
+ Allow benchmarking CuSPARSE spmv formats through Ginkgo's benchmarks ([#303](#303))
+ New benchmark for sparse matrix format conversions ([#312](#312))
+ Add conversions between CSR and Hybrid formats ([#302](#302), [#310](#310))
+ Support for sorting rows in the CSR format by column idices ([#322](#322))
+ Addition of a CUDA COO SpMM kernel for improved performance ([#345](#345))
+ Addition of a LinOp to handle perturbations of the form (identity + scalar *
  basis * projector) ([#334](#334))
+ New sparsity matrix representation format with Reference and OpenMP
  kernels ([#349](#349), [#350](#350))

### Fixes
+ Accelerate GMRES solver for CUDA executor ([#363](#363))
+ Fix BiCGSTAB solver convergence ([#359](#359))
+ Fix CGS logging by reporting the residual for every sub iteration ([#328](#328))
+ Fix CSR,Dense->Sellp conversion's memory access violation ([#295](#295))
+ Accelerate CSR->Ell,Hybrid conversions on CUDA ([#313](#313), [#318](#318))
+ Fixed slowdown of COO SpMV on OpenMP ([#340](#340))
+ Fix gcc 6.4.0 internal compiler error ([#316](#316))
+ Fix compilation issue on Apple clang++ 10 ([#322](#322))
+ Make Ginkgo able to compile on Intel 2017 and above ([#337](#337))
+ Make the benchmarks spmv/solver use the same matrix formats ([#366](#366))
+ Fix self-written isfinite function ([#348](#348))
+ Fix Jacobi issues shown by cuda-memcheck

### Tools and ecosystem improvements
+ Multiple improvements to the CI system and tools ([#296](#296), [#311](#311), [#365](#365))
+ Multiple improvements to the Ginkgo containers ([#328](#328), [#361](#361))
+ Add sonarqube analysis to Ginkgo ([#304](#304), [#308](#308), [#309](#309))
+ Add clang-tidy and iwyu support to Ginkgo ([#298](#298))
+ Improve Ginkgo's support of xSDK M12 policy by adding the `TPL_` arguments
  to CMake ([#300](#300))
+ Add support for the xSDK R7 policy ([#325](#325))
+ Fix examples in html documentation ([#367](#367))


Related PR: #370
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
1:ST:ready-to-merge This PR is ready to merge. is:new-feature A request or implementation of a feature that does not exist yet. mod:core This is related to the core module. mod:reference This is related to the reference module. type:matrix-format This is related to the Matrix formats type:preconditioner This is related to the preconditioners
Projects
None yet
Development

Successfully merging this pull request may close these issues.

factorization-based preconditioner example Add support for factorization-based preconditioners
4 participants