| /external/tensorflow/tensorflow/python/kernel_tests/distributions/ |
| D | exponential_test.py | 25 from tensorflow.python.ops.distributions import exponential as exponential_lib 50 exponential = exponential_lib.Exponential(rate=lam) 52 log_pdf = exponential.log_prob(x) 55 pdf = exponential.prob(x) 67 exponential = exponential_lib.Exponential(rate=rate) 68 log_pdf = exponential.log_prob(0.) 77 exponential = exponential_lib.Exponential(rate=lam) 79 cdf = exponential.cdf(x) 93 exponential = exponential_lib.Exponential(rate=lam) 95 log_survival = exponential.log_survival_function(x) [all …]
|
| /external/tensorflow/tensorflow/python/ops/distributions/ |
| D | exponential.py | 15 """The Exponential distribution class.""" 31 "Exponential", 36 @tf_export(v1=["distributions.Exponential"]) 37 class Exponential(gamma.Gamma): class 38 """Exponential distribution. 40 The Exponential distribution is parameterized by an event `rate` parameter. 53 The Exponential distribution is a special case of the Gamma distribution, 57 Exponential(rate) = Gamma(concentration=1., rate) 60 The Exponential distribution uses a `rate` parameter, or "inverse scale", 64 X ~ Exponential(rate=1) [all …]
|
| /external/pytorch/torch/distributions/ |
| D | exponential.py | 11 __all__ = ["Exponential"] 14 class Exponential(ExponentialFamily): class 16 Creates a Exponential distribution parameterized by :attr:`rate`. 21 >>> m = Exponential(torch.tensor([1.0])) 22 >>> m.sample() # Exponential distributed with rate=1 55 new = self._get_checked_instance(Exponential, _instance) 58 super(Exponential, new).__init__(batch_shape, validate_args=False)
|
| D | kl.py | 19 from .exponential import Exponential 274 @register_kl(Exponential, Exponential) 285 "The cross KL-divergence between different exponential families cannot \ 532 @register_kl(Beta, Exponential) 585 @register_kl(ContinuousBernoulli, Exponential) 619 @register_kl(Exponential, Beta) 620 @register_kl(Exponential, ContinuousBernoulli) 621 @register_kl(Exponential, Pareto) 622 @register_kl(Exponential, Uniform) 627 @register_kl(Exponential, Gamma) [all …]
|
| /external/tensorflow/tensorflow/compiler/mlir/xla/tests/translate/ |
| D | if_conditional.hlotxt | 18 …%exponential.14 = f32[] exponential(%get-tuple-element.13), metadata={op_type="Exp" op_name="cond/… 19 ROOT %tuple.15 = (f32[]) tuple(%exponential.14), metadata={op_name="XLA_Retvals"} 39 // CHECK: [[R3:%.+]] = mhlo.exponential [[A0]] 74 %exponential.0 = f32[] exponential(%get-tuple-element.1) 75 %exponential.1 = f32[] exponential(%get-tuple-element.2) 76 %exponential.2 = f32[] exponential(%get-tuple-element.3) 77 %tuple.0 = (f32[], f32[]) tuple(%exponential.1, %exponential.2) 78 ROOT %tuple.1 = ((f32[], f32[]), f32[]) tuple(%tuple.0, %exponential.0) 90 //CHECK-NEXT: %[[EXP0:.*]] = mhlo.exponential %[[A0]] : tensor<f32> 91 //CHECK-NEXT: %[[EXP1:.*]] = mhlo.exponential %[[A1]] : tensor<f32> [all …]
|
| /external/openthread/tests/scripts/thread-cert/ |
| D | v1_2_LowPower_7_1_02_SingleProbeLinkMetricsWithoutEnhancedAck.py | 105 # ---- Type / Average Enum = 1 (Exponential Moving Avg) 123 # ---- Type / Average Enum = 1 (Exponential Moving Avg) 143 # ---- Type / Average Enum = 1 (Exponential Moving Avg) 156 # ---- Type / Average Enum = 1 (Exponential Moving Avg) 169 # ---- Type / Average Enum = 1 (Exponential Moving Avg) 201 # ---- Type / Average Enum = 1 (Exponential Moving Avg) 218 # ---- Type / Average Enum = 1 (Exponential Moving Avg) 238 # ---- Type / Average Enum = 1 (Exponential Moving Avg) 254 # ---- Type / Average Enum = 1 (Exponential Moving Avg) 274 # ---- Type / Average Enum = 1 (Exponential Moving Avg) [all …]
|
| /external/perfetto/docs/design-docs/ |
| D | heapprofd-sampling.md | 41 then repeatedly draw from the exponential distribution (which is the 43 above 0. The amount of times we had to draw from the exponential 53 exponential draw approach, as for a non-sample, we only need to decrement a 55 from exponential for every sample) is more expensive. 66 We will sample an allocation with probability Exponential(sampling rate) < 70 Because the exponential distribution is memoryless, we can add together 87 sum. This is because the exponential distribution we use is memoryless. 122 estimating the geometric distribution using an exponential distribution, as its 126 Draw sample from exponential distribution with p = 1 / 32000: 163 time, then the memorylessness property of the exponential distribution would
|
| /external/mesa3d/src/etnaviv/ci/ |
| D | etnaviv-gc7000-flakes.txt | 107 dEQP-GLES2.functional.shaders.random.exponential.fragment.28 108 dEQP-GLES2.functional.shaders.random.exponential.fragment.38 109 dEQP-GLES2.functional.shaders.random.exponential.fragment.55 110 dEQP-GLES2.functional.shaders.random.exponential.fragment.64 111 dEQP-GLES2.functional.shaders.random.exponential.fragment.67 112 dEQP-GLES2.functional.shaders.random.exponential.fragment.70 113 dEQP-GLES2.functional.shaders.random.exponential.fragment.78 114 dEQP-GLES2.functional.shaders.random.exponential.fragment.88 115 dEQP-GLES2.functional.shaders.random.exponential.fragment.96 116 dEQP-GLES2.functional.shaders.random.exponential.vertex.33 [all …]
|
| /external/wpa_supplicant_8/wpa_supplicant/ |
| D | autoscan_exponential.c | 2 * WPA Supplicant - auto scan exponential module 59 wpa_printf(MSG_DEBUG, "autoscan exponential: base exponential is %d " in autoscan_exponential_init() 81 wpa_printf(MSG_DEBUG, "autoscan exponential: scan result " in autoscan_exponential_notify_scan() 100 .name = "exponential",
|
| /external/oboe/samples/RhythmGame/third_party/glm/detail/ |
| D | func_exponential.hpp | 4 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 6 /// @defgroup core_func_exponential Exponential functions 31 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 41 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 53 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 63 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 74 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 84 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 96 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a>
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math3/distribution/ |
| D | ExponentialDistribution.java | 29 * Implementation of the exponential distribution. 31 * @see <a href="http://en.wikipedia.org/wiki/Exponential_distribution">Exponential distribution 33 * @see <a href="http://mathworld.wolfram.com/ExponentialDistribution.html">Exponential distribution 48 * Used when generating Exponential samples. Table containing the constants q_i = sum_{j=1}^i 92 * Create an exponential distribution with the given mean. 107 * Create an exponential distribution with the given mean. 126 * Creates an exponential distribution. 139 * Creates an exponential distribution. 190 * <li><a href="http://mathworld.wolfram.com/ExponentialDistribution.html">Exponential
|
| /external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
| D | MatrixExponential.h | 59 /** \brief Compute the (3,3)-Padé approximant to the exponential. 76 /** \brief Compute the (5,5)-Padé approximant to the exponential. 94 /** \brief Compute the (7,7)-Padé approximant to the exponential. 115 /** \brief Compute the (9,9)-Padé approximant to the exponential. 137 /** \brief Compute the (13,13)-Padé approximant to the exponential. 162 /** \brief Compute the (17,17)-Padé approximant to the exponential. 200 /** \brief Compute Padé approximant to the exponential. 369 /* Computes the matrix exponential 371 * \param arg argument of matrix exponential (should be plain object) 388 * \brief Proxy for the matrix exponential of some matrix (expression). [all …]
|
| /external/private-join-and-compute/private_join_and_compute/crypto/ |
| D | elgamal.proto | 36 // To encrypt a small message m in exponential ElGamal encryption scheme: 41 // Note: The exponential ElGamal encryption scheme is an additively homomorphic 55 // To decrypt a ciphertext (u, e) in exponential ElGamal encryption scheme: 65 // m = log_g (e * (u^{x_1})^{-1} * (u^{x_2})^{-1}) in exponential ElGamal. 78 // In exponential ElGamal encryption scheme, for public key (g, y), small
|
| /external/libbrillo/brillo/ |
| D | backoff_entry.h | 13 // Provides the core logic needed for randomized exponential back-off 24 // exponential back-off rules. 50 // is the first delay once we start exponential backoff. 68 // be rejected at the present time due to exponential back-off policy. 101 // Timestamp calculated by the exponential back-off algorithm at which we are
|
| /external/aws-sdk-java-v2/core/sdk-core/src/main/java/software/amazon/awssdk/core/retry/backoff/ |
| D | EqualJitterBackoffStrategy.java | 31 …* backoff strategy will first compute an exponential delay based on the current number of retries,… 33 * a random delay computed as a random number between 0 and half of the exponential delay plus one. 35 …* For example, using a base delay of 100, a max backoff time of 10000 an exponential delay of 400 … 36 …ry attempt. The final computed delay before the next retry will be half of the computed exponential 41 * between 0 and the computed exponential delay.
|
| /external/cronet/stable/net/base/ |
| D | backoff_entry.h | 21 // Provides the core logic needed for randomized exponential back-off 32 // exponential back-off rules. 58 // is the first delay once we start exponential backoff. 82 // be rejected at the present time due to exponential back-off policy. 120 // Timestamp calculated by the exponential back-off algorithm at which we are
|
| /external/cronet/tot/net/base/ |
| D | backoff_entry.h | 21 // Provides the core logic needed for randomized exponential back-off 32 // exponential back-off rules. 58 // is the first delay once we start exponential backoff. 82 // be rejected at the present time due to exponential back-off policy. 120 // Timestamp calculated by the exponential back-off algorithm at which we are
|
| /external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/io/ |
| D | StandardRetryOptions.java | 17 * Sets the exponential backoff configuration 18 * @param backoffRetryOptions exponential backoff configuration 27 * @return current exponential backoff retry options
|
| /external/cronet/stable/base/third_party/double_conversion/double-conversion/ |
| D | double-to-string.h | 105 // The exponent_character is used in exponential representations. It is 121 // max_leading_padding_zeroes before returning the number in exponential 128 // returning an exponential representation. A zero added by the 135 // The min_exponent_width is used for exponential representations. 170 // Lower case 'e' for exponential values. 180 // exponential representation. 211 // - the longest exponential representation. (A negative number with 264 // Computes a representation in exponential format with requested_digits 266 // If requested_digits equals -1, then the shortest exponential representation 300 // either in exponential or decimal format, depending on [all …]
|
| /external/cronet/tot/base/third_party/double_conversion/double-conversion/ |
| D | double-to-string.h | 105 // The exponent_character is used in exponential representations. It is 121 // max_leading_padding_zeroes before returning the number in exponential 128 // returning an exponential representation. A zero added by the 135 // The min_exponent_width is used for exponential representations. 170 // Lower case 'e' for exponential values. 180 // exponential representation. 211 // - the longest exponential representation. (A negative number with 264 // Computes a representation in exponential format with requested_digits 266 // If requested_digits equals -1, then the shortest exponential representation 300 // either in exponential or decimal format, depending on [all …]
|
| /external/double-conversion/double-conversion/ |
| D | double-to-string.h | 105 // The exponent_character is used in exponential representations. It is 121 // max_leading_padding_zeroes before returning the number in exponential 128 // returning an exponential representation. A zero added by the 135 // The min_exponent_width is used for exponential representations. 170 // Lower case 'e' for exponential values. 180 // exponential representation. 211 // - the longest exponential representation. (A negative number with 264 // Computes a representation in exponential format with requested_digits 266 // If requested_digits equals -1, then the shortest exponential representation 300 // either in exponential or decimal format, depending on [all …]
|
| /external/tensorflow/tensorflow/core/api_def/base_api/ |
| D | api_def_Exp.pbtxt | 3 summary: "Computes exponential of x element-wise. \\\\(y = e^x\\\\)." 5 This function computes the exponential of every element in the input tensor. 18 For complex numbers, the exponential value is calculated as follows:
|
| /external/tensorflow/tensorflow/python/keras/ |
| D | activations.py | 99 """Exponential Linear Unit. 101 The exponential linear unit (ELU) with `alpha > 0` is: 135 The exponential linear unit (ELU) activation function: `x` if `x > 0` and 140 [Fast and Accurate Deep Network Learning by Exponential Linear Units 149 """Scaled Exponential Linear Unit (SELU). 151 The Scaled Exponential Linear Unit (SELU) activation function is defined as: 186 The scaled exponential unit activation: `scale * elu(x, alpha)`. 410 @keras_export('keras.activations.exponential') 412 def exponential(x): function 413 """Exponential activation function. [all …]
|
| /external/icu/icu4c/source/i18n/ |
| D | double-conversion-double-to-string.h | 129 // The exponent_character is used in exponential representations. It is 145 // max_leading_padding_zeroes before returning the number in exponential 152 // returning an exponential representation. A zero added by the 175 // The min_exponent_width is used for exponential representations. 210 // Lower case 'e' for exponential values. 220 // exponential representation. 251 // - the longest exponential representation. (A negative number with 304 // Computes a representation in exponential format with requested_digits 306 // If requested_digits equals -1, then the shortest exponential representation 340 // either in exponential or decimal format, depending on [all …]
|
| /external/icu/libicu/cts_headers/ |
| D | double-conversion-double-to-string.h | 129 // The exponent_character is used in exponential representations. It is 145 // max_leading_padding_zeroes before returning the number in exponential 152 // returning an exponential representation. A zero added by the 175 // The min_exponent_width is used for exponential representations. 210 // Lower case 'e' for exponential values. 220 // exponential representation. 251 // - the longest exponential representation. (A negative number with 304 // Computes a representation in exponential format with requested_digits 306 // If requested_digits equals -1, then the shortest exponential representation 340 // either in exponential or decimal format, depending on [all …]
|