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

Go to the source code of this file.

Classes

class  bc::tensors::Expression_Base< ExpressionTemplate >
 
class  bc::tensors::Tensor_Base< ExpressionTemplate >
 
struct  bc::oper::cmath_functions::Pass
 
struct  bc::oper::cmath_functions::Pass::Derivative
 
struct  bc::oper::cmath_functions::Exp
 
struct  bc::oper::cmath_functions::Exp::Derivative
 
struct  bc::oper::cmath_functions::Exp2
 
struct  bc::oper::cmath_functions::Sqrt
 
struct  bc::oper::cmath_functions::Sqrt::Derivative
 
struct  bc::oper::cmath_functions::Sin
 
struct  bc::oper::cmath_functions::Sin::Derivative
 
struct  bc::oper::cmath_functions::Cos
 
struct  bc::oper::cmath_functions::Cos::Derivative
 
struct  bc::oper::cmath_functions::Tan
 
struct  bc::oper::cmath_functions::Tan::Derivative
 
struct  bc::oper::cmath_functions::Sec
 
struct  bc::oper::cmath_functions::Sinh
 
struct  bc::oper::cmath_functions::Sinh::Derivative
 
struct  bc::oper::cmath_functions::Cosh
 
struct  bc::oper::cmath_functions::Cosh::Derivative
 
struct  bc::oper::cmath_functions::Tanh
 
struct  bc::oper::cmath_functions::Tanh::Derivative
 
struct  bc::oper::cmath_functions::Tanh::Cached_Derivative
 
struct  bc::oper::cmath_functions::Asin
 
struct  bc::oper::cmath_functions::Asin::Derivative
 
struct  bc::oper::cmath_functions::Acos
 
struct  bc::oper::cmath_functions::Acos::Derivative
 
struct  bc::oper::cmath_functions::Atan
 
struct  bc::oper::cmath_functions::Atan::Derivative
 
struct  bc::oper::cmath_functions::Atan2
 
struct  bc::oper::cmath_functions::Asinh
 
struct  bc::oper::cmath_functions::Acosh
 
struct  bc::oper::cmath_functions::Atanh
 
struct  bc::oper::cmath_functions::Abs
 
struct  bc::oper::cmath_functions::Cbrt
 
struct  bc::oper::cmath_functions::Ceil
 
struct  bc::oper::cmath_functions::Copysign
 
struct  bc::oper::cmath_functions::Expm1
 
struct  bc::oper::cmath_functions::Fabs
 
struct  bc::oper::cmath_functions::Fdim
 
struct  bc::oper::cmath_functions::Floor
 
struct  bc::oper::cmath_functions::Fma
 
struct  bc::oper::cmath_functions::Fmax
 
struct  bc::oper::cmath_functions::Fmin
 
struct  bc::oper::cmath_functions::Fmod
 
struct  bc::oper::cmath_functions::Frexp
 
struct  bc::oper::cmath_functions::Hypot
 
struct  bc::oper::cmath_functions::Ilogb
 
struct  bc::oper::cmath_functions::Ldexp
 
struct  bc::oper::cmath_functions::Llrint
 
struct  bc::oper::cmath_functions::Llround
 
struct  bc::oper::cmath_functions::Log
 
struct  bc::oper::cmath_functions::Log::Derivative
 
struct  bc::oper::cmath_functions::Log10
 
struct  bc::oper::cmath_functions::Log1P
 
struct  bc::oper::cmath_functions::Log2
 
struct  bc::oper::cmath_functions::Logb
 
struct  bc::oper::cmath_functions::Lrint
 
struct  bc::oper::cmath_functions::Lround
 
struct  bc::oper::cmath_functions::Modf
 
struct  bc::oper::cmath_functions::Nan
 
struct  bc::oper::cmath_functions::Nearbyint
 
struct  bc::oper::cmath_functions::Nextafter
 
struct  bc::oper::cmath_functions::Nexttoward
 
struct  bc::oper::cmath_functions::Pow
 
struct  bc::oper::cmath_functions::Remainder
 
struct  bc::oper::cmath_functions::Remquo
 
struct  bc::oper::cmath_functions::Rint
 
struct  bc::oper::cmath_functions::Round
 
struct  bc::oper::cmath_functions::Scalbln
 
struct  bc::oper::cmath_functions::Scalbn
 
struct  bc::oper::cmath_functions::Trunc
 
struct  bc::oper::cmath_functions::Isinf
 
struct  bc::oper::cmath_functions::Isnan
 
struct  bc::oper::cmath_functions::Pow2
 
struct  bc::oper::cmath_functions::Pow2::Derivative
 
struct  bc::oper::cmath_functions::Pow3
 
