8 #ifndef BLACKCAT_TENSOR_CMATH_H_ 9 #define BLACKCAT_TENSOR_CMATH_H_ 21 namespace cmath_functions {
23 #define BLACKCAT_FUNCTOR_DEF(funcName, instance_name, math_function, ...) \ 26 template<class value_type> BCINLINE \ 27 value_type operator () (const value_type& x) const { \ 28 return math_function; \ 30 template<class value_type> BCINLINE \ 31 static auto apply(const value_type& x) { \ 32 return math_function; \ 35 auto operator() (const bc::tensors::Expression_Base<Xpr>& tensor) { \ 36 return tensor.un_expr(funcName()); \ 39 auto operator() (const bc::tensors::Tensor_Base<Xpr>& tensor) { \ 40 return tensor.un_expr(funcName()); \ 45 #define DERIVATIVE_DEF(...)\ 46 BLACKCAT_FUNCTOR_DEF(Derivative, dx, __VA_ARGS__) 48 #define DERIVATIVE_CACHED_DEF(...)\ 49 BLACKCAT_FUNCTOR_DEF(Cached_Derivative, cached_dx, __VA_ARGS__) 51 #define BLACKCAT_MATH_DEF(funcName, instanceName, ...) \ 52 BLACKCAT_FUNCTOR_DEF(funcName, instanceName, std::instanceName(x), __VA_ARGS__) 118 template<
class ValueType,
class Exp>
BCINLINE 119 ValueType operator () (
const ValueType& x, Exp exp)
const {
123 template<
class ValueType,
class Exp>
BCINLINE 124 static auto apply(
const ValueType& x, Exp exp) {
128 template<
class Xpr,
class Exp>
133 typename Xpr::value_type
exp;
134 auto operator() (
const typename Xpr::value_type value)
const {
139 return tensor.
un_expr(FunctorPow {exp});
158 DERIVATIVE_DEF(Logistic::apply(x) * (1 - Logistic::apply(x)))
162 DERIVATIVE_DEF(x > 0 ? 1 : 0)
168 DERIVATIVE_DEF(Logistic::apply(x)))
171 x * std::
tanh(SoftPlus::apply(x)),
177 + std::
exp(x)*(4*x+6))
180 #undef BLACKCAT_FUNCTOR_DEF 181 #undef BLACKCAT_MATH_DEF 182 #undef DERIVATIVE_DEF 183 #undef DERIVATIVE_CACHED_DEF #define BLACKCAT_FUNCTOR_DEF(funcName, instance_name, math_function,...)
Definition: cmath.h:23
struct bc::oper::cmath_functions::Mish mish
struct bc::oper::cmath_functions::Asin asin
struct bc::oper::cmath_functions::Rint rint
struct bc::oper::cmath_functions::Remquo remquo
struct bc::oper::cmath_functions::Nan nan
#define BCINLINE
Definition: common.h:96
struct bc::oper::cmath_functions::Nexttoward nexttoward
struct bc::oper::cmath_functions::Log log
struct bc::oper::cmath_functions::Llround llround
struct bc::oper::cmath_functions::Floor floor
struct bc::oper::cmath_functions::Logb logb
struct bc::oper::cmath_functions::Hypot hypot
auto un_expr(functor f) const
Definition: expression_base.h:104
struct bc::oper::cmath_functions::Relu relu
struct bc::oper::cmath_functions::Asinh asinh
struct bc::oper::cmath_functions::Cbrt cbrt
struct bc::oper::cmath_functions::Nearbyint nearbyint
struct bc::oper::cmath_functions::Log1P log1p
struct bc::oper::cmath_functions::Fma fma
struct bc::oper::cmath_functions::Copysign copysign
struct bc::oper::cmath_functions::Isinf isinf
struct bc::oper::cmath_functions::Fmax fmax
struct bc::oper::cmath_functions::Sec sec
struct bc::oper::cmath_functions::Lrint lrint
struct bc::oper::cmath_functions::Logistic logistic
struct bc::oper::cmath_functions::Isnan isnan
struct bc::oper::cmath_functions::Lround lround
static BCINLINE auto apply(const ValueType &x, Exp exp)
Definition: cmath.h:124
struct bc::oper::cmath_functions::Fmin fmin
struct bc::oper::cmath_functions::Scalbn scalbn
struct bc::oper::cmath_functions::Acos acos
struct bc::oper::cmath_functions::Abs abs
struct bc::oper::cmath_functions::Llrint llrint
struct bc::oper::cmath_functions::Sin sin
struct bc::oper::cmath_functions::Fdim fdim
struct bc::oper::cmath_functions::Sqrt sqrt
struct bc::oper::cmath_functions::Nextafter nextafter
struct bc::oper::cmath_functions::Fabs fabs
struct bc::oper::cmath_functions::Tanh tanh
struct bc::oper::cmath_functions::Expm1 expm1
struct bc::oper::cmath_functions::Log10 log10
struct bc::oper::cmath_functions::Atanh atanh
struct bc::oper::cmath_functions::Modf modf
struct bc::oper::cmath_functions::Ilogb ilogb
struct bc::oper::cmath_functions::Acosh acosh
struct bc::oper::cmath_functions::Exp2 exp2
#define DERIVATIVE_CACHED_DEF(...)
Definition: cmath.h:48
struct bc::oper::cmath_functions::Fmod fmod
struct bc::oper::cmath_functions::Pow pow
struct bc::oper::cmath_functions::Atan atan
struct bc::oper::cmath_functions::Pass pass
struct bc::oper::cmath_functions::Logical logical
struct bc::oper::cmath_functions::Pow3 pow3
struct bc::oper::cmath_functions::Scalbln scalbln
struct bc::oper::cmath_functions::Ceil ceil
struct bc::oper::cmath_functions::Round round
struct bc::oper::cmath_functions::Ldexp ldexp
struct bc::oper::cmath_functions::SoftPlus softplus
struct bc::oper::cmath_functions::Trunc trunc
struct bc::oper::cmath_functions::Atan2 atan2
struct bc::oper::cmath_functions::Tan tan
struct bc::oper::cmath_functions::Cosh cosh
struct bc::oper::cmath_functions::Cos cos
struct bc::oper::cmath_functions::Exp exp
struct bc::oper::cmath_functions::Sinh sinh
struct bc::oper::cmath_functions::Log2 log2
#define DERIVATIVE_DEF(...)
Definition: cmath.h:45
struct bc::oper::cmath_functions::Frexp frexp
struct bc::oper::cmath_functions::Remainder remainder
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
struct bc::oper::cmath_functions::Pow2 pow2
#define BLACKCAT_MATH_DEF(funcName, instanceName,...)
Definition: cmath.h:51