Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 800 for cluster1 (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/cluster_util_test.cc

      auto clusters = GetClusters(module.get());
      constexpr StringRef kTarget0 = "tpu0";
      EXPECT_EQ(clusters.count(kTarget0), 1);
      EXPECT_EQ(clusters[kTarget0].size(), 1);
      EXPECT_EQ(clusters[kTarget0][0].ops.size(), 2);
    
      constexpr StringRef kTarget1 = "tpu1";
      EXPECT_EQ(clusters.count(kTarget1), 1);
      EXPECT_EQ(clusters[kTarget1].size(), 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.h

    // The attribute that marks nodes to be grouped into functions by the
    // encapsulate subgraphs pass.
    extern const char* const kXlaClusterAttr;
    
    // Marks a subset of nodes in the graph which are to be clustered
    // with an attribute _XlaCluster=<cluster id> so they are picked up by the
    // EncapsulateSubgraphsPass.
    class MarkForCompilationPass : public GraphOptimizationPass {
     public:
      MarkForCompilationPass() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 10 22:46:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/ep_filters.go

    // selectNetworkGateways chooses the gateways that best match the network and cluster. If there is
    // no match for the network+cluster, then all gateways matching the network are returned. Preferring
    // gateways that match against cluster has the following advantages:
    //
    //  1. Potentially reducing extra latency incurred when the gateway and endpoint reside in different
    //     clusters.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. cmd/metrics-v3-cluster-health.go

    		"Count of offline drives in the cluster")
    	healthDrivesOnlineCountMD = NewGaugeMD(healthDrivesOnlineCount,
    		"Count of online drives in the cluster")
    	healthDrivesCountMD = NewGaugeMD(healthDrivesCount,
    		"Count of all drives in the cluster")
    )
    
    // loadClusterHealthDriveMetrics - `MetricsLoaderFn` for cluster storage drive metrics
    // such as online, offline and total drives.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. cmd/metrics-v3-cluster-notification.go

    )
    
    // loadClusterNotificationMetrics - `MetricsLoaderFn` for cluster notification metrics.
    func loadClusterNotificationMetrics(_ context.Context, m MetricValues, _ *metricsCache) error {
    	if globalEventNotifier == nil {
    		return nil
    	}
    
    	nstats := globalEventNotifier.targetList.Stats()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 24 04:10:35 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. tests/integration/security/util/cert/cert.go

    			"root-cert.pem":      rootCert,
    			"fake-root-cert.pem": fakeRootCert,
    		},
    	}
    	for _, cluster := range ctx.Clusters() {
    		_, err = cluster.Kube().CoreV1().Secrets(systemNs.Name()).Create(context.TODO(), secret, metav1.CreateOptions{})
    		if err != nil {
    			if errors.IsAlreadyExists(err) {
    				_, err = cluster.Kube().CoreV1().Secrets(systemNs.Name()).Update(context.TODO(), secret, metav1.UpdateOptions{})
    				return err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. hack/make-rules/test-cmd.sh

      cat <<EOF > "$config"
    kind: Config
    users:
    - name: controller-manager
      user:
        token: admin-token
    clusters:
    - cluster:
        server: https://127.0.0.1:${SECURE_API_PORT}
        insecure-skip-tls-verify: true
      name: local
    contexts:
    - context:
        cluster: local
        user: controller-manager
      name: local-context
    current-context: local-context
    EOF
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. tests/integration/ambient/untaint/main_test.go

    		if err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    // Untaint nodes if the test failed, so we restore the cluster to a usable state.
    func untaintNodes(t resource.Context) {
    	nodeC := t.Clusters().Default().
    		Kube().CoreV1().Nodes()
    	nodes, err := nodeC.List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    		// TODO: log
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 14:58:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_util.h

    //   that will run on unknown devices (because the unknown XLA backend may not
    //   support every operation supported by CPU).
    // - Let BuildXlaOpsPass successfully infer a compilation device for a cluster
    //   that contains nodes placed on both the CPU and on unknown devices.  In this
    //   case it is the responsibility of the optimization pass that injected the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/waypoint.go

    	}
    	return workloads, waypointServices
    }
    
    // filterWaypointOutboundServices is used to determine the set of outbound clusters we need to build for waypoints.
    // Waypoints typically only have inbound clusters, except in cases where we have a route from
    // a service owned by the waypoint to a service not owned by the waypoint.
    // It looks at:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top