Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,514 for cluster1 (0.56 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu-cluster-cleanup-attributes.mlir

    // RUN: tf-opt %s -tf-tpu-cleanup-cluster-attributes | FileCheck %s
    
    // CHECK-LABEL: func @control_flow_cleanup
    func.func @control_flow_cleanup(%arg0: tensor<i1>, %arg1: tensor<f32>, %arg2: tensor<f32>) ->  tensor<f32> {
      // CHECK: "tf_device.cluster"
      // CHECK-NOT: _replication_info =
      // CHECK-NOT: _xla_compile_device_type
      // CHECK-NOT: device =
      %1 = "tf_device.cluster"() ({
        %2 = "tf.Add"(%arg1, %arg1) : (tensor<f32>, tensor<f32>) -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. releasenotes/notes/add-cluster-id-for-cluster-sync-metrics.yaml

    issue:
      - 44489
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 01 17:51:34 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    						var expectedClusters cluster.Clusters
    						if ht == hostTypeClusterLocal {
    							// Ensure that all requests to cluster.local stay in the same cluster
    							expectedClusters = cluster.Clusters{from.Config().Cluster}
    						} else {
    							// Ensure that requests to clusterset.local reach all destination clusters.
    							expectedClusters = to.Clusters()
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/cluster_outlining.mlir

    }
    
    // CHECK: func private @[[CLUSTER]]
    // CHECK-SAME: () -> tensor<?xi32>
    // CHECK: %[[A_OUTPUT:[0-9]*]] = "tf.A"()
    // CHECK: return %[[A_OUTPUT]]
    
    // -----
    
    // Tests cluster attributes are copied over to cluster_func.
    
    // CHECK-LABEL: func @cluster_attrs
    func.func @cluster_attrs() -> tensor<?xi32> {
      %0 = "tf_device.cluster"() ({
        %1 = "tf.A"() : () -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

      kind: ClusterRole
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: cluster-admin
      rules:
      - apiGroups:
        - '*'
        resources:
        - '*'
        verbs:
        - '*'
      - nonResourceURLs:
        - '*'
        verbs:
        - '*'
    - aggregationRule:
        clusterRoleSelectors:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

        }
        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");
      for (const auto& pair : clusters) {
        if (pair.first == kNoCluster) {
          absl::StrAppend(&result, "unclustered");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/cleanup.go

    	}
    
    	if i.cfg.DeployIstio {
    		errG := multierror.Group{}
    		// Make sure to clean up primary clusters before remotes, or istiod will recreate some of the CMs that we delete
    		// in the remote clusters before it's deleted.
    		for _, c := range i.ctx.AllClusters().Primaries() {
    			i.cleanupCluster(c, &errG)
    		}
    		for _, c := range i.ctx.Clusters().Remotes() {
    			i.cleanupCluster(c, &errG)
    		}
    		return errG.Wait().ErrorOrNil()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. cmd/metrics-v3-cluster-config.go

    		"Reduced redundancy storage class parity")
    	configStandardParityMD = NewGaugeMD(configStandardParity,
    		"Standard storage class parity")
    )
    
    // loadClusterConfigMetrics - `MetricsLoaderFn` for cluster config
    // such as standard and RRS parity.
    func loadClusterConfigMetrics(ctx context.Context, m MetricValues, c *metricsCache) error {
    	clusterDriveMetrics, err := c.clusterDriveMetrics.Get()
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 12:50:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. pkg/kube/util_test.go

    	template := `apiVersion: v1
    kind: Config
    clusters:
    - cluster:
        insecure-skip-tls-verify: true
        server: https://%s:8001
      name: cluster.local
    - cluster:
        insecure-skip-tls-verify: true
        server: https://%s:8001
      name: cluster2.local
    contexts:
    - context:
        cluster: cluster.local
        namespace: default
        user: admin
      name: cluster.local-context
    - context:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/config/cluster.go

    func FetchInitConfigurationFromCluster(client clientset.Interface, printer output.Printer, logPrefix string, newControlPlane, skipComponentConfigs bool) (*kubeadmapi.InitConfiguration, error) {
    	if printer == nil {
    		printer = &output.TextPrinter{}
    	}
    	printer.Printf("[%s] Reading configuration from the cluster...\n", logPrefix)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top