Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 229 for Subtract (0.22 sec)

  1. tensorflow/c/experimental/ops/math_ops.cc

      int num_retvals = 1;
      return op_ptr->Execute(absl::MakeSpan(output, 1), &num_retvals);
    }
    
    // Op: Sub()
    // Summary: Returns x - y element-wise.
    //
    // Description:
    //   *NOTE*: `Subtract` supports broadcasting. More about broadcasting
    //   [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
    Status Sub(AbstractContext* ctx, AbstractTensorHandle* const x,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  2. src/runtime/sys_windows_amd64.s

    	MOVQ	$runtimeĀ·callbackasm(SB), DX
    	SUBQ	DX, AX
    	MOVQ	$0, DX
    	MOVQ	$5, CX	// divide by 5 because each call instruction in runtimeĀ·callbacks is 5 bytes long
    	DIVL	CX
    	SUBQ	$1, AX	// subtract 1 because return PC is to the next slot
    
    	// Switch from the host ABI to the Go ABI.
    	PUSH_REGS_HOST_TO_ABI0()
    
    	// Create a struct callbackArgs on our stack to be passed as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/LongsTest.java

            .that(Longs.tryParse(BigInteger.valueOf(MAX_VALUE).multiply(BigInteger.TEN).toString()))
            .isNull();
        assertWithMessage("Min long - 1")
            .that(Longs.tryParse(BigInteger.valueOf(MIN_VALUE).subtract(BigInteger.ONE).toString()))
            .isNull();
        assertWithMessage("Min long * 10")
            .that(Longs.tryParse(BigInteger.valueOf(MIN_VALUE).multiply(BigInteger.TEN).toString()))
            .isNull();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/quota/v1/resources_test.go

    			expected: corev1.ResourceList{corev1.ResourceCPU: resource.MustParse("100m")},
    		},
    	}
    	for testName, testCase := range testCases {
    		sub := Subtract(testCase.a, testCase.b)
    		if result := Equals(testCase.expected, sub); !result {
    			t.Errorf("%s expected: %v, actual: %v", testName, testCase.expected, sub)
    		}
    	}
    }
    
    func TestResourceNames(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 01:57:38 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-DAG: %[[V23:.*]] = mhlo.subtract %[[V15]], %[[V22]] : tensor<1x22x128xi32>
      // CHECK-DAG: %[[V24:.*]] = mhlo.minimum %[[V21]], %[[V23]] : tensor<1x22x128xi32>
      // CHECK-DAG: %[[V25:.*]] = chlo.broadcast_compare %[[V18]], %[[V5]] {comparison_direction = #chlo<comparison_direction GE>} : (tensor<1x22x128xi32>, tensor<1x22x128xi32>) -> tensor<1x22x128xi1>
      // CHECK-DAG: %[[V26:.*]] = mhlo.subtract %[[V17]], %[[V24]] : tensor<1x22x128xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/LongsTest.java

            .that(Longs.tryParse(BigInteger.valueOf(MAX_VALUE).multiply(BigInteger.TEN).toString()))
            .isNull();
        assertWithMessage("Min long - 1")
            .that(Longs.tryParse(BigInteger.valueOf(MIN_VALUE).subtract(BigInteger.ONE).toString()))
            .isNull();
        assertWithMessage("Min long * 10")
            .that(Longs.tryParse(BigInteger.valueOf(MIN_VALUE).multiply(BigInteger.TEN).toString()))
            .isNull();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. src/compress/flate/deflatefast.go

    	// Reset the buffer offset when reaching this.
    	// Offsets are stored between blocks as int32 values.
    	// Since the offset we are checking against is at the beginning
    	// of the buffer, we need to subtract the current and input
    	// buffer to not risk overflowing the int32.
    	bufferReset = math.MaxInt32 - maxStoreBlockSize*2
    )
    
    func load32(b []byte, i int32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  8. src/math/big/arith.go

    	//   =  B - d     +  d              + d
    	//   = B+d
    	// So r1 can only be 0 or 1. If r1 is 1, then we know q was too small.
    	// Add 1 to q and subtract d from r. That guarantees that r is <B, so
    	// we no longer need to keep track of r1.
    	if r1 != 0 {
    		qq++
    		r0 -= d
    	}
    	// If the remainder is still too large, increment q one more time.
    	if r0 >= d {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 20:09:27 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasASIMDHP  bool // Advanced SIMD half precision instruction set
    	HasCPUID    bool // CPUID identification scheme registers
    	HasASIMDRDM bool // Rounding double multiply add/subtract instruction set
    	HasJSCVT    bool // Javascript conversion from floating-point to integer
    	HasFCMA     bool // Floating-point multiplication and addition of complex numbers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                    // in DST
                    if( TZ.inDaylightTime( new Date( t ))) {
                        // t also in DST so no correction
                    } else {
                        // t not in DST so subtract 1 hour
                        t -= 3600000;
                    }
                } else {
                    // not in DST
                    if( TZ.inDaylightTime( new Date( t ))) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
Back to top