BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
tensor_descriptor.h
Go to the documentation of this file.
1 #ifndef BLACKCAT_NEURALNETWORKS_POLYMORPHIC_LAYERS_TENSOR_DESCRIPTOR_H_
2 #define BLACKCAT_NEURALNETWORKS_POLYMORPHIC_LAYERS_TENSOR_DESCRIPTOR_H_
3 
4 #include "../../../blackcat/tensors.h"
5 
6 namespace bc {
7 namespace nn {
8 
9 template<
10  class ValueType,
11  class SystemTag,
12  class TensorDimension,
13  class AllocatorType>
15 
16  using value_type = ValueType;
17  using system_tag = SystemTag;
18  using allocator_type = AllocatorType;
19 
22 
25 
26  using tensor_type = bc::Tensor<
28  value_type,
30 
33  value_type,
35 };
36 
37 }
38 }
39 
40 
41 #endif
Definition: tensor_descriptor.h:14
Definition: constexpr_int.h:14
Definition: dim.h:17
ValueType value_type
Definition: tensor_descriptor.h:16
AllocatorType allocator_type
Definition: tensor_descriptor.h:18
static constexpr int value
Definition: constexpr_int.h:16
SystemTag system_tag
Definition: tensor_descriptor.h:17
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22