Home
last modified time | relevance | path

Searched defs:ThreadPool (Results 1 – 9 of 9) sorted by relevance

/third_party/mindspore/mindspore-src/source/mindspore/lite/tools/converter/micro/coder/wrapper/thread/
Dmicro_thread_pool.h34 typedef struct ThreadPool { struct
42 } ThreadPool; argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DThreadPool.cpp24 ThreadPool::ThreadPool() : ThreadPool(hardware_concurrency()) {} in ThreadPool() function in ThreadPool
26 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() function in ThreadPool
111 ThreadPool::ThreadPool() : ThreadPool(0) {} in ThreadPool() function in ThreadPool
114 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() function in ThreadPool
/third_party/mindspore/mindspore-src/source/mindspore/core/mindrt/src/thread/
Dparallel_thread_pool_manager.h31 class ThreadPool; variable
Dthreadpool.h78 class ThreadPool; variable
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/
Dthread_pool.h35 explicit ThreadPool(int num_threads) { in ThreadPool() function
/third_party/icu/icu4c/source/test/intltest/
Dsimplethread.h78 ThreadPool(TestClass *test, int howMany, void (TestClass::*runFnPtr)(int32_t threadNumber)) : in ThreadPool() function
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/common/
Dthread_pool.cc27 ThreadPool::ThreadPool() : max_thread_num_(std::thread::hardware_concurrency()) {} in ThreadPool() function in mindspore::common::ThreadPool
/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/dataset/engine/obs/
Dobs_mindrecord_dataset.py22 from multiprocessing.dummy import Pool as ThreadPool unknown
/third_party/python/Lib/multiprocessing/
Dpool.py921 class ThreadPool(Pool): class