5#ifndef MADNESS_MACROTASKPARTITIONER_H
6#define MADNESS_MACROTASKPARTITIONER_H
17template<
typename ... Ts>
19-> std::tuple<std::remove_cv_t<std::remove_reference_t<Ts>>...>;
24template<
typename Q>
struct is_vector : std::false_type { };
25template<
typename Q>
struct is_vector<
std::vector<Q>> : std::true_type { };
28template<
typename tupleT, std::
size_t I>
31 typedef decay_tuple <tupleT> argtupleT;
33 if constexpr(
I >= std::tuple_size_v<tupleT>) {
38 using typeT =
typename std::tuple_element<I, argtupleT>::type;
43 return get_index_of_first_vector_argument<tupleT,I+1>();
49template<
typename tupleT, std::
size_t I>
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>();
80 template<
typename tupleT, std::
size_t appearance>
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) {
89 auto v = std::get<index>(
arg);
91 tupleT batched_arg =
arg;
92 std::get<index>(batched_arg) = v_batch;
98 template<
typename vecT>
101 std::copy(v_batch.begin(), v_batch.end(),
v.begin()+
begin);
106 template<
typename vecT>
109 long end1 = (
end > 0) ?
end :
v.end() -
v.begin();
110 std::copy(
v.begin() +
begin,
v.begin() + end1, std::back_inserter(result_batch));
115 std::stringstream ss;
117 else ss <<
"[" << std::setw(3) << batch.
begin <<
", " << std::setw(3) << batch.
end <<
")";
135 if (
this==&other)
return *
this;
152 template<
typename tupleT>
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);
162 template<
typename vecT>
164 return result.template insert_batch(
v,v_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];
219 template<
typename tupleT>
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>) {
226 constexpr std::size_t I2 = get_index_of_second_vector_argument<tupleT, 0>();
227 vsize2 = std::get<I2>(argtuple).size();
229 if constexpr (I1 < std::tuple_size_v<tupleT>) {
230 constexpr std::size_t I1 = get_index_of_first_vector_argument<tupleT, 0>();
231 vsize1 = std::get<I1>(argtuple).size();
233 std::string msg=
"confused partitioning dimension: "+std::to_string(
dimension) +
" typeid " +
typeid(tupleT).
name();
242 const std::string
policy)
const {
256 while (end <
long(vsize)) {
258 end = std::min(end,
long(vsize));
261 result.push_back(std::make_pair(batch,priority));
265 std::string msg =
"unknown partitioning policy: " +
policy;
278 for (
auto p1 : partition1) {
279 for (
auto p2 : partition2) {
280 Batch batch(p1.first.input[0],p2.first.input[0],p1.first.result);
282 result.push_back(std::make_pair(batch,priority));
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 macrotaskpartitioner.h:24
static const double_complex I
Definition tdse1d.cc:164