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
|
/*
Copyright (c) 2023-2024 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 __TBB_task_emulation_layer_H
#define __TBB_task_emulation_layer_H
#include "tbb/task_group.h"
#include "tbb/task_arena.h"
#include <atomic>
namespace task_emulation {
struct task_group_pool {
task_group_pool() : pool_size(tbb::this_task_arena::max_concurrency()), task_submitters(new tbb::task_group[pool_size]) {}
~task_group_pool() {
for (std::size_t i = 0; i < pool_size; ++i) {
task_submitters[i].wait();
}
delete [] task_submitters;
}
tbb::task_group& operator[] (std::size_t idx) { return task_submitters[idx]; }
const std::size_t pool_size;
tbb::task_group* task_submitters;
};
static task_group_pool tg_pool;
class base_task {
public:
base_task() = default;
base_task(const base_task& t) : m_type(t.m_type), m_parent(t.m_parent), m_child_counter(t.m_child_counter.load())
{}
virtual ~base_task() = default;
void operator() () const {
task_type type_snapshot = m_type;
base_task* bypass = const_cast<base_task*>(this)->execute();
if (m_parent && m_type != task_type::recycled) {
if (m_parent->remove_child_reference() == 0) {
m_parent->operator()();
}
}
if (m_type == task_type::allocated) {
delete this;
}
if (bypass != nullptr) {
m_type = type_snapshot;
// Bypass is not supported by task_emulation and next_task executed directly.
// However, the old-TBB bypass behavior can be achieved with
// `return task_group::defer()` (check Migration Guide).
// Consider submit another task if recursion call is not acceptable
// i.e. instead of Direct Body call
// submit task_emulation::run_task();
bypass->operator()();
}
}
virtual base_task* execute() = 0;
template <typename C, typename... Args>
C* allocate_continuation(std::uint64_t ref, Args&&... args) {
C* continuation = new C{std::forward<Args>(args)...};
continuation->m_type = task_type::allocated;
continuation->reset_parent(reset_parent());
continuation->m_child_counter = ref;
return continuation;
}
template <typename F, typename... Args>
F create_child(Args&&... args) {
return create_child_impl<F>(std::forward<Args>(args)...);
}
template <typename F, typename... Args>
F create_child_and_increment(Args&&... args) {
add_child_reference();
return create_child_impl<F>(std::forward<Args>(args)...);
}
template <typename F, typename... Args>
F* allocate_child(Args&&... args) {
return allocate_child_impl<F>(std::forward<Args>(args)...);
}
template <typename F, typename... Args>
F* allocate_child_and_increment(Args&&... args) {
add_child_reference();
return allocate_child_impl<F>(std::forward<Args>(args)...);
}
template <typename C>
void recycle_as_child_of(C& c) {
m_type = task_type::recycled;
reset_parent(&c);
}
void recycle_as_continuation() {
m_type = task_type::recycled;
}
void add_child_reference() {
++m_child_counter;
}
std::uint64_t remove_child_reference() {
return --m_child_counter;
}
protected:
enum class task_type {
stack_based,
allocated,
recycled
};
mutable task_type m_type;
private:
template <typename F, typename... Args>
friend F create_root_task(tbb::task_group& tg, Args&&... args);
template <typename F, typename... Args>
friend F* allocate_root_task(tbb::task_group& tg, Args&&... args);
template <typename F, typename... Args>
F create_child_impl(Args&&... args) {
F obj{std::forward<Args>(args)...};
obj.m_type = task_type::stack_based;
obj.reset_parent(this);
return obj;
}
template <typename F, typename... Args>
F* allocate_child_impl(Args&&... args) {
F* obj = new F{std::forward<Args>(args)...};
obj->m_type = task_type::allocated;
obj->reset_parent(this);
return obj;
}
base_task* reset_parent(base_task* ptr = nullptr) {
auto p = m_parent;
m_parent = ptr;
return p;
}
base_task* m_parent{nullptr};
std::atomic<std::uint64_t> m_child_counter{0};
};
class root_task : public base_task {
public:
root_task(tbb::task_group& tg) : m_tg(tg), m_callback(m_tg.defer([] { /* Create empty callback to preserve reference for wait. */})) {
add_child_reference();
m_type = base_task::task_type::allocated;
}
private:
base_task* execute() override {
m_tg.run(std::move(m_callback));
return nullptr;
}
tbb::task_group& m_tg;
tbb::task_handle m_callback;
};
template <typename F, typename... Args>
F create_root_task(tbb::task_group& tg, Args&&... args) {
F obj{std::forward<Args>(args)...};
obj.m_type = base_task::task_type::stack_based;
obj.reset_parent(new root_task{tg});
return obj;
}
template <typename F, typename... Args>
F* allocate_root_task(tbb::task_group& tg, Args&&... args) {
F* obj = new F{std::forward<Args>(args)...};
obj->m_type = base_task::task_type::allocated;
obj->reset_parent(new root_task{tg});
return obj;
}
template <typename F>
void run_task(F&& f) {
tg_pool[tbb::this_task_arena::current_thread_index()].run(std::forward<F>(f));
}
template <typename F>
void run_task(F* f) {
tg_pool[tbb::this_task_arena::current_thread_index()].run(std::ref(*f));
}
template <typename F>
void run_and_wait(tbb::task_group& tg, F* f) {
tg.run_and_wait(std::ref(*f));
}
} // namespace task_emulation
#endif // __TBB_task_emulation_layer_H
|