Home
last modified time | relevance | path

Searched refs:thread_options_ (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/executor/
Dthreadpool.cc52 thread_options_.set_joinable(true); in SharedThreadPoolConstructor()
61 threads_[i] = new ThreadPoolWorker(thd_name_, queue_, thread_options_, i); in SharedThreadPoolConstructor()
81 thread_options_ = Thread::Options(); in ThreadPool()
82 thread_options_.set_stack_size(DefaultStackSize()); in ThreadPool()
88 thread_options_ = Thread::Options(); in ThreadPool()
89 thread_options_.set_stack_size(DefaultStackSize()); in ThreadPool()
97 thread_options_(thread_options) { in ThreadPool()
98 if (thread_options_.stack_size() == 0) { in ThreadPool()
99 thread_options_.set_stack_size(DefaultStackSize()); in ThreadPool()
133 return thread_options_; in thread_options()
Dthreadpool.h133 Thread::Options thread_options_; variable
/external/tensorflow/tensorflow/core/platform/default/
Dunbounded_work_queue.cc27 : env_(env), thread_name_(thread_name), thread_options_(thread_options) {} in UnboundedWorkQueue()
77 if (thread_options_.numa_node != port::kNUMANoAffinity) { in PooledThreadFunc()
78 port::NUMASetThreadNodeAffinity(thread_options_.numa_node); in PooledThreadFunc()
Dunbounded_work_queue.h55 const ThreadOptions thread_options_; variable
/external/tensorflow/tensorflow/core/platform/
Dthreadpool.cc46 const ThreadOptions thread_options_; member
51 : env_(env), thread_options_(thread_options), name_(name) {} in EigenEnvironment()
54 return env_->StartThread(thread_options_, name_, [=]() { in CreateThread()
59 if (thread_options_.numa_node != port::kNUMANoAffinity) { in CreateThread()
60 port::NUMASetThreadNodeAffinity(thread_options_.numa_node); in CreateThread()
/external/tensorflow/tensorflow/core/framework/
Drun_handler.cc52 : env_(env), thread_options_(thread_options), name_(name) {} in RunHandlerEnvironment()
56 return env_->StartThread(thread_options_, name_, [=]() { in CreateThread()
61 if (thread_options_.numa_node != port::kNUMANoAffinity) { in CreateThread()
62 port::NUMASetThreadNodeAffinity(thread_options_.numa_node); in CreateThread()
Drun_handler.h121 const ThreadOptions thread_options_; variable