Home
last modified time | relevance | path

Searched refs:arccos (Results 1 – 12 of 12) sorted by relevance

/external/llvm-project/libclc/generic/lib/math/
Dacos.cl28 // Computes arccos(x).
29 // The argument is first reduced by noting that arccos(x)
31 // arguments arccos(x) = pi/2 to machine accuracy.
34 // arccos(x) = pi/2 - arcsin(x)
39 // arccos(x) = pi - 2*arcsin(sqrt(1-x)/2)
97 // Computes arccos(x).
98 // The argument is first reduced by noting that arccos(x)
100 // arguments arccos(x) = pi/2 to machine accuracy.
103 // arccos(x) = pi/2 - arcsin(x)
108 // arccos(x) = pi - 2*arcsin(sqrt(1-x)/2)
Dacospi.cl29 // Computes arccos(x).
30 // The argument is first reduced by noting that arccos(x)
32 // arguments arccos(x) = pi/2 to machine accuracy.
35 // arccos(x) = pi/2 - arcsin(x)
40 // arccos(x) = pi - 2*arcsin(sqrt(1-x)/2)
97 // Computes arccos(x).
98 // The argument is first reduced by noting that arccos(x)
100 // arguments arccos(x) = pi/2 to machine accuracy.
103 // arccos(x) = pi/2 - arcsin(x)
108 // arccos(x) = pi - 2*arcsin(sqrt(1-x)/2)
/external/tensorflow/tensorflow/python/kernel_tests/
Dcwise_ops_unary_test.py219 self._compareBoth(k, np.arccos, math_ops.acos)
278 self._compareBoth(x, np.arccos, math_ops.acos)
332 self._compareBoth(k, np.arccos, math_ops.acos)
Dbasic_gpu_test.py112 self._compare(data, np.arccos, math_ops.acos, use_gpu)
/external/swiftshader/src/Shader/
DShaderCore.cpp343 Float4 arccos(RValue<Float4> x, bool pp) in arccos() function
1632 dst.x = arccos(src.x, pp); in acos()
1633 dst.y = arccos(src.y, pp); in acos()
1634 dst.z = arccos(src.z, pp); in acos()
1635 dst.w = arccos(src.w, pp); in acos()
DShaderCore.hpp72 Float4 arccos(RValue<Float4> x, bool pp = false);
/external/swiftshader/src/Pipeline/
DShaderCore.hpp199 Float4 arccos(RValue<Float4> x, bool pp = false);
DShaderCore.cpp327 Float4 arccos(RValue<Float4> x, bool pp) in arccos() function
/external/tensorflow/tensorflow/python/lib/core/
Dbfloat16_test.py239 np.arcsin, np.arccos, np.arctan, np.sinh, np.cosh, np.tanh, np.arcsinh,
/external/tensorflow/third_party/py/numpy/tf_numpy_api/
Dtensorflow.experimental.numpy.pbtxt160 name: "arccos"
/external/tensorflow/tensorflow/compiler/tests/
Dunary_ops_test.py203 math_ops.acos, x.astype(dtype), expected=np.arccos(x).astype(dtype))
/external/tensorflow/tensorflow/python/ops/numpy_ops/
Dnp_math_ops.py706 def arccos(x): function