Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TF_DeleteImportGraphDefResults (0.25 sec)

  1. tensorflow/c/c_api_test.cc

                                               &return_opers);
      ASSERT_EQ(1, num_return_opers);
      EXPECT_EQ(scalar2, return_opers[0]);  // not remapped
    
      TF_DeleteImportGraphDefResults(results);
    
      // Import again, with control dependencies, into the same graph.
      TF_DeleteImportGraphDefOptions(opts);
      opts = TF_NewImportGraphDefOptions();
    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

    TF_CAPI_EXPORT extern void TF_DeleteImportGraphDefResults(
        TF_ImportGraphDefResults* results);
    
    // Import the graph serialized in `graph_def` into `graph`.  Returns nullptr and
    // a bad status on error. Otherwise, returns a populated
    // TF_ImportGraphDefResults instance. The returned instance must be deleted via
    // TF_DeleteImportGraphDefResults().
    TF_CAPI_EXPORT extern TF_ImportGraphDefResults*
    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

      *src_names = results->missing_unused_key_names.data();
      *src_indexes = results->missing_unused_key_indexes.data();
    }
    
    void TF_DeleteImportGraphDefResults(TF_ImportGraphDefResults* results) {
      delete results;
    }
    
    static void GraphImportGraphDefLocked(TF_Graph* graph, const GraphDef& def,
    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