Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 560 for ROUND (0.06 sec)

  1. src/internal/chacha8rand/chacha8_generic.go

    		b9 := b[9][i]
    		b10 := b[10][i]
    		b11 := b[11][i]
    		b12 := b[12][i]
    		b13 := b[13][i]
    		b14 := b[14][i]
    		b15 := b[15][i]
    
    		// 4 iterations of eight quarter-rounds each is 8 rounds
    		for round := 0; round < 4; round++ {
    			b0, b4, b8, b12 = qr(b0, b4, b8, b12)
    			b1, b5, b9, b13 = qr(b1, b5, b9, b13)
    			b2, b6, b10, b14 = qr(b2, b6, b10, b14)
    			b3, b7, b11, b15 = qr(b3, b7, b11, b15)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1block_arm.s

    //   - rounds 60-79 are type 4 and do not load data (ROUND4 macro).
    //
    // Each round loads or shuffles the data, then computes a per-round
    // function of b, c, d, and then mixes the result into and rotates the
    // five registers a, b, c, d, e holding the intermediate results.
    //
    // The register rotation is implemented by rotating the arguments to
    // the round macros instead of by explicit move instructions.
    
    // Register definitions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize.mlir

    // CHECK: %[[avgpool_f32:.*]] = "tf.AvgPool"(%[[fcast]])
    // CHECK-SAME: (tensor<*xf32>) -> tensor<*xf32>
    // CHECK: %[[round:.*]] = "tf.Round"(%[[avgpool_f32]])
    // CHECK: %[[icast:.*]] = "tf.Cast"(%[[round]]) <{Truncate = false}> : (tensor<*xf32>) -> tensor<*xi8>
    // CHECK: %[[sc2:.*]] = "quantfork.scast"(%[[icast]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:32:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. cmd/metrics-v3-cluster-iam.go

    	pluginAuthnServiceSuccMaxRttMsMinuteMD   = NewCounterMD(pluginAuthnServiceSuccMaxRttMsMinute, "When plugin authentication is configured, returns maximum round-trip-time of successful requests in the last full minute")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 02 08:20:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/evex.go

    	broadcast bool
    }
    
    // Rounding control values.
    // Match exact value for EVEX.L'L field (with exception of rcUnset).
    const (
    	rcRNSAE = 0 // Round towards nearest
    	rcRDSAE = 1 // Round towards -Inf
    	rcRUSAE = 2 // Round towards +Inf
    	rcRZSAE = 3 // Round towards zero
    	rcUnset = 4
    )
    
    // newEVEXSuffix returns proper zero value for evexSuffix.
    func newEVEXSuffix() evexSuffix {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/cpu.go

    		return "", fmt.Errorf("invalid suffix, require round mode bit:%x", u)
    	}
    
    	u &^= rmSuffixBit
    	for k, v := range rmSuffixSet {
    		if v == u {
    			return k, nil
    		}
    	}
    	return "", fmt.Errorf("unknown suffix:%x", u)
    }
    
    const (
    	RM_RNE uint8 = iota // Round to Nearest, ties to Even
    	RM_RTZ              // Round towards Zero
    	RM_RDN              // Round Down
    	RM_RUP              // Round Up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. cmd/local-locker_test.go

    							if !ok || err != nil {
    								t.Fatal("failed:", err, ok)
    							}
    						}
    					}
    					start := time.Now()
    					l.expireOldLocks(time.Hour)
    					t.Logf("Scan Took: %v. Left: %d/%d", time.Since(start).Round(time.Millisecond), len(l.lockUID), len(l.lockMap))
    					if len(l.lockMap) != locks {
    						t.Fatalf("objects deleted, want %d != got %d", locks, len(l.lockMap))
    					}
    					if len(l.lockUID) != locks*readers {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. src/math/example_test.go

    	// Output: 8.0
    }
    
    func ExamplePow10() {
    	c := math.Pow10(2)
    	fmt.Printf("%.1f", c)
    	// Output: 100.0
    }
    
    func ExampleRound() {
    	p := math.Round(10.5)
    	fmt.Printf("%.1f\n", p)
    
    	n := math.Round(-10.5)
    	fmt.Printf("%.1f\n", n)
    	// Output:
    	// 11.0
    	// -11.0
    }
    
    func ExampleRoundToEven() {
    	u := math.RoundToEven(11.5)
    	fmt.Printf("%.1f\n", u)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 07 18:09:53 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  9. src/math/big/decimal.go

    		// exactly halfway - round to even
    		return n > 0 && (x.mant[n-1]-'0')&1 != 0
    	}
    	// not halfway - digit tells all (x.mant has no trailing zeros)
    	return x.mant[n] >= '5'
    }
    
    // round sets x to (at most) n mantissa digits by rounding it
    // to the nearest even value with n (or fever) mantissa digits.
    // If n < 0, x remains unchanged.
    func (x *decimal) round(n int) {
    	if n < 0 || n >= len(x.mant) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc

    QuantizedMultiplier QuantizeMultiplier(double double_multiplier) {
      if (double_multiplier < 1e-6) {
        return {0, 0};
      }
    
      int32_t shift;
      const double q = frexp(double_multiplier, &shift);
      int64_t quantized_multiplier = round(q * (1LL << 31));
      assert(quantized_multiplier <= (1LL << 31));
      if (quantized_multiplier == (1LL << 31)) {
        quantized_multiplier /= 2;
        ++shift;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 19:57:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top