1 #ifndef BLACKCAT_TENSORS_EXPRESSION_TEMPLATES_VECTOR_H_ 2 #define BLACKCAT_TENSORS_EXPRESSION_TEMPLATES_VECTOR_H_ 7 #include <thrust/device_vector.h> 8 #include <thrust/host_vector.h> 17 template<
class ValueType,
class AllocatorType>
30 std::is_same<bc::device_tag, system_tag>::value,
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>>;
40 using array_type = std::vector<value_type, allocator_type>;
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; }
80 return m_vector.get_allocator();
93 return data_helper(const_cast<array_type&>(m_vector).
data());
97 return data_helper(m_vector.data());
105 m_vector.reserve(reserve_sz);
109 m_vector.resize(new_sz);
113 m_vector.push_back(value);
117 m_vector.push_back(value);
121 m_vector.emplace_back(value);
125 m_vector.emplace_back(value);
135 return m_vector.at(index);
139 return m_vector.at(index);
143 return m_vector.empty();
147 return m_vector.max_size();
151 return m_vector.capacity();
155 m_vector.shrink_to_fit();
159 static value_type* data_helper(
const value_type*
data) {
160 return (value_type*)
data;
164 static value_type* data_helper(thrust::device_ptr<const value_type> data) {
165 return (value_type*)data.get();
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
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