| /oneTBB/doc/main/tbb_userguide/ |
| H A D | concurrent_vector_ug.rst | 9 operating on elements of it, or even growing it themselves. For safe 16 ``grow_by(n)`` safely appends ``n`` consecutive elements initialized 34 necessarily return in the order that elements are appended to the 38 Method ``size()`` returns the number of elements in the vector, which 39 may include elements that are still undergoing concurrent construction 42 because elements in a ``concurrent_vector`` might not be at consecutive
|
| H A D | std_invoke.rst | 103 // Performs the iteration over the array elements with the specified stride 207 * `parallel_for <https://oneapi-src.github.io/oneAPI-spec/spec/elements/oneTBB/source/algorithms/fu… 208 * `parallel_reduce <https://oneapi-src.github.io/oneAPI-spec/spec/elements/oneTBB/source/algorithms… 210 * `parallel_for_each <https://oneapi-src.github.io/oneAPI-spec/spec/elements/oneTBB/source/algorith… 211 * `parallel_scan <https://oneapi-src.github.io/oneAPI-spec/spec/elements/oneTBB/source/algorithms/f… 212 * `parallel_pipeline <https://oneapi-src.github.io/oneAPI-spec/spec/elements/oneTBB/source/algorith… 213 * `function_node <https://oneapi-src.github.io/oneAPI-spec/spec/elements/oneTBB/source/flow_graph/f… 214 * `multifunction_node <https://oneapi-src.github.io/oneAPI-spec/spec/elements/oneTBB/source/flow_gr… 215 * `async_node <https://oneapi-src.github.io/oneAPI-spec/spec/elements/oneTBB/source/flow_graph/asyn… 216 * `sequencer_node <https://oneapi-src.github.io/oneAPI-spec/spec/elements/oneTBB/source/flow_graph/… [all …]
|
| H A D | Exceptions_and_Cancellation.rst | 69 The ``parallel_for`` attempts to iterate over 2000 elements of a vector 70 with only 1000 elements. Hence the expression ``Data.at(i)`` sometimes
|
| H A D | Constraints.rst | 7 enforce `named requirements <https://spec.oneapi.com/versions/latest/elements/oneTBB/source/named_r…
|
| H A D | concurrent_hash_map.rst | 86 A ``concurrent_hash_map`` acts as a container of elements of type 97 situations where elements are frequently read and infrequently updated.
|
| H A D | UpgradeDowngrade.rst | 43 to re-search the entire vector, but only the elements beyond those
|
| H A D | use_nested_algorithms.rst | 22 to the elements of the matrix in parallel. The functions
|
| H A D | How_Task_Scheduler_Works.rst | 10 <https://spec.oneapi.io/versions/latest/elements/oneTBB/source/algorithms/functions/parallel_for_fu…
|
| H A D | Cancellation_and_Nested_Parallelism.rst | 125 the elements will be homogeneously ``false`` or ``true``, not a mixture.
|
| H A D | Concurrent_Queue_Classes.rst | 9 push and pop elements from the queue. The queue is unbounded and has no
|
| /oneTBB/test/conformance/ |
| H A D | conformance_parallel_for_each.cpp | 47 const size_t elements = 10000; variable 69 std::deque<size_t> v(elements, 0); in WorkProducingTest() 73 REQUIRE_MESSAGE((element_counter == v.size() && element_counter == elements), in WorkProducingTest() 80 REQUIRE_MESSAGE((element_counter == v.size() && element_counter == elements), in WorkProducingTest() 87 REQUIRE_MESSAGE((element_counter == v.size() && element_counter == elements), in WorkProducingTest()
|
| /oneTBB/doc/main/reference/ |
| H A D | task_group_extensions.rst | 16 …`tbb::task_group specification <https://spec.oneapi.com/versions/latest/elements/oneTBB/source/tas… 86 * `oneapi::tbb::task_group specification <https://spec.oneapi.com/versions/latest/elements/oneTBB/s… 87 * `oneapi::tbb::task_group_context specification <https://spec.oneapi.com/versions/latest/elements/… 88 * `oneapi::tbb::task_group_status specification <https://spec.oneapi.com/versions/latest/elements/o… 89 * `oneapi::tbb::task_handle class <https://oneapi-src.github.io/oneAPI-spec/spec/elements/oneTBB/so…
|
| H A D | parallel_for_each_semantics.rst | 13 This page clarifies `ParallelForEachBody <https://spec.oneapi.com/versions/latest/elements/oneTBB/s… 65 Additional elements submitted into ``tbb::parallel_for_each`` through the ``feeder::add`` passes to…
|
| H A D | parallel_sort_ranges_extension.rst | 13 …bb::parallel_sort specification <https://spec.oneapi.io/versions/latest/elements/oneTBB/source/alg…
|
| H A D | reference.rst | 12 |full_name| implements the `oneTBB specification <https://spec.oneapi.com/versions/latest/elements/…
|
| H A D | type_specified_message_keys.rst | 69 `join_node Specification <https://spec.oneapi.com/versions/latest/elements/oneTBB/source/flow_graph…
|
| H A D | custom_mutex_chmap.rst | 53 meet the requirements of `ReaderWriterMutex <https://spec.oneapi.com/versions/latest/elements/oneTB…
|
| H A D | concurrent_lru_cache_cls.rst | 98 …*Effects**: Destroys the ``concurrent_lru_cache``. Calls the destructors of the stored elements and
|
| /oneTBB/doc/main/tbb_userguide/Migration_Guide/ |
| H A D | Task_Scheduler_Init.rst | 17 <https://spec.oneapi.com/versions/latest/elements/oneTBB/source/info_namespace.html>`_ 21 …<https://spec.oneapi.com/versions/latest/elements/oneTBB/source/task_scheduler/task_arena/this_tas… 26 …<https://spec.oneapi.com/versions/latest/elements/oneTBB/source/task_scheduler/scheduling_controls… 33 …<https://spec.oneapi.com/versions/latest/elements/oneTBB/source/task_scheduler/task_arena/this_tas… 37 …<https://spec.oneapi.com/versions/latest/elements/oneTBB/source/task_scheduler/scheduling_controls… 119 <https://spec.oneapi.com/versions/latest/elements/oneTBB/source/task_scheduler/scheduling_controls/… 144 `task_scheduler_handle <https://oneapi-src.github.io/oneAPI-spec/spec/elements/oneTBB/source/task_s…
|
| /oneTBB/test/tbb/ |
| H A D | test_parallel_for_each.cpp | 293 std::vector<no_copy_move> elements(n); in test_with_cpp20_iterator() local 295 cpp20_iterator<no_copy_move, Category> begin(elements.data()); in test_with_cpp20_iterator() 296 cpp20_iterator<no_copy_move, Category> end(elements.data() + n); in test_with_cpp20_iterator() 303 CHECK(elements[index].item == 42); in test_with_cpp20_iterator()
|
| /oneTBB/test/common/ |
| H A D | concurrent_unordered_common.h | 383 for (std::size_t elements = 0; elements < capacity; ++elements) { in test_reserve_regression() local 384 container.reserve(elements); in test_reserve_regression()
|
| /oneTBB/doc/main/tbb_userguide/design_patterns/ |
| H A D | Wavefront.rst | 130 solution is to aggregate the elements into contiguous blocks, and 136 The parallel code follows. Each block consists of ``N×N`` elements.
|
| H A D | Lazy_Initialization.rst | 58 …As seen in the diagram, some elements are recalculated more than once. These operations are redund…
|
| /oneTBB/ |
| H A D | README.md | 30 * [oneTBB Specification](https://spec.oneapi.com/versions/latest/elements/oneTBB/source/nested-inde…
|
| /oneTBB/doc/main/intro/ |
| H A D | Benefits.rst | 79 - The expression ``swap(*i,*j)`` swaps two elements.
|