BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
bind.h
Go to the documentation of this file.
1 /*
2  * Bind.h
3  *
4  * Created on: Jun 30, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCAT_BIND_H_
9 #define BLACKCAT_BIND_H_
10 
11 #include "type_traits.h"
12 #include "common.h"
13 #include "../common.h"
14 
15 namespace bc {
16 namespace traits {
17 
18 using namespace bc::traits::common;
19 
31 template<class Function, class... Args>
32 struct Bind: tuple<Args...>
33 {
34  Function func;
35 
36  Bind(Function func, Args... AdditionalArgs):
37  tuple<Args...>(AdditionalArgs...), func(func) {}
38 
39  static constexpr int num_args = sizeof...(Args);
40 
41 private:
42 
43  template<class... TupleArgs>
44  auto call(true_type, TupleArgs&&... params) const
45  -> decltype(func(forward<TupleArgs>(params)...))
46  {
47  return func(forward<TupleArgs>(params)...);
48  }
49 
50  template<class... TupleArgs>
51  auto call(true_type, TupleArgs&&... params)
52  -> decltype(func(forward<TupleArgs>(params)...))
53  {
54  return func(forward<TupleArgs>(params)...);
55  }
56 
57  template<class... TupleArgs, int ArgCount=sizeof...(TupleArgs)>
58  auto call(false_type, TupleArgs&&... params) const
59 #ifndef _MSC_VER
60  -> decltype(call(
62  forward<TupleArgs>(params)...,
63  std::get<ArgCount>(*this)))
64 #endif
65  {
66  return call(
68  forward<TupleArgs>(params)...,
69  std::get<ArgCount>(*this));
70  }
71 
72  template<class... TupleArgs, int ArgCount=sizeof...(TupleArgs)>
73  auto call(false_type, TupleArgs&&... params)
74 #ifndef _MSC_VER
75  -> decltype(call(
77  forward<TupleArgs>(params)...,
78  std::get<ArgCount>(*this)))
79 #endif
80  {
81  return call(
83  forward<TupleArgs>(params)...,
84  std::get<ArgCount>(*this));
85  }
86 
87 public:
88 
89  template<int ADL=0, class=std::enable_if_t<ADL==0>>
90  auto operator () ()
91  -> decltype(call(truth_type<num_args == 0 && ADL==0>()))
92  {
93  return call(truth_type<num_args == 0>());
94  }
95 
96  template<int ADL=0, class=std::enable_if_t<ADL==0>>
97  auto operator () () const
98  -> decltype(call(truth_type<num_args == 0 && ADL==0>()))
99  {
100  return call(truth_type<num_args == 0>());
101  }
102 };
103 
104 template<class Function, class... Args>
105 Bind<Function, Args&&...> bind(Function function, Args&&... args) {
106  return { function, std::forward<Args>(args)... };
107 }
108 
109 }
110 }
111 
112 
113 
114 
115 #endif /* BIND_H_ */
Bind< Function, Args &&... > bind(Function function, Args &&... args)
Definition: bind.h:105
Bind(Function func, Args... AdditionalArgs)
Definition: bind.h:36
Function func
Definition: bind.h:34
conditional_t< Bool, true_type, false_type > truth_type
Definition: type_traits.h:49
Similar to std::bind but the evaluation of the function in respect to its bound arguments are deduced...
Definition: bind.h:32
Definition: common.h:16
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22