Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for powx (0.11 sec)

  1. src/math/all_test.go

    	Pi,              // pow(+Pi, 1)
    	Inf(1),          // pow(+Pi, +Inf)
    	NaN(),           // pow(+Pi, NaN)
    	0,               // pow(+Inf, -Pi)
    	1,               // pow(+Inf, -0)
    	1,               // pow(+Inf, +0)
    	Inf(1),          // pow(+Inf, 1)
    	Inf(1),          // pow(+Inf, Pi)
    	NaN(),           // pow(+Inf, NaN)
    	NaN(),           // pow(NaN, -Pi)
    	1,               // pow(NaN, -0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad.cc

      auto y = ConjugateHelper(scope, op.input(1));
      auto z = ConjugateHelper(scope, op.output(0));
      auto grad = grad_inputs[0];
      // grad * y * pow(x, y - 1)
      auto one = Cast(scope, Const(scope, 1.0), y.type());
      auto gx_1 =
          Mul(scope, Mul(scope, grad, y), Pow(scope, x, Sub(scope, y, one)));
      // Avoid false singularity at x = 0
      DataType x_dtype = x.type();
      auto zero = Cast(scope, Const(scope, 0.0), x_dtype);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    //
    // Requires constants to be exact match and only one use of all of the
    // intermediate results.
    //
    // For GeluApproximate, replaces
    //   0.5 * x * ( 1 + tanh( sqrt_2dPi  * ( x + 0.044715 * pow( x, 3 ) ) ) )
    def MatchGeluApproximate : Pat<
      (TFL_MulOp
       (TFL_MulOp:$mul_out $arg0, (Arith_ConstantOp F32ElementsAttr:$Cst_1_2), TFL_AF_None),
       (TFL_AddOp:$add_out
        (TFL_TanhOp:$tanh_out
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // a value of 16 limits the returned string to 65,536 characters.
    // The value must be between 1 and 30.
    func MaxLength(pow int) Option {
    	if pow <= 0 || pow > 30 {
    		panic("demangle: invalid MaxLength value")
    	}
    	return Option(pow << maxLengthShift)
    }
    
    // isMaxLength reports whether an Option holds a maximum length.
    func isMaxLength(opt Option) bool {
    	return opt&maxLengthMask != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

    {
      param(
        [parameter(Mandatory = $true, Position = 0)]
        [Uint32] $IPAddress
      )
    
      $dotted_ip = $(for ($i = 3; $i -gt -1; $i--) {
        $remainder = $IPAddress % [Math]::Pow(256, $i)
        ($IPAddress - $remainder) / [Math]::Pow(256, $i)
        $IPAddress = $remainder
      })
      return [String]::Join(".", $dotted_ip)
    }
    
    # TODO(pjh): this is copied from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    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