Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 65 of 65 for Innermost (0.12 sec)

  1. doc/go_spec.html

    	    (ShortVarDecl for short variable declarations)
    	    and ends at the end of the innermost containing block.</li>
    
    	<li>The scope of a type identifier declared inside a function
    	    begins at the identifier in the TypeSpec
    	    and ends at the end of the innermost containing block.</li>
    </ol>
    
    <p>
    An identifier declared in a block may be redeclared in an inner block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // TODO(ezhulenev): Add support for more valid concat patterns.
    
      // Tensor + Scalar: [..., 1] + []  <- scalar
      //                        ^
      //                        \- axis is the innermost dimension.
      //
      // Concatenate tensor arguments on the same axis as the original operation,
      // and concatenate scalars into the vector.
      if (is_all_tensors(0, axis) && is_all_scalars(1)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      }];
    
      let description = [{
    Given `input` and `diagonal`, this operation returns a tensor with the
    same shape and values as `input`, except for the main diagonal of the
    innermost matrices.  These will be overwritten by the values in `diagonal`.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, I8, I16, I32, I64, UI8, QI8, QI16, QUI8, TFL_Quint8]>:$input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	}
    	if ssa.GenssaDump[f.Name] {
    		fi := f.DumpFileForPhase("genssa")
    		if fi != nil {
    
    			// inliningDiffers if any filename changes or if any line number except the innermost (last index) changes.
    			inliningDiffers := func(a, b []src.Pos) bool {
    				if len(a) != len(b) {
    					return true
    				}
    				for i := range a {
    					if a[i].Filename() != b[i].Filename() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Pointer).String", Method, 5},
    		{"(*Pointer).Underlying", Method, 5},
    		{"(*Scope).Child", Method, 5},
    		{"(*Scope).Contains", Method, 5},
    		{"(*Scope).End", Method, 5},
    		{"(*Scope).Innermost", Method, 5},
    		{"(*Scope).Insert", Method, 5},
    		{"(*Scope).Len", Method, 5},
    		{"(*Scope).Lookup", Method, 5},
    		{"(*Scope).LookupParent", Method, 5},
    		{"(*Scope).Names", Method, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top