BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
coefficientwise_iterator.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 ELEMENTWISE_Coefficientwise_Iterator_H_
10 #define ELEMENTWISE_Coefficientwise_Iterator_H_
11 
12 #include "common.h"
13 
14 namespace bc {
15 namespace tensors {
16 namespace iterators {
17 
18 template<direction Direction, class Tensor, class enabler=void>
20 
22  using iterator_category = std::random_access_iterator_tag;
23  using value_type = typename Tensor::value_type;
26  using pointer = value_type*;
27 
28 
31 
33  tensor(tensor), index(index) {}
34 
36  this->index = iter.index;
37  return *this;
38  }
39 
40 #define BC_Iter_Compare(sign, rev) \
41  BCINLINE \
42  bool operator sign (const Iterator& iter) { \
43  if (Direction == direction::forward) \
44  return index sign iter.index; \
45  else \
46  return index rev iter.index; \
47  } \
48  BCINLINE \
49  bool operator sign (int p_index) { \
50  if (Direction == direction::forward) \
51  return index sign p_index; \
52  else \
53  return index rev p_index; \
54  }
55 
60 
61 #undef BC_Iter_Compare
62 
63  BCINLINE operator bc::size_t () const { return index; }
64 
65  BCINLINE bool operator == (const Iterator& iter) {
66  return index == iter.index;
67  }
68  BCINLINE bool operator != (const Iterator& iter) {
69  return index != iter.index;
70  }
71 
72  BCINLINE Iterator& operator = (int index_) { this->index = index_; return *this; }
73 
74  BCINLINE Iterator& operator ++ () { index += Direction; return *this; }
75  BCINLINE Iterator& operator -- () { index -= Direction; return *this; }
76 
77  BCINLINE Iterator operator ++ (int) { return Iterator(tensor, index++); }
78  BCINLINE Iterator operator -- (int) { return Iterator(tensor, index--); }
79 
80 
81  BCINLINE Iterator& operator += (int dist) { index += dist*Direction; return *this; }
82  BCINLINE Iterator& operator -= (int dist) { index -= dist*Direction; return *this; }
83 
84  BCINLINE Iterator operator + (int dist) const { return Iterator(tensor, index + dist*Direction); }
85  BCINLINE Iterator operator - (int dist) const { return Iterator(tensor, index - dist*Direction); }
86 
87 
88  BCINLINE Iterator& operator += (const Iterator& dist) { index += dist.index * Direction; return *this; }
89  BCINLINE Iterator& operator -= (const Iterator& dist) { index -= dist.index * Direction; return *this; }
90 
91  BCINLINE Iterator operator + (const Iterator& dist) const { return Iterator(tensor, index + dist.index*Direction); }
92  BCINLINE Iterator operator - (const Iterator& dist) const { return Iterator(tensor, index - dist.index*Direction); }
93 
94 
95  BCINLINE auto operator*() const -> decltype(this->tensor[this->index]) { return this->tensor[this->index]; }
96  BCINLINE auto operator*() -> decltype(this->tensor[this->index]) { return this->tensor[this->index]; }
97 
98  BCINLINE auto operator [] (int i) const -> decltype(this->tensor[i]) { return this->tensor[i]; }
99  BCINLINE auto operator [] (int i) -> decltype(this->tensor[i]) { return this->tensor[i]; }
100 };
101 
102 template<class Tensor>
103 auto iter_cw_begin(Tensor& tensor) {
105 }
106 
107 template<class Tensor>
108 auto iter_cw_end(Tensor& tensor) {
110 }
111 
112 template<class Tensor>
113 auto iter_cw_rbegin(Tensor& tensor) {
115 }
116 
117 template<class Tensor>
118 auto iter_cw_rend(Tensor& tensor) {
120 }
121 
122 
123 }
124 }
125 }
126 
127 #endif /* ELEMENTWISE_Coefficientwise_Iterator_H_ */
#define BCINLINE
Definition: common.h:96
BCINLINE bool operator==(const Iterator &iter)
Definition: coefficientwise_iterator.h:65
BCINLINE Coefficientwise_Iterator & operator=(const Coefficientwise_Iterator &iter)
Definition: coefficientwise_iterator.h:35
Definition: coefficientwise_iterator.h:19
BCINLINE auto operator*() -> decltype(this->tensor[this->index])
Definition: coefficientwise_iterator.h:96
BCINLINE Iterator & operator+=(int dist)
Definition: coefficientwise_iterator.h:81
value_type & reference
Definition: coefficientwise_iterator.h:25
BCINLINE Iterator operator-(int dist) const
Definition: coefficientwise_iterator.h:85
BCINLINE Iterator & operator++()
Definition: coefficientwise_iterator.h:74
BCINLINE Coefficientwise_Iterator(Tensor tensor, bc::size_t index=0)
Definition: coefficientwise_iterator.h:32
typename Tensor::value_type value_type
Definition: coefficientwise_iterator.h:23
auto iter_cw_begin(Tensor &tensor)
Definition: coefficientwise_iterator.h:103
value_type * pointer
Definition: coefficientwise_iterator.h:26
auto iter_cw_end(Tensor &tensor)
Definition: coefficientwise_iterator.h:108
#define BC_Iter_Compare(sign, rev)
Definition: coefficientwise_iterator.h:40
int size_t
Definition: common.h:283
bc::size_t difference_type
Definition: coefficientwise_iterator.h:24
auto iter_cw_rend(Tensor &tensor)
Definition: coefficientwise_iterator.h:118
auto iter_cw_rbegin(Tensor &tensor)
Definition: coefficientwise_iterator.h:113
BCINLINE Iterator & operator-=(int dist)
Definition: coefficientwise_iterator.h:82
bc::size_t index
Definition: coefficientwise_iterator.h:30
BCINLINE auto operator[](int i) const -> decltype(this->tensor[i])
Definition: coefficientwise_iterator.h:98
Coefficientwise_Iterator< Direction, Tensor > Iterator
Definition: coefficientwise_iterator.h:21
BCINLINE Iterator operator+(int dist) const
Definition: coefficientwise_iterator.h:84
BCINLINE auto operator*() const -> decltype(this->tensor[this->index])
Definition: coefficientwise_iterator.h:95
std::random_access_iterator_tag iterator_category
Definition: coefficientwise_iterator.h:22
Tensor tensor
Definition: coefficientwise_iterator.h:29
BCINLINE bool operator!=(const Iterator &iter)
Definition: coefficientwise_iterator.h:68
BCINLINE Iterator & operator--()
Definition: coefficientwise_iterator.h:75
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22