Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
ogs
Commits
8b558bc4
Commit
8b558bc4
authored
9 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[MaL] Add petsc options given in project file.
parent
02d1dc97
No related branches found
No related tags found
1 merge request
!896
Lin solver config
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MathLib/LinAlg/PETSc/PETScLinearSolver.cpp
+10
-3
10 additions, 3 deletions
MathLib/LinAlg/PETSc/PETScLinearSolver.cpp
MathLib/LinAlg/PETSc/PETScLinearSolver.h
+4
-4
4 additions, 4 deletions
MathLib/LinAlg/PETSc/PETScLinearSolver.h
with
14 additions
and
7 deletions
MathLib/LinAlg/PETSc/PETScLinearSolver.cpp
+
10
−
3
View file @
8b558bc4
...
...
@@ -20,11 +20,18 @@
namespace
MathLib
{
PETScLinearSolver
::
PETScLinearSolver
(
PETScMatrix
&
A
,
const
std
::
string
prefix
,
BaseLib
::
ConfigTree
const
*
const
/*
option
*/
)
PETScLinearSolver
::
PETScLinearSolver
(
PETScMatrix
&
A
,
const
std
::
string
prefix
,
BaseLib
::
ConfigTree
const
*
const
option
)
:
_A
(
A
),
_elapsed_ctime
(
0.
)
{
// Insert options into petsc database if any.
if
(
option
)
{
std
::
string
const
petsc_options
=
option
->
get
<
std
::
string
>
(
"petsc"
,
""
);
PetscOptionsInsertString
(
petsc_options
.
c_str
());
}
KSPCreate
(
PETSC_COMM_WORLD
,
&
_solver
);
KSPGetPC
(
_solver
,
&
_pc
);
...
...
This diff is collapsed.
Click to expand it.
MathLib/LinAlg/PETSc/PETScLinearSolver.h
+
4
−
4
View file @
8b558bc4
...
...
@@ -46,11 +46,11 @@ class PETScLinearSolver
\param prefix Name used to distinguish the options in the command
line for this solver. It can be the name of the PDE
that owns an instance of this class.
\param option
Not used here, just for the consistency of
the linear solver interfac
e.
\param option
Petsc options, which will be inserted into the global
petsc options databas
e.
*/
PETScLinearSolver
(
PETScMatrix
&
A
,
const
std
::
string
prefix
=
""
,
BaseLib
::
ConfigTree
const
*
const
option
=
nullptr
);
PETScLinearSolver
(
PETScMatrix
&
A
,
const
std
::
string
prefix
=
""
,
BaseLib
::
ConfigTree
const
*
const
option
=
nullptr
);
~
PETScLinearSolver
()
{
...
...
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