Zoltan2
|
This class provides geometric coordinates with optional weights to the Zoltan2 algorithm. More...
#include <Zoltan2_CoordinateModel.hpp>
Public Member Functions | |
CoordinateModel (const RCP< const VectorAdapter< user_t > > &ia, const RCP< const Environment > &env, const RCP< const Comm< int > > &comm, modelFlag_t &flags) | |
CoordinateModel (const RCP< const MatrixAdapter< user_t, userCoord_t > > &ia, const RCP< const Environment > &env, const RCP< const Comm< int > > &comm, modelFlag_t &flags) | |
CoordinateModel (const RCP< const GraphAdapter< user_t, userCoord_t > > &ia, const RCP< const Environment > &env, const RCP< const Comm< int > > &comm, modelFlag_t &flags) | |
CoordinateModel (const RCP< const MeshAdapter< user_t > > &ia, const RCP< const Environment > &env, const RCP< const Comm< int > > &comm, modelFlag_t &flags) | |
CoordinateModel (const RCP< const IdentifierAdapter< user_t > > &ia, const RCP< const Environment > &env, const RCP< const Comm< int > > &comm, modelFlag_t &flags) | |
int | getCoordinateDim () const |
Returns the dimension of the coordinates. More... | |
size_t | getLocalNumCoordinates () const |
Returns the number of coordinates on this process. More... | |
global_size_t | getGlobalNumCoordinates () const |
Returns the global number coordinates. More... | |
int | getNumWeightsPerCoordinate () const |
Returns the number (0 or greater) of weights per coordinate. More... | |
size_t | getCoordinates (ArrayView< const gno_t > &Ids, ArrayView< input_t > &xyz, ArrayView< input_t > &wgts) const |
Returns the coordinate ids, values and optional weights. More... | |
size_t | getLocalNumObjects () const |
Return the local number of objects. More... | |
size_t | getGlobalNumObjects () const |
Return the global number of objects. More... | |
Public Member Functions inherited from Zoltan2::Model< Adapter > | |
virtual | ~Model () |
Model () | |
This class provides geometric coordinates with optional weights to the Zoltan2 algorithm.
The template parameter is an Input Adapter. Input adapters are templated on the basic user input type.
Definition at line 71 of file Zoltan2_CoordinateModel.hpp.
|
inline |
Definition at line 89 of file Zoltan2_CoordinateModel.hpp.
|
inline |
Definition at line 102 of file Zoltan2_CoordinateModel.hpp.
|
inline |
Definition at line 120 of file Zoltan2_CoordinateModel.hpp.
|
inline |
Definition at line 138 of file Zoltan2_CoordinateModel.hpp.
|
inline |
Definition at line 151 of file Zoltan2_CoordinateModel.hpp.
|
inline |
Returns the dimension of the coordinates.
Definition at line 166 of file Zoltan2_CoordinateModel.hpp.
|
inline |
Returns the number of coordinates on this process.
Definition at line 170 of file Zoltan2_CoordinateModel.hpp.
|
inline |
Returns the global number coordinates.
Definition at line 174 of file Zoltan2_CoordinateModel.hpp.
|
inline |
Returns the number (0 or greater) of weights per coordinate.
Definition at line 178 of file Zoltan2_CoordinateModel.hpp.
|
inline |
Returns the coordinate ids, values and optional weights.
Ids | will on return point to the list of the global Ids for each coordinate on this process. |
xyz | on return is a list of getCoordinateDim() StridedData objects, each containing the coordinates for one dimension. If the coordinate dimension is three, then the coordinates for Ids[k] are xyz[0][k], xyz[1][k], xyz[2][k] . |
wgts | on return is a list of getNumWeightsPerCoordinate() StridedData objects, each containing the weights for one weight index. For the index , the weight for Ids[k] is wgts[d][k] . |
Memory for this data is allocated either by the user or the Model. The caller gets a view of the data.
Definition at line 202 of file Zoltan2_CoordinateModel.hpp.
|
inlinevirtual |
Return the local number of objects.
Return the local number of objects, which may be vertices, matrix rows, identifiers, coordinates, or mesh nodes or elements.
Implements Zoltan2::Model< Adapter >.
Definition at line 224 of file Zoltan2_CoordinateModel.hpp.
|
inlinevirtual |
Return the global number of objects.
Return the global number of objects, which may be vertices, matrix rows, identifiers, coordinates, or mesh nodes or elements.
Implements Zoltan2::Model< Adapter >.
Definition at line 229 of file Zoltan2_CoordinateModel.hpp.