Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      std::unique_ptr<Graph> graph =
          std::unique_ptr<Graph>(new Graph(OpRegistry::Global()));
      GraphConstructorOptions opts;
      opts.allow_internal_ops = true;
      TF_RETURN_IF_ERROR(ConvertGraphDefToGraph(opts, graphdef, graph.get()));
      FunctionDef* fdef = library->add_function();
      TF_RETURN_IF_ERROR(GraphToFunctionDef(
          *graph,
          absl::StrCat("_outside_compilation_shape_inference_", name_suffix),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
Back to top