Home
last modified time | relevance | path

Searched refs:asinh (Results 1 – 25 of 209) sorted by relevance

123456789

/external/skia/resources/sksl/intrinsics/
DAsinh.sksl6 return (asinh(inputVal.x) == expected.x &&
7 asinh(inputVal.xy) == expected.xy &&
8 asinh(inputVal.xyz) == expected.xyz &&
9 asinh(inputVal.xyzw) == expected.xyzw &&
10 asinh(constVal1.x) == expected.x &&
11 asinh(constVal1.xy) == expected.xy &&
12 asinh(constVal1.xyz) == expected.xyz &&
13 asinh(constVal1.xyzw) == expected.xyzw) ? colorGreen : colorRed;
/external/python/cpython2/Lib/test/
Dcmath_testcases.txt11 -- <function> is the function to be tested (exp, cos, asinh, ...),
560 -- asinh: Inverse hyperbolic sine --
564 asinh0000 asinh 0.0 0.0 -> 0.0 0.0
565 asinh0001 asinh 0.0 -0.0 -> 0.0 -0.0
566 asinh0002 asinh -0.0 0.0 -> -0.0 0.0
567 asinh0003 asinh -0.0 -0.0 -> -0.0 -0.0
570 asinh0010 asinh 0.0 1.0 -> 0.0 1.5707963267948966
571 asinh0011 asinh 0.0 -1.0 -> 0.0 -1.5707963267948966
572 asinh0012 asinh -0.0 1.0 -> -0.0 1.5707963267948966
573 asinh0013 asinh -0.0 -1.0 -> -0.0 -1.5707963267948966
[all …]
/external/python/cpython3/Lib/test/
Dcmath_testcases.txt11 -- <function> is the function to be tested (exp, cos, asinh, ...),
566 -- asinh: Inverse hyperbolic sine --
570 asinh0000 asinh 0.0 0.0 -> 0.0 0.0
571 asinh0001 asinh 0.0 -0.0 -> 0.0 -0.0
572 asinh0002 asinh -0.0 0.0 -> -0.0 0.0
573 asinh0003 asinh -0.0 -0.0 -> -0.0 -0.0
576 asinh0010 asinh 0.0 1.0 -> 0.0 1.5707963267948966
577 asinh0011 asinh 0.0 -1.0 -> 0.0 -1.5707963267948966
578 asinh0012 asinh -0.0 1.0 -> -0.0 1.5707963267948966
579 asinh0013 asinh -0.0 -1.0 -> -0.0 -1.5707963267948966
[all …]
/external/skia/tests/sksl/intrinsics/
DAsinh.glsl8 …return ((((((asinh(inputVal.x) == expected.x && asinh(inputVal.xy) == expected.xy) && asinh(inputV…
DAsinh.metal18asinh(_uniforms.inputVal.x) == _uniforms.expected.x && all(asinh(_uniforms.inputVal.xy) == _unifor…
/external/tensorflow/tensorflow/core/kernels/
Dcwise_op_asinh.cc20 REGISTER6(UnaryOp, CPU, "Asinh", functor::asinh, Eigen::half, bfloat16, float,
25 REGISTER3(UnaryOp, GPU, "Asinh", functor::asinh, Eigen::half, float, double);
27 REGISTER(UnaryOp, GPU, "Asinh", functor::asinh, bfloat16)
Dcwise_op_gpu_asinh.cu.cc24 DEFINE_UNARY3(asinh, float, double, Eigen::half);
26 DEFINE_UNARY1(asinh, bfloat16);
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_Asinh.pbtxt4 name: "math.asinh"
7 name: "asinh"
/external/fdlibm/
Ds_asinh.c37 double asinh(double x) in asinh() function
39 double asinh(x) in asinh()
/external/musl/src/math/
Dasinhl.c6 return asinh(x); in asinhl()
39 return asinh(x); in asinhl()
Dasinh.c4 double asinh(double x) in asinh() function
/external/oboe/samples/RhythmGame/third_party/glm/detail/
Dfunc_trigonometric.inl135 // asinh
137 using std::asinh;
140 GLM_FUNC_QUALIFIER genType asinh(genType x) function
142 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'asinh' only accept floating-point inp…
149 GLM_FUNC_QUALIFIER vecType<T, P> asinh(vecType<T, P> const & v) function
151 return detail::functor1<T, T, P, vecType>::call(asinh, v);
/external/rust/crates/num-traits/src/
Dreal.rs750 fn asinh(self) -> Self; in asinh() method
830 Float::asinh(self) -> Self;
Dfloat.rs1758 fn asinh(self) -> Self; in asinh() method
1882 Self::asinh(self) -> Self;
2097 fn asinh(self) -> Self { in asinh() method
2232 fn asinh(self) -> Self { in asinh() method
2233 libm::asinh(self) in asinh()
/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/Dialect/mhlo/transforms/
Dchlo_legalize_to_hlo_patterns.td135 // Expand asinh to MHLO dialect as
136 // asinh(x) = log(x + sqrt(x^2 + 1))
153 // the result as x + abs(x) = 0 but we are saved by the fact that asinh(-x) =
154 // -asinh(x).
/external/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h51 __DEVICE__ double asinh(double);
52 __DEVICE__ float asinh(float);
191 using ::asinh;
/external/rust/crates/libm/src/math/
Dmod.rs79 mod asinh; module
185 pub use self::asinh::asinh;
Dasinh.rs10 pub fn asinh(mut x: f64) -> f64 { in asinh() function
/external/python/cpython2/Modules/
D_math.h16 #define m_asinh asinh
/external/python/cpython3/Modules/
D_math.h11 # define m_asinh asinh
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
Dasinh.pass.cpp25 assert(asinh(c) == x); in test()
41 std::complex<double> r = asinh(testcases[i]); in test_edges()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Asinh.pbtxt11 tf.math.asinh(x) ==> [-inf -1.4436355 -0.4812118 0.8813736 1.0159732 5.991471 9.903487 inf]
/external/musl/include/
Dtgmath.h149 #undef asinh
212 #define asinh(x) __tg_real_complex(asinh, (x)) macro
/external/tensorflow/tensorflow/compiler/xla/tests/
Dexhaustive_unary_test_f32_or_smaller.cc405 Run(Asinh, std::asinh, error_spec_gen); in XLA_TEST_P()
409 XLA_TEST_P(ExhaustiveF16UnaryTest, Asinh) { Run(Asinh, std::asinh); } in XLA_TEST_P()
413 XLA_TEST_P(ExhaustiveBF16UnaryTest, Asinh) { Run(Asinh, std::asinh); } in XLA_TEST_P()
/external/tensorflow/tensorflow/python/kernel_tests/
Dcwise_ops_unary_test.py211 self._compareBoth(x, np.arcsinh, math_ops.asinh)
266 self._compareBoth(x, np.arcsinh, math_ops.asinh)
321 self._compareBoth(x, np.arcsinh, math_ops.asinh)
382 self._compareBoth(x, np.arcsinh, math_ops.asinh)
439 self._compareBoth(x, compute_f32(np.arcsinh), math_ops.asinh)
518 self._compareCpu(y, np.arcsinh, math_ops.asinh, grad_rtol=1e-2)
558 self._compareCpu(y, np.arcsinh, math_ops.asinh)

123456789