Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,182 for replicas2 (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_colocate_composite_resource_ops.mlir

      // CHECK:      tf_device.replicate
      // CHECK-SAME: (%[[ARG0]] as %[[RI_0:[a-z0-9]*]]: tensor<*x!tf_type.resource<tensor<4xf32>>>)
      tf_device.replicate(%arg0 as %arg1: tensor<*x!tf_type.resource<tensor<4xf32>>>) {
        _mirrored_variable_indices = [0],
        devices = {TPU_REPLICATED_CORE_0 = ["/job:worker/replica:0/task:0/device:TPU:0", "/job:worker/replica:0/task:0/device:TPU:1"]},
        n = 2 : i32} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. docs/bucket/replication/setup_3site_replication.sh

    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for olockbucket a -> c : ${remote_arn}"
    ./mc replicate add sitea/olockbucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9006/olockbucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync" --priority 2
    sleep 1
    
    echo "adding replication rule for olockbucket c -> a : ${remote_arn}"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/replica_calculator.go

    		// return the current replicas if the change of metrics length would cause a change in scale direction
    		return currentReplicas, usage, nil
    	}
    
    	// return the result, where the number of replicas considered is
    	// however many replicas factored into our calculation
    	return newReplicas, usage, nil
    }
    
    // GetObjectMetricReplicas calculates the desired replica count based on a target metric usage (as a milli-value)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. docs/bucket/replication/README.md

    The replication configuration in use on a bucket can be viewed using the `mc replicate export alias/bucket` command.
    
    To disable replica metadata modification syncing, use `mc replicate edit` with the --replicate flag.
    
    ```
    mc replicate edit alias/bucket --id xyz.id --replicate "delete,delete-marker"
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. pkg/apis/apps/validation/validation_test.go

    		replicas:          3,
    		readyReplicas:     3,
    		currentReplicas:   2,
    		availableReplicas: int32(-1),
    		expectedErr:       true,
    	}, {
    		name:              "invalid: available replicas greater than replicas",
    		replicas:          3,
    		readyReplicas:     3,
    		currentReplicas:   2,
    		availableReplicas: int32(4),
    		expectedErr:       true,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/hoist_broadcast_read.mlir

    // CHECK-LABEL: func @hoist_cpu
    func.func @hoist_cpu(%arg0: tensor<*x!tf_type.resource<tensor<f32>>> {tf.device = "/job:tpu_host_worker/replica:0/task:0/device:CPU:0"}) -> () {
      // CHECK:      %[[READ:.*]] = "tf.ReadVariableOp"
      // CHECK-NEXT: tf_device.replicate
      // CHECK-NEXT:   "tf.OpA"(%[[READ]])
      tf_device.replicate {n = 2 : i32} {
        %0 = "tf.ReadVariableOp"(%arg0) : (tensor<*x!tf_type.resource<tensor<f32>>>) -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 21:10:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/embedding_program_key.mlir

          tf_device.return
        }) {device = "/job:localhost/replica:0/task:0/device:CPU:0"} : () -> ()
        tf_device.return
      }) {n = 2: i32, operandSegmentSizes = array<i32: 0, 0>} : () -> ()
      return
    }
    
    // -----
    
    func.func @duplicate_compile() {
      "tf_device.replicate"() ({
        // Result of the launch not propagated out of the replicate
        %0:2 = "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 14:28:22 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    replicated_inputs: each group of `n` inputs corresponds to an input for a single
    individual replica and is mapped to a single region argument. Inside one group
    the operands are matching in order the `devices` attribute. Each replicated
    input must have compatible shapes and types.
    packed_inputs: each input corresponds to an input broadcasted across all
    replicas and is mapped to a single region argument.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    // Different TPU_REPLICATED_HOST_*s can map to the same physical host within the
    // same replica. Also, TPU_REPLICATE_HOST_{core} in different replicas can map
    // to the same physical host. For example, if there are 2 hosts, num_replicas=8,
    // and num_cores_per_replica=2, then all cores in the first 4 replicas will map
    // to the first host and all cores in the second 4 replicas will map to the
    // second host.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta2.ReplicaSet)(nil), (*apps.ReplicaSet)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta2_ReplicaSet_To_apps_ReplicaSet(a.(*v1beta2.ReplicaSet), b.(*apps.ReplicaSet), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*apps.ReplicaSet)(nil), (*v1beta2.ReplicaSet)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 74.2K bytes
    - Viewed (0)
Back to top