Loading...
Searching...
No Matches
worker.hpp
1#pragma once
2
3#include "declarations.hpp"
4#include "wsq.hpp"
5#include "nonblocking_notifier.hpp"
6#include "atomic_notifier.hpp"
7
12
13namespace tf {
14
15// ----------------------------------------------------------------------------
16// Default Notifier
17// Our experiments show that NonblockingNotifier has the most stable performance
18// ----------------------------------------------------------------------------
19
35#ifdef TF_ENABLE_ATOMIC_NOTIFIER
36 using DefaultNotifier = AtomicNotifier;
37#else
39#endif
40
41// ----------------------------------------------------------------------------
42// Class Definition: Worker
43// ----------------------------------------------------------------------------
44
55class Worker {
56
57 friend class Executor;
58 friend class Runtime;
59 friend class WorkerView;
60
61 public:
62
70 inline size_t id() const { return _id; }
71
76 inline size_t queue_size() const { return _wsq.size(); }
77
81 inline size_t queue_capacity() const { return static_cast<size_t>(_wsq.capacity()); }
82
86 std::thread& thread() { return _thread; }
87
88 private:
89
90 alignas(TF_CACHELINE_SIZE) std::atomic_flag _done = ATOMIC_FLAG_INIT;
91
92 size_t _id;
93 size_t _sticky_victim;
94 Xorshift<uint32_t> _rdgen;
95 std::thread _thread;
97 //std::vector<Node*> _pool;
98};
99
100// ----------------------------------------------------------------------------
101// Class Definition: WorkerView
102// ----------------------------------------------------------------------------
103
114class WorkerView {
115
116 friend class Executor;
117
118 public:
119
127 size_t id() const;
128
133 size_t queue_size() const;
134
138 size_t queue_capacity() const;
139
140 private:
141
142 WorkerView(const Worker&);
143 WorkerView(const WorkerView&) = default;
144
145 const Worker& _worker;
146
147};
148
149// Constructor
150inline WorkerView::WorkerView(const Worker& w) : _worker{w} {
151}
152
153// function: id
154inline size_t WorkerView::id() const {
155 return _worker._id;
156}
157
158// Function: queue_size
159inline size_t WorkerView::queue_size() const {
160 return _worker._wsq.size();
161}
162
163// Function: queue_capacity
164inline size_t WorkerView::queue_capacity() const {
165 return static_cast<size_t>(_worker._wsq.capacity());
166}
167
168// ----------------------------------------------------------------------------
169// Class Definition: WorkerInterface
170// ----------------------------------------------------------------------------
171
274
275 public:
276
280 virtual ~WorkerInterface() = default;
281
288 virtual void scheduler_prologue(Worker& worker) = 0;
289
299 virtual void scheduler_epilogue(Worker& worker, std::exception_ptr ptr) = 0;
300
301};
302
311template <typename T, typename... ArgsT>
312std::shared_ptr<T> make_worker_interface(ArgsT&&... args) {
313 static_assert(
314 std::is_base_of_v<WorkerInterface, T>,
315 "T must be derived from WorkerInterface"
316 );
317 return std::make_shared<T>(std::forward<ArgsT>(args)...);
318}
319
320
321
322
323} // end of namespact tf ------------------------------------------------------
324
325
class to create a lock-free bounded work-stealing queue
Definition wsq.hpp:572
class to create a non-blocking notifier
Definition nonblocking_notifier.hpp:84
class to configure worker behavior in an executor
Definition worker.hpp:273
virtual void scheduler_epilogue(Worker &worker, std::exception_ptr ptr)=0
method to call after a worker leaves the scheduling loop
virtual void scheduler_prologue(Worker &worker)=0
method to call before a worker enters the scheduling loop
virtual ~WorkerInterface()=default
default destructor
size_t id() const
queries the worker id associated with its parent executor
Definition worker.hpp:154
size_t queue_capacity() const
queries the current capacity of the queue
Definition worker.hpp:164
size_t queue_size() const
queries the size of the queue (i.e., number of pending tasks to run) associated with the worker
Definition worker.hpp:159
class to create a worker in an executor
Definition worker.hpp:55
size_t id() const
queries the worker id associated with its parent executor
Definition worker.hpp:70
size_t queue_capacity() const
queries the current capacity of the queue
Definition worker.hpp:81
size_t queue_size() const
queries the size of the queue (i.e., number of enqueued tasks to run) associated with the worker
Definition worker.hpp:76
std::thread & thread()
acquires the associated thread
Definition worker.hpp:86
class to create a fast xorshift-based pseudo-random number generator
Definition math.hpp:319
taskflow namespace
Definition small_vector.hpp:20
std::shared_ptr< T > make_worker_interface(ArgsT &&... args)
helper function to create an instance derived from tf::WorkerInterface
Definition worker.hpp:312
NonblockingNotifier DefaultNotifier
the default notifier type used by Taskflow
Definition worker.hpp:38