Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 80 for arithmetic (0.28 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

     public:
      StringRef getArgument() const final { return "unfuse-mhlo-batch-norm-pass"; }
      StringRef getDescription() const final {
        return "Unfuses MHLO batch norm inference op into arithmetic ops";
      }
      void getDependentDialects(::mlir::DialectRegistry &registry) const override {
        // TODO(b/299514833): Remove TensorFlowDialect usage.
        registry.insert<shape::ShapeDialect, mlir::TF::TensorFlowDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/math/big/floatconv_test.go

    		{5e-304 / 1e20, 'g', -1, "5e-324"},
    		{-5e-304 / 1e20, 'g', -1, "-5e-324"},
    		{fdiv(5e-304, 1e20), 'g', -1, "5e-324"},   // avoid constant arithmetic
    		{fdiv(-5e-304, 1e20), 'g', -1, "-5e-324"}, // avoid constant arithmetic
    
    		{32, 'g', -1, "32"},
    		{32, 'g', 0, "3e+01"},
    
    		{100, 'x', -1, "0x1.9p+06"},
    
    		// {math.NaN(), 'g', -1, "NaN"},  // Float doesn't support NaNs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/ops.h

      /// construct an Initializer. Initializer stores the value it got constructed
      /// with in a Tensor object.
      struct Initializer {
        /// Construct from a scalar value of an arithmetic type or a type that can
        /// be converted to a string (eg. a string literal).
        template <typename T, typename = typename std::enable_if<
                                  std::is_arithmetic<T>::value ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/PairedStatsAccumulator.java

        // We extend the recursive expression for the one-variable case at Art of Computer Programming
        // vol. 2, Knuth, 4.2.2, (16) to the two-variable case. We have two value series x_i and y_i.
        // We define the arithmetic means X_n = 1/n \sum_{i=1}^n x_i, and Y_n = 1/n \sum_{i=1}^n y_i.
        // We also define the sum of the products of the differences from the means
        //           C_n = \sum_{i=1}^n x_i y_i - n X_n Y_n
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/image/draw/draw.go

    			// dr |= dr << 8
    			// and similarly for dg, db and da, but instead we multiply a
    			// (which is a 16-bit color, ranging in [0,65535]) by 0x101.
    			// This yields the same result, but is fewer arithmetic operations.
    			a := (m - (sa * ma / m)) * 0x101
    
    			d[0] = uint8((dr*a + sy*ma) / m >> 8)
    			d[1] = uint8((dg*a + sy*ma) / m >> 8)
    			d[2] = uint8((db*a + sy*ma) / m >> 8)
    			d[3] = uint8((da*a + sa*ma) / m >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    // quantity("9999999999999999999999999999999999999G").isInteger() // returns false
    // quantity("50k").asInteger() == 50000 // returns true
    // quantity("50k").sub(20000).asApproximateFloat() == 30000 // returns true
    //
    // Arithmetic
    //
    //   - sign: Returns `1` if the quantity is positive, `-1` if it is negative. `0` if it is zero
    //
    //   - add: Returns sum of two quantities or a quantity and an integer
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

        // We extend the recursive expression for the one-variable case at Art of Computer Programming
        // vol. 2, Knuth, 4.2.2, (16) to the two-variable case. We have two value series x_i and y_i.
        // We define the arithmetic means X_n = 1/n \sum_{i=1}^n x_i, and Y_n = 1/n \sum_{i=1}^n y_i.
        // We also define the sum of the products of the differences from the means
        //           C_n = \sum_{i=1}^n x_i y_i - n X_n Y_n
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/nilcheck.go

    		for _, v := range b.Values {
    			// a value resulting from taking the address of a
    			// value, or a value constructed from an offset of a
    			// non-nil ptr (OpAddPtr) implies it is non-nil
    			// We also assume unsafe pointer arithmetic generates non-nil pointers. See #27180.
    			// We assume that SlicePtr is non-nil because we do a bounds check
    			// before the slice access (and all cap>0 slices have a non-nil ptr). See #30366.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/a.out.go

    	C_GOTADDR  // GOT slot for a symbol in -dynlink mode
    	C_TEXTSIZE // text size
    	C_ANY
    	C_NCLASS // must be the last
    )
    
    const (
    	// integer arithmetic
    	AADD = obj.ABaseS390X + obj.A_ARCHSPECIFIC + iota
    	AADDC
    	AADDE
    	AADDW
    	ADIVW
    	ADIVWU
    	ADIVD
    	ADIVDU
    	AMODW
    	AMODWU
    	AMODD
    	AMODDU
    	AMULLW
    	AMULLD
    	AMULHD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasTHUMB    bool // ARM Thumb instruction set
    	Has26BIT    bool // Address space limited to 26-bits
    	HasFASTMUL  bool // 32-bit operand, 64-bit result multiplication support
    	HasFPA      bool // Floating point arithmetic support
    	HasVFP      bool // Vector floating point support
    	HasEDSP     bool // DSP Extensions support
    	HasJAVA     bool // Java instruction set
    	HasIWMMXT   bool // Intel Wireless MMX technology support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top