BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
reference_iterator.h
Go to the documentation of this file.
1 /*
2  * Reference_Iterator.h
3  *
4  * Created on: Dec 11, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCAT_TENSORS_ALGROITHMS_REFERENCE_ITERATOR_H_
9 #define BLACKCAT_TENSORS_ALGROITHMS_REFERENCE_ITERATOR_H_
10 
11 #include <vector>
12 
13 namespace bc {
14 namespace algorithms {
15 
16 template<class T>
17 struct ReferenceIterator: public std::vector<T*>::iterator {
18 
19  using iterator_category = std::random_access_iterator_tag;
20  using parent = typename std::vector<T*>::iterator;
21 
23  parent(p) {
24  }
25 
26  T& operator*() const {
27  return *(parent::operator*());
28  }
29 
30  T& operator[](std::size_t index) const {
31  return *(parent::operator[](index));
32  }
33 };
34 
35 template<class T>
36 struct ReferenceList {
37 
38  std::vector<T*> container;
39 
40  template<class ... Ts>
41  ReferenceList(Ts&... ts) :
42  container { &ts... } {
43  }
44 
45  auto begin() {
46  return ReferenceIterator<T>(container.begin());
47  }
48 
49  auto end() {
50  return ReferenceIterator<T>(container.end());
51  }
52 
53 };
54 
55 template<class T, class ... Ts>
56 ReferenceList<T> enumerate(T& t, Ts&... ts) {
57  return ReferenceList<T>(t, ts...);
58 }
59 
60 
61 }
62 }
63 
64 
65 #endif /* REFERENCE_ITERATOR_H_ */
T & operator[](std::size_t index) const
Definition: reference_iterator.h:30
const auto t() const
Definition: expression_operations.h:93
Definition: reference_iterator.h:17
std::random_access_iterator_tag iterator_category
Definition: reference_iterator.h:19
typename std::vector< T * >::iterator parent
Definition: reference_iterator.h:20
auto begin()
Definition: reference_iterator.h:45
ReferenceList(Ts &... ts)
Definition: reference_iterator.h:41
int size_t
Definition: common.h:283
ReferenceIterator(parent p)
Definition: reference_iterator.h:22
Definition: reference_iterator.h:36
T & operator*() const
Definition: reference_iterator.h:26
ReferenceList< T > enumerate(T &t, Ts &... ts)
Definition: reference_iterator.h:56
std::vector< T * > container
Definition: reference_iterator.h:38
auto operator*(const ScalarType &param) const
Definition: expression_operations.h:49
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
auto end()
Definition: reference_iterator.h:49