| /oneTBB/doc/main/tbb_userguide/ |
| H A D | Cook_Until_Done_parallel_do.rst | 8 or the loop body may add more iterations to do before the loop exits. 78 argument *feeder* of type ``parallel_for_each<Item>&``, can add more 79 work by calling ``feeder.add(item)``. For example, suppose processing 82 ``feeder.add`` to add the descendant nodes. The instance of
|
| H A D | avoid_dynamic_node_removal.rst | 19 It is possible to add new nodes and edges and to remove old edges from a
|
| H A D | Timing.rst | 48 On Linux\* OS, you may need to add -lrt to the linker command when
|
| H A D | Linux_C_Dynamic_Memory_Interface_Replacement.rst | 43 ``LD_LIBRARY_PATH`` environment variable or add it to
|
| H A D | Non-Linear_Pipelines.rst | 51 would add a lot of programming complexity, and not improve throughput.
|
| H A D | Windows_C_Dynamic_Memory_Interface_Replacement.rst | 44 - Alternatively, add the following parameters to the linker options for
|
| /oneTBB/doc/main/tbb_userguide/design_patterns/ |
| H A D | Local_Serializer.rst | 121 s->add(item); 123 ReadyPile.add(item); 207 ReadyPile.add(item); 210 void add( WorkItem* item ) { 237 - If method ``add`` increments ``count`` from 0 to 1, this indicates 275 ``Serializer::add`` determines if a work item is unconstrained, and
|
| H A D | Non-Preemptive_Priorities.rst | 79 ReadyPile.add(item); 131 void add( WorkItem* item ) { 150 The task added by ``add(item)`` does *not* necessarily execute
|
| H A D | Wavefront.rst | 52 reaches zero, add that successor to the ``oneapi::tbb::parallel_for_each`` 176 feeder.add( block(bi,bj+1) ); 178 feeder.add( block(bi+1,bj) ); }
|
| /oneTBB/examples/parallel_for_each/parallel_preorder/ |
| H A D | parallel_preorder.cpp | 43 feeder.add(successor); in operator ()()
|
| H A D | README.md | 13 …2. If the count became zero, add the cell to the set of cells to be updated, by calling `feeder::a…
|
| /oneTBB/doc/GSG/ |
| H A D | integrate.rst | 27 To add oneTBB to another project using CMake*, add the following commands to your ``CMakeLists.txt`…
|
| H A D | next_steps.rst | 62 * ``-Ipath/to/oneTBB/include`` to add oneTBB include directory. 63 * ``path/to/oneTBB/`` to add oneTBB.
|
| /oneTBB/test/common/ |
| H A D | parallel_for_each_common.h | 100 if (i%2) feeder.add( new_value ); // pass lvalue in do_work() 101 else feeder.add( value_t(depth.value()-1) ); // pass rvalue in do_work() 358 if (i%2) feeder.add(T(false)); in RecordAndAdd() 361 feeder.add(std::move(a)); in RecordAndAdd()
|
| /oneTBB/include/oneapi/tbb/detail/ |
| H A D | _flow_graph_cache_impl.h | 38 void add( T &n ) { in add() function 123 this->add(*src); in get_item() 184 this->add( *pred); in try_reserve()
|
| /oneTBB/src/tbb/ |
| H A D | concurrent_monitor.h | 57 inline void add( base_node* n ) { in add() function 218 my_waitset.add(&node); in prepare_wait() 374 temp.add(n); in notify_relaxed()
|
| H A D | dynamic_link.cpp | 194 void add(const dynamic_link_handle &handle) { in add() function 408 handles.add( src ); in save_library_handle()
|
| /oneTBB/doc/ |
| H A D | make.bat | 39 echo.may add the Sphinx directory to PATH.
|
| /oneTBB/cmake/ |
| H A D | sanitize.cmake | 25 # It is required to add sanitizer option to CMAKE_REQUIRED_LIBRARIES to make check_cxx_compiler_fla…
|
| /oneTBB/cmake/compilers/ |
| H A D | AppleClang.cmake | 24 # Don't add -MMD to avoid conflicts in such cases.
|
| /oneTBB/src/tbbmalloc/ |
| H A D | backend.cpp | 869 extMemPool->lmbList.add(lmb); in getLargeBlock() 922 void AllLargeBlocksList::add(LargeMemoryBlock *lmb) in add() function in rml::internal::AllLargeBlocksList 995 regionList.add(oldRegion); in remap() 1007 regionList.add(region); in remap() 1297 void MemRegionList::add(MemRegion *r) in add() function in rml::internal::MemRegionList 1362 regionList.add(region); in addNewRegion()
|
| /oneTBB/src/tbb/def/ |
| H A D | mac64-tbb.def | 19 # be listed WITHOUT one leading underscore. __TBB_SYMBOL macro should add underscore when
|
| /oneTBB/doc/main/reference/ |
| H A D | parallel_for_each_semantics.rst | 65 Additional elements submitted into ``tbb::parallel_for_each`` through the ``feeder::add`` passes to…
|
| /oneTBB/test/conformance/ |
| H A D | conformance_parallel_for_each.cpp | 107 feeder.add(ForEachInvokeItem(real_value + shift, change_vector)); in do_action_and_feed()
|
| /oneTBB/examples/concurrent_priority_queue/shortpath/ |
| H A D | README.md | 6 This algorithm varies from serial `A*` in that it needs to add nodes back to the open set when the …
|