32 template<
class Index,
class Derived,
class...>
46 bc::traits::Integer<Index::value + 1>,
47 LayerChain<Index, Derived, CurrentLayer, Layers...>,
50 LayerChain<Index, Derived, CurrentLayer, Layers...>,
81 parent_type(layers...),
110 template<
class function>
void for_each(
function f) {
114 template<
class function>
void for_each(
function f)
const {
118 template<
class function,
class Arg>
123 template<
class function,
class Arg>
128 template<
class function,
class Arg>
133 template<
class function,
class Arg>
141 template<
int ADL=0>
const auto& head_impl(std::true_type )
const {
return *
this; }
142 template<
int ADL=0>
auto& head_impl(std::true_type ) {
return *
this; }
143 template<
int ADL=0>
const auto& head_impl(std::false_type)
const {
return prev().head(); }
144 template<
int ADL=0>
auto& head_impl(std::false_type) {
return prev().head(); }
146 template<
int ADL=0>
const auto& tail_impl(std::true_type )
const {
return *
this; }
147 template<
int ADL=0>
auto& tail_impl(std::true_type ) {
return *
this; }
148 template<
int ADL=0>
const auto& tail_impl(std::false_type)
const {
return next().tail(); }
149 template<
int ADL=0>
auto& tail_impl(std::false_type) {
return next().tail(); }
151 template<
int ADL=0>
const auto& next_impl(std::true_type )
const {
return static_cast<const parent_type&
>(*this); }
152 template<
int ADL=0>
auto& next_impl(std::true_type ) {
return static_cast<parent_type&
>(*this); }
153 template<
int ADL=0>
const auto& next_impl(std::false_type)
const {
return *
this; }
154 template<
int ADL=0>
auto& next_impl(std::false_type) {
return *
this; }
156 template<
int ADL=0>
const auto& prev_impl(std::true_type )
const {
return static_cast<const Derived&
>(*this); }
157 template<
int ADL=0>
auto& prev_impl(std::true_type ) {
return static_cast<Derived&
>(*this); }
158 template<
int ADL=0>
const auto& prev_impl(std::false_type)
const {
return *
this; }
159 template<
int ADL=0>
auto& prev_impl(std::false_type) {
return *
this; }
161 template<
class Function>
162 void for_each_impl(
Function f, std::true_type)
const {
164 this->next().for_each(f);
167 template<
class Function>
168 void for_each_impl(
Function f, std::true_type) {
170 this->next().for_each(f);
173 template<
class Function>
174 void for_each_impl(
Function f, std::false_type)
const {
178 template<
class Function>
179 void for_each_impl(
Function f, std::false_type) {
183 template<
class Function,
class Arg>
184 auto for_each_propagate_impl(
Function f, Arg&& arg, std::true_type)
const {
185 return next().for_each_propagate(f, f(layer(), arg));
188 template<
class Function,
class Arg>
189 auto for_each_propagate_impl(
Function f, Arg&& arg, std::false_type)
const {
190 return f(layer(), arg);
193 template<
class Function,
class Arg>
194 auto for_each_propagate_impl(
Function f, Arg&& arg, std::true_type) {
195 return next().for_each_propagate(f, f(layer(), arg));
198 template<
class Function,
class Arg>
199 auto for_each_propagate_impl(
Function f, Arg&& arg, std::false_type) {
200 return f(layer(), arg);
203 template<
class Function,
class Arg>
204 auto reverse_for_each_propagate_impl(
Function f, Arg&& arg, std::true_type)
const {
205 return prev().reverse_for_each_propagate(f, f(layer(), arg));
208 template<
class Function,
class Arg>
209 auto reverse_for_each_propagate_impl(
Function f, Arg&& arg, std::true_type) {
210 return prev().reverse_for_each_propagate(f, f(layer(), arg));
213 template<
class Function,
class Arg>
214 auto reverse_for_each_propagate_impl(
Function f, Arg&& arg, std::false_type) {
215 return f(layer(), arg);
218 template<
class Function,
class Arg>
219 auto reverse_for_each_propagate_impl(
Function f, Arg&& arg, std::false_type)
const {
220 return f(layer(), arg);
LayerChain(CurrentLayer f, Layers... layers)
Definition: layer_chain.h:80
const auto & prev() const
Definition: layer_chain.h:107
Definition: layer_chain.h:40
CurrentLayer type
Definition: layer_chain.h:71
bc::traits::truth_type< sizeof...(Layers)==0 > is_output_layer
Definition: layer_chain.h:76
Definition: constexpr_int.h:14
auto & next()
Definition: layer_chain.h:106
const auto & head() const
Definition: layer_chain.h:100
typename CurrentLayer::value_type value_type
Definition: layer_chain.h:72
auto & layer()
Definition: layer_chain.h:85
bc::traits::not_type< is_output_layer::value > is_not_output_layer
Definition: layer_chain.h:78
const auto & layer() const
Definition: layer_chain.h:84
bc::traits::truth_type< Index::value==0 > is_input_layer
Definition: layer_chain.h:75
bc::traits::not_type< is_input_layer::value > is_not_input_layer
Definition: layer_chain.h:77
conditional_t< cond, false_type, true_type > not_type
Definition: type_traits.h:52
auto for_each_propagate(function f, Arg &&arg) const
Definition: layer_chain.h:124
auto reverse_for_each_propagate(function f, Arg &&arg) const
Definition: layer_chain.h:134
Definition: type_traits.h:72
typename CurrentLayer::system_tag system_tag
Definition: layer_chain.h:73
const auto & tail() const
Definition: layer_chain.h:102
typename T::layer_type query_layer_type
Definition: layer_chain.h:11
auto for_each_propagate(function f, Arg &&arg)
Definition: layer_chain.h:119
Definition: layer_manager.h:17
auto reverse_for_each_propagate(function f, Arg &&arg)
Definition: layer_chain.h:129
Layer_Chain is an iterator-like object that connects different types of neural-network layers and def...
Definition: layer_chain.h:33
auto & head()
Definition: layer_chain.h:101
auto & prev()
Definition: layer_chain.h:108
conditional_t< Bool, true_type, false_type > truth_type
Definition: type_traits.h:49
const auto & next() const
Definition: layer_chain.h:105
void for_each(function f) const
Definition: layer_chain.h:114
Definition: unaryfunction.h:16
void for_each(function f)
Definition: layer_chain.h:110
auto & tail()
Definition: layer_chain.h:103
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22