1 #ifndef BLACKCAT_NEURALNETWORKS_POLYMORHIC_LAYERS_LAYER_DESCRIPTOR_H_ 2 #define BLACKCAT_NEURALNETWORKS_POLYMORHIC_LAYERS_LAYER_DESCRIPTOR_H_ 7 template<
class OutputTensorDescriptor>
8 class Layer_Input_Base;
10 template<
class OutputTensorDescriptor>
11 struct Layer_Output_Base
38 template<
class InputTensorDescriptor>
41 using input_value_type =
typename InputTensorDescriptor::value_type;
42 using input_system_tag =
typename InputTensorDescriptor::system_tag;
43 using input_allocator_type =
typename InputTensorDescriptor::allocator_type;
44 using input_tensor_dim =
typename InputTensorDescriptor::tensor_dim;
46 using input_tensor_type =
typename InputTensorDescriptor::type;
47 using batched_input_tensor_type =
typename InputTensorDescriptor::batched_type;
53 prev_layer_type* m_prev_layer;
54 input_shape_type m_input_shape;
typename Tensor_Descriptor< ValueType, SystemTag, Integer< 3 > > ::tensor_dim output_tensor_dim
Definition: layer_base.h:32
const next_layer_type & next_layer() const
Definition: layer_descriptor.h:33
typename Tensor_Descriptor< ValueType, SystemTag, Integer< 3 > > ::type output_tensor_type
Definition: layer_base.h:34
next_layer_type & next_layer()
Definition: layer_descriptor.h:34
void set_next(next_layer_type &next)
Definition: layer_descriptor.h:31
typename Tensor_Descriptor< ValueType, SystemTag, Integer< 3 > > ::allocator_type output_allocator_type
Definition: layer_base.h:31
typename Tensor_Descriptor< ValueType, SystemTag, Integer< 3 > > ::system_tag output_system_tag
Definition: layer_base.h:30
output_shape_type output_shape() const
Definition: layer_descriptor.h:32
virtual ~Layer_Output_Base()
Definition: layer_descriptor.h:35
next_layer_type * m_next_layer
Definition: layer_base.h:42
typename Tensor_Descriptor< ValueType, SystemTag, Integer< 3 > > ::value_type output_value_type
Definition: layer_base.h:29
bc::Dim< output_tensor_dim::value > m_output_shape
Definition: layer_base.h:43
typename Tensor_Descriptor< ValueType, SystemTag, Integer< 3 > > ::batched_type batched_output_tensor_type
Definition: layer_base.h:35
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22