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.cc193 if (request->exec_opts().report_tensor_allocations_upon_oom() || in DoRunGraph()
194 request->exec_opts().record_timeline() || in DoRunGraph()
195 request->exec_opts().record_costs()) { in DoRunGraph()
199 if (collector && request->exec_opts().record_timeline()) { in DoRunGraph()
225 request->graph_handle(), step_id, session.get(), request->exec_opts(), in DoRunGraph()
318 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.cc317 const ExecutorOpts& InMemoryRunGraphRequest::exec_opts() const { in exec_opts() function in tensorflow::InMemoryRunGraphRequest
407 *proto_version_->mutable_exec_opts() = exec_opts(); in ToProto()
458 const ExecutorOpts& MutableProtoRunGraphRequest::exec_opts() const { in exec_opts() function in tensorflow::MutableProtoRunGraphRequest
459 return request_.exec_opts(); in exec_opts()
571 const ExecutorOpts& ProtoRunGraphRequest::exec_opts() const { in exec_opts() function in tensorflow::ProtoRunGraphRequest
572 return request_->exec_opts(); in exec_opts()
Dmessage_wrappers.h274 virtual const ExecutorOpts& exec_opts() const = 0;
338 const ExecutorOpts& exec_opts() const override;
398 const ExecutorOpts& exec_opts() const override;
441 const ExecutorOpts& exec_opts() const override;
Dmaster_session.cc649 ExecutorOpts exec_opts; in RunPartitionsHelper() local
651 exec_opts.set_report_tensor_allocations_upon_oom(true); in RunPartitionsHelper()
654 exec_opts.set_record_costs(true); in RunPartitionsHelper()
657 exec_opts.set_record_timeline(true); in RunPartitionsHelper()
663 exec_opts.set_record_partition_graphs(true); in RunPartitionsHelper()
686 *c->req->mutable_exec_opts() = exec_opts; in RunPartitionsHelper()
/external/tensorflow/tensorflow/core/protobuf/
Dworker.proto252 ExecutorOpts exec_opts = 5; field