BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
blackcat
tensors
tensors.h
Go to the documentation of this file.
1
/* Project: BlackCat_Tensors
2
* Author: JosephJaspers
3
* Copyright 2018
4
*
5
* This Source Code Form is subject to the terms of the Mozilla Public
6
* License, v. 2.0. If a copy of the MPL was not distributed with this
7
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8
9
10
#ifndef BLACKCAT_TENSOR_ALIASES_H_
11
#define BLACKCAT_TENSOR_ALIASES_H_
12
13
#include "
common.h
"
14
#include "
tensor_base.h
"
15
#include "../allocator.h"
16
#include "
tensor_static_functions.h
"
17
18
namespace
bc
{
19
namespace
tensors {
20
namespace
detail {
21
22
template
<
class
T>
23
using
default_allocator
=
bc::Allocator<T, default_system_tag_t>
;
24
25
template
<
int
X>
26
using
default_shape
=
bc::Shape<X>
;
27
28
}
//end of ns detail
29
}
//end of ns tensors
30
31
template
<
32
int
dim
,
33
class
ValueType,
34
class
Allocator
=
tensors::detail::default_allocator<ValueType>
>
35
using
Tensor
=
bc::tensors::Tensor_Base
<
36
bc::tensors::exprs::Array
<
37
bc::Shape<dim>
,
38
ValueType,
39
Allocator>>;
40
41
template
<
42
class
ValueType,
43
class
Allocator=
tensors::detail::default_allocator<ValueType>
>
44
using
Scalar
=
Tensor<0, ValueType, Allocator>
;
45
46
template
<
47
class
ValueType,
48
class
Allocator=
tensors::detail::default_allocator<ValueType>
>
49
using
Vector
=
Tensor<1, ValueType, Allocator>
;
50
51
template
<
52
class
ValueType,
53
class
Allocator=
tensors::detail::default_allocator<ValueType>
>
54
using
Matrix
=
Tensor<2, ValueType, Allocator>
;
55
56
template
<
57
class
ValueType,
58
class
Allocator=
tensors::detail::default_allocator<ValueType>
>
59
using
Cube
=
Tensor<3, ValueType, Allocator>
;
60
61
template
<
62
class
ValueType,
63
class
Allocator=
tensors::detail::default_allocator<ValueType>
>
64
using
VecList
=
bc::tensors::Tensor_Base<bc::tensors::exprs::Vector<ValueType, Allocator>
>;
65
66
}
//end of ns BC
67
68
#endif
/* TENSOR_ALIASES_H_ */
bc::Shape
Definition:
shape.h:17
common.h
bc::dim
BCINLINE auto dim(const Integers &... ints)
Definition:
dim.h:336
bc::tensors::exprs::Array
Definition:
array.h:25
bc::allocators::Allocator
Definition:
allocators.h:20
tensor_base.h
tensor_static_functions.h
bc::tensors::Tensor_Base< bc::tensors::exprs::Array< bc::Shape< dim >, ValueType, Allocator > >
bc
The Evaluator determines if an expression needs to be greedily optimized.
Definition:
algorithms.h:22
Generated by
1.8.13