Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for replica_count (0.42 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/ifrt/rewrite_cluster_to_ifrt_call.mlir

    // CHECK-SAME: tfrt_ifrt_serving.program_id = [[PROGRAM_ID]] : i64
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 17 07:28:40 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h

    //     },
    //     {
    //       "/job:worker/replica:0/task:0/device:TPU:2",
    //       "/job:worker/replica:0/task:1/device:TPU:1"
    //     }
    //   }
    //
    // and `xla_device_assignment` will be:
    //   {
    //     replica_count: 4
    //     computation_count: 2
    //     computation_devices {
    //       replica_device_ids: 0
    //       replica_device_ids: 4
    //       replica_device_ids: 2
    //       replica_device_ids: 6
    //     }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

                "/job:worker/replica:0/task:1/device:CPU:0");
    
      auto& xla_device_assignment = tpu_device_assignment.xla_device_assignment;
      ASSERT_TRUE(xla_device_assignment.has_value());
      EXPECT_EQ(xla_device_assignment->replica_count(), 4);
      EXPECT_EQ(xla_device_assignment->computation_count(), 2);
      ASSERT_EQ(xla_device_assignment->computation_devices_size(), 2);
      const auto& computation_device_0 =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/replica_calculator.go

    	metrics, timestamp, err := c.metricsClient.GetRawMetric(metricName, namespace, selector, metricSelector)
    	if err != nil {
    		return 0, 0, time.Time{}, fmt.Errorf("unable to get metric %s: %v", metricName, err)
    	}
    
    	replicaCount, usage, err = c.calcPlainMetricReplicas(metrics, currentReplicas, targetUsage, namespace, selector, v1.ResourceName(""))
    	return replicaCount, usage, timestamp, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. releasenotes/notes/36928.yaml

    kind: bug-fix
    area: installation
    
    releaseNotes:
    - |
      **Fixed** an issue that was preventing the operator from updating deployments when `.autoscaleEnabled` is `true` and `.k8s.replicaCount` is nonzero.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 11 22:36:57 UTC 2022
    - 348 bytes
    - Viewed (0)
  6. operator/pkg/translate/translate_value_test.go

    		{
    			desc: "K8s resources translation",
    			valueYAML: `
    pilot:
      enabled: true
      rollingMaxSurge: 100%
      rollingMaxUnavailable: 25%
      resources:
        requests:
          cpu: 1000m
          memory: 1G
      replicaCount: 1
      nodeSelector:
        kubernetes.io/os: linux
      tolerations:
      - key: dedicated
        operator: Exists
        effect: NoSchedule
      - key: CriticalAddonsOnly
        operator: Exists
      autoscaleEnabled: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/validation/validation_test.go

          k8s:
            replicaCount: 2
      egressGateways:
        - name: istio-egressgateway
          enabled: true
          k8s:
            replicaCount: 2
    `,
    			warnings: strings.TrimSpace(`
    components.pilot.k8s.replicaCount should not be set when values.pilot.autoscaleEnabled is true
    components.ingressGateways[name=istio-ingressgateway].k8s.replicaCount should not be set when values.gateways.istio-ingressgateway.autoscaleEnabled is true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 09:10:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. cmd/site-replication-metrics_gen.go

    		case "ReplicaSize":
    			z.ReplicaSize, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ReplicaSize")
    				return
    			}
    		case "ReplicaCount":
    			z.ReplicaCount, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ReplicaCount")
    				return
    			}
    		case "Queued":
    			err = z.Queued.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "Queued")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. releasenotes/notes/40297.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - https://github.com/istio/istio/issues/40246
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 08 19:15:26 UTC 2022
    - 262 bytes
    - Viewed (0)
  10. cmd/site-replication-metrics.go

    	return n
    }
    
    // SRStats has replication stats at site level
    type SRStats struct {
    	// Total Replica size in bytes
    	ReplicaSize int64 `json:"replicaSize"`
    	// Total Replica received
    	ReplicaCount int64                `json:"replicaCount"`
    	M            map[string]*SRStatus `json:"srStatusMap"`
    
    	movingAvgTicker *time.Ticker // Ticker for calculating moving averages
    	lock            sync.RWMutex // mutex for srStats
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top