BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
common.h
Go to the documentation of this file.
1 /* Project: BlackCat_Tensors
2  * Author: JosephJaspers
3  * Copyright 2018
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 
9 #ifndef BLACKCAT_BLACKCAT_COMMON_H_
10 #define BLACKCAT_BLACKCAT_COMMON_H_
11 
12 #include <type_traits>
13 
15 #include "iterators/iterators.h"
16 
17 namespace bc {
18 namespace tensors {
19 
20 template<int X>
22  static constexpr int tensor_dim = X;
23 };
24 
25 template<class ExpressionTemplate>
26 class Tensor_Base;
27 
28 template<class ExpressionTemplate>
29 auto make_tensor(ExpressionTemplate expression)
30 {
31  static_assert(
33  ::is_expression_template::value,
34  "Make Tensor can only be used with Expression_Template");
35  return Tensor_Base<ExpressionTemplate>(expression);
36 }
37 
38 template<class ExpressionTemplate>
39 class Expression_Base;
40 
41 template<class ExpressionTemplate>
42 auto make_expression(ExpressionTemplate expression) {
43  static_assert(
45  ::is_expression_template::value,
46  "Make Tensor can only be used with Expression_Template");
47  return Expression_Base<ExpressionTemplate>(expression);
48 }
49 }
50 
51 }
52 
53 #endif /* BC_INTERNALS_BC_TENSOR_TENSOR_COMMON_H_ */
Definition: constexpr_int.h:14
auto make_expression(ExpressionTemplate expression)
Definition: common.h:42
static constexpr int tensor_dim
Definition: common.h:22
Definition: cmath.h:16
Definition: expression_template_traits.h:76
Definition: cmath.h:17
Definition: common.h:21
auto make_tensor(ExpressionTemplate expression)
Definition: common.h:29
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22