BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
common.h
Go to the documentation of this file.
1 /*
2  * common.h
3  *
4  * Created on: Jun 8, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCAT_NEURALNETWORKS_COMMON_H_
9 #define BLACKCAT_NEURALNETWORKS_COMMON_H_
10 
11 
12 namespace bc {
13 namespace nn {
14 
15 template<class ValueType, class SystemTag, class... AltAllocator>
17  bc::allocators::Recycle_Allocator<ValueType, SystemTag, AltAllocator...>;
18 
19 template<
20  class ValueType,
21  class SystemTag,
22  class NumDimension,
25 {
26  using value_type = ValueType;
27  using tensor_dim = NumDimension;
28  using allocator_type = AllocatorType;
29  using system_tag = SystemTag;
30 
33 };
34 
36 
37 struct Layer_Loader;
38 struct Momentum;
39 
41 
42 
44 
45 
46 static constexpr double default_learning_rate = 0.003;
47 
48 #ifndef BLACKCAT_DEFAULT_SYSTEM
49 #define BLACKCAT_DEFAULT_SYSTEM_T bc::host_tag
50 #else
51 #define BLACKCAT_DEFAULT_SYSTEM_T bc::BLACKCAT_DEFAULT_SYSTEM##_tag
52 #endif
53 
54 }
55 }
56 
57 //required to be below
58 #include "layers/layer_traits.h"
59 
60 #endif /* COMMON_H_ */
Definition: common.h:24
Definition: constexpr_int.h:14
Definition: layer_loader.h:19
Definition: polymorphic_allocator.h:127
Definition: momentum.h:16
Definition: common.h:26
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
Definition: recycle_allocator.h:57