-
Notifications
You must be signed in to change notification settings - Fork 94
feat: Reuse LS factorization #3654
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
base: develop
Are you sure you want to change the base?
Conversation
@@ -690,6 +692,7 @@ void HydrofractureSolver< POROMECHANICS_SOLVER >::assembleSystem( real64 const t | |||
[&]( localIndex const, | |||
SurfaceElementSubRegion & subRegion ) | |||
{ | |||
std::cout << "Num of frac elements: " << subRegion.size() << std::endl; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
std::cout << "Num of frac elements: " << subRegion.size() << std::endl; |
@@ -73,6 +73,7 @@ struct LinearSolverParameters | |||
integer dofsPerNode = 1; ///< Dofs per node (or support location) for non-scalar problems | |||
bool isSymmetric = false; ///< Whether input matrix is symmetric (may affect choice of scheme) | |||
integer stopIfError = 1; ///< Whether to stop the simulation if the linear solver reports an error | |||
bool reuseFactorization = true; ///< Whether to reuse the LU factorization or not |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure where it is used
@@ -73,6 +73,7 @@ struct LinearSolverParameters | |||
integer dofsPerNode = 1; ///< Dofs per node (or support location) for non-scalar problems | |||
bool isSymmetric = false; ///< Whether input matrix is symmetric (may affect choice of scheme) | |||
integer stopIfError = 1; ///< Whether to stop the simulation if the linear solver reports an error | |||
bool reuseFactorization = true; ///< Whether to reuse the LU factorization or not |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bool reuseFactorization = true; ///< Whether to reuse the LU factorization or not |
No description provided.