- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TF_GraphImportGraphDefWithResultsNoSerialization (0.23 sec)
-
tensorflow/c/c_api_test.cc
graph_def_buffer.data = reinterpret_cast<const void*>(&graph_def_proto); graph_def_buffer.length = sizeof(tensorflow::GraphDef*); TF_ImportGraphDefResults* results = TF_GraphImportGraphDefWithResultsNoSerialization(graph, &graph_def_buffer, opts, s); ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 97K bytes - Viewed (0) -
tensorflow/c/c_api.h
// taking in a serialized tensorflow::GraphDef, it takes in a *pointer* to the // C++ *in memory representation* of the GraphDef, stored in `graph_def->data` TF_CAPI_EXPORT extern TF_ImportGraphDefResults* TF_GraphImportGraphDefWithResultsNoSerialization( TF_Graph* graph, const TF_Buffer* graph_def, const TF_ImportGraphDefOptions* options, TF_Status* status); // Import the graph serialized in `graph_def` into `graph`.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0)