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
|
// Copyright (C) 2006 The Trustees of Indiana University.
// Use, modification and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
// Authors: Nick Edmonds
// Andrew Lumsdaine
#include <boost/graph/use_mpi.hpp>
#define CSR
#ifdef CSR
# include <boost/graph/distributed/compressed_sparse_row_graph.hpp>
#else
# include <boost/graph/distributed/adjacency_list.hpp>
#endif
#include <boost/config.hpp>
#include <boost/throw_exception.hpp>
#include <boost/graph/distributed/mpi_process_group.hpp>
#include <boost/graph/distributed/concepts.hpp>
#include <boost/graph/erdos_renyi_generator.hpp>
#include <boost/graph/distributed/betweenness_centrality.hpp>
#include <boost/random/linear_congruential.hpp>
#include <boost/graph/graphviz.hpp>
#include <boost/property_map/vector_property_map.hpp>
#include <boost/core/lightweight_test.hpp>
#ifdef BOOST_NO_EXCEPTIONS
void
boost::throw_exception(std::exception const& ex)
{
std::cout << ex.what() << std::endl;
abort();
}
#endif
/****************************************************************************
* Edge weight generator iterator *
****************************************************************************/
template<typename F, typename RandomGenerator>
class generator_iterator
{
public:
typedef std::input_iterator_tag iterator_category;
typedef typename F::result_type value_type;
typedef const value_type& reference;
typedef const value_type* pointer;
typedef void difference_type;
explicit
generator_iterator(RandomGenerator& gen, const F& f = F())
: f(f), gen(&gen)
{
value = this->f(gen);
}
reference operator*() const { return value; }
pointer operator->() const { return &value; }
generator_iterator& operator++()
{
value = f(*gen);
return *this;
}
generator_iterator operator++(int)
{
generator_iterator temp(*this);
++(*this);
return temp;
}
bool operator==(const generator_iterator& other) const
{ return f == other.f; }
bool operator!=(const generator_iterator& other) const
{ return !(*this == other); }
private:
F f;
RandomGenerator* gen;
value_type value;
};
template<typename F, typename RandomGenerator>
inline generator_iterator<F, RandomGenerator>
make_generator_iterator( RandomGenerator& gen, const F& f)
{ return generator_iterator<F, RandomGenerator>(gen, f); }
using namespace boost;
using boost::graph::distributed::mpi_process_group;
typedef int weight_type;
struct WeightedEdge {
WeightedEdge(weight_type weight = 0) : weight(weight) { }
weight_type weight;
template<typename Archiver>
void serialize(Archiver& ar, const unsigned int /*version*/)
{
ar & weight;
}
};
int main(int argc, char* argv[])
{
mpi::environment env(argc, argv);
#ifdef CSR
typedef compressed_sparse_row_graph<directedS, no_property, WeightedEdge,
no_property, distributedS<mpi_process_group> >
Graph;
typedef compressed_sparse_row_graph<directedS, no_property, WeightedEdge>
seqGraph;
#else
typedef adjacency_list<vecS,
distributedS<mpi_process_group, vecS>,
directedS,
no_property,
property<edge_weight_t, int> > Graph;
typedef adjacency_list<vecS, vecS, directedS, no_property,
property<edge_weight_t, int> > seqGraph;
#endif
typedef sorted_erdos_renyi_iterator<minstd_rand, Graph> ERIter;
int n = 100;
double prob = 0.1;
int C = 3;
minstd_rand gen;
gen.seed(1);
// NOTE: Weighted betweenness centrality only works with non-zero edge weights
// Build graphs
Graph g(edges_are_sorted, ERIter(gen, n, prob), ERIter(),
make_generator_iterator(gen, uniform_int<int>(1, C)),
n);
gen.seed(1); // Re-seed PRNG so we get the same graph
seqGraph sg(
#ifdef CSR
edges_are_sorted,
#endif
ERIter(gen, n, prob), ERIter(),
make_generator_iterator(gen, uniform_int<int>(1, C)),
n);
// Test Betweenness Centrality
typedef property_map<Graph, vertex_index_t>::const_type IndexMap;
typedef iterator_property_map<std::vector<int>::iterator, IndexMap>
CentralityMap;
std::vector<int> centralityS(num_vertices(g), 0);
CentralityMap centrality(centralityS.begin(), get(vertex_index, g));
brandes_betweenness_centrality(g, centrality);
std::vector<int> weightedCentralityS(num_vertices(g), 0);
CentralityMap weightedCentrality(weightedCentralityS.begin(), get(vertex_index, g));
brandes_betweenness_centrality(g, centrality_map(weightedCentrality).
#ifdef CSR
weight_map(get(&WeightedEdge::weight, g)));
#else
weight_map(get(edge_weight, g)));
#endif
int g_cpd = central_point_dominance(g, centrality);
//
// Non-distributed (embarassingly parallel) Betweenness Centrality
//
typedef boost::graph::parallel::process_group_type<Graph>::type
process_group_type;
process_group_type pg = process_group(g);
process_group_type::process_id_type id = process_id(pg);
process_group_type::process_size_type p = num_processes(pg);
typedef property_map<seqGraph, vertex_index_t>::const_type seqIndexMap;
typedef iterator_property_map<std::vector<int>::iterator, seqIndexMap> seqCentralityMap;
std::vector<int> nonDistributedCentralityS(num_vertices(sg), 0);
seqCentralityMap nonDistributedCentrality(nonDistributedCentralityS.begin(), get(vertex_index, sg));
std::vector<int> nonDistributedWeightedCentralityS(num_vertices(sg), 0);
seqCentralityMap nonDistributedWeightedCentrality(nonDistributedWeightedCentralityS.begin(),
get(vertex_index, sg));
non_distributed_brandes_betweenness_centrality(pg, sg, nonDistributedCentrality);
non_distributed_brandes_betweenness_centrality(pg, sg,
centrality_map(nonDistributedWeightedCentrality).
#ifdef CSR
weight_map(get(&WeightedEdge::weight, sg)));
#else
weight_map(get(edge_weight, sg)));
#endif
//
// Verify
//
std::vector<int> seqCentralityS(num_vertices(sg), 0);
seqCentralityMap seqCentrality(seqCentralityS.begin(), get(vertex_index, sg));
std::vector<int> seqWeightedCentralityS(num_vertices(sg), 0);
seqCentralityMap seqWeightedCentrality(seqWeightedCentralityS.begin(), get(vertex_index, sg));
brandes_betweenness_centrality(sg, seqCentrality);
brandes_betweenness_centrality(sg, centrality_map(seqWeightedCentrality).
#ifdef CSR
weight_map(get(&WeightedEdge::weight, sg)));
#else
weight_map(get(edge_weight, sg)));
#endif
int sg_cpd = central_point_dominance(sg, seqCentrality);
// Verify exact betweenness centrality
//
// We're cheating when we map vertices in g to vertices in sg
// since we know that g is using the block distribution here
typedef property_map<Graph, vertex_owner_t>::const_type OwnerMap;
typedef property_map<Graph, vertex_local_t>::const_type LocalMap;
OwnerMap owner = get(vertex_owner, g);
LocalMap local = get(vertex_local, g);
bool passed = true;
{
typedef graph_traits<Graph>::vertex_iterator vertex_iterator;
vertex_iterator v, v_end;
for (boost::tie(v, v_end) = vertices(g); v != v_end; ++v) {
if (get(centrality, *v) != seqCentralityS[(n/p) * get(owner, *v) + get(local, *v)]) {
std::cerr << " " << id << ": Error - centrality of " << get(local, *v) << "@" << get(owner, *v)
<< " does not match the sequential result (" << get(centrality, *v) << " vs. "
<< seqCentralityS[(n/p) * get(owner, *v) + get(local, *v)] << ")\n";
passed = false;
}
if (get(weightedCentrality, *v) != seqWeightedCentralityS[(n/p) * get(owner, *v) + get(local, *v)]) {
std::cerr << " " << id << ": Error - weighted centrality of " << get(local, *v) << "@" << get(owner, *v)
<< " does not match the sequential result (" << get(weightedCentrality, *v) << " vs. "
<< seqWeightedCentralityS[(n/p) * get(owner, *v) + get(local, *v)] << ")\n";
passed = false;
}
}
}
if (id == 0) {
typedef graph_traits<seqGraph>::vertex_iterator vertex_iterator;
vertex_iterator v, v_end;
for (boost::tie(v, v_end) = vertices(sg); v != v_end; ++v) {
if (get(seqCentrality, *v) != get(nonDistributedCentrality, *v)) {
std::cerr << " " << id << ": Error - non-distributed centrality of " << *v
<< " does not match the sequential result (" << get(nonDistributedCentrality, *v)
<< " vs. " << get(seqCentrality, *v) << ")\n";
passed = false;
}
if (get(seqWeightedCentrality, *v) != get(nonDistributedWeightedCentrality, *v)) {
std::cerr << " " << id << ": Error - non-distributed weighted centrality of " << *v
<< " does not match the sequential result (" << get(nonDistributedWeightedCentrality, *v)
<< " vs. " << get(seqCentrality, *v) << ")\n";
passed = false;
}
}
}
if (g_cpd != sg_cpd) {
passed = false;
std::cerr << "Central point dominance did not match the sequential result\n";
}
if (!passed)
MPI_Abort(MPI_COMM_WORLD, -1);
return boost::report_errors();
}
|