BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
constexpr_int.h
Go to the documentation of this file.
1 /*
2  * Int.h
3  *
4  * Created on: Jan 22, 2020
5  * Author: joseph
6  */
7 
8 #ifndef BC_TYPE_TRAITS_INT_H_
9 #define BC_TYPE_TRAITS_INT_H_
10 
11 namespace bc {
12 namespace traits {
13 
14 template<int X> struct Integer {
15 
16  static constexpr int value = X;
17 
18 #define BC_INTEGER_OP(op) \
19  \
20  template<int Y> \
21  auto operator op (const Integer<Y>& other) const { \
22  return Integer<X op Y>(); \
23  }
24 
29 
30 #undef BC_INTEGER_OP
31 
32 };
33 
34 }
35 }
36 
37 
38 
39 #endif /* INT_H_ */
40 
Definition: constexpr_int.h:14
#define BC_INTEGER_OP(op)
Definition: constexpr_int.h:18
static constexpr int value
Definition: constexpr_int.h:16
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22