BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
any_map.h
Go to the documentation of this file.
1 /*
2  * TypeMap.h
3  *
4  * Created on: Oct 13, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCAT_TENSORS_UTILITY_TYPEMAP_H_
9 #define BLACKCAT_TENSORS_UTILITY_TYPEMAP_H_
10 
11 #include <unordered_map>
12 #include <memory>
13 #include <typeinfo>
14 
15 namespace bc {
16 namespace utility {
17 
18 template<class T>
20 
21 template<char... Chars>
22 struct Name {
23  std::string name() {
24  return "";
25  }
26 };
27 
28 template<char C, char... Chars>
29 struct Name<C, Chars...> {
30  static std::string name() {
31  return "C" + Name<Chars...>::name();
32  }
33 };
34 
35 template<class Key, class Value>
36 struct Any_Key {
37  using key_type = Key;
38  using value_type = Value;
39 };
40 
60 class Any_Map {
61 
62  using any_ptr = std::shared_ptr<void>;
63  std::unordered_map<std::size_t, any_ptr> m_any_map;
64 
65  template<class K, class V>
66  static std::size_t hash(Any_Key<K, V> type_key) {
67  return typeid(Any_Key<K, V>).hash_code();
68  }
69 
70 public:
71 
72  template<class K, class V>
73  bool contains(Any_Key<K ,V> key) const {
74  return m_any_map.find(hash(key)) != m_any_map.end();
75  }
76 
77  template<class K, class V>
78  auto& operator [] (Any_Key<K, V> key) {
79  static auto deleter = [](void* data) {
80  delete reinterpret_cast<V*>(data);
81  };
82 
83  if (!contains(key)) {
84  void* data = reinterpret_cast<void*>(new V());
85  m_any_map[hash(key)] = any_ptr(data, deleter);
86  }
87 
88  return *reinterpret_cast<V*>(m_any_map[hash(key)].get());
89  }
90 
91  template<class K, class V>
92  auto& at (Any_Key<K, V> key) {
93  return this->operator[](key);
94  }
95 
96 
97  template<class K, class V, class... DefaultArgs>
98  auto& get(Any_Key<K, V> key, DefaultArgs&&... args) {
99  if (!contains(key)) {
100  return m_any_map[hash(key)] = V(std::forward(args)...);
101  } else {
102  return m_any_map[hash(key)];
103  }
104  }
105 
106  template<class K, class V>
107  auto& get(Any_Key<K, V> key, V&& value) {
108  if (!contains(key)) {
109  return m_any_map[hash(key)] = value;
110  } else {
111  return m_any_map[hash(key)];
112  }
113  }
114 
115  template<class K, class V, class... Args>
116  auto emplace(Any_Key<K, V> key, Args&&... args) {
117  auto result = m_any_map.emplace(hash(key), args...);
118  return std::pair<K&, bool> { *(result.first), result.second };
119  }
120 
121  int empty() const { return (int)m_any_map.empty(); }
122  int size() const { return (int)m_any_map.size(); }
123  int max_size() const { return (int)m_any_map.size(); }
124 
125  auto begin() const { return m_any_map.begin(); }
126  auto end() const { return m_any_map.end(); }
127 
128  auto begin() { return m_any_map.begin(); }
129  auto end() { return m_any_map.end(); }
130  auto cbegin() { return m_any_map.cbegin(); }
131  auto cend() { return m_any_map.cend(); }
132 };
133 
134 
135 
136 }
137 }
138 
139 
140 
141 #endif /* TYPEMAP_H_ */
auto & at(Any_Key< K, V > key)
Definition: any_map.h:92
bool contains(Any_Key< K, V > key) const
Definition: any_map.h:73
Definition: any_map.h:36
Definition: type_traits.h:220
int size() const
Definition: any_map.h:122
auto cend()
Definition: any_map.h:131
int max_size() const
Definition: any_map.h:123
auto emplace(Any_Key< K, V > key, Args &&... args)
Definition: any_map.h:116
int empty() const
Definition: any_map.h:121
auto end() const
Definition: any_map.h:126
V value_type
Definition: any_map.h:38
auto end()
Definition: any_map.h:129
int size_t
Definition: common.h:283
static std::string name()
Definition: any_map.h:30
K key_type
Definition: any_map.h:37
std::string name()
Definition: any_map.h:23
Any_Map stores a buck of std::shared_ptr<void>.
Definition: any_map.h:60
auto begin()
Definition: any_map.h:128
Definition: common.h:19
auto begin() const
Definition: any_map.h:125
auto cbegin()
Definition: any_map.h:130
Definition: any_map.h:22
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22