Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for addQuad (0.44 sec)

  1. tensorflow/cc/gradients/math_grad.cc

      auto gx_2 = Identity(scope, grad_inputs[0]);
      return BinaryGradCommon(scope, op, grad_outputs, gx_1, gx_2);
    }
    REGISTER_GRADIENT_OP("Add", AddGrad);
    REGISTER_GRADIENT_OP("AddV2", AddGrad);
    
    Status SubGrad(const Scope& scope, const Operation& op,
                   const std::vector<Output>& grad_inputs,
                   std::vector<Output>* grad_outputs) {
      // y = x_1 - x_2
      // dy/dx_1 = 1
      // dy/dx_2 = -1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (FMOVDstore [off1] {sym} (ADDconst [off2] ptr) val mem) && is20Bit(int64(off1)+int64(off2)) => (FMOVDstore [off1+off2] {sym} ptr val mem)
    
    (ADDload   [off1] {sym} x (ADDconst [off2] ptr) mem) && ptr.Op != OpSB && is20Bit(int64(off1)+int64(off2)) => (ADDload   [off1+off2] {sym} x ptr mem)
    (ADDWload  [off1] {sym} x (ADDconst [off2] ptr) mem) && ptr.Op != OpSB && is20Bit(int64(off1)+int64(off2)) => (ADDWload  [off1+off2] {sym} x ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    //        using the SB 'register' to address data. This is because many machine
    //        instructions do not have relative long (RL suffix) equivalents. For example,
    //        ADDload, which is assembled as AG.
    //
    //     2. Loads and stores using relative addressing require the data be aligned
    //        according to its size (8-bytes for double words, 4-bytes for words
    //        and so on).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    var pfxEnabled = false // ISA 3.1 prefixed instructions are supported.
    var buildOpCfg = ""    // Save the os/cpu/arch tuple used to configure the assembler in buildop
    
    // padding bytes to add to align code as requested.
    func addpad(pc, a int64, ctxt *obj.Link, cursym *obj.LSym) int {
    	switch a {
    	case 8, 16, 32, 64:
    		// By default function alignment is 16. If an alignment > 16 is
    		// requested then the function alignment must also be promoted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    this.max_[0]=Math.max(this.max_[0],value[0]);this.max_[1]=Math.max(this.max_[1],value[1]);this.min_[0]=Math.min(this.min_[0],value[0]);this.min_[1]=Math.min(this.min_[1],value[1]);},addQuad(quad){this.addVec2(quad.p1);this.addVec2(quad.p2);this.addVec2(quad.p3);this.addVec2(quad.p4);},get minVec2(){if(this.isEmpty_)return undefined;return this.min_;},get maxVec2(){if(this.isEmpty_)return undefined;return this.max_;},get sizeAsVec2()...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteS390X.go

    		}
    		v.reset(OpS390XADD)
    		v0 := b.NewValue0(v_2.Pos, OpS390XLGDR, t)
    		v0.AddArg(y)
    		v.AddArg2(x, v0)
    		return true
    	}
    	// match: (ADDload [off1] {sym} x (ADDconst [off2] ptr) mem)
    	// cond: ptr.Op != OpSB && is20Bit(int64(off1)+int64(off2))
    	// result: (ADDload [off1+off2] {sym} x ptr mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		x := v_0
    		if v_1.Op != OpS390XADDconst {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 23551}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R11 R12 R14
    			},
    		},
    	},
    	{
    		name:           "ADDload",
    		auxType:        auxSymOff,
    		argLen:         3,
    		resultInArg0:   true,
    		clobberFlags:   true,
    		faultOnNilArg1: true,
    		symEffect:      SymRead,
    		asm:            s390x.AADD,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top