struct  bc::oper::cmath_functions::Pow3::Derivative
 
struct  bc::oper::cmath_functions::Logistic
 
struct  bc::oper::cmath_functions::Logistic::Derivative
 
struct  bc::oper::cmath_functions::Logistic::Cached_Derivative
 
struct  bc::oper::cmath_functions::Relu
 
struct  bc::oper::cmath_functions::Relu::Derivative
 
struct  bc::oper::cmath_functions::Relu::Cached_Derivative
 
struct  bc::oper::cmath_functions::Logical
 
struct  bc::oper::cmath_functions::SoftPlus
 
struct  bc::oper::cmath_functions::SoftPlus::Derivative
 
struct  bc::oper::cmath_functions::Mish
 
struct  bc::oper::cmath_functions::Mish::Derivative
 

Namespaces

 bc
 The Evaluator determines if an expression needs to be greedily optimized.
 
 bc::tensors
 
 bc::oper
 
 bc::oper::cmath_functions
 

Macros

#define BLACKCAT_FUNCTOR_DEF(funcName, instance_name, math_function, ...)
 
#define DERIVATIVE_DEF(...)   BLACKCAT_FUNCTOR_DEF(Derivative, dx, __VA_ARGS__)
 
#define DERIVATIVE_CACHED_DEF(...)   BLACKCAT_FUNCTOR_DEF(Cached_Derivative, cached_dx, __VA_ARGS__)
 
#define BLACKCAT_MATH_DEF(funcName, instanceName, ...)   BLACKCAT_FUNCTOR_DEF(funcName, instanceName, std::instanceName(x), __VA_ARGS__)
 

Variables

struct bc::oper::cmath_functions::Pass bc::oper::cmath_functions::pass
 
struct bc::oper::cmath_functions::Exp bc::oper::cmath_functions::exp
 
struct bc::oper::cmath_functions::Exp2 bc::oper::cmath_functions::exp2
 
struct bc::oper::cmath_functions::Sqrt bc::oper::cmath_functions::sqrt
 
struct bc::oper::cmath_functions::Sin bc::oper::cmath_functions::sin
 
struct bc::oper::cmath_functions::Cos bc::oper::cmath_functions::cos
 
struct bc::oper::cmath_functions::Tan bc::oper::cmath_functions::tan
 
struct bc::oper::cmath_functions::Sec bc::oper::cmath_functions::sec
 
struct bc::oper::cmath_functions::Sinh bc::oper::cmath_functions::sinh
 
struct bc::oper::cmath_functions::Cosh bc::oper::cmath_functions::cosh
 
struct bc::oper::cmath_functions::Tanh bc::oper::cmath_functions::tanh
 
struct bc::oper::cmath_functions::Asin bc::oper::cmath_functions::asin
 
struct bc::oper::cmath_functions::Acos bc::oper::cmath_functions::acos
 
struct bc::oper::cmath_functions::Atan bc::oper::cmath_functions::atan
 
struct bc::oper::cmath_functions::Atan2 bc::oper::cmath_functions::atan2
 
struct bc::oper::cmath_functions::Asinh bc::oper::cmath_functions::asinh
 
struct bc::oper::cmath_functions::Acosh bc::oper::cmath_functions::acosh
 
struct bc::oper::cmath_functions::Atanh bc::oper::cmath_functions::atanh
 
struct bc::oper::cmath_functions::Abs bc::oper::cmath_functions::abs
 
struct bc::oper::cmath_functions::Cbrt bc::oper::cmath_functions::cbrt
 
struct bc::oper::cmath_functions::Ceil bc::oper::cmath_functions::ceil
 
struct bc::oper::cmath_functions::Copysign bc::oper::cmath_functions::copysign
 
struct bc::oper::cmath_functions::Expm1 bc::oper::cmath_functions::expm1
 
struct bc::oper::cmath_functions::Fabs bc::oper::cmath_functions::fabs
 
struct bc::oper::cmath_functions::Fdim bc::oper::cmath_functions::fdim
 
struct bc::oper::cmath_functions::Floor bc::oper::cmath_functions::floor
 
struct bc::oper::cmath_functions::Fma bc::oper::cmath_functions::fma
 
struct bc::oper::cmath_functions::Fmax bc::oper::cmath_functions::fmax
 
struct bc::oper::cmath_functions::Fmin bc::oper::cmath_functions::fmin
 
struct bc::oper::cmath_functions::Fmod bc::oper::cmath_functions::fmod
 
struct bc::oper::cmath_functions::Frexp bc::oper::cmath_functions::frexp
 
struct bc::oper::cmath_functions::Hypot bc::oper::cmath_functions::hypot
 
struct bc::oper::cmath_functions::Ilogb bc::oper::cmath_functions::ilogb
 
