BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
get.h
Go to the documentation of this file.
1 /*
2  * Get.h
3  *
4  * Created on: Jan 22, 2020
5  * Author: joseph
6  */
7 
8 #ifndef BC_TYPE_TRAITS_GET_H_
9 #define BC_TYPE_TRAITS_GET_H_
10 
11 #include "constexpr_int.h"
12 #include "../common.h"
13 #include <type_traits>
14 #include <utility>
15 
16 namespace bc {
17 namespace traits {
18 namespace detail {
19 
20 template<class Arg, class... Args> BCINLINE
21 auto get_impl(Integer<0>, Arg&& arg, Args&&... args)
22  -> decltype(std::forward<Arg>(arg))
23 {
24  return std::forward<Arg>(arg);
25 }
26 
27 template<int Index, class Arg, class... Args> BCINLINE
28 auto get_impl(Integer<Index>, Arg&&, Args&&... args)
29  -> decltype(get_impl(Integer<Index-1>(), std::forward<Args>(args)...))
30 {
31  return get_impl(Integer<Index-1>(), std::forward<Args>(args)...);
32 }
33 
34 } //ns detail
35 
36 template<int Index, class... Args> BCINLINE
37 auto get(Args&&... args)
38  -> decltype(detail::get_impl(Integer<Index>(), std::forward<Args>(args)...))
39 {
40  return detail::get_impl(Integer<Index>(), std::forward<Args>(args)...);
41 }
42 
43 template<class... Args>
44 auto get_last(Args&&... args)
45  -> decltype(get<sizeof...(Args)-1>(std::forward<Args>(args)...))
46 {
47  return get<sizeof...(Args)-1>(std::forward<Args>(args)...);
48 }
49 
50 template<class Arg, class... Args>
51 auto get_first(Arg&& arg, Args&&... args)
52  -> decltype(std::forward<Arg>(arg))
53 {
54  return std::forward<Arg>(arg);
55 }
56 
57 
58 }
59 }
60 
61 
62 
63 #endif /* GET_H_ */
#define BCINLINE
Definition: common.h:96
Definition: constexpr_int.h:14
__host__ __device__ auto get_impl(Integer< 0 >, Arg &&arg, Args &&... args) -> decltype(std::forward< Arg >(arg))
Definition: get.h:21
auto get_first(Arg &&arg, Args &&... args) -> decltype(std::forward< Arg >(arg))
Definition: get.h:51
auto get_last(Args &&... args) -> decltype(get< sizeof...(Args) -1 >(std::forward< Args >(args)...))
Definition: get.h:44
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22