Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ReplaceNode (0.14 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          Node* dst = edge.dst;
          NodeDef new_def = dst->def();
          *new_def.mutable_input(edge.dst_input) =
              absl::StrCat(recv_at_host_node->name(), ":", index);
          TF_ASSIGN_OR_RETURN(Node * dst_replace, ReplaceNode(g, dst, new_def));
    
          // Other edges might have `dst` as dst node as well. Update those edges
          // with `dst_replace`.
          for (int j = i + 1, end = out_edge_info.size(); j < end; j++) {
    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