Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,918 for Nodes (0.86 sec)

  1. guava/src/com/google/common/graph/EndpointPairIterator.java

       * Visited Nodes = {N1}
       * EndpointPair [N2, N1] - skip
       * EndpointPair [N2, N3] - return
       * Visited Nodes = {N1, N2}
       * EndpointPair [N3, N1] - skip
       * EndpointPair [N3, N2] - skip
       * Visited Nodes = {N1, N2, N3}
       * EndpointPair [N4, N4] - return
       * Visited Nodes = {N1, N2, N3, N4}
       * </pre>
       */
      private static final class Undirected<N> extends EndpointPairIterator<N> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/target.pbtxt

    # PRUNE-NEXT:      tf_executor.fetch %[[ASSIGN_ADD_CTRL]]
    
    # Tests multiple target nodes with pruning set. Unreachable nodes from the
    # fetch, including side effecting nodes, will be removed. The target nodes are
    # added to the graph fetch as controls.
    #
    # PRESERVE-LABEL: func @main
    # PRESERVE-SAME:  control_outputs = "Variable/Assign,AssignAdd"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/health.go

    	err = wait.PollUntilContextTimeout(ctx, time.Second*1, timeout, true, func(_ context.Context) (bool, error) {
    		nodes, err = client.CoreV1().Nodes().List(context.Background(), listOptions)
    		if err != nil {
    			klog.V(2).Infof("Could not list Nodes with field selector %q: %v", fieldSelector, err)
    			lastError = err
    			return false, nil
    		}
    		return true, nil
    	})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/grappler/grappler.cc

      TF_SetStatus(status, TF_OK, "");
      const std::unordered_set<std::string>& nodes =
          reinterpret_cast<const tensorflow::grappler::GrapplerItem*>(item)
              ->NodesToPreserve();
      *num_values = nodes.size();
      *storage_size = 0;
      for (const std::string& str : nodes) {
        *storage_size += str.size();
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

    }
    
    // Resets "_device_ordinal" attr to placeholder value for related nodes
    // (XlaRecvAtHost nodes; XlaSendFromHost nodes; If/While/FuncCall nodes
    // containing XlaRecvAtHost/XlaSendFromHost).
    Status ResetDeviceOrdinalToPlaceholderValue(Graph* g) {
      AttrValue device_ordinal_value;
      device_ordinal_value.set_placeholder("_device_ordinal");
      for (Node* n : g->nodes()) {
        if (!HasNodeAttr(n->def(), kXlaHasHostTransferAttrName)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    	tests := []struct {
    		name                      string
    		pod                       *v1.Pod
    		existingPods              []*v1.Pod
    		nodes                     []*v1.Node
    		failedNodes               []*v1.Node // nodes + failedNodes = all nodes
    		objs                      []runtime.Object
    		want                      framework.NodeScoreList
    		enableNodeInclusionPolicy bool
    		enableMatchLabelKeys      bool
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/AbstractValueGraph.java

        implements ValueGraph<N, V> {
    
      @Override
      public Graph<N> asGraph() {
        return new AbstractGraph<N>() {
          @Override
          public Set<N> nodes() {
            return AbstractValueGraph.this.nodes();
          }
    
          @Override
          public Set<EndpointPair<N>> edges() {
            return AbstractValueGraph.this.edges();
          }
    
          @Override
          public boolean isDirected() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 13:59:28 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/cache/snapshot_test.go

    		pods                         []*v1.Pod
    		nodes                        []*v1.Node
    		expectedNodesInfos           []*framework.NodeInfo
    		expectedNumNodes             int
    		expectedPodsWithAffinity     int
    		expectedPodsWithAntiAffinity int
    		expectedUsedPVCSet           sets.Set[string]
    	}{
    		{
    			name:  "no pods no nodes",
    			pods:  nil,
    			nodes: nil,
    		},
    		{
    			name: "single pod single node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/gradients.cc

        }
      }
      // BFS from nodes in 'inputs_' along out edges for the entire graph. Internal
      // output nodes are recorded during the traversal. All nodes that are output
      // nodes but not internal output nodes are considered the frontier of the
      // output nodes, and thus our stop backprop nodes.
      while (!queue.empty()) {
        std::pair<Node*, Node*> p = queue.front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/GraphConnections.java

       * the edge connecting the two nodes.
       */
      @CanIgnoreReturnValue
      @CheckForNull
      V removeSuccessor(N node);
    
      /**
       * Add {@code node} as a predecessor to the origin node. In the case of an undirected graph, it
       * also becomes a successor. Associates {@code value} with the edge connecting the two nodes.
       */
      void addPredecessor(N node, V value);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.4K bytes
    - Viewed (0)
Back to top