BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
blackcat
neural_networks
polymorphic_layers
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>
14
struct
tensor_descriptor
{
15
16
using
value_type
= ValueType;
17
using
system_tag
= SystemTag;
18
using
allocator_type
= AllocatorType;
19
20
using
tensor_dim
=
bc::traits::Integer<TensorDimension::value>
;
21
using
batched_tensor_dim
=
bc::traits::Integer<tensor_dim::value + 1>
;
22
23
using
shape_type
=
bc::Dim<tensor_dim::value>
;
24
using
batched_shape_type
=
bc::Dim<batched_tensor_dim::value>
;
25
26
using
tensor_type
=
bc::Tensor
<
27
tensor_dim::value
,
28
value_type
,
29
allocator_type
>;
30
31
using
batched_tensor_type
=
bc::Tensor
<
32
batched_tensor_dim::value
,
33
value_type
,
34
allocator_type
>;
35
};
36
37
}
38
}
39
40
41
#endif
bc::nn::tensor_descriptor
Definition:
tensor_descriptor.h:14
bc::traits::Integer
Definition:
constexpr_int.h:14
bc::Dim
Definition:
dim.h:17
bc::nn::tensor_descriptor::value_type
ValueType value_type
Definition:
tensor_descriptor.h:16
bc::tensors::Tensor_Base< bc::tensors::exprs::Array< bc::Shape< dim >, ValueType, Allocator > >
bc::nn::tensor_descriptor::allocator_type
AllocatorType allocator_type
Definition:
tensor_descriptor.h:18
bc::traits::Integer::value
static constexpr int value
Definition:
constexpr_int.h:16
bc::nn::tensor_descriptor::system_tag
SystemTag system_tag
Definition:
tensor_descriptor.h:17
bc
The Evaluator determines if an expression needs to be greedily optimized.
Definition:
algorithms.h:22
Generated by
1.8.13