-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathleaf_engine.h
More file actions
192 lines (154 loc) · 6.35 KB
/
Copy pathleaf_engine.h
File metadata and controls
192 lines (154 loc) · 6.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*
* This file is a part of TiledArray.
* Copyright (C) 2014 Virginia Tech
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Justus Calvin
* Department of Chemistry, Virginia Tech
*
* leaf_engine.h
* Mar 31, 2014
*
*/
#ifndef TILEDARRAY_EXPRESSIONS_LEAF_ENGINE_H__INCLUDED
#define TILEDARRAY_EXPRESSIONS_LEAF_ENGINE_H__INCLUDED
#include <TiledArray/dist_eval/array_eval.h>
#include <TiledArray/expressions/expr_engine.h>
namespace TiledArray {
namespace expressions {
/// Leaf expression engine
/// \tparam Derived The derived class type
template <typename Derived>
class LeafEngine : public ExprEngine<Derived> {
public:
// Class hierarchy typedefs
typedef LeafEngine<Derived> LeafEngine_; ///< This class type
typedef ExprEngine<Derived> ExprEngine_; ///< Base class type
// Argument typedefs
typedef typename EngineTrait<Derived>::array_type
array_type; ///< The left-hand expression type
// Operational typedefs
typedef typename EngineTrait<Derived>::value_type
value_type; ///< Tensor value type
typedef
typename EngineTrait<Derived>::op_type op_type; ///< Tile operation type
typedef
typename EngineTrait<Derived>::policy policy; ///< The result policy type
typedef typename EngineTrait<Derived>::dist_eval_type
dist_eval_type; ///< This expression's distributed evaluator type
// Meta data typedefs
typedef typename EngineTrait<Derived>::size_type size_type; ///< Size type
typedef typename EngineTrait<Derived>::trange_type
trange_type; ///< Tiled range type type
typedef typename EngineTrait<Derived>::shape_type
shape_type; ///< Tensor shape type
typedef typename EngineTrait<Derived>::pmap_interface
pmap_interface; ///< Process map interface type
static constexpr bool consumable = EngineTrait<Derived>::consumable;
static constexpr unsigned int leaves = EngineTrait<Derived>::leaves;
protected:
// Import base class variables to this scope
using ExprEngine_::implicit_permute_inner_;
using ExprEngine_::implicit_permute_outer_;
using ExprEngine_::indices_;
using ExprEngine_::perm_;
using ExprEngine_::pmap_;
using ExprEngine_::shape_;
using ExprEngine_::trange_;
using ExprEngine_::world_;
array_type array_; ///< The array object
public:
/// Engine constructor
/// \param expr The argument expression
template <typename D>
LeafEngine(const Expr<D>& expr)
: ExprEngine_(expr), array_(expr.derived().array_value()) {
indices_ = BipartiteIndexList(expr.derived().annotation());
}
// Import base class variables to this scope
using ExprEngine_::derived;
/// Set the index list for this expression
/// This function is a noop since the index list is fixed.
void perm_indices(const BipartiteIndexList&) {}
/// Initialize the index list of this expression
/// This function only checks for valid index lists.
/// \param target_indices The target index list for this expression
void init_indices(const BipartiteIndexList& target_indices) {
#ifndef NDEBUG
if (!target_indices.is_permutation(indices_)) {
if (TiledArray::get_default_world().rank() == 0) {
TA_USER_ERROR_MESSAGE(
"The array index list is not compatible with the expected "
"output:"
<< "\n expected = " << target_indices
<< "\n array = " << indices_);
}
TA_EXCEPTION(
"Target index list is not a permutation of the given array index "
"list "
"list.");
}
#endif // NDEBUG
}
/// Initialize the index list of this expression
/// This function is a noop since the index list is fixed.
void init_indices() {}
/// \return the indices this subtree can supply (Phase E up-pass): for a
/// leaf, simply its annotation (set at construction, valid before init)
const BipartiteIndexList& available_indices() const { return indices_; }
/// \return the layout this subtree prefers for producing the index set of
/// \p demand: a leaf accepts any ordering (the consumer aligns against the
/// fixed annotation by permutation), so the demand is returned unchanged
const BipartiteIndexList& preferred_layout(
const BipartiteIndexList& demand) const {
return demand;
}
void init_distribution(World* world,
const std::shared_ptr<const pmap_interface>& pmap) {
ExprEngine_::init_distribution(world, (pmap ? pmap : array_.pmap()));
}
/// Non-permuting tiled range factory function
/// \return The result tiled range
trange_type make_trange() const { return array_.trange(); }
/// Permuting tiled range factory function
/// \param perm The permutation to be applied to the array
/// \return The result shape
trange_type make_trange(const Permutation& perm) const {
return perm * array_.trange();
}
/// Non-permuting shape factory function
/// \return The result shape
shape_type make_shape() { return array_.shape(); }
/// Permuting shape factory function
/// \param perm The permutation to be applied to the array
/// \return The result shape
shape_type make_shape(const Permutation& perm) {
return array_.shape().perm(perm);
}
/// Construct the distributed evaluator for array
dist_eval_type make_dist_eval() const {
// Define the distributed evaluator implementation type
typedef TiledArray::detail::ArrayEvalImpl<array_type, op_type, policy>
impl_type;
/// Create the pimpl for the distributed evaluator
std::shared_ptr<impl_type> pimpl =
std::make_shared<impl_type>(array_, *world_, trange_, shape_, pmap_,
outer(perm_), ExprEngine_::make_op());
return dist_eval_type(pimpl);
}
}; // class LeafEngine
} // namespace expressions
} // namespace TiledArray
#endif // TILEDARRAY_EXPRESSIONS_LEAF_ENGINE_H__INCLUDED