Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,315 for cluster_ (0.13 sec)

  1. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

          TF_RET_CHECK(absl::SimpleAtoi(*maybe_cluster, &cluster));
          clustered_nodes++;
        }
        clusters[cluster][n->type_string()]++;
        cluster_size[cluster]++;
      }
    
      string result =
          absl::StrCat("Clustered nodes: ", clustered_nodes,
                       "\nUnclustered nodes: ", cluster_size[kNoCluster],
                       "\nNumber of clusters: ", clusters.size() - 1, "\n\n");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/pilot/testdata/multiXdsStatusMultiPilot.txt

    NAME       CLUSTER      CDS          LDS         EDS         RDS          ECDS         ISTIOD      VERSION
    proxy1     cluster1     STALE        SYNCED      SYNCED      NOT SENT     SYNCED       istiod1     1.20
    proxy2     cluster2     STALE        SYNCED      STALE       SYNCED       STALE        istiod2     1.19
    proxy3     cluster3     NOT SENT     ERROR       STALE       NOT SENT     NOT SENT     istiod3     1.20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 03:42:52 UTC 2024
    - 522 bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // Returns true if the devices in `cluster_a` and `cluster_b` are compatible
      // and therefore not a hindrance for combining the two clusters into a larger
      // cluster.
      absl::StatusOr<bool> AreDevicesCompatible(const Cluster& cluster_a,
                                                const Cluster& cluster_b);
    
      void DumpPostClusteringGraphs();
      void VLogClusteringSummary();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/cluster_scoping_pass_test.cc

      {
        // Graph:
        //       b
        //       |
        //       v
        // a -> add0 (ClusterX) -> relu0 (ClusterX) -> stage
        //
        //             b
        //             |
        //             v
        // unstage -> add1 (ClusterY) -> relu1 (ClusterY)
        GraphDefBuilder builder(GraphDefBuilder::kFailImmediately);
        Node* a = ops::SourceOp("Const", builder.opts()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 29 16:20:48 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/clusters/clusters.go

    	if c.clusters == nil {
    		return fmt.Errorf("config writer has not been primed")
    	}
    
    	w := new(tabwriter.Writer).Init(c.Stdout, 0, 8, 5, ' ', 0)
    
    	clusterEndpoint := make([]EndpointCluster, 0)
    	for _, cluster := range c.clusters.ClusterStatuses {
    		for _, host := range cluster.HostStatuses {
    			if filter.Verify(host, cluster.Name) {
    				addr := retrieveEndpointAddress(host)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/cluster/kube/cluster.go

    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/echo"
    )
    
    var _ echo.Cluster = &Cluster{}
    
    // Cluster for a Kubernetes cluster. Provides access via a kube.Client.
    type Cluster struct {
    	// filename is the path to the kubeconfig file for this cluster.
    	filename string
    
    	// vmSupport indicates the cluster is being used for fake VMs
    	vmSupport bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 22:54:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. pkg/xds/server_test.go

    					model.EndpointType: {
    						NonceSent:     "nonce",
    						ResourceNames: []string{"cluster2", "cluster1"},
    					},
    				},
    			},
    			request: &discovery.DiscoveryRequest{
    				TypeUrl:       model.EndpointType,
    				VersionInfo:   "v1",
    				ResponseNonce: "nonce",
    				ResourceNames: []string{"cluster1", "cluster2"},
    			},
    			response: false,
    		},
    		{
    			name: "unsubscribe EDS",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. pkg/test/framework/components/cluster/clusters.go

    func (c Clusters) Default() Cluster {
    	return c[0]
    }
    
    // GetOrDefault returns the given cluster if non-nil. Otherwise returns the first
    // Cluster in the list.
    func (c Clusters) GetOrDefault(cluster Cluster) Cluster {
    	if cluster != nil {
    		return cluster
    	}
    	return c.Default()
    }
    
    // GetByName returns the Cluster with the given name or nil if it is not in the list.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/clusters.go

    	for istiod, clusters := range statuses {
    		for _, c := range clusters {
    			_, _ = fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", c.ID, c.SecretName, c.SyncStatus, istiod)
    		}
    	}
    	_ = w.Flush()
    	return nil
    }
    
    func parseClusterStatuses(input map[string][]byte) (map[string][]cluster.DebugInfo, error) {
    	statuses := make(map[string][]cluster.DebugInfo, len(input))
    	for istiodKey, bytes := range input {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. cluster/validate-cluster.sh

    # Validates that the cluster is healthy.
    # Error codes are:
    # 0 - success
    # 1 - fatal (cluster is unlikely to work)
    # 2 - non-fatal (encountered some errors, but cluster should be working correctly)
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
      source "${KUBE_ROOT}/cluster/env.sh"
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
Back to top