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

Go to the source code of this file.

Classes

struct  bc::oper::Assign
 
struct  bc::oper::Add_Assign
 
struct  bc::oper::Sub_Assign
 
struct  bc::oper::Alias_Assign
 
struct  bc::oper::Alias_Add_Assign
 
struct  bc::oper::Alias_Sub_Assign
 
struct  bc::oper::Mul_Assign
 
struct  bc::oper::Div_Assign
 
struct  bc::oper::Scalar_Mul
 
struct  bc::oper::Add
 
struct  bc::oper::Mul
 
struct  bc::oper::Sub
 
struct  bc::oper::Div
 
struct  bc::oper::Equal
 
struct  bc::oper::Approx_Equal
 
struct  bc::oper::Greater
 
struct  bc::oper::Lesser
 
struct  bc::oper::Greater_Equal
 
struct  bc::oper::Lesser_Equal
 
struct  bc::oper::Max
 
struct  bc::oper::Min
 
struct  bc::oper::And
 
struct  bc::oper::Or
 
struct  bc::oper::Xor
 
struct  bc::oper::Host_Atomic_Add
 
struct  bc::oper::Host_Atomic_Mul
 
struct  bc::oper::Host_Atomic_Sub
 
struct  bc::oper::Host_Atomic_Div
 
struct  bc::oper::Device_Atomic_Add
 
struct  bc::oper::Device_Atomic_Mul
 
struct  bc::oper::Device_Atomic_Sub
 
struct  bc::oper::Device_Atomic_Div
 

Namespaces

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

Macros

#define BC_FORWARD_TO_APPLY
 
#define BC_FORWARD_DEF(...)
 
#define BC_ADVANCED_FORWARD_DEF(...)
 

Typedefs

template<class SystemTag >
using bc::oper::Atomic_Add = std::conditional_t< detail::is_host< SystemTag >, Host_Atomic_Add, Device_Atomic_Add >
 
template<class SystemTag >
using bc::oper::Atomic_Sub = std::conditional_t< detail::is_host< SystemTag >, Host_Atomic_Add, Device_Atomic_Sub >
 
template<class SystemTag >
using bc::oper::Atomic_Div = std::conditional_t< detail::is_host< SystemTag >, Host_Atomic_Add, Device_Atomic_Div >
 
template<class SystemTag >
using bc::oper::Atomic_Mul = std::conditional_t< detail::is_host< SystemTag >, Host_Atomic_Add, Device_Atomic_Mul >
 

Variables

bc::oper::Assign bc::oper::assign
 
bc::oper::Add_Assign bc::oper::add_assign
 
bc::oper::Sub_Assign bc::oper::sub_assign
 
bc::oper::Alias_Assign bc::oper::alias_assign
 
bc::oper::Alias_Add_Assign bc::oper::alias_add_assign
 
bc::oper::Alias_Sub_Assign bc::oper::alias_sub_assign
 
bc::oper::Mul_Assign bc::oper::mul_assign
 
bc::oper::Div_Assign bc::oper::div_assign
 
struct bc::oper::Scalar_Mul bc::oper::scalar_mul
 
bc::oper::Add bc::oper::add
 
struct bc::oper::Mul bc::oper::mul
 
bc::oper::Sub bc::oper::sub
 
struct bc::oper::Div bc::oper::div
 
struct bc::oper::Equal bc::oper::equal
 
struct bc::oper::Approx_Equal bc::oper::approx_equal
 
struct bc::oper::Greater bc::oper::greater
 
struct bc::oper::Lesser bc::oper::lesser
 
struct bc::oper::Greater_Equal bc::oper::greater_equal
 
struct bc::oper::Lesser_Equal bc::oper::lesser_equal
 
struct bc::oper::Max bc::oper::max
 
struct bc::oper::Min bc::oper::min
 
struct bc::oper::And bc::oper::and_
 
struct bc::oper::Or bc::oper::or_
 
struct bc::oper::Xor bc::oper::xor_
 
bc::oper::Host_Atomic_Add bc::oper::host_atomic_add
 
bc::oper::Host_Atomic_Mul bc::oper::host_atomic_mul
 
bc::oper::Host_Atomic_Sub bc::oper::host_atomic_sub
 
bc::oper::Host_Atomic_Div bc::oper::host_atomic_div
 
bc::oper::Device_Atomic_Add bc::oper::device_atomic_add
 
bc::oper::Device_Atomic_Mul bc::oper::device_atomic_mul
 
bc::oper::Device_Atomic_Sub bc::oper::device_atomic_sub
 
bc::oper::Device_Atomic_Div bc::oper::device_atomic_div
 

Macro Definition Documentation

◆ BC_ADVANCED_FORWARD_DEF

#define BC_ADVANCED_FORWARD_DEF (   ...)
Value:
template<class Lv, class Rv> \
BCINLINE \
static auto apply (Lv&& lv, Rv&& rv) \
{ \
__VA_ARGS__; \
} \
BC_FORWARD_TO_APPLY

◆ BC_FORWARD_DEF

#define BC_FORWARD_DEF (   ...)
Value:
template<class Lv, class Rv> \
BCINLINE \
static auto apply (Lv&& lv, Rv&& rv) \
-> decltype(__VA_ARGS__) { \
return __VA_ARGS__; \
} \
BC_FORWARD_TO_APPLY

◆ BC_FORWARD_TO_APPLY

#define BC_FORWARD_TO_APPLY
Value:
template<class Lv, class Rv> \
BCINLINE auto operator () (Lv&& lv, Rv&& rv) const \
-> decltype(apply(lv, rv)) { \
return apply(lv, rv); \
}