/usr/include/trilinos/MLAPI_Space.h is in libtrilinos-ml-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 | #ifndef ML_SPACE_H
#define ML_SPACE_H
/*!
\file MLAPI_Space.h
\brief Class to specify the number and distribution among processes of elements.
\author Marzio Sala, D-INFK/ETHZ.
\date Last updated on Mar-06.
*/
/* ******************************************************************** */
/* See the file COPYRIGHT for a complete copyright notice, contact */
/* person and disclaimer. */
/* ******************************************************************** */
#include "ml_common.h"
#include "ml_comm.h"
#include "MLAPI_Error.h"
#include "MLAPI_Workspace.h"
#include "MLAPI_BaseObject.h"
#include "Teuchos_RefCountPtr.hpp"
#include "Epetra_Map.h"
#include "Epetra_IntSerialDenseVector.h"
#include <iomanip>
namespace MLAPI {
/*!
\class Space
\brief Specifies the number and distribution among processes of elements.
\author Marzio Sala, SNL 9214
\date Last updated on Feb-05.
*/
class Space : public BaseObject {
public:
//@{ \name Constructors and Destructors
//! Default constructor, defines an empty space.
Space()
{
NumMyElements_ = 0;
NumGlobalElements_ = 0;
IsLinear_ = false;
Offset_ = 0;
}
//! Constructor with specified number of global and local elements.
/*!
Constructs a space with linear distribution.
\param NumGlobalElements - (In) number of global elements.
\param NumMyElements - (In) number of local elements. If different
from -1, then eithere NumGlobalElements == -1,
or the sum across of processors of NumMyElements
equals NumGlobalElements
*/
Space(const int NumGlobalElements, const int NumMyElements = -1)
{
Reshape(NumGlobalElements, NumMyElements);
}
//! Constructor with specified Epetra_Map
Space(const Epetra_Map& Map)
{
Reshape(Map.NumGlobalElements(), Map.NumMyElements(),
Map.MyGlobalElements());
}
//! Constructor for non-linear distributions
/*!
\param NumGlobalElements - (In) number of global elements. Set to
-1 to compute it automatically.
\param NumMyElements - (In) number of local elements. Cannot be set
to -1.
\param MyGlobalElements - (In) contains the global ID of each local node.
\note Global ID always starts from 0.
*/
Space(const int NumGlobalElements, const int NumMyElements,
const int* MyGlobalElements)
{
Reshape(NumGlobalElements, NumMyElements, MyGlobalElements);
}
//! Copy constructor.
Space(const Space& RHS)
{
NumMyElements_ = RHS.GetNumMyElements();
NumGlobalElements_ = RHS.GetNumGlobalElements();
Offset_ = RHS.GetOffset();
IsLinear_ = RHS.IsLinear();
RCPMyGlobalElements_ = RHS.GetRCPMyGlobalElements();
}
//! Destructor.
~Space() {};
//@}
//@{ \name Reshape methods
//! Resets \c this object.
void Reshape()
{
NumMyElements_ = 0;
NumGlobalElements_ = 0;
IsLinear_ = true;
Offset_ = -1;
RCPMyGlobalElements_ = Teuchos::null;
}
//! Resets the dimension of the space by specifying the local number of elements.
void Reshape(const int NumGlobalElements, const int NumMyElements = -1)
{
if (NumGlobalElements <= 0 && NumMyElements < 0)
ML_THROW("NumGlobalElements = " + GetString(NumGlobalElements) +
" and NumMyElements = " + GetString(NumMyElements), -1);
if (NumMyElements == -1) {
NumMyElements_ = NumGlobalElements / GetNumProcs();
if (GetMyPID() == 0)
NumMyElements_ += NumGlobalElements % GetNumProcs();
}
else
NumMyElements_ = NumMyElements;
NumGlobalElements_ = ML_Comm_GsumInt(GetML_Comm(),NumMyElements_);
if (NumGlobalElements != -1) {
if (NumGlobalElements != NumGlobalElements_)
ML_THROW("Specified # of global elements the sum of local elements (" +
GetString(NumGlobalElements) + " vs. " +
GetString(NumGlobalElements_), -1);
}
Offset_ = ML_gpartialsum_int(NumMyElements_,GetML_Comm());
IsLinear_ = true;
}
//! Reset the dimension of the space by specifying the local number of elements and their global numbering (starting from 0).
void Reshape(const int NumGlobalElements, const int NumMyElements,
const int* MyGlobalElements)
{
if (NumGlobalElements <= 0 && NumMyElements < 0)
ML_THROW("NumGlobalElements = " + GetString(NumGlobalElements) +
" and NumMyElements = " + GetString(NumMyElements), -1);
if (NumMyElements == -1) {
NumMyElements_ = NumGlobalElements / GetNumProcs();
if (GetMyPID() == 0)
NumMyElements_ += NumGlobalElements % GetNumProcs();
}
else
NumMyElements_ = NumMyElements;
NumGlobalElements_ = ML_Comm_GsumInt(GetML_Comm(),NumMyElements_);
if (NumGlobalElements != -1) {
if (NumGlobalElements != NumGlobalElements_)
ML_THROW("Specified # of global elements the sum of local elements (" +
GetString(NumGlobalElements) + " vs. " +
GetString(NumGlobalElements_), -1);
}
RCPMyGlobalElements_ = Teuchos::rcp(new Epetra_IntSerialDenseVector);
RCPMyGlobalElements_->Resize(NumMyElements_);
for (int i = 0 ; i < NumMyElements_ ; ++i)
(*RCPMyGlobalElements_)[i] = MyGlobalElements[i];
Offset_ = -1; // not set
IsLinear_ = false;
}
//@}
//@{ \name Overloaded operators
//! Operator =.
Space& operator=(const Space& RHS)
{
NumMyElements_ = RHS.GetNumMyElements();
NumGlobalElements_ = RHS.GetNumGlobalElements();
Offset_ = RHS.GetOffset();
IsLinear_ = RHS.IsLinear();
RCPMyGlobalElements_ = RHS.GetRCPMyGlobalElements();
return(*this);
}
//! Returns \c true if \c this Space is equivalent to \c RHS.
/*
\note this is a cheap check
*/
inline bool operator== (const Space& RHS) const
{
if (IsLinear() != RHS.IsLinear())
return(false);
if (GetNumGlobalElements() != RHS.GetNumGlobalElements())
return(false);
if (GetNumMyElements() != RHS.GetNumMyElements())
return(false);
return(true);
}
//! Returns \c true if \c this Space is not equivalent to \c RHS.
/*
\note this is a cheap check
*/
inline bool operator!= (const Space& RHS) const
{
return(!(*this == RHS));
}
//! Sets the Label of \c this object.
Space& operator=(const std::string& Label)
{
SetLabel(Label);
return(*this);
}
//! Returns the global ID of local element \c i.
inline int operator() (int i) const
{
#ifdef MLAPI_CHECK
if ((i < 0) || (i >= NumMyElements_))
ML_THROW("not valid index, " + GetString(i), -1);
#endif
if (IsLinear())
return(i + GetOffset());
else
return((*RCPMyGlobalElements_)[i]);
}
// @}
// @{ \name Get and Set methods
//! Returns the local number of elements on the calling process.
int GetNumMyElements() const
{
return(NumMyElements_);
}
//! Returns the global number of elements.
int GetNumGlobalElements() const
{
return(NumGlobalElements_);
}
//! Returns the global ID of the first element on the calling process (for linear distributions only).
inline int GetOffset() const
{
return(Offset_);
}
//! Returns \c true if the decomposition among processors is linear.
inline bool IsLinear() const
{
return(IsLinear_);
}
//! Returns a pointer to the list of global nodes.
inline const Teuchos::RefCountPtr<Epetra_IntSerialDenseVector>
GetRCPMyGlobalElements() const
{
return(RCPMyGlobalElements_);
}
// @}
// @{ \name Miscellanous methods
//! Prints on std::ostream basic information about \c this object.
std::ostream& Print(std::ostream& os,
const bool verbose = true) const
{
if (GetMyPID() == 0) {
os << std::endl;
os << "*** MLAPI::Space ***" << std::endl;
os << "Label = " << GetLabel() << std::endl;
os << "NumMyElements() = " << GetNumMyElements() << std::endl;
os << "NumGlobalElements() = " << GetNumGlobalElements() << std::endl;
os << "Offset = " << GetOffset() << std::endl;
if (IsLinear())
os << "Distribution is linear" << std::endl;
else
os << "Distribution is not linear" << std::endl;
os << std::endl;
}
if (verbose) {
for (int iproc = 0 ; iproc < GetNumProcs() ; ++iproc) {
if (GetMyPID() == iproc) {
if (GetMyPID() == 0) {
os.width(10);
os << "ProcID";
os.width(20);
os << "LID";
os.width(20);
os << "GID" << std::endl << std::endl;
}
for (int i = 0 ; i < GetNumMyElements() ; ++i) {
os.width(10);
os << GetMyPID();
os.width(20);
os << i;
os.width(20);
os << (*this)(i) << std::endl;
}
}
Barrier();
}
Barrier();
if (GetMyPID() == 0)
os << std::endl;
}
Barrier();
return(os);
}
// @}
private:
//! Number of elements assigned to the calling processor.
int NumMyElements_;
//! Total number of elements.
int NumGlobalElements_;
//! If \c true, the decomposition among processors is linear.
bool IsLinear_;
//! GID of the first local element (for linear decompositions only).
int Offset_;
//! Container of global numbering of local elements.
Teuchos::RefCountPtr<Epetra_IntSerialDenseVector> RCPMyGlobalElements_;
};
} // namespace MLAPI
#endif
|