Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TF_GraphImportGraphDefWithResultsNoSerialization (0.38 sec)

  1. 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);
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  2. 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`.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  3. tensorflow/c/c_api.cc

      if (!status->status.ok()) {
        delete results;
        return nullptr;
      }
      return results;
    }
    
    TF_ImportGraphDefResults* TF_GraphImportGraphDefWithResultsNoSerialization(
        TF_Graph* graph, const TF_Buffer* graph_def,
        const TF_ImportGraphDefOptions* options, TF_Status* status) {
      const GraphDef* graph_def_ptr =
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
Back to top