Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for tmp_ (0.15 sec)

  1. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      // Do not replace: shape's last dimension isn't 1
      %shape = arith.constant dense<[2, 3]> : tensor<2xi32>
      %cst = arith.constant dense<[0, 1, 2]> : tensor<3xi32>
      %tmp = "tfl.reshape"(%arg, %shape) : (tensor<6xi32>, tensor<2xi32>) -> tensor<2x3xi32>
      %result = "tfl.equal"(%tmp, %cst) : (tensor<2x3xi32>, tensor<3xi32>) -> tensor<2x3xi1>
      func.return %result : tensor<2x3xi1>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    			if k.walkReadyInOrder(openParent, tmp, f) {
    				return true
    			}
    		}
    		return false
    	}
    
    	// Uncommon case: sort the child nodes. We remove the kids from the parent,
    	// then re-insert after sorting so we can reuse tmp for future sort calls.
    	*tmp = (*tmp)[:0]
    	for n.kids != nil {
    		*tmp = append(*tmp, n.kids)
    		n.kids.setParent(nil)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) temp(pos src.XPos, t *types.Type) (*ir.Name, *ssa.Value) {
    	tmp := typecheck.TempAt(pos, s.curfn, t)
    	if t.HasPointers() || (ssa.IsMergeCandidate(tmp) && t != deferstruct()) {
    		s.vars[memVar] = s.newValue1A(ssa.OpVarDef, types.TypeMem, tmp, s.mem())
    	}
    	addr := s.addr(tmp)
    	return tmp, addr
    }
    
    // variable returns the value of a variable at the current location.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. pkg/registry/core/service/storage/storage_test.go

    			defer server.Terminate(t)
    			defer storage.Store.DestroyFunc()
    
    			tmp := tc.input.DeepCopyObject()
    			storage.defaultOnRead(tmp)
    
    			svc, ok := tmp.(*api.Service)
    			if !ok {
    				list, ok := tmp.(*api.ServiceList)
    				if !ok {
    					return
    				}
    				svc = &list.Items[0]
    			}
    
    			exp, ok := tc.expect.(*api.Service)
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.26.md

    - Kubeadm: added the "--cleanup-tmp-dir" flag for `kubeadm reset`. It will cleanup the contents of `/etc/kubernetes/tmp`. The flag is off by default. ([#112172](https://github.com/kubernetes/kubernetes/pull/112172), [@chendave](https://github.com/chendave))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  6. doc/go_spec.html

    element index plus one. A slice literal has the form
    </p>
    
    <pre>
    []T{x1, x2, … xn}
    </pre>
    
    <p>
    and is shorthand for a slice operation applied to an array:
    </p>
    
    <pre>
    tmp := [n]T{x1, x2, … xn}
    tmp[0 : n]
    </pre>
    
    <p>
    Within a composite literal of array, slice, or map type <code>T</code>,
    elements or map keys that are themselves composite literals may elide the respective
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top