1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
/*******************************************************************************
* Copyright 2023 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
#ifndef COMMON_CACHE_UTILS_HPP
#define COMMON_CACHE_UTILS_HPP
#include <algorithm>
#include <future>
#include <memory>
#include <thread>
#include <unordered_map>
#include "oneapi/dnnl/dnnl_config.h"
#if DNNL_CPU_RUNTIME != DNNL_RUNTIME_NONE
#include "cpu/platform.hpp"
#else
#include <chrono>
#endif
#ifdef _WIN32
#include <windows.h>
#endif
#include "rw_mutex.hpp"
namespace dnnl {
namespace impl {
namespace utils {
// A key k and object o may share resources. This function moves the shared
// resources from a copy of object o into the key k. This is used to deduplicate
// data stored in cached objects.
template <typename K, typename O>
using key_merge_t = void (*)(const K &, const O &);
template <typename K, typename O, typename C,
key_merge_t<K, O> key_merge = nullptr>
struct cache_t {
using key_t = K;
using object_t = O;
using cache_object_t = C;
using value_t = std::shared_future<cache_object_t>;
using create_func_t = cache_object_t (&)(void *);
virtual ~cache_t() = default;
virtual status_t set_capacity(int capacity) = 0;
virtual int get_capacity() const = 0;
virtual int get_size() const = 0;
// Returns the cached value or cache_object_t() on a miss
virtual cache_object_t get(const key_t &key) = 0;
// Returns the cached object associated with key, the object generated by
// the create(create_context) function, or an empty object in case of
// errors. The function create() is called upon a cache miss, or if the user
// forced creation through a `force_create` boolean flag. The returned
// object is added to the cache on a cache miss.
cache_object_t get_or_create(const key_t &key, create_func_t create,
void *create_context, bool force_create) {
std::promise<cache_object_t> p_promise;
// Try to get the shared future from the cache, if it's missing then a
// shared future with no shared state is returned and the passed shared
// future is added, otherwise a valid shared future is returned and no
// insertion is performed.
auto p_future = get_or_add(key, p_promise.get_future());
if (!force_create && p_future.valid()) {
// The requested object is present in the cache or is being created
// by another thread.
return p_future.get();
} else {
// The requested object is NOT present in the cache therefore we
// have to create it and notify the waiting threads once the
// creation is done.
cache_object_t cv = create(create_context);
if (cv.status != status::success) {
// Communicate an error.
p_promise.set_value({nullptr, cv.status});
// Remove the shared future from the cache because it's
// invalidated. An invalidated shared future is the one that
// stores a nullptr.
remove_if_invalidated(key);
return {nullptr, cv.status};
} else {
// Store the created object in the shared future and notify the
// waiting threads.
p_promise.set_value(cv);
// The key_t may contains pointers that should reside within the
// stored object. Therefore the pointers in the key may need
// updated.
update_entry(key, cv.get_value());
return cv;
}
}
}
protected:
virtual value_t get_or_add(const key_t &key, const value_t &value) = 0;
virtual void remove_if_invalidated(const key_t &key) = 0;
virtual void update_entry(const key_t &key, const object_t &p) = 0;
static utils::rw_mutex_t &rw_mutex() {
static utils::rw_mutex_t mutex;
return mutex;
}
};
// The cache uses LRU replacement policy
template <typename K, typename O, typename C,
key_merge_t<K, O> key_merge = nullptr>
struct lru_cache_t final : public cache_t<K, O, C, key_merge> {
using lru_base_t = cache_t<K, O, C, key_merge>;
using key_t = typename lru_base_t::key_t;
using object_t = typename lru_base_t::object_t;
using cache_object_t = typename lru_base_t::cache_object_t;
using value_t = typename lru_base_t::value_t;
lru_cache_t(int capacity) : capacity_(capacity) {}
~lru_cache_t() override {
if (cache_mapper().empty()) return;
if (!is_destroying_cache_safe()) {
// It is safe to remove those entries that are not affected by the
// unloading order issue e.g. native CPU.
for (auto it = cache_mapper().begin();
it != cache_mapper().end();) {
if (!it->first.has_runtime_dependencies()) {
it = cache_mapper().erase(it);
} else {
++it;
}
}
release_cache();
return;
}
}
cache_object_t get(const key_t &key) override {
value_t e;
{
utils::lock_read_t lock_r(this->rw_mutex());
if (capacity_ == 0) { return cache_object_t(); }
e = get_future(key);
}
if (e.valid()) return e.get();
return cache_object_t();
}
int get_capacity() const override {
utils::lock_read_t lock_r(this->rw_mutex());
return capacity_;
}
status_t set_capacity(int capacity) override {
utils::lock_write_t lock_w(this->rw_mutex());
capacity_ = capacity;
// Check if number of entries exceeds the new capacity
if (get_size_no_lock() > capacity_) {
// Evict excess entries
int n_excess_entries = get_size_no_lock() - capacity_;
evict(n_excess_entries);
}
return status::success;
}
void set_capacity_without_clearing(int capacity) {
utils::lock_write_t lock_w(this->rw_mutex());
capacity_ = capacity;
}
int get_size() const override {
utils::lock_read_t lock_r(this->rw_mutex());
return get_size_no_lock();
}
protected:
int get_size_no_lock() const { return (int)cache_mapper().size(); }
value_t get_or_add(const key_t &key, const value_t &value) override {
{
// 1. Section with shared access (read lock)
utils::lock_read_t lock_r(this->rw_mutex());
// Check if the cache is enabled.
if (capacity_ == 0) { return value_t(); }
// Check if the requested entry is present in the cache (likely
// cache_hit)
auto e = get_future(key);
if (e.valid()) { return e; }
}
utils::lock_write_t lock_w(this->rw_mutex());
// 2. Section with exclusive access (write lock).
// In a multithreaded scenario, in the context of one thread the cache
// may have changed by another thread between releasing the read lock
// and acquiring the write lock (a.k.a. ABA problem), therefore
// additional checks have to be performed for correctness. Double check
// the capacity due to possible race condition
if (capacity_ == 0) { return value_t(); }
// Double check if the requested entry is present in the cache (unlikely
// cache_hit).
auto e = get_future(key);
if (!e.valid()) {
// If the entry is missing in the cache then add it (cache_miss)
add(key, value);
}
return e;
}
void remove_if_invalidated(const key_t &key) override {
utils::lock_write_t lock_w(this->rw_mutex());
if (capacity_ == 0) { return; }
auto it = cache_mapper().find(key);
// The entry has been already evicted at this point
if (it == cache_mapper().end()) { return; }
const auto &value = it->second.value_;
// If the entry is not invalidated
if (!value.get().is_empty()) { return; }
// Remove the invalidated entry
cache_mapper().erase(it);
}
private:
static size_t get_timestamp() {
#if DNNL_CPU_RUNTIME != DNNL_RUNTIME_NONE
return cpu::platform::get_timestamp();
#else
return std::chrono::steady_clock::now().time_since_epoch().count();
#endif
}
void update_entry(const key_t &key, const object_t &p) override {
// Cast to void as compilers may warn about comparing compile time
// constant function pointers with nullptr, as that is often not an
// intended behavior
if ((void *)key_merge == nullptr) return;
utils::lock_write_t lock_w(this->rw_mutex());
if (capacity_ == 0) { return; }
// There is nothing to do in two cases:
// 1. The requested entry is not in the cache because it has been evicted
// by another thread
// 2. After the requested entry had been evicted it was inserted again
// by another thread
auto it = cache_mapper().find(key);
if (it == cache_mapper().end()
|| it->first.thread_id() != key.thread_id()) {
return;
}
key_merge(it->first, p);
}
void evict(int n) {
using v_t =
typename std::unordered_map<key_t, timed_entry_t>::value_type;
if (n == capacity_) {
cache_mapper().clear();
return;
}
for (int e = 0; e < n; e++) {
// Find the smallest timestamp
// TODO: revisit the eviction algorithm due to O(n) complexity, E.g.
// maybe evict multiple entries at once.
auto it = std::min_element(cache_mapper().begin(),
cache_mapper().end(),
[&](const v_t &left, const v_t &right) {
// By default, load() and operator T use sequentially
// consistent memory ordering, which enforces writing
// the timestamps into registers in the same exact order
// they are read from the CPU cache line. Since eviction
// is performed under a write lock, this order is not
// important, therefore we can safely use the weakest
// memory ordering (relaxed). This brings about a few
// microseconds performance improvement for default
// cache capacity.
return left.second.timestamp_.load(std::memory_order_relaxed)
< right.second.timestamp_.load(
std::memory_order_relaxed);
});
auto res = cache_mapper().erase(it->first);
MAYBE_UNUSED(res);
assert(res);
}
}
void add(const key_t &key, const value_t &value) {
// std::list::size() method has linear complexity. Check the cache size
// using std::unordered_map::size();
if (get_size_no_lock() == capacity_) {
// Evict the least recently used entry
evict(1);
}
size_t timestamp = get_timestamp();
auto res = cache_mapper().emplace(std::piecewise_construct,
std::forward_as_tuple(key),
std::forward_as_tuple(value, timestamp));
MAYBE_UNUSED(res);
assert(res.second);
}
value_t get_future(const key_t &key) {
auto it = cache_mapper().find(key);
if (it == cache_mapper().end()) return value_t();
size_t timestamp = get_timestamp();
it->second.timestamp_.store(timestamp);
// Return the entry
return it->second.value_;
}
int capacity_;
struct timed_entry_t {
value_t value_;
std::atomic<size_t> timestamp_;
timed_entry_t(const value_t &value, size_t timestamp)
: value_(value), timestamp_(timestamp) {}
};
std::unordered_map<key_t, timed_entry_t> &cache_mapper() {
return cache_mapper_;
}
const std::unordered_map<key_t, timed_entry_t> &cache_mapper() const {
return cache_mapper_;
}
// Leaks cached resources. Used to avoid issues with calling destructors
// allocated by an already unloaded dynamic library.
void release_cache() {
auto t = utils::make_unique<std::unordered_map<key_t, timed_entry_t>>();
std::swap(*t, cache_mapper_);
t.release();
}
// Each entry in the cache has a corresponding key and timestamp. NOTE:
// pairs that contain atomics cannot be stored in an unordered_map *as an
// element*, since it invokes the copy constructor of std::atomic, which is
// deleted.
std::unordered_map<key_t, timed_entry_t> cache_mapper_;
};
} // namespace utils
} // namespace impl
} // namespace dnnl
#endif