Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConvertGraphDefToGraph (0.28 sec)

  1. tensorflow/cc/framework/scope.cc

      return absl::OkStatus();
    }
    
    Status Scope::ToGraph(Graph* g, GraphConstructorOptions opts) const {
      if (ok()) {
        GraphDef graph_def;
        graph()->ToGraphDef(&graph_def);
        UpdateStatus(ConvertGraphDefToGraph(opts, std::move(graph_def), g));
      }
      return *impl()->status_;
    }
    
    void Scope::UpdateBuilder(NodeBuilder* builder) const {
      std::vector<Node*> control_inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
      graph_ = std::make_unique<Graph>(graph.flib_def());
      GraphConstructorOptions opts;
      opts.allow_internal_ops = true;
      opts.add_default_attributes = true;
      TF_RETURN_IF_ERROR(::tensorflow::ConvertGraphDefToGraph(
          opts, std::move(*graph_def), graph_.get()));
    
      TF_RETURN_IF_ERROR(RemoveBackedges());
    
      TF_RETURN_IF_ERROR(CopyStackTraces(graph, graph_.get()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top