Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for rounds (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/replace_cast_hacks_with_tf_xla_ops.mlir

        %14 = "tf.Round"(%13) : (tensor<1x2x2x3xf32>) -> tensor<1x2x2x3xf32>
        %15 = "tf.Cast"(%14) {Truncate = false} : (tensor<1x2x2x3xf32>) -> tensor<1x2x2x3xi32>
        %16 = "tf.AddV2"(%15, %arg10) : (tensor<1x2x2x3xi32>, tensor<i32>) -> tensor<1x2x2x3xi32>
        %17 = "tf.Div"(%cst_1, %arg9) : (tensor<f32>, tensor<f32>) -> tensor<f32>
        %18 = "tf.Round"(%17) : (tensor<f32>) -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 81K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    		if x > 0 {
    			x--
    			saX = sa[x] // TODO bounds check
    			c = text[saX]
    			b = bucket[c] - 1
    			bucket[c] = b
    		}
    	}
    }
    
    func induceL_8_64(text []byte, sa, freq, bucket []int64) {
    	// Initialize positions for left side of character buckets.
    	bucketMin_8_64(text, freq, bucket)
    	bucket = bucket[:256] // eliminate bounds check for bucket[cB] below
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                ClassNode classNode = type.getType();
                String name = type.getName();
                ClassNode[] bounds = type.getUpperBounds();
                if (bounds != null) {
                    boolean nameAdded = false;
                    for (ClassNode upperBound : bounds) {
                        if (!nameAdded && upperBound != null || !resolve(classNode)) {
                            genericParameterNames.put(name, type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    //
    // By far, the most common redundant pair are generated by bounds checking.
    // For example for the code:
    //
    //	a[i] = 4
    //	foo(a[i])
    //
    // The compiler will generate the following code:
    //
    //	if i >= len(a) {
    //	    panic("not in bounds")
    //	}
    //	a[i] = 4
    //	if i >= len(a) {
    //	    panic("not in bounds")
    //	}
    //	foo(a[i])
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	iter := &span.specials
    	found := false
    	for {
    		s := *iter
    		if s == nil {
    			break
    		}
    		if offset == uintptr(s.offset) && kind == s.kind {
    			found = true
    			break
    		}
    		if offset < uintptr(s.offset) || (offset == uintptr(s.offset) && kind < s.kind) {
    			break
    		}
    		iter = &s.next
    	}
    	return iter, found
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/fiat/p384_fiat64.go

    //
    // Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
    type p384MontgomeryDomainFieldElement [6]uint64
    
    // The type p384NonMontgomeryDomainFieldElement is a field element NOT in the Montgomery domain.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    // floating point and quantized space. It is designed to reproduce TF's
    // implementation, mirroring the previous XLA implementation.
    //
    // 1. Computing proper quantized bounds. This involves nudging the input bounds.
    // 2. Converting the input bounds to quantized space, rounding values.
    // 3. Convert back into floating point space.
    class ConvertFakeQuantWithMinMaxVarsOp : public RewritePattern {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	LXVD2X (CPOOL+R19), SEL1
    
    	LXVD2X (R16)(x_ptr), T1
    	LXVD2X (R0)(x_ptr), T0
    
    	// Put in true little endian order
    	XXPERMDI T0, T0, $2, T0
    	XXPERMDI T1, T1, $2, T1
    
    	// First round
    	VPERM   T1, T0, SEL1, RED2    // d1 d0 d1 d0
    	VPERM   ZER, RED2, SEL2, RED1 // 0  d1 d0  0
    	VSUBUQM RED2, RED1, RED2      // VSQ   RED1, RED2, RED2      // Guaranteed not to underflow
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "Op used to indicate to the compiler and runtime the static bounds of a tensor.";
      let description = [{
    The information passed through this op can possibly be used by the compiler and
    runtime to perform certain optimizations such as more efficient DMAs. The
    bounds passed via this op should be considered advisory only, and depending on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    			// first round and thus deleted from the map, and then
    			// not found in the second round (double insertion of
    			// the same expr node still just leads to one entry for
    			// that node, and it can only be deleted once).
    			// Be cautious and check for presence of entry.
    			// Example: var e, f = int(1<<""[f]) // go.dev/issue/11347
    			if info, found := check.untyped[x.expr]; found {
    				info.isLhs = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top