layout¶
Defined in xtensor/xlayout.hpp
-
enum xt::layout_type¶
layout_type enum for xcontainer based xexpressions
Values:
-
enumerator dynamic¶
dynamic layout_type: you can resize to row major, column major, or use custom strides
-
enumerator any¶
layout_type compatible with all others
-
enumerator row_major¶
row major layout_type
-
enumerator column_major¶
column major layout_type
-
enumerator dynamic¶
-
template<class ...Args>
constexpr layout_type xt::compute_layout(Args... args) noexcept¶ Implementation of the following logical table:
| d | a | r | c | —+—+—+—+—+ d | d | d | d | d | a | d | a | r | c | r | d | r | r | d | c | d | c | d | c | d = dynamic, a = any, r = row_major, c = column_major.
Using bitmasks to avoid nested if-else statements.
- Parameters
args – the input layouts.
- Returns
the output layout, computed with the previous logical table.
xcontainer¶
Defined in xtensor/xcontainer.hpp
-
template<class D>
class xcontainer : public xt::xcontiguous_iterable<D>, private xt::xaccessible<D>¶ Base class for dense multidimensional containers.
The xcontainer class defines the interface for dense multidimensional container classes. It does not embed any data container, this responsibility is delegated to the inheriting classes.
- Template Parameters
D – The derived type, i.e. the inheriting class for which xcontainer provides the interface.
Subclassed by xt::xstrided_container< D >
Size and shape
-
inline size_type size() const noexcept¶
Returns the number of element in the container.
-
constexpr size_type dimension() const noexcept¶
Returns the number of dimensions of the container.
-
constexpr const inner_shape_type &shape() const noexcept¶
Returns the shape of the container.
-
constexpr const inner_strides_type &strides() const noexcept¶
Returns the strides of the container.
-
constexpr const inner_backstrides_type &backstrides() const noexcept¶
Returns the backstrides of the container.
Data
-
template<class T>
inline void fill(const T &value)¶ Fills the container with the given value.
- Parameters
value – the value to fill the container with.
-
inline storage_type &storage() noexcept¶
Returns a reference to the buffer containing the elements of the container.
-
inline const storage_type &storage() const noexcept¶
Returns a constant reference to the buffer containing the elements of the container.
-
inline pointer data() noexcept¶
Returns a pointer to the underlying array serving as element storage.
The pointer is such that range [data(); data() + size()] is always a valid range, even if the container is empty (data() is not is not dereferenceable in that case)
-
inline const_pointer data() const noexcept¶
Returns a constant pointer to the underlying array serving as element storage.
The pointer is such that range [data(); data() + size()] is always a valid range, even if the container is empty (data() is not is not dereferenceable in that case)
-
inline const size_type data_offset() const noexcept¶
Returns the offset to the first element in the container.
-
template<class ...Args>
inline auto operator()(Args... args) -> reference¶ Returns a reference to the element at the specified position in the container.
- Parameters
args – a list of indices specifying the position in the container. Indices must be unsigned integers, the number of indices should be equal or greater than the number of dimensions of the container.
-
template<class ...Args>
inline auto operator()(Args... args) const -> const_reference¶ Returns a constant reference to the element at the specified position in the container.
- Parameters
args – a list of indices specifying the position in the container. Indices must be unsigned integers, the number of indices should be equal or greater than the number of dimensions of the container.
-
template<class ...Args>
inline auto unchecked(Args... args) -> reference¶ Returns a reference to the element at the specified position in the container.
Warning
This method is meant for performance, for expressions with a dynamic number of dimensions (i.e. not known at compile time). Since it may have undefined behavior (see parameters), operator() should be prefered whenever it is possible.
Warning
This method is NOT compatible with broadcasting, meaning the following code has undefined behavior:
xt::xarray<double> a = {{0, 1}, {2, 3}}; xt::xarray<double> b = {0, 1}; auto fd = a + b; double res = fd.uncheked(0, 1);
- Parameters
args – a list of indices specifying the position in the container. Indices must be unsigned integers, the number of indices must be equal to the number of dimensions of the container, else the behavior is undefined.
-
template<class ...Args>
inline auto unchecked(Args... args) const -> const_reference¶ Returns a constant reference to the element at the specified position in the container.
Warning
This method is meant for performance, for expressions with a dynamic number of dimensions (i.e. not known at compile time). Since it may have undefined behavior (see parameters), operator() should be prefered whenever it is possible.
Warning
This method is NOT compatible with broadcasting, meaning the following code has undefined behavior:
xt::xarray<double> a = {{0, 1}, {2, 3}}; xt::xarray<double> b = {0, 1}; auto fd = a + b; double res = fd.uncheked(0, 1);
- Parameters
args – a list of indices specifying the position in the container. Indices must be unsigned integers, the number of indices must be equal to the number of dimensions of the container, else the behavior is undefined.
-
template<class It>
inline auto element(It first, It last) -> reference¶ Returns a reference to the element at the specified position in the container.
- Parameters
first – iterator starting the sequence of indices
last – iterator ending the sequence of indices The number of indices in the sequence should be equal to or greater than the number of dimensions of the container.
-
template<class It>
inline auto element(It first, It last) const -> const_reference¶ Returns a reference to the element at the specified position in the container.
- Parameters
first – iterator starting the sequence of indices
last – iterator ending the sequence of indices The number of indices in the sequence should be equal to or greater than the number of dimensions of the container.
Broadcasting
-
template<class S>
inline bool broadcast_shape(S &shape, bool reuse_cache = false) const¶ Broadcast the shape of the container to the specified parameter.
- Parameters
shape – the result shape
reuse_cache – parameter for internal optimization
- Returns
a boolean indicating whether the broadcasting is trivial
Public Functions
-
inline reference flat(size_type i)¶
Returns a reference to the element at the specified position in the containter storage (as if it was one dimensional).
- Parameters
i – index specifying the position in the storage. Must be smaller than the number of elements in the container.
-
inline const_reference flat(size_type i) const¶
Returns a constant reference to the element at the specified position in the containter storage (as if it was one dimensional).
- Parameters
i – index specifying the position in the storage. Must be smaller than the number of elements in the container.
xstrided_container¶
Defined in xtensor/xcontainer.hpp
-
template<class D>
class xstrided_container : public xt::xcontainer<D>¶ Partial implementation of xcontainer that embeds the strides and the shape.
The xstrided_container class is a partial implementation of the xcontainer interface that embed the strides and the shape of the multidimensional container. It does not embed the data container, this responsibility is delegated to the inheriting classes.
- Template Parameters
D – The derived type, i.e. the inheriting class for which xstrided_container provides the partial imlpementation of xcontainer.
Public Functions
-
template<class S = shape_type>
inline void resize(S &&shape, bool force = false)¶ Resizes the container.
Warning
Contrary to STL containers like std::vector, resize does NOT preserve the container elements.
- Parameters
shape – the new shape
force – force reshaping, even if the shape stays the same (default: false)
-
template<class S = shape_type>
inline void resize(S &&shape, layout_type l)¶ Resizes the container.
Warning
Contrary to STL containers like std::vector, resize does NOT preserve the container elements.
- Parameters
shape – the new shape
l – the new layout_type
-
template<class S = shape_type>
inline void resize(S &&shape, const strides_type &strides)¶ Resizes the container.
Warning
Contrary to STL containers like std::vector, resize does NOT preserve the container elements.
- Parameters
shape – the new shape
strides – the new strides
-
inline layout_type layout() const noexcept¶
Return the layout_type of the container.
- Returns
layout_type of the container
-
template<class S>
inline auto &reshape(S &&shape, layout_type layout) &¶ Reshapes the container and keeps old elements.
The
shape
argument can have one of its value equal to-1
, in this case the value is inferred from the number of elements in the container and the remaining values in theshape
.xt::xarray<int> a = { 1, 2, 3, 4, 5, 6, 7, 8 }; a.reshape({-1, 4}); //a.shape() is {2, 4}
- Parameters
shape – the new shape (has to have same number of elements as the original container)
layout – the layout to compute the strides (defaults to static layout of the container, or for a container with dynamic layout to XTENSOR_DEFAULT_LAYOUT)