Lines Matching refs:run
52 tg.run(ChildTask1{/*params*/});
53 tg.run(ChildTask2{/*params*/});
66 // oneapi::tbb::task_group::run() method
165 Since both TBB and oneTBB support nested expressions, you can run additional functors from within an
181 tg.run([&i = items[i], &tg] {
187 tg.run(OtherWork{});
197 You can re-run the functor by passing ``*this`` to the ``oneapi::tbb::task_group::run()``
213 m_task_group.run(*this);
223 tg.run(SharedStateFunctor{data, tg});
245 m_task_group.run(*this);
255 tg.run(SharedStateFunctor{data, tg});
262 In oneTBB this kind of recycling is done manually. You have to track when it is time to run the
300 m_tg.run(*this);
305 m_tg.run(ContinuationTask(m_data, m_result));
324 tg.run(ChildTask(items, result, tasks_left, tasks_done, tg));
378 tg.run([&tg](){
388 queue of tasks ready for execution via ``oneapi::tbb::task_group::run``, but bypassed to the execut…
440 tg.run(ChildTask{/*params*/});