Tpetra parallel linear algebra  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Tpetra_CombineMode.cpp
1 // @HEADER
2 // ***********************************************************************
3 //
4 // Tpetra: Templated Linear Algebra Services Package
5 // Copyright (2008) Sandia Corporation
6 //
7 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
8 // the U.S. Government retains certain rights in this software.
9 //
10 // Redistribution and use in source and binary forms, with or without
11 // modification, are permitted provided that the following conditions are
12 // met:
13 //
14 // 1. Redistributions of source code must retain the above copyright
15 // notice, this list of conditions and the following disclaimer.
16 //
17 // 2. Redistributions in binary form must reproduce the above copyright
18 // notice, this list of conditions and the following disclaimer in the
19 // documentation and/or other materials provided with the distribution.
20 //
21 // 3. Neither the name of the Corporation nor the names of the
22 // contributors may be used to endorse or promote products derived from
23 // this software without specific prior written permission.
24 //
25 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
26 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
29 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 //
37 // Questions? Contact Michael A. Heroux (maherou@sandia.gov)
38 //
39 // ************************************************************************
40 // @HEADER
41 
42 #include <Tpetra_CombineMode.hpp>
43 #include <Teuchos_StandardParameterEntryValidators.hpp>
44 
45 namespace Tpetra {
46 
47  void
48  setCombineModeParameter (Teuchos::ParameterList& plist,
49  const std::string& paramName)
50  {
51  typedef Tpetra::CombineMode enum_type;
52  typedef Teuchos::StringToIntegralParameterEntryValidator<enum_type>
53  validator_type;
54 
55  const std::string docString = "Tpetra::CombineMode: rule for combining "
56  "entries that overlap across processes, when redistributing data via a "
57  "Tpetra::Import or Tpetra::Export";
58  const std::string defaultVal = "ADD";
59  const bool caseSensitive = false;
60 
61  const Teuchos::Array<std::string>::size_type numParams = 5;
62  Teuchos::Array<std::string> strs (numParams);
63  Teuchos::Array<std::string> docs (numParams);
64  Teuchos::Array<enum_type> vals (numParams);
65 
66  strs[0] = "ADD";
67  strs[1] = "INSERT";
68  strs[2] = "REPLACE";
69  strs[3] = "ABSMAX";
70  strs[4] = "ZERO";
71 
72  docs[0] = "Sum new values into existing values";
73  docs[1] = "Insert new values that don't currently exist";
74  docs[2] = "Replace existing values with new values";
75  docs[3] = "Replace old value with maximum of magnitudes of old and new values";
76  docs[4] = "Replace old values with zero";
77 
78  vals[0] = ADD;
79  vals[1] = INSERT;
80  vals[2] = REPLACE;
81  vals[3] = ABSMAX;
82  vals[4] = ZERO;
83 
84  plist.set (paramName, defaultVal, docString,
85  Teuchos::rcp (new validator_type (strs (), docs (), vals (),
86  defaultVal, caseSensitive)));
87  }
88 
89  std::string combineModeToString (const CombineMode combineMode)
90  {
91  std::string combineModeStr;
92  switch (combineMode) {
93  case ADD:
94  combineModeStr = "ADD";
95  break;
96  case REPLACE:
97  combineModeStr = "REPLACE";
98  break;
99  case ABSMAX:
100  combineModeStr = "ABSMAX";
101  break;
102  case INSERT:
103  combineModeStr = "INSERT";
104  break;
105  case ZERO:
106  combineModeStr = "ZERO";
107  break;
108  default:
109  combineModeStr = "INVALID";
110  }
111  return combineModeStr;
112  }
113 
114 } // namespace Tpetra
void setCombineModeParameter(Teuchos::ParameterList &plist, const std::string &paramName)
Set CombineMode parameter in a Teuchos::ParameterList.
Insert new values that don&#39;t currently exist.
Declaration of Tpetra::CombineMode enum, and a function for setting a Tpetra::CombineMode parameter i...
CombineMode
Rule for combining data in an Import or Export.
Sum new values into existing values.
Replace old value with maximum of magnitudes of old and new values.
Replace existing values with new values.
Replace old values with zero.
std::string combineModeToString(const CombineMode combineMode)
Human-readable string representation of the given CombineMode.