BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
tree_output_data.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 BC_TENSOR_EXPRESSION_TEMPLATES_INJECTION_H_
10 #define BC_TENSOR_EXPRESSION_TEMPLATES_INJECTION_H_
11 
12 
13 namespace bc {
14 namespace tensors {
15 namespace exprs {
16 
17 template<class Tensor, int AlphaModifer=1, int BetaModifer=0>
19 {
20  static constexpr int tensor_dim = Tensor::tensor_dim;
21  static constexpr size_t ALPHA = AlphaModifer;
22  static constexpr size_t BETA = BetaModifer;
23 
25 
26  const Tensor& data() const { return array; }
27  Tensor& data() { return array; }
28 };
29 
30 template<class Op, bool PriorEval, class Tensor, int A, int B>
32  constexpr int alpha = A * bc::oper::operation_traits<Op>::alpha_modifier;
33  constexpr int beta = PriorEval ? 1 : 0;
34  return Output_Data<Tensor, alpha, beta> {tensor.data()};
35 }
36 
37 template<int AlphaModifer=1, int BetaModifer=0, class Tensor>
38 inline auto make_output_data(Tensor tensor) {
40 }
41 
42 
43 } //ns exprs
44 } //ns tensors
45 } //ns BC
46 
47 
48 #endif /* INJECTION_INFO_H_ */
Definition: tree_output_data.h:18
Tensor & data()
Definition: tree_output_data.h:27
auto update_alpha_beta_modifiers(Output_Data< Tensor, A, B > tensor)
Definition: tree_output_data.h:31
static constexpr size_t ALPHA
Definition: tree_output_data.h:21
auto make_output_data(Tensor tensor)
Definition: tree_output_data.h:38
Definition: operation_traits.h:24
static constexpr int tensor_dim
Definition: tree_output_data.h:20
const Tensor & data() const
Definition: tree_output_data.h:26
static constexpr size_t BETA
Definition: tree_output_data.h:22
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
Tensor array
Definition: tree_output_data.h:24