2 #ifndef BC_CONTEXT_HOSTSTREAM_H_ 3 #define BC_CONTEXT_HOSTSTREAM_H_ 12 #include <condition_variable> 20 std::atomic_bool recorded{
false};
21 std::condition_variable cv;
25 struct waiting_functor {
26 std::shared_ptr<contents> m_contents;
27 void operator () ()
const {
28 std::unique_lock<std::mutex> locker(m_contents.get()->m_mutex);
30 if (!m_contents.get()->recorded.load())
31 m_contents.get()->cv.wait(locker, [&](){
return m_contents.get()->recorded.load(); });
35 struct recording_functor {
36 std::shared_ptr<contents> m_contents;
38 void operator () ()
const {
39 m_contents.get()->recorded.store(
true);
40 m_contents.get()->cv.notify_all();
44 std::shared_ptr<contents> m_contents = std::shared_ptr<contents>(
new contents());
59 virtual void operator () ()
const = 0;
60 virtual void run ()
const = 0;
64 template<
class function>
65 struct JobInstance : Job {
67 JobInstance(
function f) : f(f) {}
68 virtual void operator () ()
const override final { f(); }
69 virtual void run()
const override final { f(); }
72 mutable std::mutex m_queue_lock;
73 std::queue<std::unique_ptr<Job>> m_queue;
77 void execute_queue() {
79 while (!m_queue.empty()){
80 std::unique_ptr<Job> curr_job = std::move(m_queue.front());
82 m_queue_lock.unlock();
83 curr_job.get()->run();
86 m_queue_lock.unlock();
90 template<
class function>
91 void push(
function functor) {
93 if (m_queue.empty()) {
94 m_queue_lock.unlock();
100 m_queue.push(std::unique_ptr<Job>(
new JobInstance<function>(functor)));
101 m_queue_lock.unlock();
106 return m_queue.empty();
112 is_active = m_queue.empty();
113 m_queue_lock.unlock();
bool active() const
Definition: host_stream.h:109
waiting_functor get_waiter()
Definition: host_stream.h:51
bool empty() const
Definition: host_stream.h:105
Definition: host_stream.h:17
Definition: host_stream.h:56
void push(function functor)
Definition: host_stream.h:91
recording_functor get_recorder()
Definition: host_stream.h:48
#define BC_omp_async__(...)
Definition: common.h:266
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22