Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for Edges (0.12 sec)

  1. tensorflow/compiler/jit/cluster_scoping_pass.cc

      auto enter = [&](Node* n) { AddOrAppendXlaInternalScope(n, unique_suffix); };
      DFSFrom(*graph_, starts, enter, /*leave=*/nullptr,
              /*stable_comparator=*/NodeComparatorName(),
              // Do not filter any edges to better capture the semantics of
              // transitive closure of successors.  We may revisit this when
              // we see more cases needing cluster scoping in the future.
              /*edge_filter=*/nullptr);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/clone_constants_for_better_clustering.cc

    }
    }  // namespace
    
    Status CloneConstantsForBetterClusteringPassImpl::CloneSmallConstantInputs(
        const absl::flat_hash_set<string>& name_set, Node* n) {
      std::vector<const Edge*> in_edges;
      // Get the edges and sort them so we clone in a deterministic order.
      absl::c_copy(n->in_edges(), std::back_inserter(in_edges));
      absl::c_stable_sort(in_edges, [](const Edge* e1, const Edge* e2) {
        return e1->id() < e2->id();
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. pkg/test/framework/components/environment/kube/kube.go

    			continue
    		}
    		allClusters[c.Name()] = c
    		clusters = append(clusters, c)
    	}
    	if errs != nil {
    		return nil, errs
    	}
    
    	// validate the topology has no open edges
    	for _, c := range allClusters {
    		if _, ok := allClusters[c.PrimaryName()]; !ok {
    			errs = multierror.Append(errs, fmt.Errorf("primary %s for %s is not in the topology", c.PrimaryName(), c.Name()))
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/StandardValueGraph.java

      private final boolean allowsSelfLoops;
      private final ElementOrder<N> nodeOrder;
    
      final MapIteratorCache<N, GraphConnections<N, V>> nodeConnections;
    
      long edgeCount; // must be updated when edges are added or removed
    
      /** Constructs a graph with the properties specified in {@code builder}. */
      StandardValueGraph(AbstractGraphBuilder<? super N> builder) {
        this(
            builder,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/nowb.go

    	// capture all calls created by lowering, but this means we
    	// only get to see the obj.LSyms of calls. symToFunc lets us
    	// get back to the ODCLFUNCs.
    	symToFunc := make(map[*obj.LSym]*ir.Func)
    	// funcs records the back-edges of the BFS call graph walk. It
    	// maps from the ODCLFUNC of each function that must not have
    	// write barriers to the call that inhibits them. Functions
    	// that are directly marked go:nowritebarrierrec are in this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/bundle_v2.cc

      // Start from root nodes of both the SavedObjectGraph and TrackableObjectGraph
      // and descend to leaves. Note that the TrackableObjectGraph can have cycles
      // (as can the SavedObjectGraph).
      // This is detected and cycle edges are skipped.
      const SavedObject* root_saved_object = &saved_object_graph().nodes(0);
      const TrackableObjectGraph::TrackableObject* root_trackable_object =
          &trackable_object_graph().nodes(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. test/escape5.go

    	if *p > *q {
    		return leakrecursive1(q, p)
    	}
    	// without this, leakrecursive? are safe for p and q, b/c in fact their graph does not have leaking edges.
    	return p, q
    }
    
    var global interface{}
    
    type T1 struct {
    	X *int
    }
    
    type T2 struct {
    	Y *T1
    }
    
    func f8(p *T1) (k T2) { // ERROR "leaking param: p$"
    	if p == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/cc/ops/while_loop.cc

    Status CreateMerge(const Scope& scope, int loop_var_idx,
                       const Output& enter_output, Output* merge_output) {
      // The merge nodes accept the while loop's back edges as an input (i.e. the
      // not-yet-created next iteration nodes). Use the underlying NodeBuilder API
      // directly to create the back edge.
      NodeBuilder::NodeOut enter_input(enter_output.node(), enter_output.index());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// Requires is a set of analyzers that must run successfully
    	// before this one on a given package. This analyzer may inspect
    	// the outputs produced by each analyzer in Requires.
    	// The graph over analyzers implied by Requires edges must be acyclic.
    	//
    	// Requires establishes a "horizontal" dependency between
    	// analysis passes (different analyzers, same package).
    	Requires []*Analyzer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. samples/ambient-argo/README.md

    ## :boom: DISCLAIMER
    
    Istio Ambient Mesh is still in Alpha, and is not suitable for production use.  Likewise, this reference architecture is of Alpha quality, and includes several rough edges, including:
     * Cluster-Scoped upgrades cause known traffic loss, and have wide blast radius.
     * The tag chart is forked from the primary istio repo, and needs to be merged and published
     * CRDs are not currently upgraded
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top