8 #ifndef BLACKCATTENSORS_SHAPE_DIM_H_ 9 #define BLACKCATTENSORS_SHAPE_DIM_H_ 19 static_assert(N>=0,
"Dim<N>: ASSERT 'N>=0'");
34 for (
int i = 0; i < N; ++i)
64 return static_cast<const unsigned&
>(i) < N
71 return this->
dim(N-1);
76 for (
int i = 0; i < N; ++i) {
77 if (other[i] != this->m_index[i])
85 return !(*
this == other);
102 class=std::enable_if_t<
103 bc::traits::sequence_of_v<
bc::size_t, Ints...>>>
113 for (
int i = 0; i < N; ++i)
114 concat_dim[i] = m_index[i];
116 for (
int i = 0; i < X; ++i)
117 concat_dim[i+N] = other[i];
130 Dim op_impl(Operator op,
const Dim& other)
const {
132 for (
int i = 0; i < N; ++i) {
133 result[i] = op(m_index[i], other[i]);
139 Dim& inplace_op_impl(Operator op,
const Dim& other) {
140 for (
int i = 0; i < N; ++i) {
141 m_index[i] = op(m_index[i], other[i]);
147 Dim scalar_op_impl(Operator op,
const value_type& other)
const {
149 for (
int i = 0; i < N; ++i) {
150 result[i] = op(m_index[i], other);
156 Dim& inplace_scalar_op_impl(Operator op,
const value_type& other) {
157 for (
int i = 0; i < N; ++i) {
158 m_index[i] = op(m_index[i], other);
166 #define BC_DIM_OP(op, functor)\ 167 Dim operator op(const Dim& other) const { \ 168 return this->op_impl(bc::oper::functor(), other); \ 171 #define BC_DIM_INPLACE_OP(op, functor)\ 172 Dim operator op##=(const Dim& other) { \ 173 return this->inplace_op_impl(bc::oper::functor(), other); \ 176 #define BC_DIM_INPLACE_SCALAR_OP(op, functor) \ 177 friend Dim operator op##=(Dim &dim, const value_type& scalar) { \ 178 return dim.inplace_scalar_op_impl(bc::oper::functor(), scalar); \ 181 #define BC_DIM_SCALAR_OP(op, functor) \ 182 friend Dim operator op(const Dim &dim, const value_type& scalar) { \ 183 return dim.scalar_op_impl(bc::oper::functor(), scalar); \ 186 friend Dim operator op(const value_type& scalar, const Dim &dim) { \ 187 return dim.scalar_op_impl(bc::oper::functor(), scalar); \ 190 #define BC_DIM_OP_FACTORY(op, functor) \ 191 BC_DIM_OP(op, functor) \ 192 BC_DIM_SCALAR_OP(op, functor) 194 #define BC_DIM_OP_BOTH(op, functor) \ 195 BC_DIM_OP_FACTORY(op, functor) \ 196 BC_DIM_INPLACE_OP(op, functor) \ 197 BC_DIM_INPLACE_SCALAR_OP(op, functor) 209 #undef BC_DIM_INPLACE_OP 210 #undef BC_DIM_INPLACE_SCALAR_OP 211 #undef BC_DIM_SCALAR_OP 212 #undef BC_DIM_OP_FACTORY 213 #undef BC_DIM_OP_BOTH 218 if (m_index[start] == 0)
259 for (
int i = 0; i < N; ++i)
260 rev[i] = m_index[N-1-i];
265 template<
int Start,
int End=N>
BCINLINE 267 return *(
reinterpret_cast<const Dim<End-Start
>*>(m_index + Start));
271 std::string str=
"[";
272 while (begin < end) {
287 return os <<
self.to_string();
295 static constexpr
int tensor_dim = 0;
331 return os <<
self.to_string();
335 template<
class... Integers>
BCINLINE 336 auto dim(
const Integers&... ints) {
bc::size_t m_index[N]
Definition: dim.h:25
#define BCINLINE
Definition: common.h:96
static constexpr int tensor_dim
Definition: dim.h:21
BCINLINE value_type outer_dim() const
Definition: dim.h:315
BCINLINE Dim< N+X > concat(const Dim< X > &other) const
Definition: dim.h:110
std::string to_string(int begin, int end) const
Definition: dim.h:270
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
#define BC_DIM_OP_FACTORY(op, functor)
Definition: dim.h:190
BCINLINE Dim< End-Start > subdim() const
Definition: dim.h:266
BCINLINE Dim & fill(bc::size_t value)
Definition: dim.h:33
BCINLINE value_type sum(size_t start, size_t end) const
Definition: dim.h:230
#define BC_DIM_OP_BOTH(op, functor)
Definition: dim.h:194
std::string to_string(int precision=8, bool pretty=true, bool sparse=false) const
Definition: tensor_utility.h:34
BCINLINE bool operator==(const Dim &other) const
Definition: dim.h:75
BCINLINE value_type sum(size_t end=N) const
Definition: dim.h:238
BCINLINE auto end() const
Definition: dim.h:123
bc::size_t value_type
Definition: dim.h:296
BCINLINE value_type size() const
Definition: dim.h:28
BCINLINE Dim reversed() const
Definition: dim.h:257
BCINLINE value_type size(value_type base_sz=1, value_type base_index=0) const
Definition: dim.h:299
int size_t
Definition: common.h:283
BCINLINE const value_type & operator[](int i) const
unchecked version of dim
Definition: dim.h:51
BCINLINE bool all(size_t start, size_t end) const
Definition: dim.h:216
BCINLINE bool all(size_t end=N) const
Definition: dim.h:224
BCINLINE auto begin() const
Definition: dim.h:122
BCINLINE value_type prod(size_t end=N) const
Definition: dim.h:252
BCINLINE auto begin()
Definition: dim.h:124
BCINLINE auto end()
Definition: dim.h:125
bc::size_t value_type
Definition: dim.h:22
std::string to_string() const
Definition: dim.h:326
BCINLINE value_type * data()
Definition: dim.h:45
std::string to_string(int end=N) const
Definition: dim.h:282
friend std::ostream & operator<<(std::ostream &os, const Dim &self)
Definition: dim.h:286
BCINLINE value_type dim(bc::size_t i) const
Definition: dim.h:310
BCINLINE const value_type * data() const
Definition: dim.h:40
BCINLINE auto concat(Ints... value) const
Definition: dim.h:105
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
BCINLINE bool operator!=(const Dim &other) const
Definition: dim.h:84
BCINLINE value_type prod(size_t start, size_t end) const
Definition: dim.h:244