-
#include "tensorstore/strided_layout.h"
-
explicit tensorstore::StridedLayout<Rank, OriginKind, CKind>::
StridedLayout(RankType rank,
const Index* shape,
const Index* byte_strides); -
template <ArrayOriginKind OKind = array_origin_kind>
requires (OKind == offset_origin)
explicit tensorstore::StridedLayout<Rank, OriginKind, CKind>::
StridedLayout(RankType rank,
const Index* origin,
const Index* shape,
const Index* byte_strides); Constructs from the specified rank and origin/shape/byte_strides arrays.
- Parameters:¶
- Requires:¶
array_origin_kind == offset_origin
iforigin
is specified.