Lines Matching refs:be
13 For most use cases, the spawning of individual tasks can be replaced with the use of either
43 The code above can be rewritten using ``oneapi::tbb::task_group``:
65 // Member to be called when object of this type are passed into
94 In TBB, cases when the amount of work is not known in advance and the work needs to be added during
96 parallel pattern. The ``tbb::parallel_do`` algorithm logic may be implemented using the task API as:
143 The previous use case can be rewritten in oneTBB as follows:
168 The previous use case can be rewritten using ``oneapi::tbb::task_group`` as:
198 method. The functor will be copied in this case. However, its state can be shared among instances:
215 // Note that this might be concurrently accessing m_shared_data already
333 TBB ``task::execute()`` method can return a pointer to a task that can be executed next by the curr…
335 is not guaranteed to be executed next by the current thread.
367 In oneTBB, this can be done using ``oneapi::tbb::task_group``.
423 In oneTBB, this can be done using ``oneapi::tbb::task_group``.