/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_MatrixLogarithm.pbtxt | 20 summary: "Computes the matrix logarithm of one or more square matrices:" 26 real, then casting to a complex matrix, taking the logarithm and casting back 29 This function computes the matrix logarithm using the Schur-Parlett algorithm.
|
D | api_def_Log1p.pbtxt | 3 summary: "Computes natural logarithm of (1 + x) element-wise."
|
D | api_def_Log.pbtxt | 3 summary: "Computes natural logarithm of x element-wise."
|
/external/eigen/Eigen/src/Core/ |
D | GlobalFunctions.h | 69 …EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(lgamma,scalar_lgamma_op,natural logarithm of the gamma function,\… 74 …EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(log,scalar_log_op,natural logarithm,\sa Eigen::log10 DOXCOMMA Arr… 75 …EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(log1p,scalar_log1p_op,natural logarithm of 1 plus the value,\sa A… 76 …EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(log10,scalar_log10_op,base 10 logarithm,\sa Eigen::log DOXCOMMA A…
|
/external/eigen/unsupported/Eigen/ |
D | MatrixFunctions | 36 * - \ref matrixbase_log "MatrixBase::log()", for computing the matrix logarithm 170 Compute the matrix logarithm. 176 \param[in] M invertible matrix whose logarithm is to be computed. 177 \returns expression representing the matrix logarithm root of \p M. 179 The matrix logarithm of \f$ M \f$ is a matrix \f$ X \f$ such that 181 the scalar logarithm, the equation \f$ \exp(X) = M \f$ may have 185 The matrix logarithm is different from applying the log function to all the entries in the matrix. 193 This function computes the matrix logarithm using the Schur-Parlett 195 logarithm of an atomic block is computed by MatrixLogarithmAtomic, 243 logarithm. This is different from raising all the entries in the matrix [all …]
|
/external/llvm-project/llvm/test/tools/llvm-cov/Inputs/multithreaded_report/ |
D | bytes.h | 4 inline double logarithm(uint8_t v) { in logarithm() function
|
D | words.h | 4 inline double logarithm(uint16_t v) { in logarithm() function
|
D | bytes.cc | 9 double a = logarithm(i); in loopBytes()
|
D | words.cc | 9 double a = logarithm(i); in loopWords()
|
/external/llvm-project/llvm/test/CodeGen/SystemZ/ |
D | vec-log-01.ll | 1 ; Test v2f64 logarithm.
|
/external/llvm/test/CodeGen/SystemZ/ |
D | vec-log-01.ll | 1 ; Test v2f64 logarithm.
|
/external/python/cpython2/Doc/library/ |
D | zlib.rst | 89 * +9 to +15: The base-two logarithm of the window size, which 95 window size logarithm, while producing a raw output stream with no 99 window size logarithm, while including a basic :program:`gzip` header 159 * +8 to +15: The base-two logarithm of the window size. The input 166 logarithm. The input must be a raw stream with no header or trailer. 169 the window size logarithm. The input must include a gzip header and 173 the window size logarithm, and automatically accepts either
|
D | math.rst | 184 With one argument, return the natural logarithm of *x* (to base *e*). 186 With two arguments, return the logarithm of *x* to the given *base*, 195 Return the natural logarithm of *1+x* (base *e*). The 203 Return the base-10 logarithm of *x*. This is usually more accurate 356 Return the natural logarithm of the absolute value of the Gamma
|
D | cmath.rst | 99 Returns the logarithm of *x* to the given *base*. If the *base* is not 100 specified, returns the natural logarithm of *x*. There is one branch cut, from 0 109 Return the base-10 logarithm of *x*. This has the same branch cut as
|
/external/python/cpython3/Doc/library/ |
D | zlib.rst | 84 * +9 to +15: The base-two logarithm of the window size, which 90 window size logarithm, while producing a raw output stream with no 94 window size logarithm, while including a basic :program:`gzip` header 150 * +8 to +15: The base-two logarithm of the window size. The input 157 logarithm. The input must be a raw stream with no header or trailer. 160 the window size logarithm. The input must include a gzip header and 164 the window size logarithm, and automatically accepts either
|
D | cmath.rst | 94 Returns the logarithm of *x* to the given *base*. If the *base* is not 95 specified, returns the natural logarithm of *x*. There is one branch cut, from 0 101 Return the base-10 logarithm of *x*. This has the same branch cut as
|
D | math.rst | 371 With one argument, return the natural logarithm of *x* (to base *e*). 373 With two arguments, return the logarithm of *x* to the given *base*, 379 Return the natural logarithm of *1+x* (base *e*). The 385 Return the base-2 logarithm of *x*. This is usually more accurate than 398 Return the base-10 logarithm of *x*. This is usually more accurate 585 Return the natural logarithm of the absolute value of the Gamma
|
/external/llvm-project/libclc/generic/lib/math/ |
D | ep_log.cl | 45 // "Table-driven implementation of the logarithm function in IEEE
|
D | log1p.cl | 101 // "Table-driven implementation of the logarithm function in IEEE
|
/external/eigen/doc/ |
D | CoeffwiseMathFunctionsTable.dox | 98 <td>natural (base \f$ e \f$) logarithm (\f$ \ln({a_i}) \f$)</td> 111 <td>natural (base \f$ e \f$) logarithm of 1 plus \n the given number (\f$ \ln({1+a_i}) \f$)</td> 122 <td>base 10 logarithm (\f$ \log_{10}({a_i}) \f$)</td> 435 <td>natural logarithm of the gamma function</td>
|
/external/swiftshader/src/Pipeline/ |
D | ShaderCore.cpp | 212 Float4 logarithm(RValue<Float4> x, bool pp) in logarithm() function 444 return logarithm(x + Sqrt(x + Float4(1.0f)) * Sqrt(x - Float4(1.0f)), pp); in arccosh() 449 return logarithm(x + Sqrt(x * x + Float4(1.0f)), pp); in arcsinh() 454 return logarithm((Float4(1.0f) + x) / (Float4(1.0f) - x), pp) * Float4(0.5f); in arctanh()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | TargetOpcodes.def | 475 /// Floating point base-e logarithm of a value. 478 /// Floating point base-2 logarithm of a value. 481 /// Floating point base-10 logarithm of a value.
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | TargetOpcodes.def | 548 /// Floating point base-e logarithm of a value. 551 /// Floating point base-2 logarithm of a value. 554 /// Floating point base-10 logarithm of a value.
|
/external/swiftshader/src/Shader/ |
D | ShaderCore.cpp | 174 Float4 logarithm(RValue<Float4> x, bool absolute, bool pp) in logarithm() function 460 return logarithm(x + Sqrt(x + Float4(1.0f)) * Sqrt(x - Float4(1.0f)), pp); in arccosh() 465 return logarithm(x + Sqrt(x * x + Float4(1.0f)), pp); in arcsinh() 470 return logarithm((Float4(1.0f) + x) / (Float4(1.0f) - x), pp) * Float4(0.5f); in arctanh() 1165 dst.x = logarithm(src.x, false, pp); in log() 1166 dst.y = logarithm(src.y, false, pp); in log() 1167 dst.z = logarithm(src.z, false, pp); in log() 1168 dst.w = logarithm(src.w, false, pp); in log()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/ |
D | GenericOpcodes.td | 673 // Floating point base-e logarithm of a value. 680 // Floating point base-2 logarithm of a value. 687 // Floating point base-10 logarithm of a value.
|