BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
tensor_static_functions.h
Go to the documentation of this file.
1 /*
2  * Tensor_Static_Functions.h
3  *
4  * Created on: Dec 1, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BC_TENSOR_STATIC_FUNCTIONS_H_
9 #define BC_TENSOR_STATIC_FUNCTIONS_H_
10 
11 namespace bc {
12 namespace tensors {
13 
14 template<class Expression>
15 auto sum(const Expression_Base<Expression>& tensor) {
17 }
18 
19 template<class Expression>
21 {
22  using value_type = std::conditional_t<
23  std::is_same<typename Expression::value_type, bool>::value,
24  bc::size_t,
25  typename Expression::value_type>;
26 
27  return bc::algorithms::accumulate(
28  bc::streams::select_on_get_stream(tensor),
29  tensor.cw_cbegin(),
30  tensor.cw_cend(),
31  value_type(0));
32 }
33 
34 template<class Expression>
35 auto prod(const Expression_Base<Expression>& tensor)
36 {
37  using value_type = typename Expression::value_type;
38  return bc::algorithms::accumulate(
39  bc::streams::select_on_get_stream(tensor),
40  tensor.cw_cbegin(),
41  tensor.cw_cend(),
42  value_type(1),
44 }
45 
46 template<class Expression>
47 static bool all(const Expression_Base<Expression>& tensor) {
48  return tensor.size() == value_sum(logical(tensor));
49 }
50 
51 template<class Expression>
52 static bool any(const Expression_Base<Expression>& tensor) {
53  return value_sum(logical(tensor)) != 0;
54 }
55 
56 template<class Expression>
57 static auto max_element(const Expression_Base<Expression>& tensor)
58 {
60  bc::streams::select_on_get_stream(tensor),
61  tensor.cw_cbegin(),
62  tensor.cw_cend());
63 }
64 
65 template<class Expression>
66 static auto min_element(const Expression_Base<Expression>& tensor)
67 {
69  bc::streams::select_on_get_stream(tensor),
70  tensor.cw_cbegin(),
71  tensor.cw_cend());
72 }
73 
74 template<class Expression>
75 static bc::size_t max_index(const Expression_Base<Expression>& tensor) {
76  return (max_element(tensor) - tensor.data());
77 }
78 
79 template<class Expression>
80 static bc::size_t min_index(const Expression_Base<Expression>& tensor) {
81  return min_element(tensor) - tensor.data();
82 }
83 
84 template<class Expression>
85 static auto max(const Expression_Base<Expression>& tensor) {
86  return tensor(max_element(tensor));
87 }
88 
89 template<class Expression>
90 static auto min(const Expression_Base<Expression>& tensor) {
91  return tensor(min_element(tensor));
92 }
93 
94 }
95 }
96 
97 #endif /* TENSOR_STATIC_FUNCTIONS_H_ */
Definition: function_sum.h:23
auto un_expr(functor f) const
Definition: expression_base.h:104
struct bc::oper::Mul mul
Definition: cmath.h:16
class::::::Args static auto max_element(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:151
int size_t
Definition: common.h:283
auto sum(const Expression_Base< Expression > &tensor)
Definition: tensor_static_functions.h:15
auto prod(const Expression_Base< Expression > &tensor)
Definition: tensor_static_functions.h:35
struct bc::oper::cmath_functions::Logical logical
auto cw_cend() const
Definition: expression_base.h:52
class::::::Args static auto min_element(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:153
auto cw_cbegin() const
Definition: expression_base.h:51
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
auto value_sum(const Expression_Base< Expression > &tensor)
Definition: tensor_static_functions.h:20