distribution.hpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  1. // Copyright 2004 The Trustees of Indiana University.
  2. // Use, modification and distribution is subject to the Boost Software
  3. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // Authors: Douglas Gregor
  6. // Peter Gottschling
  7. // Andrew Lumsdaine
  8. #ifndef BOOST_PARALLEL_DISTRIBUTION_HPP
  9. #define BOOST_PARALLEL_DISTRIBUTION_HPP
  10. #ifndef BOOST_GRAPH_USE_MPI
  11. #error "Parallel BGL files should not be included unless <boost/graph/use_mpi.hpp> has been included"
  12. #endif
  13. #include <cstddef>
  14. #include <vector>
  15. #include <algorithm>
  16. #include <numeric>
  17. #include <boost/assert.hpp>
  18. #include <boost/iterator/counting_iterator.hpp>
  19. #include <boost/random/uniform_int.hpp>
  20. #include <boost/shared_ptr.hpp>
  21. #include <typeinfo>
  22. namespace boost { namespace parallel {
  23. template<typename ProcessGroup, typename SizeType = std::size_t>
  24. class variant_distribution
  25. {
  26. public:
  27. typedef typename ProcessGroup::process_id_type process_id_type;
  28. typedef typename ProcessGroup::process_size_type process_size_type;
  29. typedef SizeType size_type;
  30. private:
  31. struct basic_distribution
  32. {
  33. virtual ~basic_distribution() {}
  34. virtual size_type block_size(process_id_type, size_type) const = 0;
  35. virtual process_id_type in_process(size_type) const = 0;
  36. virtual size_type local(size_type) const = 0;
  37. virtual size_type global(size_type) const = 0;
  38. virtual size_type global(process_id_type, size_type) const = 0;
  39. virtual void* address() = 0;
  40. virtual const void* address() const = 0;
  41. virtual const std::type_info& type() const = 0;
  42. };
  43. template<typename Distribution>
  44. struct poly_distribution : public basic_distribution
  45. {
  46. explicit poly_distribution(const Distribution& distribution)
  47. : distribution_(distribution) { }
  48. virtual size_type block_size(process_id_type id, size_type n) const
  49. { return distribution_.block_size(id, n); }
  50. virtual process_id_type in_process(size_type i) const
  51. { return distribution_(i); }
  52. virtual size_type local(size_type i) const
  53. { return distribution_.local(i); }
  54. virtual size_type global(size_type n) const
  55. { return distribution_.global(n); }
  56. virtual size_type global(process_id_type id, size_type n) const
  57. { return distribution_.global(id, n); }
  58. virtual void* address() { return &distribution_; }
  59. virtual const void* address() const { return &distribution_; }
  60. virtual const std::type_info& type() const { return typeid(Distribution); }
  61. private:
  62. Distribution distribution_;
  63. };
  64. public:
  65. variant_distribution() { }
  66. template<typename Distribution>
  67. variant_distribution(const Distribution& distribution)
  68. : distribution_(new poly_distribution<Distribution>(distribution)) { }
  69. size_type block_size(process_id_type id, size_type n) const
  70. { return distribution_->block_size(id, n); }
  71. process_id_type operator()(size_type i) const
  72. { return distribution_->in_process(i); }
  73. size_type local(size_type i) const
  74. { return distribution_->local(i); }
  75. size_type global(size_type n) const
  76. { return distribution_->global(n); }
  77. size_type global(process_id_type id, size_type n) const
  78. { return distribution_->global(id, n); }
  79. operator bool() const { return distribution_; }
  80. void clear() { distribution_.reset(); }
  81. template<typename T>
  82. T* as()
  83. {
  84. if (distribution_->type() == typeid(T))
  85. return static_cast<T*>(distribution_->address());
  86. else
  87. return 0;
  88. }
  89. template<typename T>
  90. const T* as() const
  91. {
  92. if (distribution_->type() == typeid(T))
  93. return static_cast<T*>(distribution_->address());
  94. else
  95. return 0;
  96. }
  97. private:
  98. shared_ptr<basic_distribution> distribution_;
  99. };
  100. struct block
  101. {
  102. template<typename LinearProcessGroup>
  103. explicit block(const LinearProcessGroup& pg, std::size_t n)
  104. : id(process_id(pg)), p(num_processes(pg)), n(n) { }
  105. // If there are n elements in the distributed data structure, returns the number of elements stored locally.
  106. template<typename SizeType>
  107. SizeType block_size(SizeType n) const
  108. { return (n / p) + ((std::size_t)(n % p) > id? 1 : 0); }
  109. // If there are n elements in the distributed data structure, returns the number of elements stored on processor ID
  110. template<typename SizeType, typename ProcessID>
  111. SizeType block_size(ProcessID id, SizeType n) const
  112. { return (n / p) + ((ProcessID)(n % p) > id? 1 : 0); }
  113. // Returns the processor on which element with global index i is stored
  114. template<typename SizeType>
  115. SizeType operator()(SizeType i) const
  116. {
  117. SizeType cutoff_processor = n % p;
  118. SizeType cutoff = cutoff_processor * (n / p + 1);
  119. if (i < cutoff) return i / (n / p + 1);
  120. else return cutoff_processor + (i - cutoff) / (n / p);
  121. }
  122. // Find the starting index for processor with the given id
  123. template<typename ID>
  124. std::size_t start(ID id) const
  125. {
  126. std::size_t estimate = id * (n / p + 1);
  127. ID cutoff_processor = n % p;
  128. if (id < cutoff_processor) return estimate;
  129. else return estimate - (id - cutoff_processor);
  130. }
  131. // Find the local index for the ith global element
  132. template<typename SizeType>
  133. SizeType local(SizeType i) const
  134. {
  135. SizeType owner = (*this)(i);
  136. return i - start(owner);
  137. }
  138. // Returns the global index of local element i
  139. template<typename SizeType>
  140. SizeType global(SizeType i) const
  141. { return global(id, i); }
  142. // Returns the global index of the ith local element on processor id
  143. template<typename ProcessID, typename SizeType>
  144. SizeType global(ProcessID id, SizeType i) const
  145. { return i + start(id); }
  146. private:
  147. std::size_t id; //< The ID number of this processor
  148. std::size_t p; //< The number of processors
  149. std::size_t n; //< The size of the problem space
  150. };
  151. // Block distribution with arbitrary block sizes
  152. struct uneven_block
  153. {
  154. typedef std::vector<std::size_t> size_vector;
  155. template<typename LinearProcessGroup>
  156. explicit uneven_block(const LinearProcessGroup& pg, const std::vector<std::size_t>& local_sizes)
  157. : id(process_id(pg)), p(num_processes(pg)), local_sizes(local_sizes)
  158. {
  159. BOOST_ASSERT(local_sizes.size() == p);
  160. local_starts.resize(p + 1);
  161. local_starts[0] = 0;
  162. std::partial_sum(local_sizes.begin(), local_sizes.end(), &local_starts[1]);
  163. n = local_starts[p];
  164. }
  165. // To do maybe: enter local size in each process and gather in constructor (much handier)
  166. // template<typename LinearProcessGroup>
  167. // explicit uneven_block(const LinearProcessGroup& pg, std::size_t my_local_size)
  168. // If there are n elements in the distributed data structure, returns the number of elements stored locally.
  169. template<typename SizeType>
  170. SizeType block_size(SizeType) const
  171. { return local_sizes[id]; }
  172. // If there are n elements in the distributed data structure, returns the number of elements stored on processor ID
  173. template<typename SizeType, typename ProcessID>
  174. SizeType block_size(ProcessID id, SizeType) const
  175. { return local_sizes[id]; }
  176. // Returns the processor on which element with global index i is stored
  177. template<typename SizeType>
  178. SizeType operator()(SizeType i) const
  179. {
  180. BOOST_ASSERT (i >= (SizeType) 0 && i < (SizeType) n); // check for valid range
  181. size_vector::const_iterator lb = std::lower_bound(local_starts.begin(), local_starts.end(), (std::size_t) i);
  182. return ((SizeType)(*lb) == i ? lb : --lb) - local_starts.begin();
  183. }
  184. // Find the starting index for processor with the given id
  185. template<typename ID>
  186. std::size_t start(ID id) const
  187. {
  188. return local_starts[id];
  189. }
  190. // Find the local index for the ith global element
  191. template<typename SizeType>
  192. SizeType local(SizeType i) const
  193. {
  194. SizeType owner = (*this)(i);
  195. return i - start(owner);
  196. }
  197. // Returns the global index of local element i
  198. template<typename SizeType>
  199. SizeType global(SizeType i) const
  200. { return global(id, i); }
  201. // Returns the global index of the ith local element on processor id
  202. template<typename ProcessID, typename SizeType>
  203. SizeType global(ProcessID id, SizeType i) const
  204. { return i + start(id); }
  205. private:
  206. std::size_t id; //< The ID number of this processor
  207. std::size_t p; //< The number of processors
  208. std::size_t n; //< The size of the problem space
  209. std::vector<std::size_t> local_sizes; //< The sizes of all blocks
  210. std::vector<std::size_t> local_starts; //< Lowest global index of each block
  211. };
  212. struct oned_block_cyclic
  213. {
  214. template<typename LinearProcessGroup>
  215. explicit oned_block_cyclic(const LinearProcessGroup& pg, std::size_t size)
  216. : id(process_id(pg)), p(num_processes(pg)), size(size) { }
  217. template<typename SizeType>
  218. SizeType block_size(SizeType n) const
  219. {
  220. return block_size(id, n);
  221. }
  222. template<typename SizeType, typename ProcessID>
  223. SizeType block_size(ProcessID id, SizeType n) const
  224. {
  225. SizeType all_blocks = n / size;
  226. SizeType extra_elements = n % size;
  227. SizeType everyone_gets = all_blocks / p;
  228. SizeType extra_blocks = all_blocks % p;
  229. SizeType my_blocks = everyone_gets + (p < extra_blocks? 1 : 0);
  230. SizeType my_elements = my_blocks * size
  231. + (p == extra_blocks? extra_elements : 0);
  232. return my_elements;
  233. }
  234. template<typename SizeType>
  235. SizeType operator()(SizeType i) const
  236. {
  237. return (i / size) % p;
  238. }
  239. template<typename SizeType>
  240. SizeType local(SizeType i) const
  241. {
  242. return ((i / size) / p) * size + i % size;
  243. }
  244. template<typename SizeType>
  245. SizeType global(SizeType i) const
  246. { return global(id, i); }
  247. template<typename ProcessID, typename SizeType>
  248. SizeType global(ProcessID id, SizeType i) const
  249. {
  250. return ((i / size) * p + id) * size + i % size;
  251. }
  252. private:
  253. std::size_t id; //< The ID number of this processor
  254. std::size_t p; //< The number of processors
  255. std::size_t size; //< Block size
  256. };
  257. struct twod_block_cyclic
  258. {
  259. template<typename LinearProcessGroup>
  260. explicit twod_block_cyclic(const LinearProcessGroup& pg,
  261. std::size_t block_rows, std::size_t block_columns,
  262. std::size_t data_columns_per_row)
  263. : id(process_id(pg)), p(num_processes(pg)),
  264. block_rows(block_rows), block_columns(block_columns),
  265. data_columns_per_row(data_columns_per_row)
  266. { }
  267. template<typename SizeType>
  268. SizeType block_size(SizeType n) const
  269. {
  270. return block_size(id, n);
  271. }
  272. template<typename SizeType, typename ProcessID>
  273. SizeType block_size(ProcessID id, SizeType n) const
  274. {
  275. // TBD: This is really lame :)
  276. int result = -1;
  277. while (n > 0) {
  278. --n;
  279. if ((*this)(n) == id && (int)local(n) > result) result = local(n);
  280. }
  281. ++result;
  282. // std::cerr << "Block size of id " << id << " is " << result << std::endl;
  283. return result;
  284. }
  285. template<typename SizeType>
  286. SizeType operator()(SizeType i) const
  287. {
  288. SizeType result = get_block_num(i) % p;
  289. // std::cerr << "Item " << i << " goes on processor " << result << std::endl;
  290. return result;
  291. }
  292. template<typename SizeType>
  293. SizeType local(SizeType i) const
  294. {
  295. // Compute the start of the block
  296. std::size_t block_num = get_block_num(i);
  297. // std::cerr << "Item " << i << " is in block #" << block_num << std::endl;
  298. std::size_t local_block_num = block_num / p;
  299. std::size_t block_start = local_block_num * block_rows * block_columns;
  300. // Compute the offset into the block
  301. std::size_t data_row = i / data_columns_per_row;
  302. std::size_t data_col = i % data_columns_per_row;
  303. std::size_t block_offset = (data_row % block_rows) * block_columns
  304. + (data_col % block_columns);
  305. // std::cerr << "Item " << i << " maps to local index " << block_start+block_offset << std::endl;
  306. return block_start + block_offset;
  307. }
  308. template<typename SizeType>
  309. SizeType global(SizeType i) const
  310. {
  311. // Compute the (global) block in which this element resides
  312. SizeType local_block_num = i / (block_rows * block_columns);
  313. SizeType block_offset = i % (block_rows * block_columns);
  314. SizeType block_num = local_block_num * p + id;
  315. // Compute the position of the start of the block (globally)
  316. SizeType block_start = block_num * block_rows * block_columns;
  317. std::cerr << "Block " << block_num << " starts at index " << block_start
  318. << std::endl;
  319. // Compute the row and column of this block
  320. SizeType block_row = block_num / (data_columns_per_row / block_columns);
  321. SizeType block_col = block_num % (data_columns_per_row / block_columns);
  322. SizeType row_in_block = block_offset / block_columns;
  323. SizeType col_in_block = block_offset % block_columns;
  324. std::cerr << "Local index " << i << " is in block at row " << block_row
  325. << ", column " << block_col << ", in-block row " << row_in_block
  326. << ", in-block col " << col_in_block << std::endl;
  327. SizeType result = block_row * block_rows + block_col * block_columns
  328. + row_in_block * block_rows + col_in_block;
  329. std::cerr << "global(" << i << "@" << id << ") = " << result
  330. << " =? " << local(result) << std::endl;
  331. BOOST_ASSERT(i == local(result));
  332. return result;
  333. }
  334. private:
  335. template<typename SizeType>
  336. std::size_t get_block_num(SizeType i) const
  337. {
  338. std::size_t data_row = i / data_columns_per_row;
  339. std::size_t data_col = i % data_columns_per_row;
  340. std::size_t block_row = data_row / block_rows;
  341. std::size_t block_col = data_col / block_columns;
  342. std::size_t blocks_in_row = data_columns_per_row / block_columns;
  343. std::size_t block_num = block_col * blocks_in_row + block_row;
  344. return block_num;
  345. }
  346. std::size_t id; //< The ID number of this processor
  347. std::size_t p; //< The number of processors
  348. std::size_t block_rows; //< The # of rows in each block
  349. std::size_t block_columns; //< The # of columns in each block
  350. std::size_t data_columns_per_row; //< The # of columns per row of data
  351. };
  352. class twod_random
  353. {
  354. template<typename RandomNumberGen>
  355. struct random_int
  356. {
  357. explicit random_int(RandomNumberGen& gen) : gen(gen) { }
  358. template<typename T>
  359. T operator()(T n) const
  360. {
  361. uniform_int<T> distrib(0, n-1);
  362. return distrib(gen);
  363. }
  364. private:
  365. RandomNumberGen& gen;
  366. };
  367. public:
  368. template<typename LinearProcessGroup, typename RandomNumberGen>
  369. explicit twod_random(const LinearProcessGroup& pg,
  370. std::size_t block_rows, std::size_t block_columns,
  371. std::size_t data_columns_per_row,
  372. std::size_t n,
  373. RandomNumberGen& gen)
  374. : id(process_id(pg)), p(num_processes(pg)),
  375. block_rows(block_rows), block_columns(block_columns),
  376. data_columns_per_row(data_columns_per_row),
  377. global_to_local(n / (block_rows * block_columns))
  378. {
  379. std::copy(make_counting_iterator(std::size_t(0)),
  380. make_counting_iterator(global_to_local.size()),
  381. global_to_local.begin());
  382. random_int<RandomNumberGen> rand(gen);
  383. std::random_shuffle(global_to_local.begin(), global_to_local.end(), rand);
  384. }
  385. template<typename SizeType>
  386. SizeType block_size(SizeType n) const
  387. {
  388. return block_size(id, n);
  389. }
  390. template<typename SizeType, typename ProcessID>
  391. SizeType block_size(ProcessID id, SizeType n) const
  392. {
  393. // TBD: This is really lame :)
  394. int result = -1;
  395. while (n > 0) {
  396. --n;
  397. if ((*this)(n) == id && (int)local(n) > result) result = local(n);
  398. }
  399. ++result;
  400. // std::cerr << "Block size of id " << id << " is " << result << std::endl;
  401. return result;
  402. }
  403. template<typename SizeType>
  404. SizeType operator()(SizeType i) const
  405. {
  406. SizeType result = get_block_num(i) % p;
  407. // std::cerr << "Item " << i << " goes on processor " << result << std::endl;
  408. return result;
  409. }
  410. template<typename SizeType>
  411. SizeType local(SizeType i) const
  412. {
  413. // Compute the start of the block
  414. std::size_t block_num = get_block_num(i);
  415. // std::cerr << "Item " << i << " is in block #" << block_num << std::endl;
  416. std::size_t local_block_num = block_num / p;
  417. std::size_t block_start = local_block_num * block_rows * block_columns;
  418. // Compute the offset into the block
  419. std::size_t data_row = i / data_columns_per_row;
  420. std::size_t data_col = i % data_columns_per_row;
  421. std::size_t block_offset = (data_row % block_rows) * block_columns
  422. + (data_col % block_columns);
  423. // std::cerr << "Item " << i << " maps to local index " << block_start+block_offset << std::endl;
  424. return block_start + block_offset;
  425. }
  426. private:
  427. template<typename SizeType>
  428. std::size_t get_block_num(SizeType i) const
  429. {
  430. std::size_t data_row = i / data_columns_per_row;
  431. std::size_t data_col = i % data_columns_per_row;
  432. std::size_t block_row = data_row / block_rows;
  433. std::size_t block_col = data_col / block_columns;
  434. std::size_t blocks_in_row = data_columns_per_row / block_columns;
  435. std::size_t block_num = block_col * blocks_in_row + block_row;
  436. return global_to_local[block_num];
  437. }
  438. std::size_t id; //< The ID number of this processor
  439. std::size_t p; //< The number of processors
  440. std::size_t block_rows; //< The # of rows in each block
  441. std::size_t block_columns; //< The # of columns in each block
  442. std::size_t data_columns_per_row; //< The # of columns per row of data
  443. std::vector<std::size_t> global_to_local;
  444. };
  445. class random_distribution
  446. {
  447. template<typename RandomNumberGen>
  448. struct random_int
  449. {
  450. explicit random_int(RandomNumberGen& gen) : gen(gen) { }
  451. template<typename T>
  452. T operator()(T n) const
  453. {
  454. uniform_int<T> distrib(0, n-1);
  455. return distrib(gen);
  456. }
  457. private:
  458. RandomNumberGen& gen;
  459. };
  460. public:
  461. template<typename LinearProcessGroup, typename RandomNumberGen>
  462. random_distribution(const LinearProcessGroup& pg, RandomNumberGen& gen,
  463. std::size_t n)
  464. : base(pg, n), local_to_global(n), global_to_local(n)
  465. {
  466. std::copy(make_counting_iterator(std::size_t(0)),
  467. make_counting_iterator(n),
  468. local_to_global.begin());
  469. random_int<RandomNumberGen> rand(gen);
  470. std::random_shuffle(local_to_global.begin(), local_to_global.end(), rand);
  471. for (std::vector<std::size_t>::size_type i = 0; i < n; ++i)
  472. global_to_local[local_to_global[i]] = i;
  473. }
  474. template<typename SizeType>
  475. SizeType block_size(SizeType n) const
  476. { return base.block_size(n); }
  477. template<typename SizeType, typename ProcessID>
  478. SizeType block_size(ProcessID id, SizeType n) const
  479. { return base.block_size(id, n); }
  480. template<typename SizeType>
  481. SizeType operator()(SizeType i) const
  482. {
  483. return base(global_to_local[i]);
  484. }
  485. template<typename SizeType>
  486. SizeType local(SizeType i) const
  487. {
  488. return base.local(global_to_local[i]);
  489. }
  490. template<typename ProcessID, typename SizeType>
  491. SizeType global(ProcessID p, SizeType i) const
  492. {
  493. return local_to_global[base.global(p, i)];
  494. }
  495. template<typename SizeType>
  496. SizeType global(SizeType i) const
  497. {
  498. return local_to_global[base.global(i)];
  499. }
  500. private:
  501. block base;
  502. std::vector<std::size_t> local_to_global;
  503. std::vector<std::size_t> global_to_local;
  504. };
  505. } } // end namespace boost::parallel
  506. #endif // BOOST_PARALLEL_DISTRIBUTION_HPP