/external/arm-optimized-routines/math/test/testcases/directed/ |
D | erf.tst | 1 ; erf.tst - Directed test cases for erf 6 func=erf op1=7ff80000.00000001 result=7ff80000.00000001 errno=0 7 func=erf op1=fff80000.00000001 result=7ff80000.00000001 errno=0 8 func=erf op1=7ff00000.00000001 result=7ff80000.00000001 errno=0 status=i 9 func=erf op1=fff00000.00000001 result=7ff80000.00000001 errno=0 status=i 10 func=erf op1=7ff00000.00000000 result=3ff00000.00000000 errno=0 11 func=erf op1=fff00000.00000000 result=bff00000.00000000 errno=0 12 func=erf op1=00000000.00000000 result=00000000.00000000 errno=ERANGE 13 func=erf op1=80000000.00000000 result=80000000.00000000 errno=ERANGE 14 func=erf op1=00000000.00000001 result=00000000.00000001 errno=0 status=ux [all …]
|
/external/python/cpython2/Lib/test/ |
D | math_testcases.txt | 52 -- erf: error function -- 55 erf0000 erf 0.0 -> 0.0 56 erf0001 erf -0.0 -> -0.0 57 erf0002 erf inf -> 1.0 58 erf0003 erf -inf -> -1.0 59 erf0004 erf nan -> nan 62 erf0010 erf 1e-308 -> 1.1283791670955125e-308 63 erf0011 erf 5e-324 -> 4.9406564584124654e-324 64 erf0012 erf 1e-10 -> 1.1283791670955126e-10 67 erf0020 erf 1 -> 0.84270079294971489 [all …]
|
/external/arm-optimized-routines/pl/math/ |
D | v_erf_2u.c | 25 return v_call_f64 (erf, x, y, cmp); in specialcase() 60 v_f64_t V_NAME (erf) (v_f64_t x) in V_NAME() argument 108 PL_SIG (V, D, 1, erf, -6.0, 6.0) 109 PL_TEST_ULP (V_NAME (erf), 1.26) 110 PL_TEST_INTERVAL (V_NAME (erf), 0, 0xffff0000, 10000) 111 PL_TEST_INTERVAL (V_NAME (erf), 0x1p-127, 0x1p-26, 40000) 112 PL_TEST_INTERVAL (V_NAME (erf), -0x1p-127, -0x1p-26, 40000) 113 PL_TEST_INTERVAL (V_NAME (erf), 0x1p-26, 0x1p3, 40000) 114 PL_TEST_INTERVAL (V_NAME (erf), -0x1p-26, -0x1p3, 40000) 115 PL_TEST_INTERVAL (V_NAME (erf), 0, inf, 40000)
|
D | sv_erf_3u.c | 20 return sv_call_f64 (erf, x, y, cmp); in __sv_erf_specialcase() 93 PL_SIG (SV, D, 1, erf, -4.0, 4.0)
|
/external/python/cpython3/Lib/test/ |
D | math_testcases.txt | 52 -- erf: error function -- 55 erf0000 erf 0.0 -> 0.0 56 erf0001 erf -0.0 -> -0.0 57 erf0002 erf inf -> 1.0 58 erf0003 erf -inf -> -1.0 59 erf0004 erf nan -> nan 62 erf0010 erf 1e-308 -> 1.1283791670955125e-308 63 erf0011 erf 5e-324 -> 4.9406564584124654e-324 64 erf0012 erf 1e-10 -> 1.1283791670955126e-10 67 erf0020 erf 1 -> 0.84270079294971489 [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | run.py | 261 erf = sys.__stderr__ 262 print>>erf, '\n' + '-'*40 263 print>>erf, 'Unhandled server exception!' 264 print>>erf, 'Thread: %s' % threading.currentThread().getName() 265 print>>erf, 'Client Address: ', client_address 266 print>>erf, 'Request: ', repr(request) 267 traceback.print_exc(file=erf) 268 print>>erf, '\n*** Unrecoverable, server exiting!' 269 print>>erf, '-'*40
|
D | rpc.py | 106 erf = sys.__stderr__ 107 print>>erf, '\n' + '-'*40 108 print>>erf, 'Unhandled server exception!' 109 print>>erf, 'Thread: %s' % threading.currentThread().getName() 110 print>>erf, 'Client Address: ', client_address 111 print>>erf, 'Request: ', repr(request) 112 traceback.print_exc(file=erf) 113 print>>erf, '\n*** Unrecoverable, server exiting!' 114 print>>erf, '-'*40
|
/external/tensorflow/tensorflow/core/api_def/python_api/ |
D | api_def_Erf.pbtxt | 4 name: "math.erf" 7 name: "erf" 13 >>> tf.math.erf([[1.0, 2.0, 3.0], [0.0, -1.0, -2.0]])
|
/external/arm-optimized-routines/math/test/ |
D | runulp.sh | 77 t erf 0 0xffff000000000000 10000 78 t erf 0x1p-1022 0x1p-26 40000 79 t erf -0x1p-1022 -0x1p-26 40000 80 t erf 0x1p-26 0x1p3 40000 81 t erf -0x1p-26 -0x1p3 40000 82 t erf 0 inf 40000
|
D | ulp_funcs.h | 16 F1 (erf) 22 D1 (erf)
|
/external/tensorflow/tensorflow/core/kernels/ |
D | cwise_op_erf.cc | 20 REGISTER4(UnaryOp, CPU, "Erf", functor::erf, float, Eigen::half, double, 25 REGISTER3(UnaryOp, GPU, "Erf", functor::erf, Eigen::half, float, double);
|
D | cwise_op_gpu_erf.cu.cc | 23 DEFINE_UNARY3(erf, Eigen::half, float, double);
|
/external/python/cpython3/Lib/idlelib/ |
D | rpc.py | 110 erf = sys.__stderr__ 111 print('\n' + '-'*40, file=erf) 112 print('Unhandled server exception!', file=erf) 113 print('Thread: %s' % threading.current_thread().name, file=erf) 114 print('Client Address: ', client_address, file=erf) 115 print('Request: ', repr(request), file=erf) 116 traceback.print_exc(file=erf) 117 print('\n*** Unrecoverable, server exiting!', file=erf) 118 print('-'*40, file=erf)
|
/external/arm-optimized-routines/pl/math/tools/ |
D | v_erf.sollya | 1 // polynomial for approximating erf(x). 17 poly = fpminimax(erf(scale*x+a), deg, [|D ...|], [0; 1]);
|
/external/tensorflow/tensorflow/lite/kernels/internal/reference/ |
D | gelu.h | 50 return 0.5f * in * (1.f + std::erf(in * M_SQRT1_2)); in GeluTransform() 76 (input_map.array() * static_cast<T>(M_SQRT1_2)).erf()); in Gelu()
|
/external/tensorflow/tensorflow/python/kernel_tests/math_ops/ |
D | cwise_ops_unary_test.py | 222 self._compareBoth(x, np.vectorize(math.erf), math_ops.erf) 237 self._compareBothSparse(x, np.vectorize(math.erf), math_ops.erf) 273 self._compareBoth(x, np.sign, math_ops.erf) 292 self._compareBothSparse(x, np.sign, math_ops.erf) 327 self._compareBoth(x, np.vectorize(math.erf), math_ops.erf) 346 self._compareBothSparse(x, np.vectorize(math.erf), math_ops.erf) 386 self._compareBoth(x, np.vectorize(math.erf), math_ops.erf) 394 self._compareBothSparse(x, np.vectorize(math.erf), math_ops.erf, tol=1e-3) 439 self._compareBoth(x, compute_f32(np.vectorize(math.erf)), math_ops.erf)
|
/external/rust/crates/libm/src/math/ |
D | mod.rs | 113 mod erf; module 221 pub use self::erf::erf; 222 pub use self::erf::erfc;
|
/external/eigen/unsupported/Eigen/src/SpecialFunctions/ |
D | SpecialFunctionsPacketMath.h | 35 Packet perf(const Packet& a) { using numext::erf; return erf(a); } in perf()
|
D | SpecialFunctionsHalf.h | 27 template<> EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::half erf(const Eigen::half& a) { in erf() function 28 return Eigen::half(Eigen::numext::erf(static_cast<float>(a))); in erf()
|
D | SpecialFunctionsBFloat16.h | 27 template<> EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16 erf(const Eigen::bfloat16& a) { in erf() function 28 return Eigen::bfloat16(Eigen::numext::erf(static_cast<float>(a))); in erf()
|
/external/clang/lib/Headers/ |
D | __clang_cuda_math_forward_declares.h | 71 __DEVICE__ double erf(double); 72 __DEVICE__ float erf(float); 200 using ::erf;
|
/external/eigen/doc/examples/ |
D | Cwise_erf.cpp | 8 std::cout << v.erf() << std::endl; in main()
|
/external/tensorflow/tensorflow/lite/python/authoring/ |
D | authoring_test.py | 74 erf = tf.math.erf(conv3d) 75 output = tf.math.tanh(erf)
|
/external/musl/src/math/ |
D | erfl.c | 106 return erf(x); in erfl() 347 return erf(x); in erfl()
|
/external/icu/icu4c/source/samples/ucnv/ |
D | data01.txt | 14 Il-mistoqsija oħt il-għerf. (Asking is the sister of knowing.)
|