Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EdgeInfo (0.54 sec)

  1. tensorflow/compiler/jit/encapsulate_util.cc

      // we do not store `Edge*` directly because we remove some nodes while adding
      // Identity nodes, and those Edge pointers might be invalidated.
      struct EdgeInfo {
        int dst_input, dst_node_id;
      };
      std::vector<EdgeInfo> edges;
      for (const Edge* e : g->edges()) {
        if (e->IsControlEdge()) {
          continue;
        }
    
        auto src_outside_compilation =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            const {
          return {node_name, cluster_name};
        }
    
        bool operator<(const EdgeInfo& other) const {
          return AsPair() < other.AsPair();
        }
      };
    
      using EdgeInfoMap = std::map<absl::string_view, std::map<EdgeInfo, int64_t>>;
    
      EdgeInfoMap incoming_edge_infos;
      EdgeInfoMap outgoing_edge_infos;
    
    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