Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for shardKey (0.41 sec)

  1. pilot/pkg/model/endpointshards.go

    func ShardKeyFromRegistry(instance shardRegistry) ShardKey {
    	return ShardKey{Cluster: instance.Cluster(), Provider: instance.Provider()}
    }
    
    // ShardKey is the key for EndpointShards made of a key with the format "provider/cluster"
    type ShardKey struct {
    	Cluster  cluster.ID
    	Provider provider.ID
    }
    
    func (sk ShardKey) String() string {
    	return string(sk.Provider) + "/" + string(sk.Cluster) // format: %s/%s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. RELEASE.md

    * `tf.constant_initializer`
        * It now takes a new argument called `support_partition`. If True, constant_initializers can create sharded variables. This is disabled by default, similar to existing behavior.
    
    * `tf.lite`
        * Added support for `stablehlo.scatter`.
    
    * `tf.estimator`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = [{
    V2 format specific: merges the metadata files of sharded checkpoints.  The
      }];
    
      let description = [{
    result is one logical checkpoint, with one physical metadata file and renamed
    data files.
    
    Intended for "grouping" multiple checkpoints in a sharded checkpoint setup.
    
    If delete_old_dirs is true, attempts to delete recursively the dirname of each
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top