Skip to content

Commit

Permalink
Merge pull request #2001 from jgfouca/jgfouca/fix_par_ilut_docs
Browse files Browse the repository at this point in the history
par_ilut: Update documentation for fill_in_limit
  • Loading branch information
lucbv authored Oct 19, 2023
2 parents de9e1f9 + 24ab74b commit ab0a32d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion sparse/src/KokkosSparse_par_ilut_handle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,13 @@ class PAR_ILUTHandle {
/// iteration to iteration drops below
/// this, the algorithm will stop (even if
/// max_iters has not been hit)
float_t fill_in_limit; /// The threshold for the ILU factorization
float_t fill_in_limit; /// The threshold for removing candidates
/// from the intermediate L and U is set such
/// that the resulting sparsity pattern has
/// at most `fill_in_limit` times the number
/// of non-zeros of the ILU(0)
/// factorization. This selection is executed
/// separately for both factors L and U.
bool async_update; /// Whether compute LU factors should do asychronous
/// updates. When ON, the algorithm will usually converge
/// faster but it makes the algorithm non-deterministic.
Expand Down

0 comments on commit ab0a32d

Please sign in to comment.