Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for block64 (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    grid of blocks of shape `block_shape`, and interleaves these blocks with the
    "batch" dimension (0) such that in the output, the spatial dimensions
    `[1, ..., M]` correspond to the position within the grid, and the batch
    dimension combines both the position within a spatial block and the original
    batch position.  Prior to division into blocks, the spatial dimensions of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apps__v1_openapi.json

              },
              "configMap": {
                "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

    settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritegeneric.go

    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    func rewriteBlockgeneric(b *Block) bool {
    	switch b.Kind {
    	case BlockIf:
    		// match: (If (Not cond) yes no)
    		// result: (If cond no yes)
    		for b.Controls[0].Op == OpNot {
    			v_0 := b.Controls[0]
    			cond := v_0.Args[0]
    			b.resetWithControl(BlockIf, cond)
    			b.swapSuccessors()
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM64.go

    	// cond: a.Block.Func.useFMA(v)
    	// result: (FNMSUBD a x y)
    	for {
    		if v_0.Op != OpARM64FMULD {
    			break
    		}
    		y := v_0.Args[1]
    		x := v_0.Args[0]
    		a := v_1
    		if !(a.Block.Func.useFMA(v)) {
    			break
    		}
    		v.reset(OpARM64FNMSUBD)
    		v.AddArg3(a, x, y)
    		return true
    	}
    	// match: (FSUBD a (FNMULD x y))
    	// cond: a.Block.Func.useFMA(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  6. RELEASE.md

    *   Adds `Dataset.interleave` transformation.
    *   Add `ConcatenateDataset` to concatenate two datasets.
    *   Added Mobilenet support to TensorFlow for Poets training script.
    *   Adds a block cache to the GCS filesystem with configurable block size and
        count.
    *   SinhArcSinh bijector added.
    *   Added `Dataset.list_files` API.
    *   Introduces new operations and Python bindings for the Cloud TPU.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top