Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isInfinity (0.15 sec)

  1. src/go/printer/nodes.go

    		// it to 0).
    		prevSize := size
    		const infinity = 1e6 // larger than any source line
    		size = p.nodeSize(x, infinity)
    		pair, isPair := x.(*ast.KeyValueExpr)
    		if size <= infinity && prev.IsValid() && next.IsValid() {
    			// x fits on a single line
    			if isPair {
    				size = p.nodeSize(pair.Key, infinity) // size <= infinity
    			}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

                                          FloatAttr::get(float_type, value)));
        };
    
        Value one_half = create_const_op(0.5);
        Value one = create_const_op(1.0);
        Value infinity = create_const_op(std::numeric_limits<double>::infinity());
        Value pi = create_const_op(M_PI);
        Value log_pi = create_const_op(std::log(M_PI));
        Value log_sqrt_two_pi = create_const_op((std::log(2) + std::log(M_PI)) / 2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_s390x.s

    #undef Y2H
    #undef Z2L
    #undef Z2H
    #undef ZER
    #undef SEL1
    
    // ---------------------------------------
    // Constant time table access
    // Indexed from 1 to 15, with -1 offset
    // (index 0 is implicitly point at infinity)
    // func p256Select(res *P256Point, table *p256Table, idx int)
    #define P3ptr   R1
    #define P1ptr   R2
    #define COUNT   R4
    
    #define X1L    V0
    #define X1H    V1
    #define Y1L    V2
    #define Y1H    V3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      "$0.cast<DenseElementsAttr>().getNumElements() == 1 && "
      "std::abs(*$0.cast<DenseElementsAttr>().getValues<float>().begin()) < "
      # n>>;
    
    // Constraint that the attribute value is negative infinity or negative largest.
    // We use both -inf & flt_min due to the forward compatibility.
    def ConstAPFloatNegLargestOrNegInfinity : Constraint<CPred<
      "$0.isa<DenseElementsAttr>() && "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      if (*debug_options_.fuel >= std::numeric_limits<int64_t>::max() / 2) {
        // The assumption is that if fuel started out as INT64_MAX, it will forever
        // stay greater than INT64_MAX / 2.
        VLOG(2) << "Starting fuel: infinity";
      } else {
        VLOG(2) << "Starting fuel: " << *debug_options_.fuel;
      }
    
      VLOG(2) << "sorted_nodes.size() = " << sorted_nodes.size();
    
      auto allowlist = GetOrCreateAllowlist();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top