BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
array_scalar_constant.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 #ifndef BC_EXPRESSION_TEMPLATES_ARRAY_SCALAR_CONSTANT_H_
10 #define BC_EXPRESSION_TEMPLATES_ARRAY_SCALAR_CONSTANT_H_
11 
13 
14 namespace bc {
15 namespace tensors {
16 namespace exprs {
17 
18 template<class Derived>
20  Shape<0>,
21  Kernel_Array_Base<Derived>
22 {
23  static constexpr int tensor_iterator_dim = 0;
24  static constexpr int tensor_dim = 0;
25 
26  using copy_constructible = std::false_type;
27  using move_constructible = std::false_type;
28  using copy_assignable = std::false_type;
29  using move_assignable = std::false_type;
30 };
31 
32 template<class Scalar, class SystemTag>
34  Scalar_Constant_Base<Scalar_Constant<Scalar, SystemTag>>
35 {
36  using value_type = Scalar;
37  using system_tag = SystemTag;
39  using stack_allocated = std::true_type;
41 
43 
45  scalar(scalar_) {}
46 
47  template<class... integers> BCINLINE
48  auto operator() (const integers&...) const {
49  return scalar;
50  }
51 
52  BCINLINE auto operator [] (int) const {
53  return scalar;
54  }
55 
56  BCINLINE const value_type* data() const {
57  return &scalar;
58  }
59 };
60 
61 
62 template<class SystemTag, class value_type>
65 }
66 
67 template<int Value, class Scalar, class SystemTag>
69 
70 template<int Value, class Scalar>
72  Scalar_Constant_Base<Constexpr_Scalar_Constant<Value, Scalar, bc::host_tag>> {
73 
74  using value_type = Scalar;
77 
78  Scalar value = Scalar(Value);
79 
80  template<class... integers> BCINLINE
81  auto operator() (const integers&...) const {
82  return Value;
83  }
84 
85  template<class... integers> BCINLINE
86  auto operator() (const integers&...) {
87  return Value;
88  }
89 
90  BCINLINE auto operator [] (int i ) const { return Value; }
91  BCINLINE auto operator [] (int i ) { return Value; }
92 
93  BCHOT const Scalar* data() const { return &value; }
94 };
95 
96 #ifdef __CUDACC__
97 template<int Value, class Scalar>
99  Scalar_Constant_Base<Constexpr_Scalar_Constant<Value, Scalar, bc::device_tag>> {
100 
104 
105  const Scalar* value = cuda_constexpr_scalar_ptr();
106 
107  template<class... integers> BCINLINE
108  auto operator() (const integers&...) const {
109  return Value;
110  }
111 
112  template<class... integers> BCINLINE
113  auto operator() (const integers&...) {
114  return Value;
115  }
116 
117  BCINLINE auto operator [] (int i ) const { return Value; }
118  BCINLINE auto operator [] (int i ) { return Value; }
119 
120  BCHOT const Scalar* data() const { return value; }
121 
122 private:
123  static const Scalar* cuda_constexpr_scalar_ptr() {
124 
125  static Scalar* scalar_constant = [](){
126  Scalar value = Value;
127  Scalar* scalar = nullptr;
128  BC_CUDA_ASSERT(cudaMalloc((void**)&scalar, sizeof(Scalar)));
130  cudaMemcpy(scalar, &value, sizeof(Scalar),
131  cudaMemcpyHostToDevice));
132  return scalar;
133  }();
134 
135  return scalar_constant;
136  }
137 };
138 #endif
139 
140 template<class SystemTag, int Value, class Scalar>
143 }
144 
145 
146 } //ns BC
147 } //ns exprs
148 } //ns tensors
149 
150 
151 #endif /* BC_INTERNALS_BC_TENSOR_EXPRESSION_TEMPLATES_ARRAY_SCALAR_CONSTANT_H_ */
#define BCINLINE
Definition: common.h:96
Definition: shape.h:17
Definition: array_scalar_constant.h:68
std::true_type stack_allocated
Definition: array_scalar_constant.h:39
BCHOT const Scalar * data() const
Definition: array_scalar_constant.h:120
auto make_scalar_constant(value_type scalar)
Definition: array_scalar_constant.h:63
size_t value_type
Definition: shape.h:120
BCINLINE Scalar_Constant(value_type scalar_)
Definition: array_scalar_constant.h:44
Definition: array_scalar_constant.h:33
Definition: common.h:32
Definition: array_scalar_constant.h:19
#define BC_CUDA_ASSERT(...)
Definition: common.h:194
static constexpr int tensor_iterator_dim
Definition: array_scalar_constant.h:23
Definition: cmath.h:17
Tensor< 0, ValueType, Allocator > Scalar
Definition: tensors.h:44
value_type scalar
Definition: array_scalar_constant.h:42
Definition: common.h:26
#define BCHOT
Definition: common.h:97
BCINLINE size_t operator[](size_t i)
Definition: shape.h:133
static constexpr int tensor_dim
Definition: array_scalar_constant.h:24
SystemTag system_tag
Definition: array_scalar_constant.h:37
Definition: expression_template_base.h:107
BCHOT const Scalar * data() const
Definition: array_scalar_constant.h:93
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
BCINLINE const value_type * data() const
Definition: array_scalar_constant.h:56
auto make_constexpr_scalar()
Definition: array_scalar_constant.h:141