BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
function_transpose.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_EXPRESSION_TEMPLATES_FUNCTION_TRANSPOSE_H_
10 #define BC_EXPRESSION_TEMPLATES_FUNCTION_TRANSPOSE_H_
11 
13 
14 namespace bc {
15 namespace tensors {
16 namespace exprs {
17 
18 
19 template<class Value, class System_Tag>
20 struct Un_Op<oper::transpose<System_Tag>, Value>:
21  Expression_Base<Un_Op<oper::transpose<System_Tag>, Value>>,
22  oper::transpose<System_Tag> {
23 
24  using value_type = typename Value::value_type;
25  using system_tag = System_Tag;
26 
27  static constexpr int tensor_dim = Value::tensor_dim;
28  static constexpr int tensor_iterator_dim =
29  tensor_dim > 1? tensor_dim :0;
30 
31  Value array;
32 
33 
35  Value array,
37  array(array) {}
38 
41  }
42 
43  template<class ADL_Integer> BCINLINE
44  auto operator [] (ADL_Integer i) const -> decltype(array[i]) {
45  return array[i];
46  }
47 
48  BCINLINE bc::size_t size() const { return array.size(); }
49  BCINLINE bc::size_t rows() const { return array.cols(); }
50  BCINLINE bc::size_t cols() const { return array.rows(); }
51 
52  BCINLINE bc::size_t dim(int i) const {
53  if (i == 0)
54  return array.cols();
55  else if (i == 1)
56  return array.rows();
57  else
58  return array.dim(i);
59  }
60 
61  template<class... ints> BCINLINE
62  auto operator ()(bc::size_t m, bc::size_t n, ints... integers) const
63  -> decltype(array(n,m, integers...)) {
64  return array(n,m, integers...);
65  }
66  template<class... ints> BCINLINE
67  auto operator ()(bc::size_t m, bc::size_t n, ints... integers)
68  -> decltype(array(n,m, integers...)) {
69  return array(n,m, integers...);
70  }
71 };
72 
73 
74 template<class expr_t>
75 auto make_transpose(expr_t expr) {
76  using expression_template_t = std::decay_t<decltype(expr.expression_template())>;
77  using system_tag = typename expression_template_t::system_tag;
78  return Un_Op<oper::transpose<system_tag>, expression_template_t>(expr.expression_template());
79 }
80 
81 template<class Array, class SystemTag>
83  return expression.array;
84 }
85 
86 } //ns BC
87 } //ns exprs
88 } //ns tensors
89 
90 #endif /* EXPRESSION_UNARY_MATRIXTRANSPOSITION_H_ */
System_Tag system_tag
Definition: function_transpose.h:25
#define BCINLINE
Definition: common.h:96
Definition: blas.h:19
auto make_transpose(expr_t expr)
Definition: function_transpose.h:75
BCINLINE bc::size_t dim(int i) const
Definition: function_transpose.h:52
static oper::transpose< System_Tag > get_operation()
Definition: function_transpose.h:39
BCINLINE bc::size_t cols() const
Definition: function_transpose.h:50
typename Value::value_type value_type
Definition: function_transpose.h:24
BCINLINE bc::size_t size() const
Definition: function_transpose.h:48
Un_Op(Value array, oper::transpose< System_Tag >=oper::transpose< System_Tag >())
Definition: function_transpose.h:34
BCINLINE value_type operator()(integers... index) const
Definition: expression_unary.h:45
Definition: array.h:25
BCINLINE value_type operator[](int index) const
Definition: expression_unary.h:50
ArrayType array
Definition: expression_unary.h:32
int size_t
Definition: common.h:283
static constexpr int tensor_iterator_dim
Definition: expression_unary.h:30
static constexpr int tensor_dim
Definition: expression_unary.h:29
typename ArrayType::system_tag system_tag
Definition: expression_unary.h:27
BCINLINE bc::size_t rows() const
Definition: function_transpose.h:49
Definition: expression_template_base.h:77
const auto transpose() const
Definition: expression_operations.h:85
Definition: expression_template_traits.h:19
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22