Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for atanSC (0.11 sec)

  1. src/math/stubs_s390x.s

    TEXT ·atanhTrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    	CMPBEQ R1, $1, vectorimpl                 // vectorfacility = 1, vector supported
    	MOVD   $·atanhvectorfacility+0x00(SB), R1
    	MOVD   $·atanh(SB), R2
    	MOVD   R2, 0(R1)
    	BR     ·atanh(SB)
    
    vectorimpl:
    	MOVD $·atanhvectorfacility+0x00(SB), R1
    	MOVD $·atanhAsm(SB), R2
    	MOVD R2, 0(R1)
    	BR   ·atanhAsm(SB)
    
    GLOBL ·atanhvectorfacility+0x00(SB), NOPTR, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  2. src/math/atan2_s390x.s

    //      Atan2(+Inf, +Inf) = +Pi/4
    //      Atan2(-Inf, +Inf) = -Pi/4
    //      Atan2(+Inf, -Inf) = 3Pi/4
    //      Atan2(-Inf, -Inf) = -3Pi/4
    //      Atan2(y, +Inf) = 0
    //      Atan2(y>0, -Inf) = +Pi
    //      Atan2(y<0, -Inf) = -Pi
    //      Atan2(+Inf, x) = +Pi/2
    //      Atan2(-Inf, x) = -Pi/2
    // The algorithm used is minimax polynomial approximation
    // with coefficients determined with a Remez exchange algorithm.
    
    TEXT	·atan2Asm(SB), NOSPLIT, $0-24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 04:06:34 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  3. src/math/atanh_s390x.s

    DATA ·atanhtabh2075<> + 8(SB)/8, $-.5
    GLOBL ·atanhtabh2075<> + 0(SB), RODATA, $16
    
    // Atanh returns the inverse hyperbolic tangent of the argument.
    //
    // Special cases are:
    //      Atanh(1) = +Inf
    //      Atanh(±0) = ±0
    //      Atanh(-1) = -Inf
    //      Atanh(x) = NaN if x < -1 or x > 1
    //      Atanh(NaN) = NaN
    // The algorithm used is minimax polynomial approximation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: tf.Atan2
        // expected-remark@+1 {{lowering requires bounded tensor operands}}
        %0 = "tf.Atan2"(%arg0, %arg0) : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
    
        func.return %0 : tensor<*xf32>
      }
    
      // CHECK-LABEL: dynamic_operand
      func.func @dynamic_operand(%arg0: tensor<?xf32>) -> tensor<?xf32> {
        // CHECK: tf.Atan2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  5. src/math/cmplx/phase.go

    package cmplx
    
    import "math"
    
    // Phase returns the phase (also called the argument) of x.
    // The returned value is in the range [-Pi, Pi].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 372 bytes
    - Viewed (0)
  6. src/math/atan_s390x.s

    GLOBL ·atanxmone<> + 0(SB), RODATA, $8
    
    // Atan returns the arctangent, in radians, of the argument.
    //
    // Special cases are:
    //      Atan(±0) = ±0
    //      Atan(±Inf) = ±Pi/2Pi
    // The algorithm used is minimax polynomial approximation
    // with coefficients determined with a Remez exchange algorithm.
    
    TEXT	·atanAsm(SB), NOSPLIT, $0-16
    	FMOVD	x+0(FP), F0
    	//special case Atan(±0) = ±0
    	FMOVD   $(0.0), F1
    	FCMPU   F0, F1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/math_grad.cc

    REGISTER_GRADIENT_OP("Acosh", AcoshGrad);
    
    Status AtanhGrad(const Scope& scope, const Operation& op,
                     const std::vector<Output>& grad_inputs,
                     std::vector<Output>* grad_outputs) {
      // y = atanh(x)
      // dy/dx = 1 / (1 - x^2)
      auto one = Cast(scope, Const(scope, 1.0), op.input(0).type());
      auto dydx = Reciprocal(scope, Sub(scope, one, Square(scope, op.input(0))));
      // grad(x) = grad(y) * conj(dy/dx)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

        func.func @main(%arg0: tensor<2xf32>) -> tensor<2xf32> {
          %0 = "tf.Const"() {value = dense<1.42> : tensor<2xf32>} : () -> tensor<2xf32>
          %1 = "tf.Atan2"(%arg0, %0) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
          func.return %0 : tensor<2xf32>
        }
      })";
    
      TF_ASSERT_OK(LegalizeModule(kModuleWithConstParam));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. test/chan/powser1.go

    		print("Sub: ")
    		printn(Sub(Ones, Twos), 10)
    		print("Mul: ")
    		printn(Mul(Ones, Ones), 10)
    		print("Exp: ")
    		printn(Exp(Ones), 15)
    		print("MonSubst: ")
    		printn(MonSubst(Ones, neg(one), 2), 10)
    		print("ATan: ")
    		printn(Integ(zero, MonSubst(Ones, neg(one), 2)), 10)
    	} else { // test
    		check(Ones, one, 5, "Ones")
    		check(Add(Ones, Ones), itor(2), 0, "Add Ones Ones") // 1 1 1 1 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  10. test/chan/powser2.go

    		print("Sub: ")
    		Printn(Sub(Ones, Twos), 10)
    		print("Mul: ")
    		Printn(Mul(Ones, Ones), 10)
    		print("Exp: ")
    		Printn(Exp(Ones), 15)
    		print("MonSubst: ")
    		Printn(MonSubst(Ones, neg(one), 2), 10)
    		print("ATan: ")
    		Printn(Integ(zero, MonSubst(Ones, neg(one), 2)), 10)
    	} else { // test
    		check(Ones, one, 5, "Ones")
    		check(Add(Ones, Ones), itor(2), 0, "Add Ones Ones") // 1 1 1 1 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
Back to top