Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for TF_GraphImportGraphDef (0.13 seconds)

  1. tensorflow/c/c_api.h

                                                TF_Buffer* output_version_def,
                                                TF_Status* status);
    
    // TF_ImportGraphDefOptions holds options that can be passed to
    // TF_GraphImportGraphDef.
    typedef struct TF_ImportGraphDefOptions TF_ImportGraphDefOptions;
    
    TF_CAPI_EXPORT extern TF_ImportGraphDefOptions* TF_NewImportGraphDefOptions(
        void);
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Click Count (0)
  2. tensorflow/c/c_api_test.cc

      TF_DeleteGraph(graph);
      graph = TF_NewGraph();
      TF_ImportGraphDefOptions* opts = TF_NewImportGraphDefOptions();
      TF_ImportGraphDefOptionsSetPrefix(opts, "imported");
      TF_GraphImportGraphDef(graph, graph_def, opts, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      TF_Operation* scalar = TF_GraphOperationByName(graph, "imported/scalar");
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jan 07 04:56:09 GMT 2026
    - 97.3K bytes
    - Click Count (0)
  3. tensorflow/c/c_api.cc

      DCHECK_EQ(results.return_tensors.size(), num_return_outputs);
      memcpy(return_outputs, results.return_tensors.data(),
             num_return_outputs * sizeof(TF_Output));
    }
    
    void TF_GraphImportGraphDef(TF_Graph* graph, const TF_Buffer* graph_def,
                                const TF_ImportGraphDefOptions* options,
                                TF_Status* status) {
      TF_ImportGraphDefResults* results =
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 04 05:55:32 GMT 2025
    - 102.4K bytes
    - Click Count (0)
  4. RELEASE.md

    A. Unique TensorFlower <******@****.***> 1774894854 -0700
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
Back to Top