Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for y0 (0.04 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VPGATHERDQ Y0, 664(X4*8), Y6            // c4e2fd9034e598020000
    	VPGATHERDQ Y0, 8(X14*1), Y6             // c4a2fd90343508000000
    	VPGATHERDQ Y0, -8(X14*1), Y6            // c4a2fd903435f8ffffff
    	VPGATHERDQ Y0, 0(X14*1), Y6             // c4a2fd90343500000000
    	VPGATHERDQ Y0, 664(X14*1), Y6           // c4a2fd90343598020000
    	VPGATHERDQ Y0, 8(X14*8), Y6             // c4a2fd9034f508000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	LXVD2X (R19)(P1ptr), Y0
    	LXVD2X (R20)(P1ptr), Y1
    	XXPERMDI Y0, Y0, $2, Y0
    	XXPERMDI Y1, Y1, $2, Y1
    
    	CALL p256MulInternal<>(SB)
    
    	// Leave T0, T1 as is.
    	XXPERMDI T0, T0, $2, TT0
    	XXPERMDI T1, T1, $2, TT1
    	STXVD2X TT0, (R19)(P3ptr)
    	STXVD2X TT1, (R20)(P3ptr)
    
    	// X-  ; Y=X ; MUL; T-    // Y3 = Y3²
    	VOR  X0, X0, Y0
    	VOR  X1, X1, Y1
    	CALL p256MulInternal<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_s390x.s

    #define X0    V0
    #define X1    V1
    #define Y0    V2
    #define Y1    V3
    
    TEXT p256SqrInternal<>(SB), NOFRAME|NOSPLIT, $0
    	VLR X0, Y0
    	VLR X1, Y1
    	BR  p256MulInternal<>(SB)
    
    #undef X0
    #undef X1
    #undef Y0
    #undef Y1
    
    #define p256SubInternal(T1, T0, X1, X0, Y1, Y0) \
    	VZERO   ZER                \
    	VSCBIQ  Y0, X0, CAR1       \
    	VSQ     Y0, X0, T0         \
    	VSBCBIQ X1, Y1, CAR1, SEL1 \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi2.s

    	VPSHLDVD Y7, Y12, K6, Y0                           // 62f21d2e71c7
    	VPSHLDVD 15(R8)(R14*4), Y12, K6, Y0                // 62921d2e7184b00f000000
    	VPSHLDVD -7(CX)(DX*4), Y12, K6, Y0                 // 62f21d2e718491f9ffffff
    	VPSHLDVD Y5, Y3, K6, Y0                            // 62f2652e71c5
    	VPSHLDVD Y28, Y3, K6, Y0                           // 6292652e71c4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 97.1K bytes
    - Viewed (0)
  5. src/math/big/float_test.go

    	} {
    		for i := range [8]int{} {
    			x0, y0 := test.x, test.y
    			if i&1 != 0 {
    				x0 = -x0
    			}
    			if i&2 != 0 {
    				y0 = -y0
    			}
    			if i&4 != 0 {
    				x0, y0 = y0, x0
    			}
    
    			x := NewFloat(x0)
    			y := NewFloat(y0)
    			z := new(Float).SetPrec(53)
    
    			z.Mul(x, y)
    			got, _ := z.Float64()
    			want := x0 * y0
    			if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  6. src/math/all_test.go

    		}
    	}
    }
    
    func TestY0(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		a := Abs(vf[i])
    		if f := Y0(a); !close(y0[i], f) {
    			t.Errorf("Y0(%g) = %g, want %g", a, f, y0[i])
    		}
    	}
    	for i := 0; i < len(vfy0SC); i++ {
    		if f := Y0(vfy0SC[i]); !alike(y0SC[i], f) {
    			t.Errorf("Y0(%g) = %g, want %g", vfy0SC[i], f, y0SC[i])
    		}
    	}
    }
    
    func TestY1(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/math_grad.cc

        grad_outputs->push_back(dx);
        auto dy =
            MatMul(scope, y0, y1, MatMul::TransposeA(adj_y0).TransposeB(adj_y1));
        grad_outputs->push_back(dy);
      } else {
        auto dx = BatchMatMulV3(scope, x0, x1, x_data_type,
                                BatchMatMulV3::AdjX(adj_x0).AdjY(adj_x1));
        grad_outputs->push_back(dx);
        auto dy = BatchMatMulV3(scope, y0, y1, y_data_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	return metrics.PriorityLevelExecutionSeatsGaugeVec.NewForLabelValuesSafe(0, 1, []string{"test"})
    }
    
    func float64close(x, y float64) bool {
    	x0 := float64NaNTo0(x)
    	y0 := float64NaNTo0(y)
    	diff := math.Abs(x0 - y0)
    	den := math.Max(math.Abs(x0), math.Abs(y0))
    	return den == 0 || diff/den < 1e-10
    }
    
    func uint64max(a, b uint64) uint64 {
    	if b > a {
    		return b
    	}
    	return a
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  9. src/math/big/int_test.go

    	y := new(Int)
    
    	if a.Sign() <= 0 || b.Sign() <= 0 {
    		return true // can only test positive arguments
    	}
    
    	d := new(Int).lehmerGCD(x, y, a, b)
    	d0, x0, y0 := euclidExtGCD(a, b)
    
    	return d.Cmp(d0) == 0 && x.Cmp(x0) == 0 && y.Cmp(y0) == 0
    }
    
    var gcdTests = []struct {
    	d, x, y, a, b string
    }{
    	// a <= 0 || b <= 0
    	{"0", "0", "0", "0", "0"},
    	{"7", "0", "1", "0", "7"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top