9 #ifndef BC_EXPRESSION_TEMPLATES_ARRAY_H_ 10 #define BC_EXPRESSION_TEMPLATES_ARRAY_H_ 20 template<
class,
class,
class,
class...>
24 template<
class Shape,
class Scalar,
class AllocatorType,
class... Tags>
26 private AllocatorType,
30 typename bc::allocator_traits<AllocatorType>::system_tag,
63 select_on_container_copy_construction(array)),
68 make_bin_expr<bc::oper::Assign>(
78 array.m_data =
nullptr;
94 class=std::enable_if_t<
95 traits::sequence_of_v<
bc::size_t, ShapeDims...> &&
97 Array(
const ShapeDims&... shape_dims):
103 class=std::enable_if_t<
113 make_bin_expr<bc::oper::Assign>(
120 template<
class AltShape,
class... SliceTags>
126 SliceTags...>& expression):
128 select_on_container_copy_construction(expression.
get_allocator())),
132 evaluate(make_bin_expr<bc::oper::Assign>(
139 if (allocator_traits_t::is_always_equal::value ||
146 propagate_on_container_move_assignment::value) {
153 evaluate(make_bin_expr<bc::oper::Assign>(
164 AllocatorType::deallocate(this->
data(), this->
size());
171 template<
class Shape,
class Allocator>
174 using value_type =
typename Allocator::value_type;
stream_type & get_stream()
Definition: array.h:49
value_type * m_data
Definition: array_kernel_array.h:64
Array(const Array &array)
Definition: array.h:61
size_t value_type
Definition: shape.h:26
static constexpr int tensor_dim
Definition: shape.h:24
Definition: array_kernel_array.h:41
Shape shape_type
Definition: array.h:37
AllocatorType allocator_type
Definition: array.h:35
allocator_type get_allocator() const
Definition: array.h:51
void deallocate()
Definition: array.h:161
BCINLINE shape_type get_shape() const
Definition: array_kernel_array.h:93
BCINLINE size_t size() const
Definition: shape.h:79
class::::::Args static auto swap(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:140
BCINLINE const auto & inner_shape() const
Definition: shape.h:76
bc::traits::conditional_detected_t< bc::traits::query_system_tag, Allocator, host_tag > system_tag
Definition: allocator_traits.h:23
Array(const ShapeDims &... shape_dims)
Definition: array.h:97
Array()
Definition: array.h:55
Definition: allocator_traits.h:20
Array(const Array_Slice< AltShape, value_type, allocator_type, SliceTags... > &expression)
Definition: array.h:121
int size_t
Definition: common.h:283
Array(bc::Dim< shape_type::tensor_dim > shape, allocator_type allocator)
Definition: array.h:84
Definition: expression_template_traits.h:76
BCINLINE Shape()
Definition: shape.h:35
Definition: allocators.h:20
const stream_type & get_stream() const
Definition: array.h:48
Array(shape_type shape)
Definition: array.h:89
BCINLINE const Kernel_Array< Shape, Scalar, bc::allocator_traits< AllocatorType >::system_tag, Tags... > & expression_template() const
Definition: expression_template_base.h:22
typename bc::allocator_traits< Allocator >::system_tag system_tag
Definition: array.h:33
Array(const Expression &expression, allocator_type allocator=allocator_type())
Definition: array.h:106
Tensor< 0, ValueType, Allocator > Scalar
Definition: tensors.h:44
Scalar value_type
Definition: array.h:34
BCINLINE auto shape(Integers... ints)
Definition: shape.h:264
Array(bc::Dim< shape_type::tensor_dim > shape)
Definition: array.h:81
Array(Array &&array)
Definition: array.h:73
BCINLINE value_type * data() const
Definition: array_kernel_array.h:88
Array & operator=(Array &&array)
Definition: array.h:138
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
auto make_tensor_array(Shape shape, Allocator alloc)
Definition: array.h:172