Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
models
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
documentation
models
Commits
14f0dff0
Commit
14f0dff0
authored
6 years ago
by
Guillaume Demesy
Browse files
Options
Downloads
Patches
Plain Diff
options petsc/slepc 3.9
parent
c1d6c93e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#2108
passed
6 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
NonLinearEVP/NonLinearEVP.pro
+4
-21
4 additions, 21 deletions
NonLinearEVP/NonLinearEVP.pro
with
4 additions
and
21 deletions
NonLinearEVP/NonLinearEVP.pro
+
4
−
21
View file @
14f0dff0
...
...
@@ -497,30 +497,13 @@ PostOperation {
}
}
// In the list of changes of PETSc 3.9
// http://www.mcs.anl.gov/petsc/documentation/changes/39.html
// MatSolverPackage is replaced with MatSolverType
//
// So you have to change in the command line option:
// -st_pc_factor_mat_solver_package mumps
// to:
// -st_pc_factor_mat_solver_type mumps
// fine tuning slecp options
// -pep_ncv 600 (set size of the Krylov subspace)
// -pep_mpd 600
// -pep_toar_locking 0 ("do not take an EV for granted")
eig_tol
=
1e-6
;
slepc_options_nep_pol
=
" -nep_max_it 1000 -nep_type nleigs -nep_target_magnitude "
;
// // Warning slepc > 3.8 : -nep_nleigs_rational => -nep_rational
slepc_options_nep_rat
=
Sprintf
(
" -nep_max_it 1000 -nep_type nleigs -nep_nleigs_rational -nep_target_magnitude -nep_tol %.10f -nep_view"
,
eig_tol
);
// slepc_options_nep_rat = Sprintf(" -nep_max_it 1000 -nep_type nleigs -nep_rational -nep_target_magnitude -nep_tol %.10f ",eig_tol);
slepc_options_nep_rat
=
Sprintf
(
" -nep_max_it 1000 -nep_type nleigs -nep_nleigs_rational -nep_target_magnitude -nep_tol %.10f -nep_view "
,
eig_tol
);
// slepc_options_nep_rat = Sprintf(" -nep_type nleigs -nep_rational ");
// // Warning petsc > 3.9 st_pc_factor_mat_solver_package => st_pc_factor_mat_solver_type
slepc_options_st
=
"-solve -st_type sinvert -st_ksp_type preonly -st_pc_type lu -st_pc_factor_mat_solver_package mumps -petsc_prealloc 200 -pos"
;
// slepc_options_st = "-solve -st_type sinvert -st_ksp_type preonly -st_pc_type lu -st_pc_factor_mat_solver_type mumps -petsc_prealloc 200 -pos";
slepc_options_st
=
" -solve -st_type sinvert -st_ksp_type preonly -st_pc_type lu -st_pc_factor_mat_solver_type mumps -petsc_prealloc 200 -pos"
;
slepc_options_pep
=
Sprintf
(
" -pep_max_it 400 -pep_target_magnitude -pep_tol %.10f "
,
eig_tol
);
...
...
@@ -559,5 +542,5 @@ str_slepc_options = StrCat(str_slepc_options," -nep_monitor_all :temp_eigenvalue
DefineConstant
[
R_
=
{
StrCat
(
"res_"
,
which_res
),
Name
"GetDP/1ResolutionChoices"
,
Visible
1
},
C_
=
{
Sprintf
(
StrCat
(
"-solve -pos -v
2
-slepc "
,
str_slepc_options
,
slepc_options_rg
)),
Name
"GetDP/9ComputeCommand"
,
Visible
1
},
C_
=
{
Sprintf
(
StrCat
(
"-solve -pos -v
10
-slepc "
,
str_slepc_options
,
slepc_options_rg
)),
Name
"GetDP/9ComputeCommand"
,
Visible
1
},
P_
=
{
StrCat
(
"postop_"
,
which_res
),
Name
"GetDP/2PostOperationChoices"
,
Visible
1
}];
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment