/usr/include/trilinos/EpetraExt_MMHelpers.h is in libtrilinos-epetraext-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 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 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 | //@HEADER
// ***********************************************************************
//
// EpetraExt: Epetra Extended - Linear Algebra Services Package
// Copyright (2011) Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// 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 EPETRAEXT_MMHELPERS_H
#define EPETRAEXT_MMHELPERS_H
#include "EpetraExt_ConfigDefs.h"
#include "Epetra_ConfigDefs.h"
#include "Epetra_DistObject.h"
#include "Epetra_Map.h"
#include "Teuchos_RCP.hpp"
#include "Epetra_Comm.h"
#include "Epetra_Import.h"
#include "Epetra_CrsMatrix.h"
#include <Teuchos_TimeMonitor.hpp>
#include <vector>
#include <set>
#include <map>
class Epetra_Distributor;
namespace EpetraExt {
class LightweightCrsMatrix;
//#define HAVE_EPETRAEXT_DEBUG // for extra sanity checks
// ==============================================================
//struct that holds views of the contents of a CrsMatrix. These
//contents may be a mixture of local and remote rows of the
//actual matrix.
class CrsMatrixStruct {
public:
CrsMatrixStruct();
virtual ~CrsMatrixStruct();
void deleteContents();
int numRows;
// The following class members get used in the transpose modes of the MMM
// but not in the A*B mode.
int* numEntriesPerRow;
int** indices;
double** values;
bool* remote;
int numRemote;
const Epetra_BlockMap* importColMap;
// Maps and matrices (all modes)
const Epetra_Map* origRowMap;
const Epetra_Map* rowMap;
const Epetra_Map* colMap;
const Epetra_Map* domainMap;
LightweightCrsMatrix* importMatrix;
const Epetra_CrsMatrix *origMatrix;
// The following class members are only used for A*B mode
std::vector<int> targetMapToOrigRow;
std::vector<int> targetMapToImportRow;
};
int dumpCrsMatrixStruct(const CrsMatrixStruct& M);
// ==============================================================
class CrsWrapper {
public:
virtual ~CrsWrapper(){}
virtual const Epetra_Map& RowMap() const = 0;
virtual bool Filled() = 0;
#ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
virtual int InsertGlobalValues(int GlobalRow, int NumEntries, double* Values, int* Indices) = 0;
virtual int SumIntoGlobalValues(int GlobalRow, int NumEntries, double* Values, int* Indices) = 0;
#endif
#ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
virtual int InsertGlobalValues(long long GlobalRow, int NumEntries, double* Values, long long* Indices) = 0;
virtual int SumIntoGlobalValues(long long GlobalRow, int NumEntries, double* Values, long long* Indices) = 0;
#endif
};
// ==============================================================
class CrsWrapper_Epetra_CrsMatrix : public CrsWrapper {
public:
CrsWrapper_Epetra_CrsMatrix(Epetra_CrsMatrix& epetracrsmatrix);
virtual ~CrsWrapper_Epetra_CrsMatrix();
const Epetra_Map& RowMap() const;
bool Filled();
#ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
int InsertGlobalValues(int GlobalRow, int NumEntries, double* Values, int* Indices);
int SumIntoGlobalValues(int GlobalRow, int NumEntries, double* Values, int* Indices);
#endif
#ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
int InsertGlobalValues(long long GlobalRow, int NumEntries, double* Values, long long* Indices);
int SumIntoGlobalValues(long long GlobalRow, int NumEntries, double* Values, long long* Indices);
#endif
private:
Epetra_CrsMatrix& ecrsmat_;
};
// ==============================================================
template<typename int_type>
class CrsWrapper_GraphBuilder : public CrsWrapper {
public:
CrsWrapper_GraphBuilder(const Epetra_Map& emap);
virtual ~CrsWrapper_GraphBuilder();
const Epetra_Map& RowMap() const {return rowmap_; }
bool Filled();
int InsertGlobalValues(int_type GlobalRow, int NumEntries, double* Values, int_type* Indices);
int SumIntoGlobalValues(int_type GlobalRow, int NumEntries, double* Values, int_type* Indices);
std::map<int_type,std::set<int_type>*>& get_graph();
int get_max_row_length() { return max_row_length_; }
private:
std::map<int_type,std::set<int_type>*> graph_;
const Epetra_Map& rowmap_;
int max_row_length_;
};
// ==============================================================
template<typename int_type>
void insert_matrix_locations(CrsWrapper_GraphBuilder<int_type>& graphbuilder,
Epetra_CrsMatrix& C);
template<typename int_type>
void Tpack_outgoing_rows(const Epetra_CrsMatrix& mtx,
const std::vector<int_type>& proc_col_ranges,
std::vector<int_type>& send_rows,
std::vector<int>& rows_per_send_proc);
#ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
void pack_outgoing_rows(const Epetra_CrsMatrix& mtx,
const std::vector<int>& proc_col_ranges,
std::vector<int>& send_rows,
std::vector<int>& rows_per_send_proc);
#endif
#ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
void pack_outgoing_rows(const Epetra_CrsMatrix& mtx,
const std::vector<long long>& proc_col_ranges,
std::vector<long long>& send_rows,
std::vector<int>& rows_per_send_proc);
#endif
template<typename int_type>
std::pair<int_type,int_type> get_col_range(const Epetra_Map& emap);
template<typename int_type>
std::pair<int_type,int_type> get_col_range(const Epetra_CrsMatrix& mtx);
// ==============================================================
class LightweightMapData : Epetra_Data {
friend class LightweightMap;
public:
LightweightMapData();
~LightweightMapData();
long long IndexBase_;
#ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
std::vector<int> MyGlobalElements_int_;
Epetra_HashTable<int> * LIDHash_int_;
#endif
#ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
std::vector<long long> MyGlobalElements_LL_;
Epetra_HashTable<long long> * LIDHash_LL_;
#endif
// For "copy" constructor only...
Epetra_Map * CopyMap_;
};
class LightweightMap {
public:
LightweightMap();
#ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
LightweightMap(int NumGlobalElements,int NumMyElements, const int * MyGlobalElements, int IndexBase, bool GenerateHash=true);
#endif
#ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
LightweightMap(long long NumGlobalElements,int NumMyElements, const long long * MyGlobalElements, int IndexBase, bool GenerateHash=true);
LightweightMap(long long NumGlobalElements,int NumMyElements, const long long * MyGlobalElements, long long IndexBase, bool GenerateHash=true);
#endif
LightweightMap(const Epetra_Map & Map);
LightweightMap(const LightweightMap & Map);
~LightweightMap();
LightweightMap & operator=(const LightweightMap & map);
#ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
int LID(int GID) const;
int GID(int LID) const;
#endif
#ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
int LID(long long GID) const;
#endif
long long GID64(int LID) const;
int NumMyElements() const;
#if defined(EPETRA_NO_32BIT_GLOBAL_INDICES) && defined(EPETRA_NO_64BIT_GLOBAL_INDICES)
// default implementation so that no compiler/linker error in case neither 32 nor 64
// bit indices present.
int LID(long long GID) const { return -1; }
#endif
#ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
int* MyGlobalElements() const;
int IndexBase() const {
if(IndexBase64() == (long long) static_cast<int>(IndexBase64()))
return (int) IndexBase64();
throw "EpetraExt::LightweightMap::IndexBase: IndexBase cannot fit an int.";
}
void MyGlobalElementsPtr(int *& MyGlobalElementList) const;
#endif
#ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
long long* MyGlobalElements64() const;
void MyGlobalElementsPtr(long long *& MyGlobalElementList) const;
#endif
long long IndexBase64() const {return Data_->IndexBase_;}
int MinLID() const;
int MaxLID() const;
bool GlobalIndicesInt() const { return IsInt; }
bool GlobalIndicesLongLong() const { return IsLongLong; }
private:
void CleanupData();
LightweightMapData *Data_;
bool IsLongLong;
bool IsInt;
//Epetra_BlockMapData* Data_;
#ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
void Construct_int(int NumGlobalElements,int NumMyElements, const int * MyGlobalElements, long long IndexBase, bool GenerateHash=true);
#endif
#ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
void Construct_LL(long long NumGlobalElements,int NumMyElements, const long long * MyGlobalElements, long long IndexBase, bool GenerateHash=true);
#endif
};
// ==============================================================
class RemoteOnlyImport {
public:
RemoteOnlyImport(const Epetra_Import & Importer, LightweightMap & RemoteOnlyTargetMap);
~RemoteOnlyImport();
int NumSameIDs() {return 0;}
int NumPermuteIDs() {return 0;}
int NumRemoteIDs() {return NumRemoteIDs_;}
int NumExportIDs() {return NumExportIDs_;}
int* ExportLIDs() {return ExportLIDs_;}
int* ExportPIDs() {return ExportPIDs_;}
int* RemoteLIDs() {return RemoteLIDs_;}
int* PermuteToLIDs() {return 0;}
int* PermuteFromLIDs() {return 0;}
int NumSend() {return NumSend_;}
Epetra_Distributor & Distributor() {return *Distor_;}
const Epetra_BlockMap & SourceMap() const {return *SourceMap_;}
const LightweightMap & TargetMap() const {return *TargetMap_;}
private:
int NumSend_;
int NumRemoteIDs_;
int NumExportIDs_;
int * ExportLIDs_;
int * ExportPIDs_;
int * RemoteLIDs_;
Epetra_Distributor* Distor_;
const Epetra_BlockMap* SourceMap_;
const LightweightMap *TargetMap_;
};
// ==============================================================
class LightweightCrsMatrix {
public:
LightweightCrsMatrix(const Epetra_CrsMatrix & A, RemoteOnlyImport & RowImporter, bool SortGhosts=false,const char * label=0);
LightweightCrsMatrix(const Epetra_CrsMatrix & A, Epetra_Import & RowImporter);
~LightweightCrsMatrix();
// Standard crs data structures
std::vector<int> rowptr_;
std::vector<int> colind_;
std::vector<double> vals_;
#ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
// Colind in LL-GID space (if needed)
std::vector<long long> colind_LL_;
#endif
// Epetra Maps
bool use_lw;
LightweightMap *RowMapLW_;
Epetra_BlockMap *RowMapEP_;
LightweightMap ColMap_;
Epetra_Map DomainMap_;
// List of owning PIDs (from the DomainMap) as ordered by entries in the column map.
std::vector<int> ColMapOwningPIDs_;
// For building the final importer for C
std::vector<int> ExportLIDs_;
std::vector<int> ExportPIDs_;
private:
template <typename ImportType, typename int_type>
void Construct(const Epetra_CrsMatrix & A, ImportType & RowImporter,bool SortGhosts=false, const char * label=0);
// Templated versions of MakeColMapAndReindex (to prevent code duplication)
template <class GO>
int MakeColMapAndReindex(std::vector<int> owningPIDs,std::vector<GO> Gcolind,bool SortGhosts=false, const char * label=0);
template<typename int_type>
std::vector<int_type>& getcolind();
template<typename ImportType, typename int_type>
int PackAndPrepareReverseComm(const Epetra_CrsMatrix & SourceMatrix, ImportType & RowImporter,
std::vector<int> &ReverseSendSizes, std::vector<int_type> &ReverseSendBuffer);
template<typename ImportType, typename int_type>
int MakeExportLists(const Epetra_CrsMatrix & SourceMatrix, ImportType & RowImporter,
std::vector<int> &ReverseRecvSizes, const int_type *ReverseRecvBuffer,
std::vector<int> & ExportPIDs, std::vector<int> & ExportLIDs);
};
#ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
template<> inline std::vector<int>& LightweightCrsMatrix::getcolind() { return colind_; }
#endif
#ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
template<> inline std::vector<long long>& LightweightCrsMatrix::getcolind() { return colind_LL_; }
#endif
// ==============================================================
template<typename int_type>
int import_only(const Epetra_CrsMatrix& M,
const Epetra_Map& targetMap,
CrsMatrixStruct& Mview,
const Epetra_Import * prototypeImporter=0,bool SortGhosts=false,
const char * label=0)
{
// The goal of this method to populare the Mview object with ONLY the rows of M
// that correspond to elements in 'targetMap.' There will be no population of the
// numEntriesPerRow, indices, values, remote or numRemote arrays.
// The prototype importer, if used, has to know who owns all of the PIDs in M's rowmap.
// The typical use of this is to provide A's column map when I&XV is called for B, for
// a C = A * B multiply.
#ifdef ENABLE_MMM_TIMINGS
std::string tpref;
if(label) tpref = std::string(label);
using Teuchos::TimeMonitor;
Teuchos::RCP<Teuchos::TimeMonitor> MM = Teuchos::rcp(new TimeMonitor(*TimeMonitor::getNewTimer(tpref + std::string("EpetraExt: MMM Ionly Setup"))));
#endif
Mview.deleteContents();
Mview.origMatrix = &M;
const Epetra_Map& Mrowmap = M.RowMap();
int numProcs = Mrowmap.Comm().NumProc();
Mview.numRows = targetMap.NumMyElements();
Mview.origRowMap = &(M.RowMap());
Mview.rowMap = &targetMap;
Mview.colMap = &(M.ColMap());
Mview.domainMap = &(M.DomainMap());
Mview.importColMap = NULL;
int i;
int numRemote =0;
int N = Mview.rowMap->NumMyElements();
if(Mrowmap.SameAs(targetMap)) {
numRemote = 0;
Mview.targetMapToOrigRow.resize(N);
for(i=0;i<N; i++) Mview.targetMapToOrigRow[i]=i;
return 0;
}
else if(prototypeImporter && prototypeImporter->SourceMap().SameAs(M.RowMap()) && prototypeImporter->TargetMap().SameAs(targetMap)){
numRemote = prototypeImporter->NumRemoteIDs();
Mview.targetMapToOrigRow.resize(N); Mview.targetMapToOrigRow.assign(N,-1);
Mview.targetMapToImportRow.resize(N); Mview.targetMapToImportRow.assign(N,-1);
const int * PermuteToLIDs = prototypeImporter->PermuteToLIDs();
const int * PermuteFromLIDs = prototypeImporter->PermuteFromLIDs();
const int * RemoteLIDs = prototypeImporter->RemoteLIDs();
for(i=0; i<prototypeImporter->NumSameIDs();i++)
Mview.targetMapToOrigRow[i] = i;
// NOTE: These are reversed on purpose since we're doing a reverse map.
for(i=0; i<prototypeImporter->NumPermuteIDs();i++)
Mview.targetMapToOrigRow[PermuteToLIDs[i]] = PermuteFromLIDs[i];
for(i=0; i<prototypeImporter->NumRemoteIDs();i++)
Mview.targetMapToImportRow[RemoteLIDs[i]] = i;
}
else
throw std::runtime_error("import_only: This routine only works if you either have the right map or no prototypeImporter");
if (numProcs < 2) {
if (Mview.numRemote > 0) {
std::cerr << "EpetraExt::MatrixMatrix::Multiply ERROR, numProcs < 2 but "
<< "attempting to import remote matrix rows."<<std::endl;
return(-1);
}
//If only one processor we don't need to import any remote rows, so return.
return(0);
}
#ifdef ENABLE_MMM_TIMINGS
MM = Teuchos::rcp(new TimeMonitor(*TimeMonitor::getNewTimer(tpref + std::string("EpetraExt: MMM Ionly Import-1"))));
#endif
const int * RemoteLIDs = prototypeImporter->RemoteLIDs();
//Create a map that describes the remote rows of M that we need.
int_type* MremoteRows = numRemote>0 ? new int_type[prototypeImporter->NumRemoteIDs()] : 0;
for(i=0; i<prototypeImporter->NumRemoteIDs(); i++)
MremoteRows[i] = (int_type) targetMap.GID64(RemoteLIDs[i]);
LightweightMap MremoteRowMap((int_type) -1, numRemote, MremoteRows, (int_type)Mrowmap.IndexBase64());
#ifdef ENABLE_MMM_TIMINGS
MM = Teuchos::rcp(new TimeMonitor(*TimeMonitor::getNewTimer(tpref + std::string("EpetraExt: MMM Ionly Import-2"))));
#endif
//Create an importer with target-map MremoteRowMap and
//source-map Mrowmap.
RemoteOnlyImport * Rimporter=0;
Rimporter = new RemoteOnlyImport(*prototypeImporter,MremoteRowMap);
#ifdef ENABLE_MMM_TIMINGS
MM = Teuchos::rcp(new TimeMonitor(*TimeMonitor::getNewTimer(tpref + std::string("EpetraExt: MMM Ionly Import-3"))));
#endif
Mview.importMatrix = new LightweightCrsMatrix(M,*Rimporter,SortGhosts,label);
#ifdef ENABLE_MMM_TIMINGS
MM = Teuchos::rcp(new TimeMonitor(*TimeMonitor::getNewTimer(tpref + std::string("EpetraExt: MMM Ionly Import-4"))));
#endif
#ifdef ENABLE_MMM_STATISTICS
printMultiplicationStatistics(Rimporter, label + std::string(" I&X MMM"));
#endif
// Cleanup
delete Rimporter;
delete [] MremoteRows;
return(0);
}
// Statistics printing routines for when ENABLE_MMM_STATISTICS is enabled
void PrintMultiplicationStatistics(Epetra_Import * Transfer, const std::string &label);
void PrintMultiplicationStatistics(Epetra_Export * Transfer, const std::string &label);
}//namespace EpetraExt
#endif
|