OSDN Git Service

2009-09-17 Johannes Singler <singler@ira.uka.de>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / include / parallel / quicksort.h
1 // -*- C++ -*-
2
3 // Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the terms
7 // of the GNU General Public License as published by the Free Software
8 // Foundation; either version 3, or (at your option) any later
9 // version.
10
11 // This library is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // General Public License for more details.
15
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
19
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
23 // <http://www.gnu.org/licenses/>.
24
25 /** @file parallel/quicksort.h
26  *  @brief Implementation of a unbalanced parallel quicksort (in-place).
27  *  This file is a GNU parallel extension to the Standard C++ Library.
28  */
29
30 // Written by Johannes Singler.
31
32 #ifndef _GLIBCXX_PARALLEL_QUICKSORT_H
33 #define _GLIBCXX_PARALLEL_QUICKSORT_H 1
34
35 #include <parallel/parallel.h>
36 #include <parallel/partition.h>
37
38 namespace __gnu_parallel
39 {
40   /** @brief Unbalanced quicksort divide step.
41    *  @param __begin Begin iterator of subsequence.
42    *  @param __end End iterator of subsequence.
43    *  @param __comp Comparator.
44    *  @param __pivot_rank Desired __rank of the pivot.
45    *  @param __num_samples Choose pivot from that many samples.
46    *  @param __num_threads Number of threads that are allowed to work on
47    *  this part.
48    */
49   template<typename _RAIter, typename _Compare>
50     typename std::iterator_traits<_RAIter>::difference_type
51     __parallel_sort_qs_divide(_RAIter __begin,
52                             _RAIter __end,
53                             _Compare __comp, typename std::iterator_traits
54                             <_RAIter>::difference_type __pivot_rank,
55                             typename std::iterator_traits
56                             <_RAIter>::difference_type
57                             __num_samples, _ThreadIndex __num_threads)
58     {
59       typedef std::iterator_traits<_RAIter> _TraitsType;
60       typedef typename _TraitsType::value_type _ValueType;
61       typedef typename _TraitsType::difference_type _DifferenceType;
62
63       _DifferenceType __n = __end - __begin;
64       __num_samples = std::min(__num_samples, __n);
65
66       // Allocate uninitialized, to avoid default constructor.
67       _ValueType* __samples =
68         static_cast<_ValueType*>(::operator new(__num_samples
69                                                 * sizeof(_ValueType)));
70
71       for (_DifferenceType __s = 0; __s < __num_samples; ++__s)
72         {
73           const unsigned long long __index
74             = static_cast<unsigned long long>(__s) * __n / __num_samples;
75           ::new(&(__samples[__s])) _ValueType(__begin[__index]);
76         }
77
78       __gnu_sequential::sort(__samples, __samples + __num_samples, __comp);
79
80       _ValueType& pivot = __samples[__pivot_rank * __num_samples / __n];
81
82       __gnu_parallel::binder2nd<_Compare, _ValueType, _ValueType, bool>
83         __pred(__comp, pivot);
84       _DifferenceType __split =
85           __parallel_partition(__begin, __end, __pred, __num_threads);
86
87       ::operator delete(__samples);
88
89       return __split;
90     }
91
92   /** @brief Unbalanced quicksort conquer step.
93    *  @param __begin Begin iterator of subsequence.
94    *  @param __end End iterator of subsequence.
95    *  @param __comp Comparator.
96    *  @param __num_threads Number of threads that are allowed to work on
97    *  this part.
98    */
99   template<typename _RAIter, typename _Compare>
100     void
101     __parallel_sort_qs_conquer(_RAIter __begin,
102                              _RAIter __end,
103                              _Compare __comp,
104                              _ThreadIndex __num_threads)
105     {
106       typedef std::iterator_traits<_RAIter> _TraitsType;
107       typedef typename _TraitsType::value_type _ValueType;
108       typedef typename _TraitsType::difference_type _DifferenceType;
109
110       if (__num_threads <= 1)
111         {
112           __gnu_sequential::sort(__begin, __end, __comp);
113           return;
114         }
115
116       _DifferenceType __n = __end - __begin, __pivot_rank;
117
118       if (__n <= 1)
119         return;
120
121       _ThreadIndex __num_threads_left;
122
123       if ((__num_threads % 2) == 1)
124         __num_threads_left = __num_threads / 2 + 1;
125       else
126         __num_threads_left = __num_threads / 2;
127
128       __pivot_rank = __n * __num_threads_left / __num_threads;
129
130       _DifferenceType __split =
131         __parallel_sort_qs_divide(__begin, __end, __comp, __pivot_rank,
132                                 _Settings::get().sort_qs_num_samples_preset,
133                                 __num_threads);
134
135 #pragma omp parallel sections num_threads(2)
136       {
137 #pragma omp section
138         __parallel_sort_qs_conquer(__begin, __begin + __split,
139                                  __comp, __num_threads_left);
140 #pragma omp section
141         __parallel_sort_qs_conquer(__begin + __split, __end,
142                                  __comp, __num_threads - __num_threads_left);
143       }
144     }
145
146
147
148   /** @brief Unbalanced quicksort main call.
149    *  @param __begin Begin iterator of input sequence.
150    *  @param __end End iterator input sequence, ignored.
151    *  @param __comp Comparator.
152    *  @param __num_threads Number of threads that are allowed to work on
153    *  this part.
154    */
155   template<typename _RAIter, typename _Compare>
156     void
157     __parallel_sort_qs(_RAIter __begin,
158                      _RAIter __end,
159                      _Compare __comp,
160                      _ThreadIndex __num_threads)
161     {
162       _GLIBCXX_CALL(__n)
163
164       typedef std::iterator_traits<_RAIter> _TraitsType;
165       typedef typename _TraitsType::value_type _ValueType;
166       typedef typename _TraitsType::difference_type _DifferenceType;
167
168       _DifferenceType __n = __end - __begin;
169
170       // At least one element per processor.
171       if (__num_threads > __n)
172         __num_threads = static_cast<_ThreadIndex>(__n);
173
174       __parallel_sort_qs_conquer(
175         __begin, __begin + __n, __comp, __num_threads);
176     }
177
178 } //namespace __gnu_parallel
179
180 #endif /* _GLIBCXX_PARALLEL_QUICKSORT_H */