BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
unaryfunction.h
Go to the documentation of this file.
1 
2 #ifndef BLACKCAT_NEURALNETWORK_UNARYFUNCTION_H_
3 #define BLACKCAT_NEURALNETWORK_UNARYFUNCTION_H_
4 
5 #include "layer_base.h"
6 #include <string>
7 
8 namespace bc {
9 namespace nn {
10 
11 template<
12  class SystemTag,
13  class ValueType,
14  class Functor,
15  class InputDimension = bc::traits::Integer<1>>
16 struct Function:
17  Layer_Base<
18  Function<SystemTag, ValueType, Functor, InputDimension>,
19  Tensor_Descriptor<ValueType, SystemTag, InputDimension>>
20 {
21  using system_tag = SystemTag;
22  using value_type = ValueType;
25 
28  using input_tensor_dim = InputDimension;
29  using output_tensor_dim = InputDimension;
30 
31  using typename parent_type::shape_type;
32 
33  Functor function;
34 
35  Function(shape_type inputs, Functor function=Functor()):
36  parent_type(bc_get_classname_of(function), inputs, inputs),
37  function(function) {}
38 
39  template<class Matrix>
40  auto forward_propagation(const Matrix& x) {
41  return function(x);
42  }
43 
44  template<class X, class Delta>
45  auto back_propagation(const X& x, const Delta& dy) {
46  return function.dx(x) % dy;
47  }
48 };
49 
50 
51 template<class ValueType, class SystemTag, class Functor>
52 Function<SystemTag, ValueType, Functor> function(SystemTag system_tag, int inputs, Functor function=Functor()) {
53  return Function<SystemTag, ValueType, Functor>(bc::Dim<1>{inputs}, function);
54 }
55 
56 template<class SystemTag, class Functor>
57 auto function(SystemTag system_tag, int inputs, Functor function=Functor()) {
59 }
60 
61 
62 template<class ValueType, class SystemTag, class Functor, int X>
63 Function<SystemTag, ValueType, Functor> function(SystemTag system_tag, Dim<X> shape, Functor function=Functor()) {
65 }
66 
67 template<class SystemTag, class Functor, int X>
68 auto function(SystemTag system_tag, bc::Dim<X> shape, Functor function=Functor()) {
70 }
71 
72 
73 }
74 }
75 
76 #endif
bc::Dim< input_tensor_dim::value > shape_type
Definition: layer_base.h:95
SystemTag system_tag
Definition: unaryfunction.h:21
const char * bc_get_classname_of(const T &arg)
Definition: common.h:330
Definition: constexpr_int.h:14
Definition: layer_base.h:86
auto forward_propagation(const Matrix &x)
Definition: unaryfunction.h:40
ValueType value_type
Definition: unaryfunction.h:22
Function(shape_type inputs, Functor function=Functor())
Definition: unaryfunction.h:35
InputDimension input_tensor_dim
Definition: unaryfunction.h:28
Functor function
Definition: unaryfunction.h:33
BCINLINE auto shape(Integers... ints)
Definition: shape.h:264
InputDimension output_tensor_dim
Definition: unaryfunction.h:29
Definition: unaryfunction.h:16
auto back_propagation(const X &x, const Delta &dy)
Definition: unaryfunction.h:45
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
Definition: recycle_allocator.h:57