MADNESS 0.10.1
macrotaskpartitioner.h
Go to the documentation of this file.
1//
2// Created by Florian Bischoff on 12/10/20.
3//
4
5#ifndef MADNESS_MACROTASKPARTITIONER_H
6#define MADNESS_MACROTASKPARTITIONER_H
7
8#include<vector>
9#include<list>
10#include<string>
11#include<iomanip>
12#include<sstream>
14
15
16namespace madness {
17template<typename ... Ts>
18constexpr auto decay_types(std::tuple<Ts...> const &)
19-> std::tuple<std::remove_cv_t<std::remove_reference_t<Ts>>...>;
20
21template<typename T>
22using decay_tuple = decltype(decay_types(std::declval<T>()));
23
24template<typename Q> struct is_vector : std::false_type { };
25template<typename Q> struct is_vector<std::vector<Q>> : std::true_type { };
26
27/// given a tuple return the index of the first argument that is a vector of Function<T,NDIM>
28template<typename tupleT, std::size_t I>
29constexpr std::size_t get_index_of_first_vector_argument() {
30
31 typedef decay_tuple <tupleT> argtupleT; // removes const, &, etc
32
33 if constexpr(I >= std::tuple_size_v<tupleT>) {
34 // Last case, if nothing is left to iterate, then exit the function
35// MADNESS_EXCEPTION("there is no madness function vector argument in the list, cannot partition the tasks", 1);
36 return I;
37 } else {
38 using typeT = typename std::tuple_element<I, argtupleT>::type;// use decay types for determining a vector
39 if constexpr (is_vector<typeT>::value) {
40 return I;
41 } else {
42 // Going for next element.
43 return get_index_of_first_vector_argument<tupleT,I+1>();
44 }
45 }
46}
47
48/// given a tuple return the index of the second argument that is a vector of Function<T,NDIM>
49template<typename tupleT, std::size_t I>
50constexpr std::size_t get_index_of_second_vector_argument() {
51 constexpr std::size_t index0=get_index_of_first_vector_argument<tupleT,0>();
52 return get_index_of_first_vector_argument<tupleT,index0+1>();
53}
54
55class Batch_1D {
57
58public:
59 long begin=0, end=-1; ///< first and first past last index [begin,end)
60
62 Batch_1D(const Slice& s) : begin(s.start), end(s.end) {
63 MADNESS_CHECK(s.step==1);
64 }
65 Batch_1D(const long& begin, const long& end) : begin(begin), end(end) {}
66
67 bool operator==(const Batch_1D& other) const {
68 return (end==other.end && begin==other.begin);
69 }
70
71 long size() const {
72 return end - begin;
73 }
74
75 bool is_full_size() const {
76 return (begin==0 and end==-1);
77 }
78
79 /// select the relevant vector elements from the argument tuple
80 template<typename tupleT, std::size_t appearance>
81 tupleT copy_batch(const tupleT& arg) const {
82
83 constexpr std::size_t index = (appearance==0) ? get_index_of_first_vector_argument<tupleT,0>() :
84 get_index_of_second_vector_argument<tupleT,0>();
85 if constexpr (index>=std::tuple_size<tupleT>::value) {
86 MADNESS_CHECK(is_full_size()); // better: not set by user..
87 return arg;
88 } else {
89 auto v = std::get<index>(arg);
90 auto v_batch=copy_batch(v);
91 tupleT batched_arg = arg;
92 std::get<index>(batched_arg) = v_batch;
93 return batched_arg;
94 }
95 }
96
97 /// given vector v, copy vector elements of v_batch into vector
98 template<typename vecT>
99 vecT insert_batch(vecT v, const vecT& v_batch) const {
100 //MADNESS_CHECK(v_batch.size()==size_t(this->size()) or this->is_full_size());
101 std::copy(v_batch.begin(), v_batch.end(), v.begin()+begin);
102 return v;
103 }
104
105 /// given vector v, return those vector elements inside this batch
106 template<typename vecT>
107 vecT copy_batch(const vecT v) const {
108 vecT result_batch;
109 long end1 = (end > 0) ? end : v.end() - v.begin();
110 std::copy(v.begin() + begin, v.begin() + end1, std::back_inserter(result_batch));
111 return result_batch;
112 }
113
114 friend std::ostream& operator<<(std::ostream& os, const Batch_1D& batch) {
115 std::stringstream ss;
116 if (batch.is_full_size()) ss << "[ ---- )";
117 else ss << "[" << std::setw(3) << batch.begin << ", " << std::setw(3) << batch.end << ")";
118 os << ss.str();
119 return os;
120 }
121};
122
123/// a batch consists of a 2D-input batch and a 1D-output batch: K-batch <- (I-batch, J-batch)
124class Batch {
125public:
127 std::vector<Batch_1D> input;
129
130 Batch() {}
131 Batch(const Batch& other) {
132 *this=other;
133 }
134 Batch& operator=(const Batch& other) {
135 if (this==&other) return *this;
136 result=other.result;
137 input=other.input;
138 return *this;
139 }
140
143 : input{input1,input2}, result(result) {}
144
145 std::size_t size_of_input() const {
146 std::size_t result=1;
147 for (auto i: input) result*=i.size();
148 return result;
149 }
150
151 /// select the relevant vector elements from the argument tuple
152 template<typename tupleT>
153 tupleT copy_input_batch(const tupleT& arg) const {
154 if (input.size()==0) return arg;
155 tupleT arg1=input[0].template copy_batch<tupleT,0>(arg);
156 if (input.size()>1) arg1=input[1].template copy_batch<tupleT,1>(arg1);
157 MADNESS_CHECK(input.size()<=2);
158 return arg1;
159 }
160
161 /// copy v_batch into the result vector
162 template<typename vecT>
163 vecT insert_result_batch(vecT v, const vecT& v_batch) const {
164 return result.template insert_batch(v,v_batch);
165 }
166
167 /// pretty print this batch
168 friend std::ostream& operator<<(std::ostream& os, const Batch& batch) {
169 std::stringstream ss;
170 ss << batch.result<< " <-- ";
171 if (batch.input.size()>0) ss << batch.input[0];
172 if (batch.input.size()>1) ss << ", " << batch.input[1];
173 os << ss.str();
174 return os;
175 }
176};
177
178/// partition one (two) vectors into 1D (2D) batches.
179
180/// derive from this class and override the \it{do_partitioning} method if you want to implement
181/// your custom partitioner
183 friend class Batch;
184
185public:
186 typedef std::list<std::pair<Batch,double>> partitionT;
187 std::size_t min_batch_size=5; ///< minimum batch size
188 std::size_t max_batch_size = 10; ///< maximum batch size (for memory management)
189 std::size_t nsubworld=1; ///< number of worlds (try to have enough batches for all worlds)
190 std::string policy = "guided"; ///< how to partition the batches
191 std::size_t dimension = 1; ///< partition one or two vectors
192
194
196
198 nsubworld=n;
199 return *this;
200 }
201 MacroTaskPartitioner& set_policy(const std::string& n) {
202 policy=n;
203 return *this;
204 }
205 MacroTaskPartitioner& set_dimension(const std::size_t& n) {
206 dimension=n;
207 return *this;
208 }
211 return *this;
212 }
215 return *this;
216 }
217
218 /// this will be called by MacroTask, it will *always* partition first (and possibly second) vector of arguments
219 template<typename tupleT>
220 partitionT partition_tasks(const tupleT& argtuple) const {
221
222 constexpr std::size_t I1 = get_index_of_first_vector_argument<tupleT, 0>();
223 constexpr std::size_t I2 = get_index_of_second_vector_argument<tupleT, 1>();
224 std::size_t vsize1=1,vsize2=1;
225 if constexpr (I2 < std::tuple_size_v<tupleT>) { // found at least 2 vectors of madness functions
226 constexpr std::size_t I2 = get_index_of_second_vector_argument<tupleT, 0>();
227 vsize2 = std::get<I2>(argtuple).size();
228 }
229 if constexpr (I1 < std::tuple_size_v<tupleT>) { // found at least 1 vector
230 constexpr std::size_t I1 = get_index_of_first_vector_argument<tupleT, 0>();
231 vsize1 = std::get<I1>(argtuple).size();
232 } else {
233 std::string msg="confused partitioning dimension: "+std::to_string(dimension) +" typeid " + typeid(tupleT).name();
234 MADNESS_EXCEPTION(msg.c_str(),1);
235 }
236
237 return do_partitioning(vsize1,vsize2,policy);
238 }
239
240 /// override this if you want your own partitioning
241 virtual partitionT do_partitioning(const std::size_t& vsize1, const std::size_t& vsize2,
242 const std::string policy) const {
243 if (dimension == 1) {
244 return do_1d_partition(vsize1, policy);
245 } else if (dimension == 2) {
246 return do_2d_partition(vsize1, vsize2, policy);
247 }
248 return partitionT();
249 }
250
251 partitionT do_1d_partition(const std::size_t vsize, const std::string policy) const {
252 partitionT result;
253 if (policy == "guided") {
254 long begin = 0;
255 long end = 0;
256 while (end < long(vsize)) {
257 end += std::min(max_batch_size, std::max(min_batch_size, ((vsize - end) / nsubworld)));
258 end = std::min(end, long(vsize));
259 Batch batch(Batch_1D(begin, end),Batch_1D(begin,end));
260 double priority=MacroTaskPartitioner::compute_priority(batch);
261 result.push_back(std::make_pair(batch,priority));
262 begin = end;
263 }
264 } else {
265 std::string msg = "unknown partitioning policy: " + policy;
266 MADNESS_EXCEPTION(msg.c_str(), 1);
267 }
268 return result;
269 }
270
271 /// outer product of 2 1d-partitionings -- result batches correspond to first input batches
272
273 /// [begin1,end1) <-- [begin1,end1) [begin2,end2)
274 partitionT do_2d_partition(const std::size_t vsize, const std::size_t v2size, const std::string policy) const {
275 partitionT partition1=do_1d_partition(vsize,policy);
276 partitionT partition2=do_1d_partition(v2size,policy);
277 partitionT result;
278 for (auto p1 : partition1) {
279 for (auto p2 : partition2) {
280 Batch batch(p1.first.input[0],p2.first.input[0],p1.first.result);
281 double priority=compute_priority(batch);
282 result.push_back(std::make_pair(batch,priority));
283 }
284 }
285 return result;
286 }
287
288 virtual double compute_priority(const Batch& batch) const {
289 return batch.size_of_input();
290 }
291
292};
293
294}
295
296#endif //MADNESS_MACROTASKPARTITIONER_H
Definition macrotaskpartitioner.h:55
friend std::ostream & operator<<(std::ostream &os, const Batch_1D &batch)
Definition macrotaskpartitioner.h:114
Batch_1D(const long &begin, const long &end)
Definition macrotaskpartitioner.h:65
bool is_full_size() const
Definition macrotaskpartitioner.h:75
tupleT copy_batch(const tupleT &arg) const
select the relevant vector elements from the argument tuple
Definition macrotaskpartitioner.h:81
long size() const
Definition macrotaskpartitioner.h:71
vecT copy_batch(const vecT v) const
given vector v, return those vector elements inside this batch
Definition macrotaskpartitioner.h:107
long end
first and first past last index [begin,end)
Definition macrotaskpartitioner.h:59
Batch_1D(const Slice &s)
Definition macrotaskpartitioner.h:62
vecT insert_batch(vecT v, const vecT &v_batch) const
given vector v, copy vector elements of v_batch into vector
Definition macrotaskpartitioner.h:99
Batch_1D()
Definition macrotaskpartitioner.h:61
long begin
Definition macrotaskpartitioner.h:59
bool operator==(const Batch_1D &other) const
Definition macrotaskpartitioner.h:67
a batch consists of a 2D-input batch and a 1D-output batch: K-batch <- (I-batch, J-batch)
Definition macrotaskpartitioner.h:124
friend std::ostream & operator<<(std::ostream &os, const Batch &batch)
pretty print this batch
Definition macrotaskpartitioner.h:168
Batch(Batch_1D input1, Batch_1D input2, Batch_1D result)
Definition macrotaskpartitioner.h:142
Batch_1D result
Definition macrotaskpartitioner.h:128
vecT insert_result_batch(vecT v, const vecT &v_batch) const
copy v_batch into the result vector
Definition macrotaskpartitioner.h:163
Batch()
Definition macrotaskpartitioner.h:130
Batch(Batch_1D input1, Batch_1D result)
Definition macrotaskpartitioner.h:141
tupleT copy_input_batch(const tupleT &arg) const
select the relevant vector elements from the argument tuple
Definition macrotaskpartitioner.h:153
Batch(const Batch &other)
Definition macrotaskpartitioner.h:131
Batch & operator=(const Batch &other)
Definition macrotaskpartitioner.h:134
std::size_t size_of_input() const
Definition macrotaskpartitioner.h:145
std::vector< Batch_1D > input
Definition macrotaskpartitioner.h:127
partition one (two) vectors into 1D (2D) batches.
Definition macrotaskpartitioner.h:182
std::string policy
how to partition the batches
Definition macrotaskpartitioner.h:190
MacroTaskPartitioner & set_min_batch_size(const long &n)
Definition macrotaskpartitioner.h:209
virtual partitionT do_partitioning(const std::size_t &vsize1, const std::size_t &vsize2, const std::string policy) const
override this if you want your own partitioning
Definition macrotaskpartitioner.h:241
std::size_t nsubworld
number of worlds (try to have enough batches for all worlds)
Definition macrotaskpartitioner.h:189
std::list< std::pair< Batch, double > > partitionT
Definition macrotaskpartitioner.h:186
MacroTaskPartitioner & set_policy(const std::string &n)
Definition macrotaskpartitioner.h:201
partitionT partition_tasks(const tupleT &argtuple) const
this will be called by MacroTask, it will always partition first (and possibly second) vector of argu...
Definition macrotaskpartitioner.h:220
MacroTaskPartitioner & set_dimension(const std::size_t &n)
Definition macrotaskpartitioner.h:205
virtual ~MacroTaskPartitioner()
Definition macrotaskpartitioner.h:195
MacroTaskPartitioner & set_max_batch_size(const long &n)
Definition macrotaskpartitioner.h:213
std::size_t dimension
partition one or two vectors
Definition macrotaskpartitioner.h:191
MacroTaskPartitioner & set_nsubworld(const long &n)
Definition macrotaskpartitioner.h:197
MacroTaskPartitioner()
Definition macrotaskpartitioner.h:193
partitionT do_2d_partition(const std::size_t vsize, const std::size_t v2size, const std::string policy) const
outer product of 2 1d-partitionings – result batches correspond to first input batches
Definition macrotaskpartitioner.h:274
partitionT do_1d_partition(const std::size_t vsize, const std::string policy) const
Definition macrotaskpartitioner.h:251
virtual double compute_priority(const Batch &batch) const
Definition macrotaskpartitioner.h:288
std::size_t min_batch_size
minimum batch size
Definition macrotaskpartitioner.h:187
std::size_t max_batch_size
maximum batch size (for memory management)
Definition macrotaskpartitioner.h:188
A slice defines a sub-range or patch of a dimension.
Definition slice.h:103
Tensor< typename Tensor< T >::scalar_type > arg(const Tensor< T > &t)
Return a new tensor holding the argument of each element of t (complex types only)
Definition tensor.h:2503
static const double v
Definition hatom_sf_dirac.cc:20
Defines madness::MadnessException for exception handling.
#define MADNESS_CHECK(condition)
Check a condition — even in a release build the condition is always evaluated so it can have side eff...
Definition madness_exception.h:182
#define MADNESS_EXCEPTION(msg, value)
Macro for throwing a MADNESS exception.
Definition madness_exception.h:119
Namespace for all elements and tools of MADNESS.
Definition DFParameters.h:10
constexpr auto decay_types(std::tuple< Ts... > const &) -> std::tuple< std::remove_cv_t< std::remove_reference_t< Ts > >... >
constexpr std::size_t get_index_of_first_vector_argument()
given a tuple return the index of the first argument that is a vector of Function<T,...
Definition macrotaskpartitioner.h:29
decltype(decay_types(std::declval< T >())) decay_tuple
Definition macrotaskpartitioner.h:22
std::string name(const FuncType &type, const int ex=-1)
Definition ccpairfunction.h:28
constexpr std::size_t get_index_of_second_vector_argument()
given a tuple return the index of the second argument that is a vector of Function<T,...
Definition macrotaskpartitioner.h:50
Definition mraimpl.h:50
Definition macrotaskpartitioner.h:24
static const double_complex I
Definition tdse1d.cc:164