BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
vector.h
Go to the documentation of this file.
1 #ifndef BLACKCAT_TENSORS_EXPRESSION_TEMPLATES_VECTOR_H_
2 #define BLACKCAT_TENSORS_EXPRESSION_TEMPLATES_VECTOR_H_
3 
4 #include "array_kernel_array.h"
5 
6 #ifdef __CUDACC__
7 #include <thrust/device_vector.h>
8 #include <thrust/host_vector.h>
9 #else
10 #include <vector>
11 #endif
12 
13 namespace bc {
14 namespace tensors {
15 namespace exprs {
16 
17 template<class ValueType, class AllocatorType>
18 struct Vector {
19 
20  using value_type = ValueType;
23 
24  static constexpr int tensor_dim = 1;
25  static constexpr int tensor_iterator_dim = 1;
26 
27 
28 #ifdef __CUDACC__
29  using allocator_type = std::conditional_t<
30  std::is_same<bc::device_tag, system_tag>::value,
32  AllocatorType>;
33 
34  using array_type = std::conditional_t<
35  std::is_same<system_tag, bc::host_tag>::value,
36  thrust::host_vector<value_type, allocator_type>,
37  thrust::device_vector<value_type, allocator_type>>;
38 #else
39  using allocator_type = AllocatorType;
40  using array_type = std::vector<value_type, allocator_type>;
41 #endif
42 
43 private:
46 
47  array_type m_vector;
48  stream_type m_stream;
49 
50 public:
51  using expression_template_array_type = std::true_type;
52 
53  Vector()=default;
54  Vector(const array_type& vector): m_vector(vector) {}
55  Vector(array_type&& vector): m_vector(vector) {}
56  Vector(bc::Dim<1> dim): m_vector(dim[0]) {}
57  Vector(bc::size_t size): m_vector(size) {}
58 
59  auto get_shape() const { return bc::Shape<1>( m_vector.size());}
60  size_t size() const { return m_vector.size(); }
61  size_t rows() const { return m_vector.size(); }
62  size_t cols() const { return 1; }
63  size_t dim(int i) const { return i == 0 ? rows() : 1; }
64  size_t outer_dim() const { return rows(); }
65  size_t leading_dim(int i=0) const { return 1;}
66  auto inner_shape() const { return bc::Dim<1> { size() }; }
67 
70  }
71 
74  }
75 
76  const stream_type& get_stream() const { return m_stream; }
77  stream_type& get_stream() { return m_stream; }
78 
80  return m_vector.get_allocator();
81  }
82 
83 protected:
84  //TODO deprecate this requirement
85  void deallocate() {}
86 public:
87  /*
88  * std::vector methods
89  */
90  value_type* data() const {
91  //TODO internally fix handling of const_ptr type
92  //Note: returning `const` data().get() also causes an internal error in thrust
93  return data_helper(const_cast<array_type&>(m_vector).data());
94  }
95 
96  value_type* data() {
97  return data_helper(m_vector.data());
98  }
99 
100  void clear() {
101  m_vector.clear();
102  }
103 
104  void reserve(bc::size_t reserve_sz) {
105  m_vector.reserve(reserve_sz);
106  }
107 
108  void resize(bc::size_t new_sz) {
109  m_vector.resize(new_sz);
110  }
111 
112  void push_back(value_type&& value) {
113  m_vector.push_back(value);
114  }
115 
116  void push_back(const value_type& value) {
117  m_vector.push_back(value);
118  }
119 
120  void emplace_back(value_type&& value) {
121  m_vector.emplace_back(value);
122  }
123 
124  void emplace_back(const value_type& value) {
125  m_vector.emplace_back(value);
126  }
127 
128  //TODO add
129  //insert, emplace
130  void pop_back() {
131  m_vector.pop_back();
132  }
133 
134  auto& at(bc::size_t index) const {
135  return m_vector.at(index);
136  }
137 
138  auto& at(bc::size_t index) {
139  return m_vector.at(index);
140  }
141 
142  bool empty() const {
143  return m_vector.empty();
144  }
145 
147  return m_vector.max_size();
148  }
149 
151  return m_vector.capacity();
152  }
153 
154  void shrink_to_fit() {
155  m_vector.shrink_to_fit();
156  }
157 
158 private:
159  static value_type* data_helper(const value_type* data) {
160  return (value_type*)data;
161  }
162 
163 #ifdef __CUDACC__
164  static value_type* data_helper(thrust::device_ptr<const value_type> data) {
165  return (value_type*)data.get();
166  }
167 #endif
168 };
169 
170 
171 
172 }
173 }
174 }
175 
176 #endif
void resize(bc::size_t new_sz)
Definition: vector.h:108
auto get_shape() const
Definition: vector.h:59
size_t size() const
Definition: vector.h:60
void push_back(const value_type &value)
Definition: vector.h:116
void pop_back()
Definition: vector.h:130
std::true_type expression_template_array_type
Definition: vector.h:51
size_t outer_dim() const
Definition: vector.h:64
auto inner_shape() const
Definition: vector.h:66
Definition: array_kernel_array.h:41
typename bc::allocator_traits< AllocatorType >::system_tag system_tag
Definition: vector.h:21
value_type * data()
Definition: vector.h:96
bc::traits::conditional_detected_t< bc::traits::query_system_tag, Allocator, host_tag > system_tag
Definition: allocator_traits.h:23
stream_type & get_stream()
Definition: vector.h:77
std::size_t capacity() const
Definition: vector.h:150
Vector(const array_type &vector)
Definition: vector.h:54
Vector(bc::size_t size)
Definition: vector.h:57
static constexpr int tensor_dim
Definition: vector.h:24
Definition: shape.h:154
size_t rows() const
Definition: vector.h:61
Vector(bc::Dim< 1 > dim)
Definition: vector.h:56
void reserve(bc::size_t reserve_sz)
Definition: vector.h:104
auto & at(bc::size_t index) const
Definition: vector.h:134
int size_t
Definition: common.h:283
auto & at(bc::size_t index)
Definition: vector.h:138
expression_template_type expression_template()
Definition: vector.h:72
void emplace_back(value_type &&value)
Definition: vector.h:120
void deallocate()
Definition: vector.h:85
std::conditional_t< std::is_same< bc::device_tag, system_tag >::value, bc::allocators::allocator_to_thrust_allocator_t< AllocatorType >, AllocatorType > allocator_type
Definition: vector.h:32
size_t dim(int i) const
Definition: vector.h:63
size_t leading_dim(int i=0) const
Definition: vector.h:65
const_expression_template_type expression_template() const
Definition: vector.h:68
ValueType value_type
Definition: vector.h:20
void clear()
Definition: vector.h:100
void emplace_back(const value_type &value)
Definition: vector.h:124
void shrink_to_fit()
Definition: vector.h:154
size_t cols() const
Definition: vector.h:62
void push_back(value_type &&value)
Definition: vector.h:112
value_type * data() const
Definition: vector.h:90
Vector(array_type &&vector)
Definition: vector.h:55
std::size_t max_size() const
Definition: vector.h:146
std::conditional_t< std::is_same< system_tag, bc::host_tag >::value, thrust::host_vector< value_type, allocator_type >, thrust::device_vector< value_type, allocator_type > > array_type
Definition: vector.h:37
bool empty() const
Definition: vector.h:142
static constexpr int tensor_iterator_dim
Definition: vector.h:25
typename allocator_to_thrust_allocator< Allocator >::type allocator_to_thrust_allocator_t
Definition: allocator_forwarder.h:204
allocator_type get_allocator() const
Definition: vector.h:79
const stream_type & get_stream() const
Definition: vector.h:76
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
Definition: vector.h:18