Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for maddld (1.09 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    			opset(ACNTTZW, r0)
    			opset(ACNTTZWCC, r0)
    			opset(ACNTTZD, r0)
    			opset(ACNTTZDCC, r0)
    
    		case ACOPY: /* copy, paste. */
    			opset(APASTECC, r0)
    
    		case AMADDHD: /* maddhd, maddhdu, maddld */
    			opset(AMADDHDU, r0)
    			opset(AMADDLD, r0)
    
    		case AMOVBZ: /* lbz, stz, rlwm(r/r), lhz, lha, stz, and x variants */
    			opset(AMOVH, r0)
    			opset(AMOVHZ, r0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_TCresVTEtIsSameAsOp<0, 0>>]> {
      let summary = [{
        Returns a tensor with the provided diagonal and everything else padded with zeros.
      }];
    
      let description = [{
        Given a diagonal, returns a tensor with the diagonal and everything else padded with zeros.
        Assume diagonal has k dimensions `[I, J, K, ..., N]`, then the output is a tensor of rank `k+1`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    // Special2 is like special, but uses two values.
    type Special2 struct {
    	Prefix string
    	Val1   AST
    	Middle string
    	Val2   AST
    }
    
    func (s *Special2) print(ps *printState) {
    	ps.writeString(s.Prefix)
    	ps.print(s.Val1)
    	ps.writeString(s.Middle)
    	ps.print(s.Val2)
    }
    
    func (s *Special2) Traverse(fn func(AST) bool) {
    	if fn(s) {
    		s.Val1.Traverse(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    		t.Errorf("function returned %d, want 101", r[0].Int())
    	}
    }
    
    func TestStructArg(t *testing.T) {
    	type padded struct {
    		B string
    		C int32
    	}
    	var (
    		gotA  padded
    		gotB  uint32
    		wantA = padded{"3", 4}
    		wantB = uint32(5)
    	)
    	f := func(a padded, b uint32) {
    		gotA, gotB = a, b
    	}
    	ValueOf(f).Call([]Value{ValueOf(wantA), ValueOf(wantB)})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    // The actual bytes laid down are a function of the 3rd entry in the line (that
    // is, the Ztype) and the z bytes.
    //
    // For example, let's look at AADDL.  The optab line says:
    //
    //	{AADDL, yaddl, Px, opBytes{0x83, 00, 0x05, 0x81, 00, 0x01, 0x03}},
    //
    // and yaddl says
    //
    //	var yaddl = []ytab{
    //	        {Yi8, Ynone, Yml, Zibo_m, 2},
    //	        {Yi32, Ynone, Yax, Zil_, 1},
    //	        {Yi32, Ynone, Yml, Zilo_m, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MADD a (MOVDconst [-1]) x) => (SUB a x)
    (MADD a (MOVDconst [0]) _) => a
    (MADD a (MOVDconst [1]) x) => (ADD a x)
    (MADD a (MOVDconst [c]) x) && isPowerOfTwo64(c) => (ADDshiftLL a x [log64(c)])
    (MADD a (MOVDconst [c]) x) && isPowerOfTwo64(c-1) && c>=3 => (ADD a (ADDshiftLL <x.Type> x x [log64(c-1)]))
    (MADD a (MOVDconst [c]) x) && isPowerOfTwo64(c+1) && c>=7 => (SUB a (SUBshiftLL <x.Type> x x [log64(c+1)]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

        /**
         * A queue of elements currently in the map, ordered by write time. Elements are added to the
         * tail of the queue on write.
         */
        @GuardedBy("this")
        final Queue<ReferenceEntry<K, V>> writeQueue;
    
        /**
         * A queue of elements currently in the map, ordered by access time. Elements are added to the
         * tail of the queue on access (note that writes count as accesses).
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	}
    	if len(c.script) == 0 {
    		return 0, io.EOF
    	}
    
    	switch cue := c.script[0].(type) {
    	case time.Duration:
    		if !c.rd.IsZero() {
    			// If the deadline falls in the middle of our sleep window, deduct
    			// part of the sleep, then return a timeout.
    			if remaining := time.Until(c.rd); remaining < cue {
    				c.script[0] = cue - remaining
    				time.Sleep(remaining)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    // on-disk state must be reentrant and be garbage collected by HandlePodCleanups or a separate loop.
    // This typically occurs when a pod is force deleted from configuration (local disk or API) and the
    // kubelet restarts in the middle of the action.
    func (kl *Kubelet) SyncTerminatedPod(ctx context.Context, pod *v1.Pod, podStatus *kubecontainer.PodStatus) error {
    	ctx, otelSpan := kl.tracer.Start(ctx, "syncTerminatedPod", trace.WithAttributes(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    	=> (Store {t2} (OffPtr <tt2> [o2] dst) d1
    		(Store {t3} (OffPtr <tt3> [o3] dst) d2
    			(Store {t4} (OffPtr <tt4> [o4] dst) d3
    				(Store {t5} (OffPtr <tt5> [0] dst) d4 mem))))
    
    // Same thing but with VarDef in the middle.
    (Move {t1} [n] dst p1
    	mem:(VarDef
    		(Store {t2} op2:(OffPtr <tt2> [o2] p2) d1
    			(Store {t3} op3:(OffPtr <tt3> [0] p3) d2 _))))
    	&& isSamePtr(p1, p2) && isSamePtr(p2, p3)
    	&& t2.Alignment() <= t1.Alignment()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top