BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
nonlinear.h
Go to the documentation of this file.
1 /*
2  * Nonlinear.h
3  *
4  * Created on: Jun 8, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCAT_NEURALNETWORK_NONLINEAR_H_
9 #define BLACKCAT_NEURALNETWORK_NONLINEAR_H_
10 
11 #include "unaryfunction.h"
12 
13 namespace bc {
14 namespace nn {
15 
16 #define BC_NONLINEAR_DEF(TypeName, funcName)\
17 auto funcName(bc::size_t inputs) {\
18  return Function<BLACKCAT_DEFAULT_SYSTEM_T,\
19  typename BLACKCAT_DEFAULT_SYSTEM_T::default_floating_point_type,\
20  bc::TypeName>(bc::Dim<1>{inputs}); \
21 }\
22 template<class ValueType, class SystemTag>\
23 auto funcName(SystemTag system, bc::size_t inputs) {\
24  return Function<SystemTag, ValueType, bc::TypeName>(bc::Dim<1>{inputs}); \
25 }\
26 template<class SystemTag>\
27 auto funcName(SystemTag system, bc::size_t inputs) {\
28  return Function<SystemTag, typename SystemTag::default_floating_point_type, bc::TypeName>(bc::Dim<1>{inputs}); \
29 }\
30 template<class ValueType, class SystemTag, int X>\
31 auto funcName(SystemTag system, bc::Dim<X> inputs) {\
32  return Function< \
33  SystemTag, \
34  ValueType, \
35  bc::TypeName, \
36  bc::traits::Integer<X>>(inputs); \
37 } \
38 template<class SystemTag, int X> \
39 auto funcName(SystemTag system, bc::Dim<X> inputs) { \
40  return Function< \
41  SystemTag, \
42  typename SystemTag::default_floating_point_type, \
43  bc::TypeName, \
44  bc::traits::Integer<X>>(inputs); \
45 }
46 
52 
53 #undef BC_NONLINEAR_DEF
54 }
55 }
56 
57 
58 #endif /* NONLINEAR_H_ */
auto softplus(bc::size_t inputs)
Definition: nonlinear.h:50
auto tanh(bc::size_t inputs)
Definition: nonlinear.h:47
Definition: cmath.h:178
auto logistic(bc::size_t inputs)
Definition: nonlinear.h:48
auto relu(bc::size_t inputs)
Definition: nonlinear.h:49
#define BC_NONLINEAR_DEF(TypeName, funcName)
Definition: nonlinear.h:16
auto mish(bc::size_t inputs)
Definition: nonlinear.h:51
Definition: cmath.h:73
Definition: cmath.h:163
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22