/usr/include/trilinos/Ifpack2_CreateOverlapGraph.hpp is in libtrilinos-ifpack2-dev 12.10.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | /*@HEADER
// ***********************************************************************
//
// Ifpack2: Tempated Object-Oriented Algebraic Preconditioner Package
// Copyright (2009) Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
//
// ***********************************************************************
//@HEADER
*/
#ifndef IFPACK2_CREATEOVERLAPGRAPH_HPP
#define IFPACK2_CREATEOVERLAPGRAPH_HPP
#include "Ifpack2_ConfigDefs.hpp"
#include "Tpetra_CrsGraph.hpp"
#include "Tpetra_CrsMatrix.hpp"
#include "Tpetra_Import.hpp"
#include "Teuchos_RefCountPtr.hpp"
namespace Ifpack2 {
/// \brief Construct an overlapped graph for use with Ifpack2 preconditioners.
/// \tparam GraphType A specialization of Tpetra::RowGraph or Tpetra::CrsGraph.
///
/// \warning This function is an implementation detail of Ifpack2.
/// Its interface may change or it may go away at any time.
///
/// \note This method has only been tested with GraphType =
/// Tpetra::CrsGraph. It should also work with GraphType =
/// Tpetra::RowGraph, but I have not tested this case.
///
/// \param inputGraph [in] The input graph. We assume that its row
/// Map is nonoverlapping.
///
/// \param overlapLevel [in] The level of overlap. Zero means no
/// overlap, in which case this function just returns the original
/// \c inputGraph.
template<class GraphType>
Teuchos::RCP<const GraphType>
createOverlapGraph (const Teuchos::RCP<const GraphType>& inputGraph,
const int overlapLevel)
{
using Teuchos::RCP;
using Teuchos::rcp;
typedef Tpetra::Map<typename GraphType::local_ordinal_type,
typename GraphType::global_ordinal_type,
typename GraphType::node_type> map_type;
typedef Tpetra::Import<typename GraphType::local_ordinal_type,
typename GraphType::global_ordinal_type,
typename GraphType::node_type> import_type;
TEUCHOS_TEST_FOR_EXCEPTION(
overlapLevel < 0, std::invalid_argument,
"Ifpack2::createOverlapGraph: overlapLevel must be >= 0, "
"but you specified overlapLevel = " << overlapLevel << ".");
const int numProcs = inputGraph->getMap ()->getComm ()->getSize ();
if (overlapLevel == 0 || numProcs < 2) {
return inputGraph;
}
RCP<const map_type> overlapRowMap = inputGraph->getRowMap ();
RCP<const map_type> domainMap = inputGraph->getDomainMap ();
RCP<const map_type> rangeMap = inputGraph->getRangeMap ();
RCP<GraphType> overlapGraph;
RCP<const GraphType> oldGraph;
RCP<const map_type> oldRowMap;
for (int level = 0; level < overlapLevel; ++level) {
oldGraph = overlapGraph;
oldRowMap = overlapRowMap;
RCP<const import_type> overlapImporter;
if (level == 0) {
overlapImporter = inputGraph->getImporter ();
} else {
overlapImporter = oldGraph->getImporter ();
}
overlapRowMap = overlapImporter->getTargetMap ();
if (level < overlapLevel - 1) {
overlapGraph = rcp (new GraphType (overlapRowMap, 0));
}
else {
// On last iteration, we want to filter out all columns except those that
// correspond to rows in the graph. This ensures that our graph is square
overlapGraph = rcp (new GraphType (overlapRowMap, overlapRowMap, 0));
}
overlapGraph->doImport (*inputGraph, *overlapImporter, Tpetra::INSERT);
overlapGraph->fillComplete (domainMap, rangeMap);
}
return overlapGraph;
}
/// \brief Construct an overlapped matrix for use with Ifpack2 preconditioners.
/// \tparam MatrixType A specialization of Tpetra::CrsMatrix.
///
/// \param inputMatrix [in] The input matrix. We assume that its row
/// Map is nonoverlapping.
///
/// \param overlapLevel [in] The level of overlap. Zero means no
/// overlap, in which case this function just returns the original
/// \c inputMatrix.
template<class MatrixType>
Teuchos::RCP<const MatrixType>
createOverlapMatrix (const Teuchos::RCP<const MatrixType>& inputMatrix,
const int overlapLevel)
{
using Teuchos::RCP;
using Teuchos::rcp;
typedef typename MatrixType::map_type map_type;
typedef Tpetra::Import<typename MatrixType::local_ordinal_type,
typename MatrixType::global_ordinal_type,
typename MatrixType::node_type> import_type;
TEUCHOS_TEST_FOR_EXCEPTION(
overlapLevel < 0, std::invalid_argument,
"Ifpack2::createOverlapMatrix: overlapLevel must be >= 0, "
"but you specified overlapLevel = " << overlapLevel << ".");
const int numProcs = inputMatrix->getMap ()->getComm ()->getSize ();
if (overlapLevel == 0 || numProcs < 2) {
return inputMatrix;
}
RCP<const map_type> overlapRowMap = inputMatrix->getRowMap ();
RCP<const map_type> domainMap = inputMatrix->getDomainMap ();
RCP<const map_type> rangeMap = inputMatrix->getRangeMap ();
RCP<MatrixType> overlapMatrix;
RCP<const MatrixType> oldMatrix;
RCP<const map_type> oldRowMap;
for (int level = 0; level < overlapLevel; ++level) {
oldMatrix = overlapMatrix;
oldRowMap = overlapRowMap;
RCP<const import_type> overlapImporter;
if (level == 0) {
overlapImporter = inputMatrix->getGraph ()->getImporter ();
} else {
overlapImporter = oldMatrix->getGraph ()->getImporter ();
}
overlapRowMap = overlapImporter->getTargetMap ();
if (level < overlapLevel - 1) {
overlapMatrix = rcp (new MatrixType (overlapRowMap, 0));
}
else {
// On last iteration, we want to filter out all columns except those that
// correspond to rows in the matrix. This assures that our matrix is square
overlapMatrix = rcp (new MatrixType (overlapRowMap, overlapRowMap, 0));
}
overlapMatrix->doImport (*inputMatrix, *overlapImporter, Tpetra::INSERT);
overlapMatrix->fillComplete (domainMap, rangeMap);
}
return overlapMatrix;
}
} // namespace Ifpack2
#endif // IFPACK2_CREATEOVERLAPGRAPH_HPP
|