/usr/include/trilinos/Tpetra_Import.hpp is in libtrilinos-dev 10.4.0.dfsg-1ubuntu2.
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 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | // @HEADER
// ***********************************************************************
//
// Tpetra: Templated Linear Algebra Services Package
// Copyright (2008) 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.
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
//
// ***********************************************************************
// @HEADER
#ifndef TPETRA_IMPORT_HPP
#define TPETRA_IMPORT_HPP
#include <Kokkos_DefaultNode.hpp>
#include <Teuchos_Describable.hpp>
#include <Teuchos_as.hpp>
#include <Teuchos_OrdinalTraits.hpp>
#include <Teuchos_RCP.hpp>
#include <Teuchos_Array.hpp>
#include <Teuchos_ArrayRCP.hpp>
#include "Tpetra_Map.hpp"
#include "Tpetra_Util.hpp"
#include "Tpetra_ImportExportData.hpp"
#include "Tpetra_Distributor.hpp"
#include <iterator>
namespace Tpetra {
//! \brief This class builds an object containing information necesary for efficiently importing off-processor entries.
/*! Import is used to construct a communication plan that can be called repeatedly by computational
classes to efficiently import entries from other nodes.
For example, an exporter is used when we start out with a multiple-ownership distribution,
and we want to merge that into a uniquely-owned distribution.
This class currently has one constructor, taking two Map objects
specifying the distributions of the distributed objects on which the Export class will operate.
This class is templated on \c LocalOrdinal and \c GlobalOrdinal.
The \c GlobalOrdinal type, if omitted, defaults to the \c LocalOrdinal type.
*/
template <class LocalOrdinal, class GlobalOrdinal = LocalOrdinal, class Node = Kokkos::DefaultNode::DefaultNodeType>
class Import: public Teuchos::Describable {
public:
//! @name Constructor/Destructor Methods
//@{
//! Constructs a Import object from the source and target Maps.
Import(const Teuchos::RCP<const Map<LocalOrdinal,GlobalOrdinal,Node> > & source,
const Teuchos::RCP<const Map<LocalOrdinal,GlobalOrdinal,Node> > & target);
//! copy constructor.
Import(const Import<LocalOrdinal,GlobalOrdinal,Node> & import);
//! destructor.
~Import();
//@}
//! @name Export Attribute Methods
//@{
//! Returns the number of entries that are identical between the source and target maps, up to the first different ID.
size_t getNumSameIDs() const;
//! Returns the number of entries that are local to the calling image, but not part of the first getNumSameIDs() entries.
size_t getNumPermuteIDs() const;
//! List of entries in the source Map that are permuted. (non-persisting view)
Teuchos::ArrayView<const LocalOrdinal> getPermuteFromLIDs() const;
//! List of entries in the target Map that are permuted. (non-persisting view)
Teuchos::ArrayView<const LocalOrdinal> getPermuteToLIDs() const;
//! Returns the number of entries that are not on the calling image.
size_t getNumRemoteIDs() const;
//! List of entries in the target Map that are coming from other images. (non-persisting view)
Teuchos::ArrayView<const LocalOrdinal> getRemoteLIDs() const;
//! Returns the number of entries that must be sent by the calling image to other images.
size_t getNumExportIDs() const;
//! List of entries in the source Map that will be sent to other images. (non-persisting view)
Teuchos::ArrayView<const LocalOrdinal> getExportLIDs() const;
//! List of images to which entries will be sent, getExportLIDs() [i] will be sent to image getExportImageIDs() [i]. (non-persisting view)
Teuchos::ArrayView<const int> getExportImageIDs() const;
//! Returns the Source Map used to construct this importer.
const Teuchos::RCP<const Map<LocalOrdinal,GlobalOrdinal,Node> > & getSourceMap() const;
//! Returns the Target Map used to construct this importer.
const Teuchos::RCP<const Map<LocalOrdinal,GlobalOrdinal,Node> > & getTargetMap() const;
Distributor & getDistributor() const;
//! Assignment operator
Import<LocalOrdinal,GlobalOrdinal,Node>& operator = (const Import<LocalOrdinal,GlobalOrdinal,Node> & Source);
//@}
//! @name I/O Methods
//@{
//! Print method
virtual void print(std::ostream& os) const;
//@}
private:
Teuchos::RCP<ImportExportData<LocalOrdinal,GlobalOrdinal,Node> > ImportData_;
Teuchos::RCP<Teuchos::Array<GlobalOrdinal> > remoteGIDs_;
// subfunctions used by constructor
//==============================================================================
// sets up numSameIDs_, numPermuteIDs_, and numRemoteIDs_
// these variables are already initialized to 0 by the ImportExportData ctr.
// also sets up permuteToLIDs_, permuteFromLIDs_, and remoteLIDs_
void setupSamePermuteRemote();
void setupExport();
};
template <class LocalOrdinal, class GlobalOrdinal, class Node>
Import<LocalOrdinal,GlobalOrdinal,Node>::Import(const Teuchos::RCP<const Map<LocalOrdinal,GlobalOrdinal,Node> > & source,
const Teuchos::RCP<const Map<LocalOrdinal,GlobalOrdinal,Node> > & target) {
ImportData_ = Teuchos::rcp(new ImportExportData<LocalOrdinal,GlobalOrdinal,Node>(source, target));
// call subfunctions
setupSamePermuteRemote();
if( source->isDistributed()) {
setupExport();
}
// don't need remoteGIDs_ anymore
remoteGIDs_ = Teuchos::null;
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
Import<LocalOrdinal,GlobalOrdinal,Node>::Import(const Import<LocalOrdinal,GlobalOrdinal,Node> & import)
: ImportData_(import.ImportData_)
{}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
Import<LocalOrdinal,GlobalOrdinal,Node>::~Import()
{}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
size_t Import<LocalOrdinal,GlobalOrdinal,Node>::getNumSameIDs() const {
return ImportData_->numSameIDs_;
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
size_t Import<LocalOrdinal,GlobalOrdinal,Node>::getNumPermuteIDs() const {
return ImportData_->permuteFromLIDs_.size();
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
Teuchos::ArrayView<const LocalOrdinal>
Import<LocalOrdinal,GlobalOrdinal,Node>::getPermuteFromLIDs() const {
return ImportData_->permuteFromLIDs_();
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
Teuchos::ArrayView<const LocalOrdinal>
Import<LocalOrdinal,GlobalOrdinal,Node>::getPermuteToLIDs() const {
return ImportData_->permuteToLIDs_();
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
size_t Import<LocalOrdinal,GlobalOrdinal,Node>::getNumRemoteIDs() const {
return ImportData_->remoteLIDs_.size();
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
Teuchos::ArrayView<const LocalOrdinal>
Import<LocalOrdinal,GlobalOrdinal,Node>::getRemoteLIDs() const {
return ImportData_->remoteLIDs_();
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
size_t Import<LocalOrdinal,GlobalOrdinal,Node>::getNumExportIDs() const {
return ImportData_->exportLIDs_.size();
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
Teuchos::ArrayView<const LocalOrdinal>
Import<LocalOrdinal,GlobalOrdinal,Node>::getExportLIDs() const {
return ImportData_->exportLIDs_();
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
Teuchos::ArrayView<const int>
Import<LocalOrdinal,GlobalOrdinal,Node>::getExportImageIDs() const {
return ImportData_->exportImageIDs_();
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
const Teuchos::RCP<const Map<LocalOrdinal,GlobalOrdinal,Node> > &
Import<LocalOrdinal,GlobalOrdinal,Node>::getSourceMap() const {
return ImportData_->source_;
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
const Teuchos::RCP<const Map<LocalOrdinal,GlobalOrdinal,Node> > &
Import<LocalOrdinal,GlobalOrdinal,Node>::getTargetMap() const {
return ImportData_->target_;
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
Distributor &
Import<LocalOrdinal,GlobalOrdinal,Node>::getDistributor() const {
return ImportData_->distributor_;
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
Import<LocalOrdinal,GlobalOrdinal,Node>&
Import<LocalOrdinal,GlobalOrdinal,Node>::operator=(const Import<LocalOrdinal,GlobalOrdinal,Node> & Source) {
ImportData_ = Source.ImportData_;
return *this;
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
void Import<LocalOrdinal,GlobalOrdinal,Node>::print(std::ostream& os) const {
using std::endl;
Teuchos::ArrayView<const LocalOrdinal> av;
Teuchos::ArrayView<const int> avi;
const Teuchos::RCP<const Teuchos::Comm<int> > & comm = getSourceMap()->getComm();
int myImageID = comm->getRank();
int numImages = comm->getSize();
for (int imageCtr = 0; imageCtr < numImages; ++imageCtr) {
if(myImageID == imageCtr) {
os << endl;
if(myImageID == 0) { // this is the root node (only output this info once)
os << "Import Data Members:" << endl;
}
os << "Image ID : " << myImageID << endl;
os << "permuteFromLIDs: {"; av = getPermuteFromLIDs(); std::copy(av.begin(),av.end(),std::ostream_iterator<LocalOrdinal>(os," ")); os << " }" << endl;
os << "permuteToLIDs : {"; av = getPermuteToLIDs(); std::copy(av.begin(),av.end(),std::ostream_iterator<LocalOrdinal>(os," ")); os << " }" << endl;
os << "remoteLIDs : {"; av = getRemoteLIDs(); std::copy(av.begin(),av.end(),std::ostream_iterator<LocalOrdinal>(os," ")); os << " }" << endl;
os << "exportLIDs : {"; av = getExportLIDs(); std::copy(av.begin(),av.end(),std::ostream_iterator<LocalOrdinal>(os," ")); os << " }" << endl;
os << "exportImageIDs : {"; avi = getExportImageIDs(); std::copy(avi.begin(),avi.end(),std::ostream_iterator<int>(os," ")); os << " }" << endl;
os << "numSameIDs : " << getNumSameIDs() << endl;
os << "numPermuteIDs : " << getNumPermuteIDs() << endl;
os << "numRemoteIDs : " << getNumRemoteIDs() << endl;
os << "numExportIDs : " << getNumExportIDs() << endl;
}
// Do a few global ops to give I/O a chance to complete
comm->barrier();
comm->barrier();
comm->barrier();
}
if (myImageID == 0) {
os << "\nSource Map: " << endl;
}
os << *getSourceMap();
if (myImageID == 0) {
os << "\nTarget Map: " << endl;
}
os << *getTargetMap();
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
void Import<LocalOrdinal,GlobalOrdinal,Node>::setupSamePermuteRemote() {
const Map<LocalOrdinal,GlobalOrdinal,Node> & source = *getSourceMap();
const Map<LocalOrdinal,GlobalOrdinal,Node> & target = *getTargetMap();
Teuchos::ArrayView<const GlobalOrdinal> sourceGIDs = source.getNodeElementList();
Teuchos::ArrayView<const GlobalOrdinal> targetGIDs = target.getNodeElementList();
// -- compute numSameIDs_ ---
// go through GID lists of source and target. if the ith GID on both is the same,
// increment numSameIDs_ and try the next. as soon as you come to a pair that don't
// match, give up.
typename Teuchos::ArrayView<const GlobalOrdinal>::iterator sourceIter = sourceGIDs.begin(),
targetIter = targetGIDs.begin();
while( sourceIter != sourceGIDs.end() && targetIter != targetGIDs.end() && *sourceIter == *targetIter )
{
++ImportData_->numSameIDs_;
++sourceIter;
++targetIter;
}
// targetIter should now point to the GID of the first non-same entry or the end of targetGIDs
// -- compute numPermuteIDs and numRemoteIDs --
// -- fill permuteToLIDs_, permuteFromLIDs_, remoteGIDs_, and remoteLIDs_ --
// go through remaining entries in targetGIDs. if source owns that GID,
// increment numPermuteIDs_, and add entries to permuteToLIDs_ and permuteFromLIDs_.
// otherwise increment numRemoteIDs_ and add entries to remoteLIDs_ and remoteGIDs_.
remoteGIDs_ = Teuchos::rcp( new Teuchos::Array<GlobalOrdinal>() );
for (; targetIter != targetGIDs.end(); ++targetIter) {
if (source.isNodeGlobalElement(*targetIter)) {
// both source and target list this GID (*targetIter)
// determine the LIDs for this GID on both Maps and add them to the permutation lists
ImportData_->permuteToLIDs_.push_back(target.getLocalElement(*targetIter));
ImportData_->permuteFromLIDs_.push_back(source.getLocalElement(*targetIter));
}
else {
// this GID is on another processor; store it, along with its destination LID on this processor
remoteGIDs_->push_back(*targetIter);
ImportData_->remoteLIDs_.push_back(target.getLocalElement(*targetIter));
}
}
TEST_FOR_EXCEPTION( (getNumRemoteIDs() > 0) && !source.isDistributed(), std::runtime_error,
Teuchos::typeName(*this) << "::setupSamePermuteRemote(): Target has remote LIDs but Source is not distributed globally.");
}
template <class LocalOrdinal, class GlobalOrdinal, class Node>
void Import<LocalOrdinal,GlobalOrdinal,Node>::setupExport() {
const Map<LocalOrdinal,GlobalOrdinal,Node> & source = *getSourceMap();
// create remoteImageID list: for each entry remoteGIDs[i],
// remoteImageIDs[i] will contain the ImageID of the image that owns that GID.
// check for GIDs that exist in target but not in source: we see this if getRemoteIndexList returns true
Teuchos::ArrayView<GlobalOrdinal> remoteGIDs = (*remoteGIDs_)();
Teuchos::Array<int> remoteImageIDs(remoteGIDs.size());
TEST_FOR_EXCEPTION( source.getRemoteIndexList(remoteGIDs, remoteImageIDs()) == IDNotPresent, std::runtime_error,
"Tpetra::Import::setupExport(): Target has GIDs not found in Source.");
// sort remoteImageIDs in ascending order
// apply same permutation to remoteGIDs_
sort2(remoteImageIDs.begin(), remoteImageIDs.end(), remoteGIDs.begin());
// call Distributor.createFromRecvs()
// takes in remoteGIDs and remoteImageIDs_
// returns exportLIDs_, exportImageIDs_
Teuchos::ArrayRCP<GlobalOrdinal> exportGIDs;
ImportData_->distributor_.createFromRecvs(remoteGIDs().getConst(), remoteImageIDs, exportGIDs, ImportData_->exportImageIDs_);
// -- exportGIDs and exportImageIDs_ allocated by createFromRecvs (the former contains GIDs, we will convert to LIDs below) --
// convert exportGIDs from GIDs to LIDs
if (exportGIDs != Teuchos::null) {
ImportData_->exportLIDs_ = Teuchos::arcp<LocalOrdinal>(exportGIDs.size());
}
typename Teuchos::ArrayRCP<LocalOrdinal>::iterator dst = ImportData_->exportLIDs_.begin();
typename Teuchos::ArrayRCP<GlobalOrdinal>::const_iterator src = exportGIDs.begin();
while (src != exportGIDs.end())
{
(*dst++) = source.getLocalElement(*src++);
}
}
} // namespace Tpetra
#endif // TPETRA_IMPORT_HPP
|