Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for x1 (0.02 sec)

  1. src/cmd/asm/internal/asm/asm.go

    			x0 := p.getConstant(prog, op, &a[0])
    			x1 := p.getConstant(prog, op, &a[1])
    			x2 := int64(p.getRegister(prog, op, &a[2]))
    			x3 := int64(p.getRegister(prog, op, &a[3]))
    			x4 := int64(p.getRegister(prog, op, &a[4]))
    			x5 := p.getConstant(prog, op, &a[5])
    			// Cond is handled specially for this instruction.
    			offset, MRC, ok := arch.ARMMRCOffset(op, cond, x0, x1, x2, x3, x4, x5)
    			if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/gradient_checker.cc

    // dy_1/dx_m dy_2/dx_m ... dy_n/dx_m
    //
    // If x or y is complex, each complex entry is "expanded" into a real and
    // imaginary entry, and the Jacobian is organized as above on the expanded list.
    // e.g.
    // [y1, y2] = Square([x1, x2]) where x and y are complex.
    // Writing
    // x = [x1_real, x1_imag, x2_real, x2_imag]
    // y = [y1_real, y1_imag, y2_real, y2_imag]
    // the Jacobian transpose is
    // the 4x4 matrix:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				st.MakePod().Name("pod-b1").UID("pod-b1").Node("node-b").Label("foo", "").Priority(lowPriority).Obj(),
    				st.MakePod().Name("pod-x1").UID("pod-x1").Node("node-x").Label("foo", "").Priority(highPriority).Obj(),
    				st.MakePod().Name("pod-x2").UID("pod-x2").Node("node-x").Label("foo", "").Priority(highPriority).Obj(),
    			},
    			expected: [][]candidate{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. test/codegen/memcombine.go

    	d2[1], d2[0] = 0, 0 // arm64:"STP",-"MOVB",-"MOVH"
    }
    
    func loadstore(p, q *[4]uint8) {
    	// amd64:"MOVL",-"MOVB"
    	// arm64:"MOVWU",-"MOVBU"
    	x0, x1, x2, x3 := q[0], q[1], q[2], q[3]
    	// amd64:"MOVL",-"MOVB"
    	// arm64:"MOVW",-"MOVB"
    	p[0], p[1], p[2], p[3] = x0, x1, x2, x3
    }
    
    type S1 struct {
    	a, b int16
    }
    
    func loadstore2(p, q *S1) {
    	// amd64:"MOVL",-"MOVWLZX"
    	// arm64:"MOVWU",-"MOVH"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

                  )
              ]
          )
          def main(self, x):
            x1 = nn_ops.conv2d(x, self.w, padding='SAME')
            x2, _ = while_loop_ops.while_loop(
                self.condition, self.body, [x, self.w]
            )
            result = x1 + x2
            return {'output': result}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    		{`package p15
    
    		var y1 = f1()
    
    		func f1() int { return g1() }
    		func g1() int { f1(); return x1 }
    
    		var x1 = 0
    
    		var y2 = f2()
    
    		func f2() int { return g2() }
    		func g2() int { return x2 }
    
    		var x2 = 0`, []string{
    			"x1 = 0", "y1 = f1()", "x2 = 0", "y2 = f2()",
    		}},
    	}
    
    	for _, test := range tests {
    		info := Info{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            }
        }
    
        @Issue("GRADLE-2555")
        void "batched up conflicts with conflicted parent and child"() {
            /*
            Dependency tree:
    
            a->c1
            b->c2->x1
            d->x1
            f->x2
    
            Everything is resolvable but not x2
    
            Scenario:
             - We have batched up conflicts
             - root of one conflicted version is also conflicted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. src/cmd/link/link_test.go

    	runGo("tool", "compile", "-importcfg="+importcfgfile, "-symabis", "symabis", "-p=main", "-o", "x1.o", "main.go")
    	runGo("tool", "asm", "-p=main", "-o", "x2.o", "x.s")
    	run(cc, append(cflags, "-c", "-o", "x3.o", "x.c")...)
    	runGo("tool", "pack", "c", "x.a", "x1.o", "x2.o", "x3.o")
    
    	// Now attempt to link using the internal linker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. pkg/controller/daemon/update_test.go

    			}
    		})
    	}
    }
    
    func TestControlledHistories(t *testing.T) {
    	ds1 := newDaemonSet("ds1")
    	crOfDs1 := newControllerRevision(ds1.GetName()+"-x1", ds1.GetNamespace(), ds1.Spec.Template.Labels,
    		[]metav1.OwnerReference{*metav1.NewControllerRef(ds1, controllerKind)})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    		{`package p15
    
    		var y1 = f1()
    
    		func f1() int { return g1() }
    		func g1() int { f1(); return x1 }
    
    		var x1 = 0
    
    		var y2 = f2()
    
    		func f2() int { return g2() }
    		func g2() int { return x2 }
    
    		var x2 = 0`, []string{
    			"x1 = 0", "y1 = f1()", "x2 = 0", "y2 = f2()",
    		}},
    	}
    
    	for _, test := range tests {
    		info := Info{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top