/usr/include/music/spatial.hh is in libmusic-dev 1.0.7-1.1build1.
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 | /*
* This file is part of MUSIC.
* Copyright (C) 2008, 2009 INCF
*
* MUSIC is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* MUSIC 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MUSIC_NEGOTIATOR_HH
#include <mpi.h>
#include <vector>
#include <memory>
#include <music/index_map.hh>
namespace MUSIC {
const int TRANSMITTED_INTERVALS_MAX = 10000;
class SpatialNegotiationData {
IndexInterval interval_;
int rank_;
public:
SpatialNegotiationData () { }
SpatialNegotiationData (IndexInterval i, int r)
: interval_ (i), rank_ (r) { }
SpatialNegotiationData (int b, int e, int l, int r)
: interval_ (b, e, l), rank_ (r) { }
const IndexInterval& interval () const { return interval_; }
int begin () const { return interval_.begin (); }
int end () const { return interval_.end (); }
void setEnd (int e) { interval_.setEnd (e); }
int local () const { return interval_.local (); }
void setLocal (int l) { interval_.setLocal (l); }
int rank () const { return rank_; }
};
typedef std::vector<SpatialNegotiationData> NegotiationIntervals;
class NegotiationIterator {
public:
class Implementation {
public:
virtual bool end () = 0;
virtual void operator++ () = 0;
virtual SpatialNegotiationData* dereference () = 0;
virtual Implementation* copy () = 0;
};
class IntervalTraversal : public Implementation {
NegotiationIntervals& buffer;
unsigned int interval;
public:
IntervalTraversal (NegotiationIntervals& buffer_)
: buffer (buffer_), interval (0) { }
bool end () { return interval == buffer.size (); }
void operator++ () { ++interval; }
SpatialNegotiationData* dereference () { return &buffer[interval]; }
virtual Implementation* copy () { return new IntervalTraversal (*this); }
};
class BufferTraversal : public Implementation {
std::vector<NegotiationIntervals>& buffers;
unsigned int buffer;
unsigned int interval;
void findInterval ();
public:
BufferTraversal (std::vector<NegotiationIntervals>& buffers);
bool end ();
void operator++ ();
SpatialNegotiationData* dereference ();
virtual Implementation* copy () { return new BufferTraversal (*this); }
};
private:
Implementation* implementation_;
SpatialNegotiationData current_;
bool end_;
public:
NegotiationIterator (Implementation* impl)
{ init (impl); }
NegotiationIterator (NegotiationIntervals& buffer)
{ init (new IntervalTraversal (buffer)); }
NegotiationIterator (std::vector<NegotiationIntervals>& buffers)
{ init (new BufferTraversal (buffers)); }
void init (Implementation* impl);
~NegotiationIterator ();
NegotiationIterator (const NegotiationIterator& i);
const NegotiationIterator& operator= (const NegotiationIterator& i);
bool end () { return end_; }
NegotiationIterator& operator++ ();
SpatialNegotiationData* operator-> ();
};
class Connector;
// The SpatialNegotiator negotiates with the remote application how
// to redistribute data over a port pair. This is done using the
// algorithm described in Djurfeldt and Ekeberg (2009) with memory
// complexity O (N / P) where N is the port width and P is the
// number of MPI processes.
class SpatialNegotiator {
protected:
MPI::Intracomm comm;
IndexMap* indices;
Index::Type type;
std::vector<NegotiationIntervals> remote;
int width;
int maxLocalWidth_;
unsigned int localRank;
unsigned int nProcesses;
Connector* connector_; // used only for debugging
public:
SpatialNegotiator (IndexMap* indices, Index::Type type);
virtual ~SpatialNegotiator ();
void negotiateWidth ();
int maxLocalWidth () { return maxLocalWidth_; }
NegotiationIterator wrapIntervals (IndexMap::iterator beg,
IndexMap::iterator end,
Index::Type type,
int rank);
void send (MPI::Comm& comm, int destRank,
NegotiationIntervals& intervals);
void receive (MPI::Comm& comm, int sourceRank,
NegotiationIntervals& intervals);
void allToAll (std::vector<NegotiationIntervals>& out,
std::vector<NegotiationIntervals>& in);
NegotiationIterator canonicalDistribution (int width, int nProcesses);
void intersectToBuffers (std::vector<NegotiationIntervals>& source,
std::vector<NegotiationIntervals>& dest,
std::vector<NegotiationIntervals>& buffers);
void intersectToBuffers (NegotiationIterator source,
NegotiationIterator dest,
std::vector<NegotiationIntervals>& buffers);
private:
void intersectToBuffers2 (NegotiationIterator source,
NegotiationIterator dest,
std::vector<NegotiationIntervals>& buffers);
public:
virtual NegotiationIterator negotiate (MPI::Intracomm comm,
MPI::Intercomm intercomm,
int remoteNProc,
Connector* connector) = 0;
};
class SpatialOutputNegotiator : public SpatialNegotiator {
std::vector<NegotiationIntervals> local;
std::vector<NegotiationIntervals> results;
public:
SpatialOutputNegotiator (IndexMap* indices, Index::Type type);
void negotiateWidth (MPI::Intercomm c);
NegotiationIterator negotiate (MPI::Intracomm comm,
MPI::Intercomm intercomm,
int remoteNProc,
Connector* connector);
};
class SpatialInputNegotiator : public SpatialNegotiator {
public:
SpatialInputNegotiator (IndexMap* indices, Index::Type type);
void negotiateWidth (MPI::Intercomm c);
NegotiationIterator negotiate (MPI::Intracomm comm,
MPI::Intercomm intercomm,
int remoteNProc,
Connector* connector);
};
}
#define MUSIC_NEGOTIATOR_HH
#endif
|