Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for coshSC (0.39 sec)

  1. src/math/example_test.go

    	fmt.Printf("%.2f", math.Copysign(3.2, -1))
    	// Output: -3.20
    }
    
    func ExampleCos() {
    	fmt.Printf("%.2f", math.Cos(math.Pi/2))
    	// Output: 0.00
    }
    
    func ExampleCosh() {
    	fmt.Printf("%.2f", math.Cosh(0))
    	// Output: 1.00
    }
    
    func ExampleSin() {
    	fmt.Printf("%.2f", math.Sin(math.Pi))
    	// Output: 0.00
    }
    
    func ExampleSincos() {
    	sin, cos := math.Sincos(0)
    	fmt.Printf("%.2f, %.2f", sin, cos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 07 18:09:53 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  2. src/math/stubs_s390x.s

    TEXT ·coshTrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    	CMPBEQ R1, $1, vectorimpl                // vectorfacility = 1, vector supported
    	MOVD   $·coshvectorfacility+0x00(SB), R1
    	MOVD   $·cosh(SB), R2
    	MOVD   R2, 0(R1)
    	BR     ·cosh(SB)
    
    vectorimpl:
    	MOVD $·coshvectorfacility+0x00(SB), R1
    	MOVD $·coshAsm(SB), R2
    	MOVD R2, 0(R1)
    	BR   ·coshAsm(SB)
    
    GLOBL ·coshvectorfacility+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)
  3. tensorflow/cc/gradients/math_grad.cc

    Status SinhGrad(const Scope& scope, const Operation& op,
                    const std::vector<Output>& grad_inputs,
                    std::vector<Output>* grad_outputs) {
      // y = sinh(x)
      // dy/dx = cosh(x)
      auto dydx = Cosh(scope, op.input(0));
      // grad(x) = grad(y) * conj(dy/dx)
      grad_outputs->push_back(
          Mul(scope, grad_inputs[0], ConjugateHelper(scope, dydx)));
      return scope.status();
    }
    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. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

            TypeID::get<TF::ComplexAbsOp>(),
            TypeID::get<TF::ConjugateTransposeOp>(),
            TypeID::get<TF::ConcatV2Op>(),
            TypeID::get<TF::ConvOp>(),
            TypeID::get<TF::CoshOp>(),
            TypeID::get<TF::CrossOp>(),
            TypeID::get<TF::CumulativeLogsumexpOp>(),
            TypeID::get<TF::DataFormatDimMapOp>(),
            TypeID::get<TF::DataFormatVecPermuteOp>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          new absl::flat_hash_map<string, std::vector<string>>{
              // Unary
              {"PW",
               {"ComplexAbs", "Angle", "Conj", "Abs", "Acos", "Acosh", "Asin",
                "Atan", "Atanh", "Ceil", "Cos", "Cosh", "Sin", "Exp", "Expm1",
                "Floor", "IsFinite", "IsInf", "IsNan", "Inv", "Reciprocal", "Log",
                "Log1p", "Invert", "LogicalNot", "Ndtri", "Neg", "Rint", "Round",
    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. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(CollectiveReduceOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(ConjOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(CosOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(CoshOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(CrossOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(DataFormatDimMapOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(DataFormatVecPermuteOp);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Asinh", Func, 0},
    		{"Atan", Func, 0},
    		{"Atan2", Func, 0},
    		{"Atanh", Func, 0},
    		{"Cbrt", Func, 0},
    		{"Ceil", Func, 0},
    		{"Copysign", Func, 0},
    		{"Cos", Func, 0},
    		{"Cosh", Func, 0},
    		{"Dim", Func, 0},
    		{"E", Const, 0},
    		{"Erf", Func, 0},
    		{"Erfc", Func, 0},
    		{"Erfcinv", Func, 10},
    		{"Erfinv", Func, 10},
    		{"Exp", Func, 0},
    		{"Exp2", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. RELEASE.md

    *   Enable JIT-compiled i64-indexed kernels on GPU for large tensors with more than 2**32 elements.
        *   Unary GPU kernels: Abs, Atanh, Acos, Acosh, Asin, Asinh, Atan, Cos, Cosh, Sin, Sinh, Tan, Tanh.
        *   Binary GPU kernels: AddV2, Sub, Div, DivNoNan, Mul, MulNoNan, FloorDiv, Equal, NotEqual, Greater, GreaterEqual, LessEqual, Less.
    
    * `tf.lite`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        static bool isCompatibleReturnTypes(TypeRange inferred, TypeRange actual) {
          return ArraysAreCastCompatible(inferred, actual);
        }
      }];
    }
    
    def TF_CoshOp : TF_Op<"Cosh", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes hyperbolic cosine of x element-wise.";
    
      let description = [{
    Given an input tensor, this function computes hyperbolic cosine of every
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg math, func Atanh(float64) float64
    pkg math, func Cbrt(float64) float64
    pkg math, func Ceil(float64) float64
    pkg math, func Copysign(float64, float64) float64
    pkg math, func Cos(float64) float64
    pkg math, func Cosh(float64) float64
    pkg math, func Dim(float64, float64) float64
    pkg math, func Erf(float64) float64
    pkg math, func Erfc(float64) float64
    pkg math, func Exp(float64) float64
    pkg math, func Exp2(float64) float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top