/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/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/python/cpython3/Lib/idlelib/ |
D | run.py | 315 erf = sys.__stderr__ 316 print('\n' + '-'*40, file=erf) 317 print('Unhandled server exception!', file=erf) 318 print('Thread: %s' % threading.current_thread().name, file=erf) 319 print('Client Address: ', client_address, file=erf) 320 print('Request: ', repr(request), file=erf) 321 traceback.print_exc(file=erf) 322 print('\n*** Unrecoverable, server exiting!', file=erf) 323 print('-'*40, file=erf)
|
D | rpc.py | 111 erf = sys.__stderr__ 112 print('\n' + '-'*40, file=erf) 113 print('Unhandled server exception!', file=erf) 114 print('Thread: %s' % threading.current_thread().name, file=erf) 115 print('Client Address: ', client_address, file=erf) 116 print('Request: ', repr(request), file=erf) 117 traceback.print_exc(file=erf) 118 print('\n*** Unrecoverable, server exiting!', file=erf) 119 print('-'*40, file=erf)
|
/external/tensorflow/tensorflow/core/api_def/python_api/ |
D | api_def_Erf.pbtxt | 4 name: "math.erf" 7 name: "erf"
|
/external/tensorflow/tensorflow/core/kernels/ |
D | cwise_op_erf.cc | 19 REGISTER3(UnaryOp, CPU, "Erf", functor::erf, float, Eigen::half, double); 21 REGISTER3(UnaryOp, GPU, "Erf", functor::erf, float, Eigen::half, double);
|
D | cwise_op_gpu_erf.cu.cc | 22 DEFINE_UNARY3(erf, Eigen::half, float, double);
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | cwise_ops_unary_test.py | 225 self._compareBoth(x, np.vectorize(math.erf), math_ops.erf) 240 self._compareBothSparse(x, np.vectorize(math.erf), math_ops.erf) 274 self._compareBoth(x, np.sign, math_ops.erf) 293 self._compareBothSparse(x, np.sign, math_ops.erf) 328 self._compareBoth(x, np.vectorize(math.erf), math_ops.erf) 347 self._compareBothSparse(x, np.vectorize(math.erf), math_ops.erf) 374 self._compareBoth(x, np.vectorize(math.erf), math_ops.erf) 389 self._compareBothSparse(x, np.vectorize(math.erf), math_ops.erf, tol=1e-3)
|
/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 | SpecialFunctionsFunctors.h | 194 using numext::erf; return erf(a);
|
/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/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/ |
D | CudaSpecialFunctions.h | 86 using numext::erf; 87 return make_double2(erf(a.x), erf(a.y));
|
/external/eigen/doc/examples/ |
D | Cwise_erf.cpp | 8 std::cout << v.erf() << std::endl; in main()
|
/external/tensorflow/tensorflow/contrib/labeled_tensor/ |
D | __init__.py | 72 erf = _core.erf variable
|
/external/icu/icu4c/source/samples/ucnv/ |
D | data01.txt | 14 Il-mistoqsija oħt il-għerf. (Asking is the sister of knowing.)
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/special/ |
D | Erf.java | 54 public static double erf(double x) throws MathException { in erf() method in Erf
|
/external/iproute2/netem/ |
D | normal.c | 20 return .5 + .5*erf((x-mu)/(sqrt(2.0)*sigma)); in normal()
|
D | paretonormal.c | 28 return .5 + .5*erf((x-mu)/(sqrt(2.0)*sigma)); in normal()
|
/external/python/cpython3/PC/ |
D | _msi.c | 191 ERF erf; in fcicreate() local 234 hfci = FCICreate(&erf, cb_fileplaced, cb_alloc, cb_free, in fcicreate() 239 PyErr_Format(PyExc_ValueError, "FCI error %d", erf.erfOper); in fcicreate() 267 if(erf.fError) in fcicreate() 268 PyErr_Format(PyExc_ValueError, "FCI error %d", erf.erfOper); /* XXX better error type */ in fcicreate()
|
/external/tensorflow/tensorflow/compiler/tf2xla/lib/ |
D | random.cc | 31 return (1.0 + std::erf(x / std::sqrt(2.0))) / 2.0; in TruncatedNormal()
|
/external/eigen/doc/ |
D | CoeffwiseMathFunctionsTable.dox | 406 a.\link ArrayBase::erf erf\endlink(); \n 407 \link Eigen::erf erf\endlink(a); 411 using <a href="http://en.cppreference.com/w/cpp/numeric/math/erf">std::erf</a>; \cpp11 \n 412 erf(a[i]);
|
/external/python/cpython2/PC/ |
D | _msi.c | 187 ERF erf; in fcicreate() local 230 hfci = FCICreate(&erf, cb_fileplaced, cb_alloc, cb_free, in fcicreate() 235 PyErr_Format(PyExc_ValueError, "FCI error %d", erf.erfOper); in fcicreate() 259 PyErr_Format(PyExc_ValueError, "FCI error %d", erf.erfOper); /* XXX better error type */ in fcicreate()
|