/usr/include/trilinos/Zoltan2_MachineRepresentation.hpp is in libtrilinos-zoltan2-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 | #ifndef _ZOLTAN2_MACHINEREPRESENTATION_HPP_
#define _ZOLTAN2_MACHINEREPRESENTATION_HPP_
#include <Teuchos_Comm.hpp>
#include <Zoltan2_MachineForTesting.hpp>
#include <Zoltan2_MachineTopoMgr.hpp>
#include <Zoltan2_MachineTopoMgrForTest.hpp>
//#define HAVE_ZOLTAN2_BGQTEST
namespace Zoltan2{
/*! \brief MachineRepresentation Class
* Base class for representing machine coordinates, networks, etc.
*/
template <typename pcoord_t, typename part_t>
class MachineRepresentation{
public:
#if defined(HAVE_ZOLTAN2_LDMS)
typedef MachineLDMS<pcoord_t,part_t> machine_t;
#elif defined(HAVE_ZOLTAN2_RCA)
typedef MachineRCA<pcoord_t,part_t> machine_t;
#elif defined(HAVE_ZOLTAN2_TOPOMANAGER)
typedef MachineTopoMgr<pcoord_t,part_t> machine_t;
#elif defined(HAVE_ZOLTAN2_BGQTEST)
typedef MachineBGQTest<pcoord_t,part_t> machine_t;
#else
typedef MachineForTesting<pcoord_t,part_t> machine_t;
#endif
/*! \brief Constructor MachineRepresentation Class
* \param comm_ Communication object.
*/
MachineRepresentation(const Teuchos::Comm<int> &comm) :
machine(new machine_t(comm)) { }
MachineRepresentation(const Teuchos::Comm<int> &comm, const Teuchos::ParameterList &pl ) :
machine(new machine_t(comm, pl)) { }
~MachineRepresentation() {delete machine;}
// Interface functions follow.
// They are just wrappers around the specific machine's functions.
/*! \brief indicates whether or not the machine has coordinates
*/
inline bool hasMachineCoordinates() const {
return machine->hasMachineCoordinates();
}
/*! \brief returns the dimension (number of coords per node) in the machine
*/
inline int getMachineDim() const { return machine->getMachineDim(); }
/*! \brief sets the number of unique coordinates in each machine dimension
* return true if coordinates are available
*/
inline bool getMachineExtent(int *nxyz) const {
return machine->getMachineExtent(nxyz);
}
/*! \brief if the machine has a wrap-around tourus link in each dimension.
* return true if the information is available
*/
bool getMachineExtentWrapArounds(bool *wrap_around) const {
return machine->getMachineExtentWrapArounds(wrap_around);
}
/*! \brief getMyCoordinate function
* set the machine coordinate xyz of the current process
* return true if current process' coordinates are available
*/
inline bool getMyMachineCoordinate(pcoord_t *xyz) const {
return machine->getMyMachineCoordinate(xyz);
}
/*! \brief getCoordinate function
* set the machine coordinate xyz of any rank process
* return true if coordinates are available by rank
*/
inline bool getMachineCoordinate(const int rank,
pcoord_t *xyz) const {
return machine->getMachineCoordinate(rank, xyz);
}
/*! \brief getCoordinate function
* set the machine coordinate xyz of any node by nodename
* return true if coordinates are available by nodename
*/
inline bool getMachineCoordinate(const char *nodename,
pcoord_t *xyz) const {
return machine->getMachineCoordinate(nodename, xyz);
}
/*! \brief getProcDim function
* set the coordinates of all ranks
* allCoords[i][j], i=0,...,getMachineDim(), j=0,...,getNumRanks(),
* is the i-th dimensional coordinate for rank j.
* return true if coordinates are available for all ranks
*/
inline bool getAllMachineCoordinatesView(pcoord_t **&allCoords) const {
return machine->getAllMachineCoordinatesView(allCoords);
}
/*! \brief return the number of ranks.
*/
inline int getNumRanks() const { return machine->getNumRanks(); }
inline bool getHopCount(int rank1, int rank2, pcoord_t &hops) const {
return machine->getHopCount(rank1, rank2, hops);
}
// KDD TODO: Add Graph interface and methods supporting full LDMS interface.
private:
machine_t *machine;
};
}
#endif
|