Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for log_10 (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        //
        // Therefore we compute this as
        //
        //   (z + 1/2 - t(z) / log(t(z))) * log(t(z)).
        //
        // log_y = log_sqrt_two_pi + (z + one_half - t / log_t) * log_t + Log(x);
        Value t_div_log_t = rewriter.create<DivOp>(loc, t, log_t);
        Value one_half_minus_t_div_log_t =
            rewriter.create<SubOp>(loc, one_half, t_div_log_t);
        Value z_plus_one_half_minus_t_div_log_t =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. src/math/all_test.go

    	for i := 0; i < len(vf); i++ {
    		a := Abs(vf[i])
    		if f := Log10(a); !veryclose(log10[i], f) {
    			t.Errorf("Log10(%g) = %g, want %g", a, f, log10[i])
    		}
    	}
    	if f := Log10(E); f != Log10E {
    		t.Errorf("Log10(%g) = %g, want %g", E, f, Log10E)
    	}
    	for i := 0; i < len(vflogSC); i++ {
    		if f := Log10(vflogSC[i]); !alike(logSC[i], f) {
    			t.Errorf("Log10(%g) = %g, want %g", vflogSC[i], f, logSC[i])
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/math_grad.cc

        // real(x) < 0 is fine for the complex case
        auto log_x = Where3(scope, NotEqual(scope, x, zero), Log(scope, x),
                            ZerosLike(scope, x));
        auto gy_1 = Mul(scope, Mul(scope, grad, z), log_x);
        return BinaryGradCommon(scope, op, grad_outputs, gx_1, gy_1);
      } else {
        // There's no sensible real value to return if x < 0, so return 0
        auto log_x = Where3(scope, Greater(scope, x, zero), Log(scope, x),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	// The probability distribution function is mean*exp(-mean*x), so the CDF is
    	// p = 1 - exp(-mean*x), so
    	// q = 1 - p == exp(-mean*x)
    	// log_e(q) = -mean*x
    	// -log_e(q)/mean = x
    	// x = -log_e(q) * mean
    	// x = log_2(q) * (-log_e(2)) * mean    ; Using log_2 for efficiency
    	const randomBitCount = 26
    	q := cheaprandn(1<<randomBitCount) + 1
    	qlog := fastlog2(float64(q)) - randomBitCount
    	if qlog > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "Atan", "Atanh", "Ceil", "Cos", "Cosh", "Sin", "Exp", "Expm1",
                "Floor", "IsFinite", "IsInf", "IsNan", "Inv", "Reciprocal", "Log",
                "Log1p", "Invert", "LogicalNot", "Ndtri", "Neg", "Rint", "Round",
                "Rsqrt", "Sigmoid", "Sign", "Sinh", "Softplus", "Softsign", "Sqrt",
                "Square", "Tan", "Tanh", "Real", "Imag", "Erf", "Erfc", "Erfinv",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. src/runtime/map.go

    	// Make sure this stays in sync with the compiler's definition.
    	count     int // # live cells == size of map.  Must be first (used by len() builtin)
    	flags     uint8
    	B         uint8  // log_2 of # of buckets (can hold up to loadFactor * 2^B items)
    	noverflow uint16 // approximate number of overflow buckets; see incrnoverflow for details
    	hash0     uint32 // hash seed
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	return int64(ntz64(^x))
    }
    
    // logX returns logarithm of n base 2.
    // n must be a positive power of 2 (isPowerOfTwoX returns true).
    func log8(n int8) int64 {
    	return int64(bits.Len8(uint8(n))) - 1
    }
    func log16(n int16) int64 {
    	return int64(bits.Len16(uint16(n))) - 1
    }
    func log32(n int32) int64 {
    	return int64(bits.Len32(uint32(n))) - 1
    }
    func log64(n int64) int64 {
    	return int64(bits.Len64(uint64(n))) - 1
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK:  %[[IS_ZERO:.*]] = "tf.Equal"(%[[X]], %[[ZERO]]) <{incompatible_shape_error = true}> : (tensor<*xf32>, tensor<f32>) -> tensor<*xi1>
      // CHECK:  %[[LOG:.*]] = "tf.Log1p"(%[[Y]]) : (tensor<*xf32>) -> tensor<*xf32>
      // CHECK:  %[[MUL:.*]] = "tf.Mul"(%[[X]], %[[LOG]]) : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
Back to top