Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 168 for Edges (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. .github/actions/people/app/main.py

        )
    
    
    def get_individual_sponsors(settings: Settings):
        nodes: List[SponsorshipAsMaintainerNode] = []
        edges = get_graphql_sponsor_edges(settings=settings)
    
        while edges:
            for edge in edges:
                nodes.append(edge.node)
            last_edge = edges[-1]
            edges = get_graphql_sponsor_edges(settings=settings, after=last_edge.cursor)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

    // enforce arbitrary ordering dependencies (via control or data edges) between
    // resource operations.  Since all resource reads happen before all resource
    // writes, edges constraining resource reads to happen before resource writes
    // are fine, but all other kinds of edges are problematic.  This analysis
    // computes the set of pairs of resource operations that cannot be put in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

                this.included = included;
                this.edges = edges;
                this.includeFileDirectives = dependentIncludeDirectives;
            }
    
            FileVisitResult(File file) {
                this.file = file;
                result = IncludeFileResolutionResult.NoMacroIncludes;
                includeDirectives = null;
                included = Collections.emptyList();
                edges = Collections.emptyList();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
Back to top