Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for out_edge_info (0.33 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // This is to avoid multiple producers.
        std::vector<OutEdgeInfo> out_edge_info;
        out_edge_info.reserve(n->out_edges().size());
        for (auto edge : n->out_edges()) {
          out_edge_info.push_back(
              {edge->dst(), edge->src_output(), edge->dst_input()});
        }
        g->RemoveNode(n);
        for (const OutEdgeInfo& edge : out_edge_info) {
          if (edge.dst_input == Graph::kControlSlot) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top