Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for Nodes (0.05 sec)

  1. 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)
  2. pkg/scheduler/schedule_one_test.go

    				}},
    		}
    		scache.AddNode(logger, &node)
    		nodes = append(nodes, &node)
    		objects = append(objects, &node)
    	}
    
    	// Create expected failure reasons for all the nodes. Hopefully they will get rolled up into a non-spammy summary.
    	failedNodeStatues := framework.NodeToStatusMap{}
    	for _, node := range nodes {
    		failedNodeStatues[node.Name] = framework.NewStatus(
    			framework.Unschedulable,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    		},
    		{
    			name: "pods spread across nodes as 2/2/1, maxSkew is 2, and the number of domains > minDomains, then the all nodes fit",
    			pod: st.MakePod().Name("p").Label("foo", "").SpreadConstraint(
    				2,
    				"node",
    				v1.DoNotSchedule,
    				fooSelector,
    				ptr.To[int32](2), // smaller than the number of domains(3)
    				nil,
    				nil,
    				nil,
    			).Obj(),
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          if (PruneForReverseReachability(graph_.get(), prune_start)) {
            VLOG(1) << "Pruned unused nodes in graphdef";
          } else {
            VLOG(1) << "No unused nodes in graphdef to prune";
          }
        } else {
          VLOG(1) << "No output nodes specified, skipping pruning";
        }
      } else {
        VLOG(1) << "Pruning unused nodes in graphdef is disabled";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

        write-cluster-name
        create-autoscaler-config
        create-master
        create-nodes-firewall
        create-nodes-template
        if [[ "${KUBE_CREATE_NODES}" == "true" ]]; then
          # Windows nodes take longer to boot and setup so create them first.
          create-windows-nodes
          create-linux-nodes
        fi
        check-cluster
      fi
    }
    
    function check-existing() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    }
    
    func (nc *nodeLifecycleController) syncNodeStore(fakeNodeHandler *testutil.FakeNodeHandler) error {
    	nodes, err := fakeNodeHandler.List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    		return err
    	}
    	newElems := make([]interface{}, 0, len(nodes.Items))
    	for i := range nodes.Items {
    		newElems = append(newElems, &nodes.Items[i])
    	}
    	return nc.nodeInformer.Informer().GetStore().Replace(newElems, "newRV")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    }
    
    type testNodeLister struct {
    	nodes []*v1.Node
    }
    
    func (nl testNodeLister) Get(name string) (*v1.Node, error) {
    	for _, node := range nl.nodes {
    		if node.Name == name {
    			return node, nil
    		}
    	}
    	return nil, fmt.Errorf("Node with name: %s does not exist", name)
    }
    
    func (nl testNodeLister) List(_ labels.Selector) (ret []*v1.Node, err error) {
    	return nl.nodes, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

    // `src_inputs[i]` will have that input replaced with `dst_inputs[i]`.  `prefix`
    // will be prepended to copied node names. `control_deps` are nodes in
    // `dst_graph` that the copied `src_graph` nodes will have control dependencies
    // on. `return_nodes` are nodes in `src_graph`, and the new corresponding nodes
    // in `dst_graph` will be returned. `return_nodes` must be non-null.
    Status CopyGraph(Graph* src_graph, Graph* dst_graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

          nodes.push_back(node->name());
        }
      }
      std::sort(nodes.begin(), nodes.end());
      return nodes;
    }
    
    // Returns a sorted vector of (src, dst) edges in 'graph'.
    std::vector<std::pair<string, string>> GraphEdges(const Graph& graph) {
      std::vector<std::pair<string, string>> edges;
      for (const Edge* edge : graph.edges()) {
        if (edge->src()->IsSource() || edge->dst()->IsSink()) continue;
        edges.emplace_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    				}
    				delete(nodeMap, field.Values[0])
    			}
    		}
    
    		if len(nodeMap) != 0 {
    			t.Fatalf("did not find pods on nodes %+v", nodeMap)
    		}
    	}
    }
    
    // Simulate a cluster with 100 nodes, but simulate a limit (like a quota limit)
    // of 10 pods, and verify that the ds doesn't make 100 create calls per sync pass
    func TestSimpleDaemonSetPodCreateErrors(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top