Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for shardKey (0.14 sec)

  1. src/runtime/mpagealloc.go

    // Page allocator.
    //
    // The page allocator manages mapped pages (defined by pageSize, NOT
    // physPageSize) for allocation and re-use. It is embedded into mheap.
    //
    // Pages are managed using a bitmap that is sharded into chunks.
    // In the bitmap, 1 means in-use, and 0 means free. The bitmap spans the
    // process's address space. Chunks are managed in a sparse-array-style structure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	registerStdTestSpecially := map[string]bool{
    		// testdir can run normally as part of "go test std cmd", but because
    		// it's a very large test, we register is specially as several shards to
    		// enable better load balancing on sharded builders. Ideally the build
    		// system would know how to shard any large test package.
    		"cmd/internal/testdir": true,
    	}
    
    	// Fast path to avoid the ~1 second of `go list std cmd` when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```
    ### `-tf-tpu-sharding-identification`
    
    _Identifies and handles inputs/outputs of TPU computation that is sharded across logical cores._
    
    Bubbles up sharding configuration from `cluster_func` regions into
    the attributes of `cluster_func`. This is done by parsing the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. 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