Home
last modified time | relevance | path

Searched refs:ThreadPoolExecutor (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DParallel.cpp41 class ThreadPoolExecutor : public Executor { class
43 explicit ThreadPoolExecutor(ThreadPoolStrategy S = hardware_concurrency()) { in ThreadPoolExecutor() function in llvm::parallel::detail::__anond7d369990111::ThreadPoolExecutor
72 ~ThreadPoolExecutor() override { in ~ThreadPoolExecutor()
83 static void *call() { return new ThreadPoolExecutor(strategy); } in call()
86 static void call(void *Ptr) { ((ThreadPoolExecutor *)Ptr)->stop(); } in call()
139 static ManagedStatic<ThreadPoolExecutor, ThreadPoolExecutor::Creator, in getDefaultExecutor()
140 ThreadPoolExecutor::Deleter> in getDefaultExecutor()
142 static std::unique_ptr<ThreadPoolExecutor> Exec(&(*ManagedExec)); in getDefaultExecutor()
/llvm-project-15.0.7/llvm/utils/
H A Dupdate_test_prefix.py6 from concurrent.futures import ThreadPoolExecutor, as_completed
42 with ThreadPoolExecutor(max_workers=32) as e:
/llvm-project-15.0.7/lldb/examples/python/
H A Dcrashlog.py983 with concurrent.futures.ThreadPoolExecutor() as executor: