Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/
Dexecutable_run_options.cc59 const Eigen::ThreadPoolDevice* intra_op_thread_pool) { in set_intra_op_thread_pool() argument
60 intra_op_thread_pool_ = intra_op_thread_pool; in set_intra_op_thread_pool()
64 const Eigen::ThreadPoolDevice* ExecutableRunOptions::intra_op_thread_pool() in intra_op_thread_pool() function in xla::ExecutableRunOptions
Dexecutable_run_options.h69 const Eigen::ThreadPoolDevice* intra_op_thread_pool);
70 const Eigen::ThreadPoolDevice* intra_op_thread_pool() const;
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Druntime_fork_join.cc77 CHECK_NE(run_options->intra_op_thread_pool(), nullptr); in __xla_cpu_runtime_ParallelForkJoin()
88 run_options->intra_op_thread_pool()->enqueueNoNotification( in __xla_cpu_runtime_ParallelForkJoin()
Druntime_conv2d.cc38 *run_options->intra_op_thread_pool(), out, lhs, rhs, input_batch, in __xla_cpu_runtime_EigenConvF32()
57 *run_options->intra_op_thread_pool(), out, lhs, rhs, input_batch, in __xla_cpu_runtime_EigenConvF16()
Druntime_matmul_mkl.cc86 run_options->intra_op_thread_pool()->numThreads()); in __xla_cpu_runtime_MKLMatMulF32()
101 run_options->intra_op_thread_pool()->numThreads()); in __xla_cpu_runtime_MKLMatMulF64()
Druntime_fft.cc34 tensorflow::xla::EigenFftImpl(*run_options->intra_op_thread_pool(), out, in __xla_cpu_runtime_EigenFft()
Druntime_matmul.cc72 C.device(*run_options->intra_op_thread_pool()) = A.contract(B, dims); in MatMul()