Searched refs:threading (Results 1 – 16 of 16) sorted by relevance
8 without having to be a threading expert. Typically you can improve16 using platform-dependent threading primitives to exotic new languages.20 typical threading packages in the following ways:24 threads**. Most threading packages require you to specify threads.34 - **oneTBB targets threading for performance**. Most general-purpose35 threading packages support many different kinds of threading, such as36 threading for asynchronous events in graphical user interfaces. As a43 - **oneTBB is compatible with other threading packages.** Because the44 library is not designed to address all threading problems, it can45 coexist seamlessly with other threading packages.
49 threading::threading(int p) { in threading() function in threading53 threading::~threading() { in ~threading()
44 struct threading { struct45 threading(int p);46 ~threading();
75 threading tp(p); in main()
5 multi-threaded and multiprocess Python programs by enabling threading composability9 standard library or libraries like Dask or Joblib (used either in multi-threading or multi-processi…14 …ted in class Monkey, no source code change is needed in order to enable threading composability in…34 …xt of `with tbb.Monkey():` when oneTBB is enabled. By default only multi-threading will be covered.35 …py in context of `with tbb.Monkey():` when oneTBB enabled in both multi-threading and multi-proces…
5 to complex applications, even if you are not a threading expert. 11 The library differs from typical threading packages in the following ways:13 * oneTBB targets threading for performance.14 * oneTBB is compatible with other threading packages.
8 threading packages. No special effort is required to use any part of9 oneTBB with other threading packages.
7 Using the task scheduler is usually the best approach to threading for
29 threading is implicit, it optimizes use of worker threads so that they
83 …w.intel.com/content/www/us/en/architecture-and-technology/hyper-threading/hyper-threading-technolo…
31 The threads you create with a threading package are *logical* threads,
68 import threading328 self._event = threading.Event()493 self._cond = threading.Condition()572 self._lock = threading.Lock()
47 import threading64 get_tid = lambda: threading.current_thread().ident
10 * :ref:`Benefits` describes how |short_name| differs from typical threading packages.
46 module-whatis "Description: Flexible threading library for adding parallelism to complex applicatio…