BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
Classes | Namespaces | Macros | Functions
dim.h File Reference
#include <string>
#include <ostream>
Include dependency graph for dim.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  bc::Dim< N >
 
struct  bc::Dim< 0 >
 

Namespaces

 bc
 The Evaluator determines if an expression needs to be greedily optimized.
 

Macros

#define BC_DIM_OP(op, functor)
 
#define BC_DIM_INPLACE_OP(op, functor)
 
#define BC_DIM_INPLACE_SCALAR_OP(op, functor)
 
#define BC_DIM_SCALAR_OP(op, functor)
 
#define BC_DIM_OP_FACTORY(op, functor)
 
#define BC_DIM_OP_BOTH(op, functor)
 

Functions

template<class... Integers>
BCINLINE auto bc::dim (const Integers &... ints)
 

Macro Definition Documentation

◆ BC_DIM_INPLACE_OP

#define BC_DIM_INPLACE_OP (   op,
  functor 
)
Value:
Dim operator op##=(const Dim& other) { \
return this->inplace_op_impl(bc::oper::functor(), other); \
}

◆ BC_DIM_INPLACE_SCALAR_OP

#define BC_DIM_INPLACE_SCALAR_OP (   op,
  functor 
)
Value:
friend Dim operator op##=(Dim &dim, const value_type& scalar) { \
return dim.inplace_scalar_op_impl(bc::oper::functor(), scalar); \
} \
BCINLINE auto dim(const Integers &... ints)
Definition: dim.h:336

◆ BC_DIM_OP

#define BC_DIM_OP (   op,
  functor 
)
Value:
Dim operator op(const Dim& other) const { \
return this->op_impl(bc::oper::functor(), other); \
}

◆ BC_DIM_OP_BOTH

#define BC_DIM_OP_BOTH (   op,
  functor 
)
Value:
BC_DIM_OP_FACTORY(op, functor) \
BC_DIM_INPLACE_OP(op, functor) \
BC_DIM_INPLACE_SCALAR_OP(op, functor)
#define BC_DIM_OP_FACTORY(op, functor)
Definition: dim.h:190

◆ BC_DIM_OP_FACTORY

#define BC_DIM_OP_FACTORY (   op,
  functor 
)
Value:
BC_DIM_OP(op, functor) \
BC_DIM_SCALAR_OP(op, functor)
#define BC_DIM_OP(op, functor)
Definition: dim.h:166

◆ BC_DIM_SCALAR_OP

#define BC_DIM_SCALAR_OP (   op,
  functor 
)
Value:
friend Dim operator op(const Dim &dim, const value_type& scalar) { \
return dim.scalar_op_impl(bc::oper::functor(), scalar); \
} \
\
friend Dim operator op(const value_type& scalar, const Dim &dim) { \
return dim.scalar_op_impl(bc::oper::functor(), scalar); \
}
BCINLINE auto dim(const Integers &... ints)
Definition: dim.h:336