Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TF_GraphImportGraphDefWithReturnOutputs (0.43 sec)

  1. tensorflow/c/c_api.cc

      GraphImportGraphDefLocked(graph, *graph_def_ptr, options, results, status);
      if (!status->status.ok()) {
        delete results;
        return nullptr;
      }
      return results;
    }
    
    void TF_GraphImportGraphDefWithReturnOutputs(
        TF_Graph* graph, const TF_Buffer* graph_def,
        const TF_ImportGraphDefOptions* options, TF_Output* return_outputs,
        int num_return_outputs, TF_Status* status) {
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue May 13 06:30:43 UTC 2025
    - 102.3K bytes
    - Viewed (0)
  2. RELEASE.md

    *   Speed up matrix * vector multiplication and matrix * matrix with unknown
        shapes.
    *   C API: Graph imports now support input remapping, control dependencies, and
        returning imported nodes (see `TF_GraphImportGraphDefWithReturnOutputs()`)
    *   Multiple C++ API updates.
    *   Multiple TensorBoard updates including:
        *   Users can now view image summaries at various sampled steps (instead of
            just the last step).
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (1)
Back to top