Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/framework/
Drun_handler.cc31 explicit Impl(RunHandlerPool::Impl* pool_impl) : pool_impl_(pool_impl) { in Impl()
55 RunHandlerPool::Impl* pool_impl() { return pool_impl_; } in pool_impl()
76 RunHandlerPool::Impl* pool_impl_; // NOT OWNED.
83 class RunHandlerPool::Impl {
203 void RunHandlerPool::Impl::RecomputePoolStatsLocked() { in RecomputePoolStatsLocked()
258 RunHandlerPool::RunHandlerPool(int num_inter_op_threads) in RunHandlerPool() function in tensorflow::RunHandlerPool
261 RunHandlerPool::~RunHandlerPool() {} in ~RunHandlerPool()
263 std::unique_ptr<RunHandler> RunHandlerPool::Get() { return impl_->Get(); } in Get()
Drun_handler.h46 class RunHandlerPool {
48 explicit RunHandlerPool(int num_inter_op_threads);
49 ~RunHandlerPool();
86 friend class RunHandlerPool::Impl;
/external/tensorflow/tensorflow/core/common_runtime/
Ddirect_session.cc251 static RunHandlerPool* GetOrCreateRunHandlerPool( in GetOrCreateRunHandlerPool()
253 static RunHandlerPool* pool = in GetOrCreateRunHandlerPool()
254 new RunHandlerPool(NumInterOpThreadsFromSessionOptions(options)); in GetOrCreateRunHandlerPool()