parallel_sort.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2018 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 #ifndef LIBMESH_PARALLEL_SORT_H
20 #define LIBMESH_PARALLEL_SORT_H
21 
22 // Local Includes
23 #include "libmesh/parallel.h"
24 #include "libmesh/libmesh_common.h"
26 
27 // C++ Includes
28 #include <vector>
29 
30 namespace libMesh
31 {
32 
33 
34 namespace Parallel
35 {
52 template <typename KeyType, typename IdxType=unsigned int>
53 class Sort : public ParallelObject
54 {
55 public:
65  std::vector<KeyType> & d);
66 
67 
74  void sort();
75 
81  const std::vector<KeyType> & bin();
82 
83 private:
84 
89 
94 
99 
105  std::vector<KeyType> & _data;
106 
112  std::vector<IdxType> _local_bin_sizes;
113 
120  std::vector<KeyType> _my_bin;
121 
127  void binsort ();
128 
135  void communicate_bins();
136 
142  void sort_local_bin();
143 
144 };
145 }
146 
147 } // namespace libMesh
148 
149 #endif // LIBMESH_PARALLEL_SORT_H
const std::vector< KeyType > & bin()
const processor_id_type _proc_id
Definition: parallel_sort.h:93
uint8_t processor_id_type
Definition: id_types.h:99
const Parallel::Communicator & comm() const
std::vector< KeyType > & _data
std::vector< IdxType > _local_bin_sizes
const processor_id_type _n_procs
Definition: parallel_sort.h:88
std::vector< KeyType > _my_bin
An object whose state is distributed along a set of processors.
Object for performing parallel sorts using MPI.
Definition: parallel_sort.h:53
Sort(const Parallel::Communicator &comm, std::vector< KeyType > &d)
Definition: parallel_sort.C:43