Stratimikos Package Browser (Single Doxygen Collection)
Version of the Day
Toggle main menu visibility
Loading...
Searching...
No Matches
adapters
amesos2
src
Thyra_Amesos2Types.cpp
Go to the documentation of this file.
1
/*
2
// @HEADER
3
// ***********************************************************************
4
//
5
// Stratimikos: Thyra-based strategies for linear solvers
6
// Copyright (2006) Sandia Corporation
7
//
8
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
9
// license for use of this work by or on behalf of the U.S. Government.
10
//
11
// Redistribution and use in source and binary forms, with or without
12
// modification, are permitted provided that the following conditions are
13
// met:
14
//
15
// 1. Redistributions of source code must retain the above copyright
16
// notice, this list of conditions and the following disclaimer.
17
//
18
// 2. Redistributions in binary form must reproduce the above copyright
19
// notice, this list of conditions and the following disclaimer in the
20
// documentation and/or other materials provided with the distribution.
21
//
22
// 3. Neither the name of the Corporation nor the names of the
23
// contributors may be used to endorse or promote products derived from
24
// this software without specific prior written permission.
25
//
26
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37
//
38
// Questions? Contact Roscoe A. Bartlett (rabartl@sandia.gov)
39
//
40
// ***********************************************************************
41
// @HEADER
42
*/
43
44
#include "
Thyra_Amesos2Types.hpp
"
45
46
namespace
Thyra
{
47
48
const
Amesos2::ESolverType
Amesos2::solverTypeValues
[
Amesos2::numSolverTypes
] =
49
{
50
Amesos2::KLU2
51
#ifdef HAVE_AMESOS2_LAPACK
52
,Amesos2::LAPACK
53
#endif
54
#ifdef HAVE_AMESOS2_SUPERLU
55
,Amesos2::SUPERLU
56
#endif
57
#ifdef HAVE_AMESOS2_SUPERLUMT
58
,Amesos2::SUPERLUMT
59
#endif
60
#ifdef HAVE_AMESOS2_SUPERLUDIST
61
,Amesos2::SUPERLUDIST
62
#endif
63
#ifdef HAVE_AMESOS2_PARDISO_MKL
64
,Amesos2::PARDISO_MKL
65
#endif
66
#ifdef HAVE_AMESOS2_CHOLMOD
67
,Amesos2::CHOLMOD
68
#endif
69
#ifdef HAVE_AMESOS2_BASKER
70
,Amesos2::BASKER
71
#endif
72
#ifdef HAVE_AMESOS2_MUMPS
73
,Amesos2::MUMPS
74
#endif
75
};
76
77
const
char
*
Amesos2::solverTypeNames
[
Amesos2::numSolverTypes
] =
78
{
79
"KLU2"
80
#ifdef HAVE_AMESOS2_LAPACK
81
,
"LAPACK"
82
#endif
83
#ifdef HAVE_AMESOS2_SUPERLU
84
,
"SuperLU"
85
#endif
86
#ifdef HAVE_AMESOS2_SUPERLUMT
87
,
"SuperLU_MT"
88
#endif
89
#ifdef HAVE_AMESOS2_SUPERLUDIST
90
,
"SuperLU_DIST"
91
#endif
92
#ifdef HAVE_AMESOS2_PARDISO_MKL
93
,
"PARDISOMKL"
94
#endif
95
#ifdef HAVE_AMESOS2_CHOLMOD
96
,
"Cholmod"
97
#endif
98
#ifdef HAVE_AMESOS2_BASKER
99
,
"Basker"
100
#endif
101
#ifdef HAVE_AMESOS2_MUMPS
102
,
"MUMPS"
103
#endif
104
};
105
106
const
bool
Amesos2::supportsUnsymmetric
[
Amesos2::numSolverTypes
] =
107
{
108
true
109
#ifdef HAVE_AMESOS2_LAPACK
110
,
true
111
#endif
112
#ifdef HAVE_AMESOS2_SUPERLU
113
,
true
114
#endif
115
#ifdef HAVE_AMESOS2_SUPERLUMT
116
,
true
117
#endif
118
#ifdef HAVE_AMESOS2_SUPERLUDIST
119
,
true
120
#endif
121
#ifdef HAVE_AMESOS2_PARDISO_MKL
122
,
true
123
#endif
124
#ifdef HAVE_AMESOS2_CHOLMOD
125
,
false
//don't know, being conservative
126
#endif
127
#ifdef HAVE_AMESOS2_BASKER
128
,
false
//don't know, being conservative
129
#endif
130
#ifdef HAVE_AMESOS2_MUMPS
131
,
true
132
#endif
133
};
134
135
Teuchos::StringToIntMap
136
Amesos2::solverTypeNameToEnumMap
(
137
"Amesos2::SolverType"
138
,
Amesos2::numSolverTypes
139
,
Amesos2::solverTypeNames
140
);
141
142
const
Amesos2::ERefactorizationPolicy
Amesos2::refactorizationPolicyValues
[
Amesos2::numRefactorizationPolices
] =
143
{
144
Amesos2::REPIVOT_ON_REFACTORIZATION
145
,
Amesos2::NO_PIVOT_ON_REFACTORIZATION
146
};
147
148
const
char
*
Amesos2::refactorizationPolicyNames
[
Amesos2::numRefactorizationPolices
] =
149
{
150
"RepivotOnRefactorization"
151
,
"NoPivotOnRefactorization"
152
};
153
154
Teuchos::StringToIntMap
155
Amesos2::refactorizationPolicyNameToEnumMap
(
156
"Amesos2::RefactorizationPolices"
157
,
Amesos2::numRefactorizationPolices
158
,
Amesos2::refactorizationPolicyNames
159
);
160
161
}
// namespace Thyra
Thyra_Amesos2Types.hpp
Thyra::Amesos2::numRefactorizationPolices
const int numRefactorizationPolices
Definition
Thyra_Amesos2Types.hpp:152
Thyra::Amesos2::ERefactorizationPolicy
ERefactorizationPolicy
The policy used on refactoring a matrix.
Definition
Thyra_Amesos2Types.hpp:144
Thyra::Amesos2::NO_PIVOT_ON_REFACTORIZATION
@ NO_PIVOT_ON_REFACTORIZATION
No piviting, or only minor repivoting, will be used on refactorizations!
Definition
Thyra_Amesos2Types.hpp:146
Thyra::Amesos2::REPIVOT_ON_REFACTORIZATION
@ REPIVOT_ON_REFACTORIZATION
Completely new pivoting will be used on refactorizations!
Definition
Thyra_Amesos2Types.hpp:145
Thyra::Amesos2::refactorizationPolicyValues
const ERefactorizationPolicy refactorizationPolicyValues[numRefactorizationPolices]
Definition
Thyra_Amesos2Types.cpp:142
Thyra::Amesos2::solverTypeNames
const char * solverTypeNames[numSolverTypes]
Definition
Thyra_Amesos2Types.cpp:77
Thyra::Amesos2::refactorizationPolicyNameToEnumMap
Teuchos::StringToIntMap refactorizationPolicyNameToEnumMap
Thyra::Amesos2::supportsUnsymmetric
const bool supportsUnsymmetric[numSolverTypes]
Definition
Thyra_Amesos2Types.cpp:106
Thyra::Amesos2::ESolverType
ESolverType
Definition
Thyra_Amesos2Types.hpp:57
Thyra::Amesos2::KLU2
@ KLU2
Definition
Thyra_Amesos2Types.hpp:58
Thyra::Amesos2::solverTypeValues
const ESolverType solverTypeValues[numSolverTypes]
Definition
Thyra_Amesos2Types.cpp:48
Thyra::Amesos2::refactorizationPolicyNames
const char * refactorizationPolicyNames[numRefactorizationPolices]
Definition
Thyra_Amesos2Types.cpp:148
Thyra::Amesos2::solverTypeNameToEnumMap
Teuchos::StringToIntMap solverTypeNameToEnumMap
Thyra::Amesos2::numSolverTypes
const int numSolverTypes
Definition
Thyra_Amesos2Types.hpp:88
Thyra
Definition
Thyra_DefaultRealLinearSolverBuilder.hpp:48
Generated by
1.17.0