BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
output_layer.h
Go to the documentation of this file.
1 /*
2  * FeedForward.cu
3  *
4  * Created on: Jan 28, 2018
5  * Author: joseph
6  */
7 
8 #ifndef OUTPUTas_CU
9 #define OUTPUTas_CU
10 
11 #include "layer_base.h"
12 
13 namespace bc {
14 namespace nn {
15 
16 template<class SystemTag, class ValueType>
17 struct Output_Layer:
18  Layer_Base<Output_Layer<SystemTag, ValueType>,
19  Tensor_Descriptor<ValueType, SystemTag, Integer<1>>>
20 {
21  using system_tag = SystemTag;
22  using value_type = ValueType;
26 
27  Output_Layer(int inputs):
28  parent_type(__func__, {inputs}, {inputs}) {}
29 
30  template <class Tensor>
31  const auto forward_propagation(const Tensor& x) {
32  return x.shallow_copy();
33  }
34 
35  template <class TensorX, class TensorY>
36  auto back_propagation(const TensorX& x, const TensorY& y) {
37  return x - y;
38  }
39 };
40 
41 #ifndef BC_CLING_JIT
42 template<class ValueType, class SystemTag>
45 }
46 template<class SystemTag>
47 auto output_layer(SystemTag system_tag, int inputs) {
49 }
50 #endif
51 
52 auto output_layer(int inputs) {
54  typename BLACKCAT_DEFAULT_SYSTEM_T::default_floating_point_type>(inputs);
55 }
56 
57 
58 }
59 }
60 
61 
62 
63 #endif /* FEEDFORWARD_CU_ */
Output_Layer< SystemTag, ValueType > output_layer(SystemTag system_tag, int inputs)
Definition: output_layer.h:43
ValueType value_type
Definition: output_layer.h:22
const auto forward_propagation(const Tensor &x)
Definition: output_layer.h:31
Definition: layer_base.h:86
#define BLACKCAT_DEFAULT_SYSTEM_T
Definition: common.h:49
Definition: output_layer.h:17
Output_Layer(int inputs)
Definition: output_layer.h:27
SystemTag system_tag
Definition: output_layer.h:21
auto back_propagation(const TensorX &x, const TensorY &y)
Definition: output_layer.h:36
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22