Home
last modified time | relevance | path

Searched refs:thread_options (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/core/lib/core/
Dthreadpool.cc48 EigenEnvironment(Env* env, const ThreadOptions& thread_options, in EigenEnvironment()
50 : env_(env), thread_options_(thread_options), name_(name) {} in EigenEnvironment()
89 Impl(Env* env, const ThreadOptions& thread_options, const string& name, in Impl()
93 EigenEnvironment(env, thread_options, name)), in Impl()
112 ThreadPool::ThreadPool(Env* env, const ThreadOptions& thread_options, in ThreadPool() argument
114 : ThreadPool(env, thread_options, name, num_threads, true, nullptr) {} in ThreadPool()
116 ThreadPool::ThreadPool(Env* env, const ThreadOptions& thread_options, in ThreadPool() argument
120 impl_.reset(new ThreadPool::Impl(env, thread_options, "tf_" + name, in ThreadPool()
Dthreadpool.h42 ThreadPool(Env* env, const ThreadOptions& thread_options, const string& name,
56 ThreadPool(Env* env, const ThreadOptions& thread_options, const string& name,
/external/tensorflow/tensorflow/core/platform/posix/
Denv.cc44 StdThread(const ThreadOptions& thread_options, const string& name, in StdThread() argument
84 Thread* StartThread(const ThreadOptions& thread_options, const string& name, in StartThread() argument
86 return new StdThread(thread_options, name, fn); in StartThread()
/external/tensorflow/tensorflow/core/platform/windows/
Denv.cc46 StdThread(const ThreadOptions& thread_options, const string& name, in StdThread() argument
82 Thread* StartThread(const ThreadOptions& thread_options, const string& name, in StartThread() argument
84 return new StdThread(thread_options, name, fn); in StartThread()
/external/tensorflow/tensorflow/core/platform/
Denv.h270 virtual Thread* StartThread(const ThreadOptions& thread_options,
368 Thread* StartThread(const ThreadOptions& thread_options, const string& name, in StartThread() argument
370 return target_->StartThread(thread_options, name, fn); in StartThread()
/external/tensorflow/tensorflow/core/kernels/batching_util/
Dperiodic_function.h84 ThreadOptions thread_options; member
Dperiodic_function.cc43 options_.thread_options, options_.thread_name_prefix, [this]() { in __anon92d06bed0202()
/external/tensorflow/tensorflow/core/kernels/data/experimental/
Dthreadpool_dataset_op.cc30 ThreadPoolResource(Env* env, const ThreadOptions& thread_options, in ThreadPoolResource() argument
33 : thread_pool_(env, thread_options, name, num_threads, low_latency_hint), in ThreadPoolResource()