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

Go to the source code of this file.

Namespaces

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

Macros

#define BC_NONLINEAR_DEF(TypeName, funcName)
 

Functions

auto bc::nn::tanh (bc::size_t inputs)
 
template<class ValueType , class SystemTag >
auto bc::nn::tanh (SystemTag system, bc::size_t inputs)
 
template<class SystemTag >
auto bc::nn::tanh (SystemTag system, bc::size_t inputs)
 
template<class ValueType , class SystemTag , int X>
auto bc::nn::tanh (SystemTag system, bc::Dim< X > inputs)
 
template<class SystemTag , int X>
auto bc::nn::tanh (SystemTag system, bc::Dim< X > inputs)
 
auto bc::nn::logistic (bc::size_t inputs)
 
template<class ValueType , class SystemTag >
auto bc::nn::logistic (SystemTag system, bc::size_t inputs)
 
template<class SystemTag >
auto bc::nn::logistic (SystemTag system, bc::size_t inputs)
 
template<class ValueType , class SystemTag , int X>
auto bc::nn::logistic (SystemTag system, bc::Dim< X > inputs)
 
template<class SystemTag , int X>
auto bc::nn::logistic (SystemTag system, bc::Dim< X > inputs)
 
auto bc::nn::relu (bc::size_t inputs)
 
template<class ValueType , class SystemTag >
auto bc::nn::relu (SystemTag system, bc::size_t inputs)
 
template<class SystemTag >
auto bc::nn::relu (SystemTag system, bc::size_t inputs)
 
template<class ValueType , class SystemTag , int X>
auto bc::nn::relu (SystemTag system, bc::Dim< X > inputs)
 
template<class SystemTag , int X>
auto bc::nn::relu (SystemTag system, bc::Dim< X > inputs)
 
auto bc::nn::softplus (bc::size_t inputs)
 
template<class ValueType , class SystemTag >
auto bc::nn::softplus (SystemTag system, bc::size_t inputs)
 
template<class SystemTag >
auto bc::nn::softplus (SystemTag system, bc::size_t inputs)
 
template<class ValueType , class SystemTag , int X>
auto bc::nn::softplus (SystemTag system, bc::Dim< X > inputs)
 
template<class SystemTag , int X>
auto bc::nn::softplus (SystemTag system, bc::Dim< X > inputs)
 
auto bc::nn::mish (bc::size_t inputs)
 
template<class ValueType , class SystemTag >
auto bc::nn::mish (SystemTag system, bc::size_t inputs)
 
template<class SystemTag >
auto bc::nn::mish (SystemTag system, bc::size_t inputs)
 
template<class ValueType , class SystemTag , int X>
auto bc::nn::mish (SystemTag system, bc::Dim< X > inputs)
 
template<class SystemTag , int X>
auto bc::nn::mish (SystemTag system, bc::Dim< X > inputs)
 

Macro Definition Documentation

◆ BC_NONLINEAR_DEF

#define BC_NONLINEAR_DEF (   TypeName,
  funcName 
)
Value:
auto funcName(bc::size_t inputs) {\
return Function<BLACKCAT_DEFAULT_SYSTEM_T,\
typename BLACKCAT_DEFAULT_SYSTEM_T::default_floating_point_type,\
bc::TypeName>(bc::Dim<1>{inputs}); \
}\
template<class ValueType, class SystemTag>\
auto funcName(SystemTag system, bc::size_t inputs) {\
return Function<SystemTag, ValueType, bc::TypeName>(bc::Dim<1>{inputs}); \
}\
template<class SystemTag>\
auto funcName(SystemTag system, bc::size_t inputs) {\
return Function<SystemTag, typename SystemTag::default_floating_point_type, bc::TypeName>(bc::Dim<1>{inputs}); \
}\
template<class ValueType, class SystemTag, int X>\
auto funcName(SystemTag system, bc::Dim<X> inputs) {\
return Function< \
SystemTag, \
ValueType, \
bc::TypeName, \
bc::traits::Integer<X>>(inputs); \
} \
template<class SystemTag, int X> \
auto funcName(SystemTag system, bc::Dim<X> inputs) { \
return Function< \
SystemTag, \
typename SystemTag::default_floating_point_type, \
bc::TypeName, \
bc::traits::Integer<X>>(inputs); \
}
#define BLACKCAT_DEFAULT_SYSTEM_T
Definition: common.h:49
int size_t
Definition: common.h:283