Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 197 for Edges (0.03 sec)

  1. src/cmd/compile/internal/ssa/schedule.go

    			b.Values = append(b.Values, v)
    
    			// Find all the scheduling edges out from this value.
    			i := sort.Search(len(edges), func(i int) bool {
    				return edges[i].x.ID >= v.ID
    			})
    			j := sort.Search(len(edges), func(i int) bool {
    				return edges[i].x.ID > v.ID
    			})
    			// Decrement inEdges for each target of edges from v.
    			for _, e := range edges[i:j] {
    				inEdges[e.y.ID]--
    				if inEdges[e.y.ID] == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/CompilationStateSerializerTest.groovy

            emptyCompileState.hash == TestHashCodes.hashCodeFrom(0x12345678)
            emptyCompileState.edges == stateOne.edges
    
            def otherCompileState = newState.getState(fileTwo)
            otherCompileState.hash == TestHashCodes.hashCodeFrom(0x23456789)
            otherCompileState.edges == stateTwo.edges
        }
    
        private SourceFileState compilationFileState(HashCode hash, Collection<String> includes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

        private MetadataGraphEdge cleanEdges(
                MetadataGraphVertex v, List<MetadataGraphEdge> edges, ArtifactScopeEnum scope) {
            if (edges == null || edges.isEmpty()) {
                return null;
            }
    
            if (edges.size() == 1) {
                MetadataGraphEdge e = edges.get(0);
                if (scope.encloses(e.getScope())) {
                    return e;
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/resource_operation_safety_analysis.h

    // -> ReadVariableOp1 and AssignVariableOp0 -> AssignVariableOp1 edges will be
    // respected by XlaLaunchOp though because all reads happen before all writes
    // with that limited clustering..
    //
    //
    // NB!  The result computed by this analysis assumes that we don't auto-cluster
    // back-edges (i.e. the edges from NextIteration to Merge).
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/mono.go

    // declaration "type T int", we construct edges T<-A and T<-B with
    // weight 1; and because of instantiation "f[T, map[A]B]" we construct
    // edges A<-T with weight 0, and B<-A and B<-B with weight 1.
    //
    // Finally, we look for any positive-weight cycles. Zero-weight cycles
    // are allowed because static instantiation will reach a fixed point.
    
    type monoGraph struct {
    	vertices []monoVertex
    	edges    []monoEdge
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // If none of the incoming edges are transitive, remove previous state and do not traverse.
            // If not traversed before, simply add all selected outgoing edges (either hard or pending edges)
            // If traversed before:
            //      If net exclusions for this node have not changed, ignore
            //      If net exclusions for this node have changed, remove previous state and traverse outgoing edges again.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  7. src/go/types/mono.go

    // declaration "type T int", we construct edges T<-A and T<-B with
    // weight 1; and because of instantiation "f[T, map[A]B]" we construct
    // edges A<-T with weight 0, and B<-A and B<-B with weight 1.
    //
    // Finally, we look for any positive-weight cycles. Zero-weight cycles
    // are allowed because static instantiation will reach a fixed point.
    
    type monoGraph struct {
    	vertices []monoVertex
    	edges    []monoEdge
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_util.h

        const Graph* g, const string& outside_compilation_attr_name);
    
    // Preprocesses edges within the same XLA cluster. It will perform the following
    // operations in order:
    //
    // 0.  Remove edges from source node to outside compilation nodes, and edges
    //     from outside compilation nodes to sink node.
    // 1a. For edges between different outside compilation clusters, remove the edge
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/sccp.go

    	// build it early since we rely heavily on the def-use chain later
    	t.buildDefUses()
    
    	// pick up either an edge or SSA value from worklist, process it
    	for {
    		if len(t.edges) > 0 {
    			edge := t.edges[0]
    			t.edges = t.edges[1:]
    			if _, exist := t.visited[edge]; !exist {
    				dest := edge.b
    				destVisited := t.visitedBlock[dest.ID]
    
    				// mark edge as visited
    				t.visited[edge] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. test/typeparam/graph.go

    // of edges. An edge connects two nodes. Both nodes and edges must be
    // comparable. This is an undirected simple graph.
    type _Graph[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]] struct {
    	nodes []_Node
    }
    
    // _NodeC is the constraints on a node in a graph, given the _Edge type.
    type _NodeC[_Edge any] interface {
    	comparable
    	Edges() []_Edge
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top