ONE - On-device Neural Engine
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
onert::exec::WorkQueue Class Reference

#include <WorkQueue.h>

Public Types

enum class  State { ONLINE , FINISHING , FORCE_FINISHING }
 

Public Member Functions

 WorkQueue ()=default
 Create WorkQueue object.
 
 ~WorkQueue ()
 Destroy WorkQueue object.
 
void operator() ()
 Thread entry function.
 
void enqueue (std::unique_ptr< IFunction > &&fn)
 Push the given Task to the job queue.
 
void terminate ()
 Flag as terminating so all the worker threads can terminate.
 
void finish ()
 Flag as terminating so all the worker threads can terminate.
 
uint32_t numJobsInQueue ()
 Check if it has pending jobs. Even if this returns fals, WorkQueue threads may be still running.
 

Detailed Description

Definition at line 30 of file WorkQueue.h.

Member Enumeration Documentation

◆ State

enum class onert::exec::WorkQueue::State
strong
Enumerator
ONLINE 
FINISHING 
FORCE_FINISHING 

Definition at line 33 of file WorkQueue.h.

Constructor & Destructor Documentation

◆ WorkQueue()

onert::exec::WorkQueue::WorkQueue ( )
default

Create WorkQueue object.

◆ ~WorkQueue()

onert::exec::WorkQueue::~WorkQueue ( )

Destroy WorkQueue object.

Definition at line 24 of file WorkQueue.cc.

25{
26 {
27 std::unique_lock<std::mutex> lock(_mu);
29 }
30 _cv.notify_all();
31}

References FORCE_FINISHING.

Member Function Documentation

◆ enqueue()

void onert::exec::WorkQueue::enqueue ( std::unique_ptr< IFunction > &&  fn)

Push the given Task to the job queue.

Parameters
fnFunction to be executed(a job)

Definition at line 68 of file WorkQueue.cc.

69{
70 {
71 std::unique_lock<std::mutex> lock{_mu};
72 _functions.emplace(std::move(fn));
73 }
74 _cv.notify_one();
75}

Referenced by onert::exec::ThreadPool::enqueue().

◆ finish()

void onert::exec::WorkQueue::finish ( )

Flag as terminating so all the worker threads can terminate.

Definition at line 86 of file WorkQueue.cc.

87{
88 {
89 std::unique_lock<std::mutex> lock{_mu};
90 _state = State::FINISHING;
91 }
92 _cv.notify_all();
93}

References FINISHING.

Referenced by onert::exec::ThreadPool::finish().

◆ numJobsInQueue()

uint32_t onert::exec::WorkQueue::numJobsInQueue ( )

Check if it has pending jobs. Even if this returns fals, WorkQueue threads may be still running.

Returns
true if the job queue not empty otherwise false

Definition at line 95 of file WorkQueue.cc.

96{
97 std::unique_lock<std::mutex> lock{_mu};
98 return _functions.size();
99}

Referenced by onert::exec::ThreadPool::numJobsInQueue().

◆ operator()()

void onert::exec::WorkQueue::operator() ( )

Thread entry function.

Definition at line 33 of file WorkQueue.cc.

34{
35 while (true)
36 {
37 std::unique_ptr<IFunction> fn = nullptr;
38
39 {
40 std::unique_lock<std::mutex> lock{_mu};
41 _cv.wait(lock, [this] {
42 return (_state == State::FORCE_FINISHING) || (_state == State::FINISHING) ||
43 (_state == State::ONLINE && !_functions.empty());
44 });
45
46 if (_state == State::FORCE_FINISHING)
47 {
48 assert(_functions.empty() && "Terminating with unfinished jobs");
49 return;
50 }
51 else if (_state == State::FINISHING && _functions.empty())
52 {
53 return;
54 }
55 else
56 {
57 assert(((_state == State::FINISHING) || (_state == State::ONLINE)) && !_functions.empty());
58 fn = std::move(_functions.front());
59 _functions.pop();
60 }
61 }
62
63 assert(fn);
64 fn->run();
65 }
66}

References FINISHING, FORCE_FINISHING, and ONLINE.

◆ terminate()

void onert::exec::WorkQueue::terminate ( )

Flag as terminating so all the worker threads can terminate.

Definition at line 77 of file WorkQueue.cc.

78{
79 {
80 std::unique_lock<std::mutex> lock{_mu};
82 }
83 _cv.notify_all();
84}

References FORCE_FINISHING.

Referenced by onert::exec::ThreadPool::~ThreadPool().


The documentation for this class was generated from the following files: