本文整理汇总了C++中wait_list::begin方法的典型用法代码示例。如果您正苦于以下问题:C++ wait_list::begin方法的具体用法?C++ wait_list::begin怎么用?C++ wait_list::begin使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类wait_list
的用法示例。
在下文中一共展示了wait_list::begin方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: wait_for_events
/// Wait for events in the list
inline void wait_for_events(const wait_list &events) {
std::map<context_id, wait_list> by_context;
for(auto e = events.begin(); e != events.end(); ++e) {
context_id ctx = get_context_id(*e);
by_context[ctx].push_back(*e);
}
for(auto c = by_context.begin(); c != by_context.end(); ++c)
cl::Event::waitForEvents(c->second);
}
示例2: enqueue_marker
/// Enqueue marker (with wait list) into the queue
inline event enqueue_marker(command_queue &q,
const wait_list &events = wait_list())
{
context_id ctx = get_context_id(q);
wait_list my_events;
std::copy_if(events.begin(), events.end(),
std::back_inserter(my_events),
[=](const event &e){ return ctx == get_context_id(e); });
event e;
q.enqueueMarkerWithWaitList(&my_events, &e);
return e;
}
示例3: wait_list_append
/// Append wait list to wait list
inline void wait_list_append(wait_list &dst, const wait_list &src) {
dst.insert(dst.begin(), src.begin(), src.end());
}