Home
last modified time | relevance | path

Searched refs:exec_opts (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/core/distributed_runtime/
Dworker.cc180 if (request->exec_opts().report_tensor_allocations_upon_oom() || in DoRunGraph()
181 request->exec_opts().record_timeline() || in DoRunGraph()
182 request->exec_opts().record_costs()) { in DoRunGraph()
186 if (collector && request->exec_opts().record_timeline()) { in DoRunGraph()
226 request->graph_handle(), step_id, session.get(), request->exec_opts(), in DoRunGraph()
313 graph_handle, step_id, session.get(), request->exec_opts(), in DoPartialRunGraph()
Dmessage_wrappers_test.cc89 EXPECT_FALSE(request.exec_opts().record_costs()); in CheckRunGraphRequest()
90 EXPECT_TRUE(request.exec_opts().record_timeline()); in CheckRunGraphRequest()
91 EXPECT_FALSE(request.exec_opts().record_partition_graphs()); in CheckRunGraphRequest()
Dmessage_wrappers.cc319 const ExecutorOpts& InMemoryRunGraphRequest::exec_opts() const { in exec_opts() function in tensorflow::InMemoryRunGraphRequest
403 *proto_version_->mutable_exec_opts() = exec_opts(); in ToProto()
451 const ExecutorOpts& MutableProtoRunGraphRequest::exec_opts() const { in exec_opts() function in tensorflow::MutableProtoRunGraphRequest
452 return request_.exec_opts(); in exec_opts()
556 const ExecutorOpts& ProtoRunGraphRequest::exec_opts() const { in exec_opts() function in tensorflow::ProtoRunGraphRequest
557 return request_->exec_opts(); in exec_opts()
Dmessage_wrappers.h271 virtual const ExecutorOpts& exec_opts() const = 0;
332 const ExecutorOpts& exec_opts() const override;
389 const ExecutorOpts& exec_opts() const override;
430 const ExecutorOpts& exec_opts() const override;
Dmaster_session.cc598 ExecutorOpts exec_opts; in RunPartitionsHelper() local
600 exec_opts.set_report_tensor_allocations_upon_oom(true); in RunPartitionsHelper()
603 exec_opts.set_record_costs(true); in RunPartitionsHelper()
606 exec_opts.set_record_timeline(true); in RunPartitionsHelper()
612 exec_opts.set_record_partition_graphs(true); in RunPartitionsHelper()
634 *c->req->mutable_exec_opts() = exec_opts; in RunPartitionsHelper()
/external/tensorflow/tensorflow/core/protobuf/
Dworker.proto235 ExecutorOpts exec_opts = 5; field