8 #ifndef BC_EXPRESSION_TEMPLATES_ARRAY_SLICE_H_ 9 #define BC_EXPRESSION_TEMPLATES_ARRAY_SLICE_H_ 19 template<
class Shape,
class ValueType,
class Allocator,
class... Tags>
24 typename bc::allocator_traits<Allocator>::system_tag,
45 template<
class... Args>
BCHOT 49 m_allocator(allocator) {}
60 template<
class Shape,
class Parent,
class... Tags>
63 typename Parent::value_type,
64 typename Parent::allocator_type,
66 std::is_const<Parent>::value ||
72 template<
int Dimension,
class Parent,
class... Tags>
73 using slice_type_from_parent = slice_type_factory<
78 template<
int Dimension,
class Parent,
class... Tags>
79 using strided_slice_type_from_parent = slice_type_factory<
80 std::enable_if_t<Dimension==1, Strided_Vector_Shape>,
85 template<
class Parent>
87 using slice_type = strided_slice_type_from_parent<
92 parent.get_allocator(),
94 parent.data() + index);
97 template<
class Parent>
101 parent.rows(), parent.cols() - diagnol_index);
104 ? parent.leading_dim(1) * diagnol_index
107 using slice_type = strided_slice_type_from_parent<
112 parent.get_allocator(),
114 parent.data() + ptr_index);
119 class=std::enable_if_t<
121 static auto make_slice(Parent& parent,
bc::size_t index)
123 using scalar_type = slice_type_from_parent<0, Parent>;
124 using slice_type = slice_type_from_parent<
125 bc::traits::max(0,Parent::tensor_dim-1),
129 using slice_t = std::conditional_t<
130 Parent::tensor_dim == 1, scalar_type, slice_type>;
134 parent.get_allocator(),
136 parent.data() + parent.leading_dim() * index);
141 class=std::enable_if_t<
143 int differentiator=0>
144 static auto make_slice(Parent& parent,
bc::size_t index)
146 using scalar_type = slice_type_from_parent<0, Parent>;
147 using slice_type = slice_type_from_parent<
148 bc::traits::max(0,Parent::tensor_dim-1), Parent>;
150 using slice_t = std::conditional_t<
151 Parent::tensor_dim == 1, scalar_type, slice_type>;
155 parent.get_allocator(),
157 parent.data() + parent.leading_dim() * index);
160 template<
class Parent>
163 using slice_type = slice_type_from_parent<Parent::tensor_dim, Parent>;
165 bc::size_t index = parent.leading_dim() * from;
166 static_assert(Parent::tensor_dim > 0);
168 shape[Parent::tensor_dim-1] =
range;
172 parent.get_allocator(),
174 parent.data() + index);
177 template<
class Parent,
class ShapeLike>
178 static auto make_view(Parent& parent, ShapeLike
shape) {
179 using slice_type = slice_type_from_parent<ShapeLike::tensor_dim, Parent>;
183 parent.get_allocator(),
188 template<
class Parent>
189 static auto make_scalar(Parent& parent,
bc::size_t index) {
190 using slice_type = slice_type_from_parent<0, Parent>;
194 parent.get_allocator(),
196 parent.data() + index);
202 class = std::enable_if_t<Parent::tensor_dim != 1>>
208 using slice_type = slice_type_from_parent<
213 parent.get_allocator(),
221 class = std::enable_if_t<Parent::tensor_dim == 1>>
227 return make_ranged_slice(
230 index_points[0] + shape[0]);
stream_type & get_stream()
Definition: array_slice.h:55
bc::traits::not_type< bc::traits::sequence_contains_v< BC_Const_View, Tags... > > copy_assignable
Definition: array_slice.h:43
const allocator_type & get_allocator() const
Definition: array_slice.h:51
BCINLINE size_t dims_to_index(Integers... ints) const
Definition: shape.h:102
Definition: array_kernel_array.h:41
auto make_diagnol(Parent &parent, bc::size_t diagnol_index)
Definition: array_slice.h:98
allocator_type & get_allocator()
Definition: array_slice.h:52
Definition: expression_template_traits.h:49
auto make_chunk(Parent &parent, bc::Dim< Parent::tensor_dim > index_points, ShapeLike shape)
Definition: array_slice.h:203
bc::traits::conditional_detected_t< bc::traits::query_system_tag, Allocator, host_tag > system_tag
Definition: allocator_traits.h:23
typename bc::allocator_traits< Allocator >::system_tag system_tag
Definition: array_slice.h:27
struct bc::oper::cmath_functions::Abs abs
auto make_row(Parent &parent, bc::size_t index)
Definition: array_slice.h:86
Array_Slice(stream_type stream, allocator_type allocator, Args... args)
Definition: array_slice.h:46
conditional_t< cond, false_type, true_type > not_type
Definition: type_traits.h:52
std::false_type move_assignable
Definition: array_slice.h:42
ValueType value_type
Definition: array_slice.h:28
int size_t
Definition: common.h:283
Definition: expression_template_traits.h:76
BCINLINE Shape()
Definition: shape.h:35
Definition: allocators.h:20
auto range(T begin, T end=T())
Definition: io.h:46
const stream_type & get_stream() const
Definition: array_slice.h:54
BCINLINE auto shape(Integers... ints)
Definition: shape.h:264
#define BCHOT
Definition: common.h:97
Definition: expression_template_traits.h:62
Definition: expression_template_traits.h:54
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22