Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 245 for Negate (0.14 sec)

  1. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

            .test();
      }
    
      @J2ktIncompatible
      @GwtIncompatible
      public void testRoundToDouble_negativeWayTooBig() {
        BigInteger bi = BigInteger.ONE.shiftLeft(2 * Double.MAX_EXPONENT).negate();
        new RoundToDoubleTester(bi)
            .setExpectation(-Double.MAX_VALUE, DOWN, CEILING, HALF_EVEN, HALF_UP, HALF_DOWN)
            .setExpectation(Double.NEGATIVE_INFINITY, UP, FLOOR)
            .roundUnnecessaryShouldThrow()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/time/zoneinfo.go

    	}
    	if !ok {
    		return "", 0, 0, 0, false, false
    	}
    
    	// The numbers in the tzset string are added to local time to get UTC,
    	// but our offsets are added to UTC to get local time,
    	// so we negate the number we see here.
    	stdOffset = -stdOffset
    
    	if len(s) == 0 || s[0] == ',' {
    		// No daylight savings time.
    		return stdName, stdOffset, lastTxSec, omega, false, true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      Output variable =
          ops::Variable(s.WithOpName("variable"), PartialTensorShape{}, DT_FLOAT);
      Output read = ops::Identity(s.WithOpName("read_ref_var"), variable);
      Output neg = ops::Negate(s.WithOpName("negate_ref"), read);
      Output add = ops::Add(s.WithOpName("add_ref"), neg, neg);
    
      Output constant =
          ops::Const(s.WithOpName("constant_ref"), Input::Initializer(0.0));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    func.func @neg(%arg0: tensor<2xf32>) -> tensor<2xf32> {
      // CHECK:  mhlo.negate %arg0 : tensor<2xf32>
      %0 = "tf.Neg"(%arg0) : (tensor<2xf32>) -> tensor<2xf32>
      func.return %0 : tensor<2xf32>
    }
    
    // -----
    
    // CHECK-LABEL: func @neg_dynamic
    func.func @neg_dynamic(%arg0: tensor<?xf32>) -> tensor<?xf32> {
      // CHECK:  mhlo.negate %arg0 : tensor<?xf32>
      %0 = "tf.Neg"(%arg0) : (tensor<?xf32>) -> tensor<?xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (BNEZ (SEQZ x) yes no) => (BEQZ x yes no)
    (BNEZ (SNEZ x) yes no) => (BNEZ x yes no)
    
    // Remove redundant NEG from BEQZ/BNEZ.
    (BEQZ (NEG x) yes no) => (BEQZ x yes no)
    (BNEZ (NEG x) yes no) => (BNEZ x yes no)
    
    // Negate comparison with FNES/FNED.
    (BEQZ (FNES <t> x y) yes no) => (BNEZ (FEQS <t> x y) yes no)
    (BNEZ (FNES <t> x y) yes no) => (BEQZ (FEQS <t> x y) yes no)
    (BEQZ (FNED <t> x y) yes no) => (BNEZ (FEQD <t> x y) yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_arm64.s

    	MOVD	$1, t0
    	CMP	$0, t2
    	CSEL	EQ, ZR, t0, t2
    	CMP	$0, hlp1
    	CSEL	EQ, ZR, t0, hlp1
    
    	MOVD	p256const0<>(SB), const0
    	MOVD	p256const1<>(SB), const1
    	EOR	t2<<1, hlp1
    
    	// Negate y2in based on sign
    	LDP	2*16(b_ptr), (y0, y1)
    	LDP	3*16(b_ptr), (y2, y3)
    	MOVD	$-1, acc0
    
    	SUBS	y0, acc0, acc0
    	SBCS	y1, const0, acc1
    	SBCS	y2, ZR, acc2
    	SBCS	y3, const1, acc3
    	SBC	$0, ZR, t0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_amd64.s

    	MOVOU (16*0)(CX), X0
    	MOVOU (16*1)(CX), X1
    
    	MOVOU X0, x2in(16*0)
    	MOVOU X1, x2in(16*1)
    	// Store pointer to result
    	MOVQ mul0, rptr
    	MOVL t1, sel_save
    	MOVL t2, zero_save
    	// Negate y2in based on sign
    	MOVQ (16*2 + 8*0)(CX), acc4
    	MOVQ (16*2 + 8*1)(CX), acc5
    	MOVQ (16*2 + 8*2)(CX), acc6
    	MOVQ (16*2 + 8*3)(CX), acc7
    	MOVQ $-1, acc0
    	MOVQ p256const0<>(SB), acc1
    	MOVQ $0, acc2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

      %9 = mhlo.subtract %7, %8 : tensor<3xi32>
      %10 = "chlo.broadcast_add"(%6, %9) {broadcast_dimensions = array<i64: 1>} : (tensor<2x3xi32>, tensor<3xi32>) -> tensor<2x3xi32>
      %11 = "mhlo.negate"(%10) : (tensor<2x3xi32>) -> tensor<2x3xi32>
      %12 = "mhlo.abs"(%arg1) : (tensor<3xi32>) -> tensor<3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

                                addition to the negated version of the Selector (see NotSelector
                                below), the selector expression syntax itself supports
                                negation.  The two types of negation are subtly different.
                                One negates the set of matched endpoints, the other negates
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. src/regexp/syntax/doc.go

    	[xyz]          character class
    	[^xyz]         negated character class
    	\d             Perl character class
    	\D             negated Perl character class
    	[[:alpha:]]    ASCII character class
    	[[:^alpha:]]   negated ASCII character class
    	\pN            Unicode character class (one-letter name)
    	\p{Greek}      Unicode character class
    	\PN            negated Unicode character class (one-letter name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top