- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TF_ImportGraphDefOptionsAddReturnOperation (0.77 sec)
-
tensorflow/c/c_api.h
// parameter of TF_GraphImportGraphDef(). `oper_name` is copied and has no // lifetime requirements. TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsAddReturnOperation( TF_ImportGraphDefOptions* opts, const char* oper_name); // Returns the number of return operations added via // TF_ImportGraphDefOptionsAddReturnOperation(). TF_CAPI_EXPORT extern int TF_ImportGraphDefOptionsNumReturnOperations( const TF_ImportGraphDefOptions* opts);
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
TF_ImportGraphDefOptionsAddReturnOutput(opts, "feed", 0); TF_ImportGraphDefOptionsAddReturnOutput(opts, "scalar", 0); EXPECT_EQ(2, TF_ImportGraphDefOptionsNumReturnOutputs(opts)); TF_ImportGraphDefOptionsAddReturnOperation(opts, "scalar"); EXPECT_EQ(1, TF_ImportGraphDefOptionsNumReturnOperations(opts)); tensorflow::GraphDef graph_def_proto; ASSERT_TRUE(tensorflow::ParseProtoUnlimited(&graph_def_proto, graph_def->data,
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Dec 27 12:18:10 UTC 2024 - 97K bytes - Viewed (0)