struct bc::oper::cmath_functions::Ldexp bc::oper::cmath_functions::ldexp
 
struct bc::oper::cmath_functions::Llrint bc::oper::cmath_functions::llrint
 
struct bc::oper::cmath_functions::Llround bc::oper::cmath_functions::llround
 
struct bc::oper::cmath_functions::Log bc::oper::cmath_functions::log
 
struct bc::oper::cmath_functions::Log10 bc::oper::cmath_functions::log10
 
struct bc::oper::cmath_functions::Log1P bc::oper::cmath_functions::log1p
 
struct bc::oper::cmath_functions::Log2 bc::oper::cmath_functions::log2
 
struct bc::oper::cmath_functions::Logb bc::oper::cmath_functions::logb
 
struct bc::oper::cmath_functions::Lrint bc::oper::cmath_functions::lrint
 
struct bc::oper::cmath_functions::Lround bc::oper::cmath_functions::lround
 
struct bc::oper::cmath_functions::Modf bc::oper::cmath_functions::modf
 
struct bc::oper::cmath_functions::Nan bc::oper::cmath_functions::nan
 
struct bc::oper::cmath_functions::Nearbyint bc::oper::cmath_functions::nearbyint
 
struct bc::oper::cmath_functions::Nextafter bc::oper::cmath_functions::nextafter
 
struct bc::oper::cmath_functions::Nexttoward bc::oper::cmath_functions::nexttoward
 
struct bc::oper::cmath_functions::Pow bc::oper::cmath_functions::pow
 
struct bc::oper::cmath_functions::Remainder bc::oper::cmath_functions::remainder
 
struct bc::oper::cmath_functions::Remquo bc::oper::cmath_functions::remquo
 
struct bc::oper::cmath_functions::Rint bc::oper::cmath_functions::rint
 
struct bc::oper::cmath_functions::Round bc::oper::cmath_functions::round
 
struct bc::oper::cmath_functions::Scalbln bc::oper::cmath_functions::scalbln
 
struct bc::oper::cmath_functions::Scalbn bc::oper::cmath_functions::scalbn
 
struct bc::oper::cmath_functions::Trunc bc::oper::cmath_functions::trunc
 
struct bc::oper::cmath_functions::Isinf bc::oper::cmath_functions::isinf
 
struct bc::oper::cmath_functions::Isnan bc::oper::cmath_functions::isnan
 
struct bc::oper::cmath_functions::Pow2 bc::oper::cmath_functions::pow2
 
struct bc::oper::cmath_functions::Pow3 bc::oper::cmath_functions::pow3
 
struct bc::oper::cmath_functions::Logistic bc::oper::cmath_functions::logistic
 
struct bc::oper::cmath_functions::Relu bc::oper::cmath_functions::relu
 
struct bc::oper::cmath_functions::Logical bc::oper::cmath_functions::logical
 
struct bc::oper::cmath_functions::SoftPlus bc::oper::cmath_functions::softplus
 
struct bc::oper::cmath_functions::Mish bc::oper::cmath_functions::mish
 

Macro Definition Documentation

◆ BLACKCAT_FUNCTOR_DEF

#define BLACKCAT_FUNCTOR_DEF (   funcName,
  instance_name,
  math_function,
  ... 
)
Value:
\
struct funcName { \
template<class value_type> BCINLINE \
value_type operator () (const value_type& x) const { \
return math_function; \
} \
template<class value_type> BCINLINE \
static auto apply(const value_type& x) { \
return math_function; \
} \
template<class Xpr> \
auto operator() (const bc::tensors::Expression_Base<Xpr>& tensor) { \
return tensor.un_expr(funcName()); \
} \
template<class Xpr> \
auto operator() (const bc::tensors::Tensor_Base<Xpr>& tensor) { \
return tensor.un_expr(funcName()); \
} \
__VA_ARGS__ \
} instance_name; \
auto un_expr(functor f) const
Definition: expression_base.h:104
Definition: cmath.h:16
Definition: cmath.h:17

◆ BLACKCAT_MATH_DEF

#define BLACKCAT_MATH_DEF (   funcName,
  instanceName,
  ... 
)    BLACKCAT_FUNCTOR_DEF(funcName, instanceName, std::instanceName(x), __VA_ARGS__)

◆ DERIVATIVE_CACHED_DEF

#define DERIVATIVE_CACHED_DEF (   ...)    BLACKCAT_FUNCTOR_DEF(Cached_Derivative, cached_dx, __VA_ARGS__)

◆ DERIVATIVE_DEF

#define DERIVATIVE_DEF (   ...)    BLACKCAT_FUNCTOR_DEF(Derivative, dx, __VA_ARGS__)