|
xtensor
|
Chunked array container. More...
Functions | |
| template<class T, layout_type L = ::xt::layout_type::row_major, class S> | |
| xchunked_array< xarray< xarray< T > > > | xt::chunked_array (S &&shape, S &&chunk_shape, layout_type chunk_memory_layout=::xt::layout_type::row_major) |
| Creates an in-memory chunked array. | |
| template<layout_type L = ::xt::layout_type::row_major, class E, class S> | |
| xchunked_array< xarray< xarray< typename E::value_type > > > | xt::chunked_array (const xexpression< E > &e, S &&chunk_shape, layout_type chunk_memory_layout=::xt::layout_type::row_major) |
| Creates an in-memory chunked array. | |
| template<layout_type L = ::xt::layout_type::row_major, class E> | |
| xchunked_array< xarray< xarray< typename E::value_type > > > | xt::chunked_array (const xexpression< E > &e, layout_type chunk_memory_layout=::xt::layout_type::row_major) |
| Creates an in-memory chunked array. | |
Chunked array container.
Defined in xtensor/xchunked_array.hpp.
|
inline |
Creates an in-memory chunked array.
This function returns a xt::xchunked_array<xt::xarray<T>> initialized from an expression.
| L | The layout_type of the array |
| e | The expression to initialize the chunked array from |
| chunk_memory_layout | The layout of each chunk (default: XTENSOR_DEFAULT_LAYOUT) |
Definition at line 378 of file xchunked_array.hpp.
|
inline |
Creates an in-memory chunked array.
This function returns a xt::xchunked_array<xt::xarray<T>> initialized from an expression.
| L | The layout_type of the array |
| e | The expression to initialize the chunked array from |
| chunk_shape | The shape of a chunk |
| chunk_memory_layout | The layout of each chunk (default: XTENSOR_DEFAULT_LAYOUT) |
Definition at line 370 of file xchunked_array.hpp.
|
inline |
Creates an in-memory chunked array.
This function returns an uninitialized xt::xchunked_array<xt::xarray<T>>.
| T | The type of the elements (e.g. double) |
| L | The layout_type of the array |
| shape | The shape of the array |
| chunk_shape | The shape of a chunk |
| chunk_memory_layout | The layout of each chunk (default: XTENSOR_DEFAULT_LAYOUT) |
Definition at line 347 of file xchunked_array.hpp.