Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for OutEdge (0.14 sec)

  1. tensorflow/compiler/jit/node_matchers.cc

    class OutEdgeMatcher : public ::testing::MatcherInterface<OutEdge> {
     public:
      OutEdgeMatcher(::testing::Matcher<const Node*> src_matcher, int src_oidx)
          : src_matcher_(std::move(src_matcher)), src_oidx_(src_oidx) {}
    
      bool MatchAndExplain(
          OutEdge out_edge,
          ::testing::MatchResultListener* listener) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/node_matchers.h

    }
    
    // Matches the `idx`'th output of a node that matches `node`.
    ::testing::Matcher<impl::OutEdge> Out(int oidx,
                                          ::testing::Matcher<const Node*> node);
    
    // Matches the first output of a node that matches `node`.
    inline ::testing::Matcher<impl::OutEdge> Out(
        ::testing::Matcher<const Node*> node) {
      return Out(0, node);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		delete(parent.Out, cur)
    
    		// Reconfigure every edge from the current node to now begin at the parent.
    		for _, outEdge := range cur.Out {
    			child := outEdge.Dest
    
    			delete(child.In, cur)
    			child.In[parent] = outEdge
    			parent.Out[child] = outEdge
    
    			outEdge.Src = parent
    			outEdge.Residual = true
    			// If the edge from the parent to the current node and the edge from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/critical.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    // critical splits critical edges (those that go from a block with
    // more than one outedge to a block with more than one inedge).
    // Regalloc wants a critical-edge-free CFG so it can implement phi values.
    func critical(f *Func) {
    	// maps from phi arg ID to the new block created for that argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

            }
    
            orderedNodeConnectionsBuilder.add(new NodeConnection.Pred<>(predecessor));
            predecessorCount++;
          } else { // incidentEdge is an outEdge
            checkArgument(incidentEdge.nodeU().equals(thisNode));
    
            N successor = incidentEdge.nodeV();
            V value = successorNodeToValueFn.apply(successor);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/DirectedGraphConnections.java

            }
    
            orderedNodeConnectionsBuilder.add(new NodeConnection.Pred<>(predecessor));
            predecessorCount++;
          } else { // incidentEdge is an outEdge
            checkArgument(incidentEdge.nodeU().equals(thisNode));
    
            N successor = incidentEdge.nodeV();
            V value = successorNodeToValueFn.apply(successor);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    			ft.unsat = true
    			if b.Func.pass.debug > 2 {
    				b.Func.Warnl(b.Pos, "block=%s outedge=%d %s=%d unsat", b, idx, c, val)
    			}
    		} else {
    			ft.limits[c.ID] = limit{val, val, uint64(val), uint64(val)}
    			if b.Func.pass.debug > 2 {
    				b.Func.Warnl(b.Pos, "block=%s outedge=%d %s=%d", b, idx, c, val)
    			}
    		}
    	default:
    		panic("unknown branch")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/graph/AbstractGraphTest.java

        assume().that(graphIsMutable()).isTrue();
    
        putEdge(N1, N2);
        putEdge(N1, N3);
        putEdge(N1, N4);
        assertThat(graphAsMutableGraph.removeEdge(N1, N3)).isTrue();
        assertThat(graph.adjacentNodes(N1)).containsExactly(N2, N4);
      }
    
      @Test
      public void removeEdge_nodeNotPresent() {
        assume().that(graphIsMutable()).isTrue();
    
        putEdge(N1, N2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/StandardMutableGraph.java

        return backingValueGraph.addNode(node);
      }
    
      @Override
      public boolean putEdge(N nodeU, N nodeV) {
        return backingValueGraph.putEdgeValue(nodeU, nodeV, Presence.EDGE_EXISTS) == null;
      }
    
      @Override
      public boolean putEdge(EndpointPair<N> endpoints) {
        validateEndpoints(endpoints);
        return putEdge(endpoints.nodeU(), endpoints.nodeV());
      }
    
      @Override
      public boolean removeNode(N node) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/ImmutableGraph.java

       *
       * <pre>{@code
       * static final ImmutableGraph<Country> COUNTRY_ADJACENCY_GRAPH =
       *     GraphBuilder.undirected()
       *         .<Country>immutable()
       *         .putEdge(FRANCE, GERMANY)
       *         .putEdge(FRANCE, BELGIUM)
       *         .putEdge(GERMANY, BELGIUM)
       *         .addNode(ICELAND)
       *         .build();
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
Back to top