Searched defs:output_names (Results 1 - 25 of 26) sorted by relevance

12

/external/tensorflow/tensorflow/core/common_runtime/
H A Dsession_state.cc66 Status TensorStore::SaveTensors(const std::vector<string>& output_names, argument
70 // Save only the tensors in output_names in the session.
71 for (const string& name : output_names) {
H A Ddirect_session_with_tracking_alloc_test.cc82 std::vector<string> output_names = {y->name() + ":0"}; local
86 Status s = session->Run(inputs, output_names, target_nodes, &outputs);
192 std::vector<string> output_names = {y->name() + ":0"}; local
202 Status s = session->Run(run_options, inputs, output_names, target_nodes,
276 std::vector<string> output_names = {y->name() + ":0"}; local
281 Status s = session->Run(run_options, inputs, output_names, target_nodes,
334 std::vector<string> output_names = {y->name() + ":0"}; local
337 Status s = session->Run(run_options, inputs, output_names, {}, &outputs,
H A Dsession.cc39 const std::vector<string>& output_names,
48 const std::vector<string>& output_names,
38 PRunSetup(const std::vector<string>& input_names, const std::vector<string>& output_names, const std::vector<string>& target_nodes, string* handle) argument
46 PRun(const string& handle, const std::vector<std::pair<string, Tensor> >& inputs, const std::vector<string>& output_names, std::vector<Tensor>* outputs) argument
H A Dgraph_runner.cc106 const std::vector<string>& output_names,
148 graph_to_run.get(), input_names, output_names, {} /* target nodes */,
187 outputs->resize(output_names.size());
188 for (size_t i = 0; i < output_names.size(); ++i) {
191 output_names[i], FrameAndIter(0, 0));
104 Run(Graph* graph, FunctionLibraryRuntime* function_library, const NamedTensorList& inputs, const std::vector<string>& output_names, std::vector<Tensor>* outputs) argument
H A Ddirect_session_test.cc99 std::vector<string> output_names = {y_ + ":0"}; local
102 Status s = session->Run(inputs, output_names, target_nodes, &outputs);
127 std::vector<string> output_names = {y_ + ":0"}; local
131 Status s = session->Run(inputs, output_names, {}, &outputs);
152 std::vector<string> output_names = {y_ + ":0"}; local
153 auto fn = [&session, output_names]() {
158 Status s = session->Run(inputs, output_names, {}, &outputs);
189 std::vector<string> output_names = {y_ + ":0"}; local
190 auto fn = [&session, output_names]() {
195 Status s = session->Run(inputs, output_names, {},
273 std::vector<string> output_names = {y_ + ":0"}; local
[all...]
H A Ddirect_session.cc403 const std::vector<string>& output_names,
407 return Run(RunOptions(), inputs, output_names, target_nodes, outputs,
414 const std::vector<string>& output_names,
421 input_names, output_names, target_names));
438 const std::vector<string>& output_names,
474 TF_RETURN_IF_ERROR(GetOrCreateExecutors(input_tensor_names, output_names,
483 input_tensor_names, output_names, target_nodes, &debugger_state));
641 output_names.size() == executors_and_keys->output_name_to_index.size();
643 // output_names[i] == output_names[
402 Run(const NamedTensorList& inputs, const std::vector<string>& output_names, const std::vector<string>& target_nodes, std::vector<Tensor>* outputs) argument
411 CreateDebuggerState( const DebugOptions& debug_options, int64 session_run_index, int64 executor_step_index, const std::vector<string>& input_names, const std::vector<string>& output_names, const std::vector<string>& target_names, std::unique_ptr<DebuggerStateInterface>* debugger_state) argument
436 Run(const RunOptions& run_options, const NamedTensorList& inputs, const std::vector<string>& output_names, const std::vector<string>& target_nodes, std::vector<Tensor>* outputs, RunMetadata* run_metadata) argument
712 PRunSetup(const std::vector<string>& input_names, const std::vector<string>& output_names, const std::vector<string>& target_nodes, string* handle) argument
792 PRun(const string& handle, const NamedTensorList& inputs, const std::vector<string>& output_names, std::vector<Tensor>* outputs) argument
957 RecvPRunOutputs( const std::vector<string>& output_names, const ExecutorsAndKeys* executors_and_keys, RunState* run_state, std::vector<Tensor>* outputs) argument
[all...]
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/
H A Dfiltering_postprocessor.py65 def output_names(self): member in class:FilteringStepPostprocessor
178 output_names = ["anomaly_score"] variable in class:StateInterpolatingAnomalyDetector
/external/tensorflow/tensorflow/core/debug/
H A Ddebugger_state_impl.cc41 const std::vector<string>& output_names,
45 output_names, target_names, debug_urls_);
38 PublishDebugMetadata( const int64 global_step, const int64 session_run_index, const int64 executor_step_index, const std::vector<string>& input_names, const std::vector<string>& output_names, const std::vector<string>& target_names) argument
H A Ddebug_gateway_test.cc149 std::vector<string> output_names = {y_ + ":0"}; local
152 Status s = session->Run(inputs, output_names, target_nodes, &outputs);
304 std::vector<string> output_names = {y_ + ":0"}; local
309 Status s = session->Run(run_opts, inputs, output_names, target_nodes,
371 std::vector<string> output_names = {y_ + ":0"}; local
424 auto fn = [this, &run_lock, &run_counter, &session, output_names,
459 Status s = session->Run(run_opts, inputs, output_names, target_nodes,
593 std::vector<string> output_names; local
598 Status s = session->Run(run_opts, inputs, output_names, target_nodes,
831 std::vector<string> output_names local
991 std::vector<string> output_names = {z_node_name_ + ":0"}; local
[all...]
H A Ddebug_io_utils.cc327 const std::vector<string>& output_names,
345 oss << "\"output_names\":[";
346 for (size_t i = 0; i < output_names.size(); ++i) {
347 oss << "\"" << output_names[i] << "\""; local
348 if (i < output_names.size() - 1) {
324 PublishDebugMetadata( const int64 global_step, const int64 session_run_index, const int64 executor_step_index, const std::vector<string>& input_names, const std::vector<string>& output_names, const std::vector<string>& target_nodes, const std::unordered_set<string>& debug_urls) argument
/external/tensorflow/tensorflow/tools/graph_transforms/
H A Dinsert_logging_test.cc39 const std::vector<string>& output_names) {
43 TF_ASSERT_OK(session->Run({}, output_names, {}, &outputs));
71 context.output_names = {"add_node4"};
118 context.output_names = {"add_node4"};
167 context.output_names = {"add_node4"};
38 CheckGraphCanRun(const GraphDef& graph_def, const std::vector<string>& output_names) argument
H A Dtransform_utils.h224 std::vector<string> output_names; member in struct:tensorflow::graph_transforms::TransformFuncContext
/external/libdrm/tests/modeprint/
H A Dmodeprint.c144 static const char * const output_names[] = { "None", variable
169 if (connector->connector_type < ARRAY_SIZE(output_names))
170 printf("Connector: %s-%d\n", output_names[connector->connector_type],
/external/tensorflow/tensorflow/core/platform/
H A Ddevice_tracer_test.cc160 std::vector<string> output_names = {y_ + ":0"}; local
165 Status s = session->Run(inputs, output_names, target_nodes, &outputs);
187 std::vector<string> output_names = {y_ + ":0"}; local
192 Status s = session->Run(inputs, output_names, target_nodes, &outputs);
213 std::vector<string> output_names = {y_ + ":0"}; local
221 Status s = session->Run(run_options, inputs, output_names, target_nodes,
/external/tensorflow/tensorflow/contrib/tensorrt/convert/
H A Dconvert_graph.cc114 const std::vector<string>& output_names,
131 // Collect outputs referenced from output_names
132 auto output_name_to_index_map = BuildTensorNameMap(output_names);
200 const std::vector<string>& output_names, size_t max_batch_size,
204 item.fetch = output_names;
241 for (auto node : output_names) {
261 output_names, subgraph_node_ids, max_batch_size,
113 ConvertSubGraphToTensorRT( const std::vector<string>& output_names, const std::set<int>& subgraph_node_ids, size_t max_batch_size, size_t max_workspace_size_bytes, const tensorflow::grappler::GraphProperties& graph_properties, tensorflow::Graph* graph) argument
198 ConvertGraphDefToTensorRT( const tensorflow::GraphDef& graph_def, const std::vector<string>& output_names, size_t max_batch_size, size_t max_workspace_size_bytes, tensorflow::GraphDef* new_graph_def) argument
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
H A Dgrpc_session.cc288 const std::vector<string>& output_names,
306 for (const string& fetch : output_names) {
320 const std::vector<string>& output_names,
324 return RunHelper(run_options, inputs, output_names, /* targets */ {}, outputs,
287 PRunSetup(const std::vector<string>& input_names, const std::vector<string>& output_names, const std::vector<string>& target_nodes, string* handle) argument
318 PRun(const string& handle, const std::vector<std::pair<string, Tensor>>& inputs, const std::vector<string>& output_names, std::vector<Tensor>* outputs) argument
/external/tensorflow/tensorflow/core/graph/
H A Dgraph_constructor_test.cc2646 std::vector<string> output_names = {"Foo_d03c39a3"}; local
2649 TF_ASSERT_OK(sess->Run(inputs, output_names, target_names, &outputs));
2739 std::vector<string> output_names = {"Outer_966fa13d"}; local
2742 s = sess->Run(inputs, output_names, target_names, &outputs);
/external/tensorflow/tensorflow/core/kernels/
H A Dremote_fused_graph_execute_utils_test.cc176 const std::vector<string>& output_names,
182 fixture->subgraph_output_names_ = output_names;
175 SetSubgraphArguments(const std::vector<string>& input_names, const std::vector<string>& output_names, FuseRemoteGraphMultipleAddOpsTest* fixture) argument
/external/adhd/cras/src/server/
H A Dcras_alsa_mixer.c674 static const char * const output_names[] = { local
705 output_names, ARRAY_SIZE(output_names),
/external/tensorflow/tensorflow/c/
H A Dc_api_function.cc139 "' appears more than once in 'output_names' array.");
256 const std::vector<string>& output_names,
258 if (!output_names.empty()) {
259 DCHECK_EQ(output_names.size(), outputs.size());
280 // We fill the outputs first to prevent output_names from colliding
282 // node_names yet, and output_names won't collide with anything (except
289 if (!output_names.empty()) {
290 TF_RETURN_IF_ERROR(node_names.UseOutputName(output_names[i]));
291 argdef->set_name(output_names[i]);
492 const char* const* output_names,
251 GraphToFunctionDef(const Graph& fn_body, const string& fn_name, bool append_hash_to_fn_name, const std::vector<const Node*>& body_nodes, const std::vector<OutputTensor>& inputs, const std::vector<OutputTensor>& outputs, const std::vector<string>& output_names, const char* description, FunctionDef* fdef) argument
487 TF_GraphToFunction(const TF_Graph* fn_body, const char* fn_name, unsigned char append_hash_to_fn_name, int num_opers, const TF_Operation* const* opers, int ninputs, const TF_Output* inputs, int noutputs, const TF_Output* outputs, const char* const* output_names, const TF_FunctionOptions* opts, const char* description, TF_Status* status) argument
[all...]
H A Dc_api_function_test.cc154 const std::vector<string>& output_names,
156 DefineT(num_opers, opers, ToOutput(inputs), ToOutput(outputs), output_names,
178 const std::vector<string>& output_names,
181 const char** output_names_ptr = ToArray(output_names);
1092 "appears more than once in 'output_names' array."),
1225 /*output_names=*/nullptr,
1520 /*output_names=*/nullptr,
151 Define(int num_opers, const std::vector<TF_Operation*>& opers, const std::vector<TF_Operation*>& inputs, const std::vector<TF_Operation*>& outputs, const std::vector<string>& output_names, bool expect_failure = false) argument
175 DefineT(int num_opers, const std::vector<TF_Operation*>& opers, const std::vector<TF_Output>& inputs, const std::vector<TF_Output>& outputs, const std::vector<string>& output_names, bool expect_failure = false) argument
/external/tensorflow/tensorflow/python/client/
H A Dtf_session_helper.cc47 const NameVector& output_names,
88 TF_TensorVector outputs(output_names.size());
98 input_names.size(), const_cast<const char**>(output_names.data()),
99 outputs.data(), output_names.size(),
104 input_names.size(), const_cast<const char**>(output_names.data()),
105 outputs.data(), output_names.size(),
129 for (size_t i = 0; i < output_names.size(); ++i) {
150 PyObject* feed_dict, const NameVector& output_names,
153 TF_Run_wrapper_helper(session, nullptr, run_options, feed_dict, output_names,
162 const NameVector& output_names,
45 TF_Run_wrapper_helper(TF_DeprecatedSession* session, const char* handle, const TF_Buffer* run_options, PyObject* feed_dict, const NameVector& output_names, const NameVector& target_nodes, TF_Status* out_status, PyObjectVector* out_values, TF_Buffer* run_outputs) argument
149 TF_Run_wrapper(TF_DeprecatedSession* session, const TF_Buffer* run_options, PyObject* feed_dict, const NameVector& output_names, const NameVector& target_nodes, TF_Status* out_status, PyObjectVector* out_values, TF_Buffer* run_outputs) argument
160 TF_PRunSetup_wrapper(TF_DeprecatedSession* session, const NameVector& input_names, const NameVector& output_names, const NameVector& target_nodes, TF_Status* out_status, const char** out_handle) argument
177 TF_PRun_wrapper(TF_DeprecatedSession* session, const char* handle, PyObject* feed_dict, const NameVector& output_names, TF_Status* out_status, PyObjectVector* out_values) argument
416 TF_GraphToFunction_wrapper( const TF_Graph* fn_body, const char* fn_name, bool append_hash_to_fn_name, const std::vector<TF_Operation*>* opers, const std::vector<TF_Output>& inputs, const std::vector<TF_Output>& outputs, const NameVector& output_names, const TF_FunctionOptions* opts, const char* description, TF_Status* out_status) argument
[all...]
/external/tensorflow/tensorflow/cc/framework/
H A Dcc_op_gen.cc512 std::vector<string> output_names; member in struct:tensorflow::__anon25340::OpInfo
620 output_names.push_back(AvoidCPPKeywords(api_def_arg.rename_to()));
647 strings::StrAppend(&comment, " ", output_names[i]);
767 output_names[0], "[index]; }\n\n");
774 output_names[0], "; }\n");
777 output_names[0], "; }\n");
781 output_names[0], ".node(); }\n");
818 strings::StrAppend(&class_decl, " ", output_types[i], " ", output_names[i],
847 strings::StrAppend(out, " this->", output_names[0],
850 strings::StrAppend(out, " this->", output_names[
[all...]
/external/tensorflow/tensorflow/core/distributed_runtime/
H A Dmaster_session.cc1561 std::vector<string> output_names; local
1563 output_names.push_back(req.fetch_name(i));
1576 input_names, output_names, target_names));
1706 const std::vector<string>& output_names,
1714 for (auto& name : output_names) {
1705 RunState(const std::vector<string>& input_names, const std::vector<string>& output_names, ReffedClientGraph* rcg, const uint64 step_id, const int64 count) argument
/external/tensorflow/tensorflow/core/framework/
H A Dfunction.cc1289 NameRangeMap output_names; local
1290 TF_CHECK_OK(NameRangesForNode(*n, *op_def, nullptr, &output_names));
1291 for (const auto& o : output_names) {

Completed in 1003 milliseconds

12