Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RemoveEdge (0.1 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // It will be enough for shape inference. Leave `g` unchanged.
      }
    
      // Control edges are not useful for shape inference. Remove them.
      for (auto e : g->edges()) {
        if (e->IsControlEdge()) {
          g->RemoveEdge(e);
        }
      }
    
      // Nodes that are not reverse reachable from SendFromHost are not useful for
      // shape inference. Prune them.
      PruneForReverseReachability(g,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    getVerticies(); public java.util.Set getLabels(); public Vertex addVertex(String); public void addEdge(String, String) throws CycleDetectedExcepti; public void addEdge(Vertex, Vertex) throws CycleDetectedExcepti; public void removeEdge(String, String); public void removeEdge(Vertex, Vertex); public Vertex getVertex(String); public boolean hasEdge(String, String); public java.util.List getChildLabels(String); public java.util.List getParentLabels(String); public Object clone() throws CloneNotSupportedExc;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top