Home
last modified time | relevance | path

Searched refs:current (Results 1 – 25 of 28) sorted by relevance

12

/oneTBB/include/oneapi/tbb/detail/
H A D_flow_graph_join_impl.h241 current = op_list;
243 switch(current->type) {
406 queueing_port_operation *current;
409 current = op_list;
411 switch(current->type) {
566 current = op_list;
568 switch(current->type) {
905 current = op_list;
907 switch(current->type) {
1070 current = op_list;
[all …]
H A D_flow_graph_indexer_impl.h140 indexer_node_base_operation *current;
142 current = op_list;
144 switch(current->type) {
147 my_successors.register_successor(*(current->my_succ));
148 current->status.store( SUCCEEDED, std::memory_order_release);
152 my_successors.remove_successor(*(current->my_succ));
153 current->status.store( SUCCEEDED, std::memory_order_release);
156 current->bypass_t = my_successors.try_put_task(*(current->my_arg));
157current->status.store( SUCCEEDED, std::memory_order_release); // return of try_put_task actual re…
H A D_concurrent_skip_list.h578 node_ptr current = head->next(0); in clear() local
581 while (current) { in clear()
582 node_ptr next = current->next(0); in clear()
583 delete_value_node(current); in clear()
584 current = next; in clear()
/oneTBB/doc/main/tbb_userguide/
H A DTask_Scheduler_Bypass.rst8 the spawning of the new task to be executed by the current thread involves the next steps:
11 - Continue to execute the current task until it is completed.
18 the task is executed by the current thread and not by any other thread.
H A DFloating_Point_Settings.rst8 …cheduler for a given application thread is initialized, they capture the current floating-point se…
9 * The ``task_group_context`` class has a method to capture the current floating-point settings.
14 For better control over floating point behavior, a thread may capture the current settings in a tas…
H A DCancellation_Without_An_Exception.rst8 …eferences the ``task_group_context*`` of the currently executing task if any on the current thread.
H A DTiming.rst17 represents the current absolute time. Subtracting two ``tick_count``
H A DExceptions_and_Cancellation.rst27 occurs on current systems because propagating exceptions between threads
H A Dconcurrent_vector_ug.rst45 past the current value of ``end()``. However, the iterator may reference
H A Dbroadcast_or_send.rst76 messages in the same order to all nodes or in the current priority order
H A Dwork_isolation.rst130 // Run the second parallel loop in an isolated region to prevent the current thread
/oneTBB/src/tbb/
H A Dsmall_object_pool.cpp124 small_object* current = list; in cleanup_list() local
126 current->~small_object(); in cleanup_list()
127 cache_aligned_deallocate(current); in cleanup_list()
/oneTBB/python/rml/
H A Dipc_server.cpp1037 ipc_worker* current = nullptr; in stop_one() local
1042 current = my_asleep_list_root.load(std::memory_order_relaxed); in stop_one()
1043 if( current->my_state.load(std::memory_order_relaxed)==ipc_worker::st_normal ) { in stop_one()
1044 next = current->my_next; in stop_one()
1046 current = next; in stop_one()
1047 next = current->my_next; in stop_one()
1049 current->start_stopping( my_join_workers ); in stop_one()
/oneTBB/examples/getting_started/
H A DREADME.md2 …Guide](https://www.intel.com/content/www/us/en/docs/onetbb/get-started-guide/current/overview.html)
/oneTBB/cmake/
H A Dpackaging.cmake15 # Note: current implementation uses CMAKE_BUILD_TYPE,
H A Dconfig_generation.cmake15 # Save current location,
/oneTBB/doc/main/reference/
H A Dreference.rst6 For oneTBB API Reference, refer to `oneAPI Specification <https://spec.oneapi.com/>`_. The current
/oneTBB/examples/getting_started/sub_string_finder/
H A DREADME.md2 …e](https://www.intel.com/content/www/us/en/docs/onetbb/get-started-guide/current/overview.html) de…
/oneTBB/doc/main/tbb_userguide/Migration_Guide/
H A DTask_Scheduler_Init.rst22 …returns the maximum number of threads available for the parallel algorithms within the current con…
27 returns the current limit of the thread pool (or *default* if oneTBB scheduler is not initialized)
/oneTBB/integration/linux/modulefiles/
H A Dtbb3218 # Type `module --version` to determine the current installed version.
H A Dtbb18 # Type `module --version` to determine the current installed version.
/oneTBB/
H A DBazel.md77 The expected output of this program is the current version of oneTBB.
H A DREADME.md21 oneTBB is a part of [oneAPI](https://oneapi.io). The current branch implements version 1.1 of oneAP…
/oneTBB/doc/main/tbb_userguide/design_patterns/
H A DLocal_Serializer.rst49 item onto the FIFO. When the current item in flight completes, pop
278 that have become unconstrained by the completion of the current work
/oneTBB/test/tbb/
H A Dtest_task_group.cpp262 std::size_t current = utils::GetMemoryUsage(); in TestThreadSafety() local
263 if (current <= initial) { in TestThreadSafety()
266 initial = current; in TestThreadSafety()

12