8 #ifndef BLACKCATTENSORS_SHAPE_SHAPE_H_ 9 #define BLACKCATTENSORS_SHAPE_SHAPE_H_ 19 static_assert(N >= 0,
"Shape<N>: ASSERT 'N >= 0'");
30 Dim<N> m_inner_shape = {0};
31 Dim<N> m_block_shape = {0};
39 class=std::enable_if_t<
40 bc::traits::sequence_of_v<
size_t, Integers...> &&
41 (
sizeof...(Integers) == N)>>
BCINLINE 43 m_inner_shape {ints...} {
46 for (
int i = 1; i < N; ++i)
47 m_block_shape[i] = m_inner_shape[i-1] * m_block_shape[i-1];
50 template<
int X,
class=std::enable_if_t<(X > N)>>
BCINLINE 52 m_inner_shape(shape.m_inner_shape.template subdim<0, N>()),
53 m_block_shape(shape.m_block_shape.template subdim<0, N>()) {}
57 m_inner_shape(new_shape),
58 m_block_shape(parent_shape.m_block_shape) {}
62 m_inner_shape(new_shape.m_inner_shape),
63 m_block_shape(parent_shape.m_block_shape) {
68 m_inner_shape(dims.template subdim<0, N>()) {
71 for (
int i = 1; i < N; ++i) {
72 m_block_shape[i] = m_inner_shape[i-1] * m_block_shape[i-1];
86 return i < N ? m_block_shape[i] : 0;
90 return m_inner_shape ==other.m_inner_shape;
99 class=std::enable_if_t<
100 bc::traits::sequence_of_v<
size_t, Integers...> &&
101 (
sizeof...(Integers) >= N)>>
BCINLINE 106 template<
int D,
class=std::enable_if_t<(D>=N)>>
BCINLINE 108 size_t index = var[D-1];
109 for(
int i = 1; i < N; ++i) {
122 static constexpr
int tensor_dim = 0;
129 template<
class... Args>
147 template<
class... Integers>
BCINLINE 172 m_inner_shape {param} {}
174 template<
int X,
class=std::enable_if_t<(X>=1)>>
BCINLINE 176 m_inner_shape[0] = shape.m_inner_shape[0];
181 m_inner_shape { length } {}
187 BCINLINE size_t dim(
size_t i)
const {
return i == 0 ? m_inner_shape[0] : 1; }
196 template<
class... Integers>
BCINLINE 201 template<
class... Integers>
BCINLINE 220 m_inner_shape[0] = length;
230 return shape.
rows() == other.
rows();
237 BCINLINE size_t dim(
int i)
const {
return i == 0 ? m_inner_shape[0] : 1; }
240 return i == 0 ? m_block_shape[0] : 0;
245 template<
class... Integers>
250 template<
class... Integers>
252 return m_block_shape[0] * index;
256 return m_block_shape[0] * index;
262 typename=std::enable_if_t<
263 traits::sequence_of_v<
size_t, Integers...>>>
265 return Shape<
sizeof...(Integers)>(ints...);
270 typename=std::enable_if_t<!
271 traits::sequence_of_v<size_t, InnerShape>>>
BCINLINE size_t dim(int i) const
Definition: shape.h:82
BCINLINE size_t rows() const
Definition: shape.h:235
BCINLINE Strided_Vector_Shape(size_t length, size_t leading_dim)
Definition: shape.h:219
BCINLINE size_t outer_dim() const
Definition: shape.h:188
bc::size_t size_t
Definition: shape.h:25
BCINLINE size_t dims_to_index(const Dim< D > &var) const
Definition: shape.h:107
BCINLINE size_t rows() const
Definition: shape.h:80
#define BCINLINE
Definition: common.h:96
BCINLINE size_t leading_dim(int i=0) const
Definition: shape.h:239
size_t value_type
Definition: shape.h:26
BCINLINE value_type outer_dim() const
Definition: dim.h:70
BCINLINE value_type dim(size_t i, size_t default_value=1) const
Definition: dim.h:61
BCINLINE size_t dims_to_index(size_t index) const
Definition: shape.h:251
BCINLINE size_t dims_to_index(size_t i) const
Definition: shape.h:202
BCINLINE size_t size() const
Definition: shape.h:134
BCINLINE Shape(int length)
Definition: shape.h:180
BCINLINE size_t dims_to_index(Integers... ints) const
Definition: shape.h:102
static constexpr int tensor_dim
Definition: shape.h:24
BCINLINE size_t coefficientwise_dims_to_index(size_t i) const
Definition: shape.h:143
BCINLINE const auto & outer_shape() const
Definition: shape.h:77
size_t value_type
Definition: shape.h:120
BCINLINE auto dim(const Integers &... ints)
Definition: dim.h:336
BCINLINE Shape(bc::Dim< 1 > param)
Definition: shape.h:171
BCINLINE size_t size() const
Definition: shape.h:79
BCINLINE const auto & inner_shape() const
Definition: shape.h:76
BCINLINE size_t outer_dim() const
Definition: shape.h:83
BCINLINE size_t size() const
Definition: shape.h:234
BCINLINE Shape(Dim< N > dims)
Definition: shape.h:67
BCINLINE size_t outer_dim() const
Definition: shape.h:138
BCINLINE size_t coefficientwise_dims_to_index(size_t index) const
Definition: shape.h:255
BCINLINE size_t dim(int i) const
Definition: shape.h:137
BCINLINE size_t leading_dim(int i=0) const
Definition: shape.h:139
BCINLINE value_type size() const
Definition: dim.h:28
int size_t
Definition: common.h:283
BCINLINE size_t dims_to_index(size_t i, Integers... ints) const
Definition: shape.h:246
BCINLINE Shape()
Definition: shape.h:35
BCINLINE Shape()
Definition: shape.h:170
BCINLINE Dim< 0 > inner_shape() const
Definition: shape.h:132
BCINLINE size_t rows() const
Definition: shape.h:135
BCINLINE Shape(const Shape< X > &shape)
Definition: shape.h:51
BCINLINE Shape(Integers... ints)
Definition: shape.h:42
BCINLINE size_t cols() const
Definition: shape.h:136
BCINLINE bool operator==(const Shape &other) const
Definition: shape.h:89
size_t value_type
Definition: shape.h:157
BCINLINE size_t cols() const
Definition: shape.h:186
BCINLINE size_t rows() const
Definition: shape.h:185
BCINLINE size_t dims_to_index(Integers... ints) const
Definition: shape.h:148
BCINLINE Shape(const Shape< N > &new_shape, const Shape< N > &parent_shape)
Definition: shape.h:61
BCINLINE const auto & inner_shape() const
Definition: shape.h:190
BCINLINE size_t size() const
Definition: shape.h:184
BCINLINE size_t operator[](size_t i) const
Definition: shape.h:78
BCINLINE size_t cols() const
Definition: shape.h:236
BCINLINE size_t coefficientwise_dims_to_index(size_t i) const
Definition: shape.h:206
BCINLINE size_t cols() const
Definition: shape.h:81
BCINLINE const auto & inner_shape() const
Definition: shape.h:243
BCINLINE Shape(Dim< N > new_shape, const Shape< N > &parent_shape)
Definition: shape.h:56
BCINLINE auto shape(Integers... ints)
Definition: shape.h:264
BCINLINE Shape(const Shape< X > &shape)
Definition: shape.h:175
BCINLINE size_t dim(size_t i) const
Definition: shape.h:187
BCINLINE size_t dims_to_index(size_t i, Integers... ints) const
Definition: shape.h:197
BCINLINE size_t coefficientwise_dims_to_index(size_t index) const
Definition: shape.h:93
BCINLINE size_t dim(int i) const
Definition: shape.h:237
BCINLINE size_t leading_dim(int i=N-1) const
Definition: shape.h:85
BCINLINE size_t outer_dim() const
Definition: shape.h:238
BCINLINE size_t leading_dim(size_t i=0) const
Definition: shape.h:189
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22