9 #ifndef BC_STREAMS_COMMON_H_ 10 #define BC_STREAMS_COMMON_H_ 19 template<
class SystemTag>
26 std::unique_ptr<HostEvent> m_event;
31 static std::shared_ptr<Contents> get_default_contents()
33 static thread_local std::shared_ptr<Contents> default_contents =
34 std::shared_ptr<Contents>(
new Contents());
36 return default_contents;
39 std::shared_ptr<Contents> m_contents = get_default_contents();
47 return m_contents->m_workspace;
50 template<
class RebindType>
53 return typename allocator_type::
54 template rebind<RebindType>::other(m_contents->m_workspace);
61 return m_contents == get_default_contents();
65 m_contents = std::shared_ptr<Contents>(
new Contents());
69 m_contents = get_default_contents();
76 if (!m_contents->m_stream.empty()) {
78 this->m_contents->m_event->get_waiter().operator ()();
84 this->m_contents = stream_.m_contents;
90 m_contents->m_event = std::unique_ptr<HostEvent>(
new HostEvent());
91 this->enqueue(m_contents->m_event->get_recorder());
97 if (!stream.is_default()) {
99 stream.m_contents->m_event.get(),
100 "Attempting to wait on an event that was never recorded");
101 this->enqueue(stream.m_contents->m_event->get_waiter());
107 stream.record_event();
108 this->wait_event(stream);
111 template<
class Functor>
114 if (this->is_default()) {
118 m_contents->m_stream.push(functor);
122 template<
class Functor>
128 return m_contents == dev.m_contents;
132 return m_contents != dev.m_contents;
void host_sync()
Definition: stream_synchronization.h:16
auto get_allocator_rebound()
Definition: host.h:51
void create()
Definition: host.h:64
void enqueue(Functor functor)
Definition: host.h:112
Definition: host_stream.h:17
bool is_default()
Definition: host.h:60
Definition: host_stream.h:56
void record_event()
Definition: host.h:87
void wait_event(Stream &stream)
Definition: host.h:95
void set_blas_pointer_mode_host()
Definition: host.h:57
An unsynced memory pool implemented as a stack.
Definition: stack_allocator.h:138
void enqueue_callback(Functor functor)
Definition: host.h:123
void set_blas_pointer_mode_device()
Definition: host.h:58
#define BC_ASSERT(condition, message)
Definition: common.h:185
allocator_type & get_allocator()
Definition: host.h:46
void set_stream(Stream stream_)
Definition: host.h:83
void wait_stream(Stream &stream)
Definition: host.h:105
auto operator==(const Expression_Base< Xpr > ¶m) const
Definition: expression_operations.h:38
void destroy()
Definition: host.h:68
void sync()
Definition: host.h:72
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22