Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for get_graph (0.14 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        Subgraph& subgraph = entry.second;
        FixupSourceAndSinkEdges(subgraph.GetGraph());
      }
    
      if (VLOG_IS_ON(1)) {
        // Dump subgraphs.
        for (auto& entry : subgraphs_) {
          DumpGraphToFile(
              absl::StrCat("encapsulate_subgraphs_subgraph_", entry.first),
              *entry.second.GetGraph(), library);
        }
      }
    
      return s;
    }
    
    Status Encapsulator::BuildFunctionDefs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

      metagraph_def.ParseFromArray(metagraph->data, metagraph->length);
      TF_DeleteBuffer(metagraph);
    
      EXPECT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      CSession csession(session);
    
      // Retrieve the regression signature from meta graph def.
      const auto signature_def_map = metagraph_def.signature_def();
      const auto signature_def = signature_def_map.at("regress_x_to_y");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // names are prefixed with the cluster names.  This can help visualizing the
      // clustering decisions on TensorBoard.
      Graph new_graph(graph_->op_registry());
      CopyGraph(*graph_, &new_graph);
    
      for (Node* n : new_graph.nodes()) {
        if (std::optional<absl::string_view> cluster_name =
                GetXlaClusterForNode(*n)) {
          n->set_name(absl::StrCat(*cluster_name, "/", n->name()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top