Home
last modified time | relevance | path

Searched refs:Gamma (Results 1 – 25 of 105) sorted by relevance

12345

/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Igammac.pbtxt3 summary: "Compute the upper regularized incomplete Gamma function `Q(a, x)`."
5 The upper regularized incomplete Gamma function is defined as:
7 \\(Q(a, x) = Gamma(a, x) / Gamma(a) = 1 - P(a, x)\\)
11 \\(Gamma(a, x) = \int_{x}^{\infty} t^{a-1} exp(-t) dt\\)
13 is the upper incomplete Gamma function.
16 Gamma function.
Dapi_def_Igamma.pbtxt3 summary: "Compute the lower regularized incomplete Gamma function `P(a, x)`."
5 The lower regularized incomplete Gamma function is defined as:
8 \\(P(a, x) = gamma(a, x) / Gamma(a) = 1 - Q(a, x)\\)
14 is the lower incomplete Gamma function.
17 Gamma function.
Dapi_def_RandomGammaGrad.pbtxt4 summary: "Computes the derivative of a Gamma random sample w.r.t. `alpha`."
/external/tensorflow/tensorflow/python/kernel_tests/distributions/
Dgamma_test.py51 gamma = gamma_lib.Gamma(concentration=alpha, rate=beta)
65 gamma = gamma_lib.Gamma(concentration=alpha, rate=beta)
80 gamma = gamma_lib.Gamma(concentration=1., rate=rate)
91 gamma = gamma_lib.Gamma(concentration=alpha, rate=beta)
111 gamma = gamma_lib.Gamma(concentration=alpha, rate=beta)
133 gamma = gamma_lib.Gamma(concentration=alpha, rate=beta)
144 gamma = gamma_lib.Gamma(concentration=alpha_v, rate=beta_v)
154 gamma = gamma_lib.Gamma(concentration=alpha_v, rate=beta_v)
163 gamma = gamma_lib.Gamma(
172 gamma = gamma_lib.Gamma(
[all …]
/external/oboe/samples/RhythmGame/third_party/glm/gtc/
Dcolor_space.inl33 GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const& ColorSRGB, T Gamma)
36 …static_cast<T>(0.055)) * static_cast<T>(0.94786729857819905213270142180095), vecType<T, P>(Gamma)),
45 GLM_FUNC_QUALIFIER static tvec4<T, P> call(tvec4<T, P> const& ColorSRGB, T Gamma)
47 …return tvec4<T, P>(compute_srgbToRgb<T, P, tvec3>::call(tvec3<T, P>(ColorSRGB), Gamma), ColorSRGB.…
59 GLM_FUNC_QUALIFIER vecType<T, P> convertLinearToSRGB(vecType<T, P> const& ColorLinear, T Gamma) argument
61 return detail::compute_rgbToSrgb<T, P, vecType>::call(ColorLinear, static_cast<T>(1) / Gamma);
71 GLM_FUNC_QUALIFIER vecType<T, P> convertSRGBToLinear(vecType<T, P> const& ColorSRGB, T Gamma) argument
73 return detail::compute_srgbToRgb<T, P, vecType>::call(ColorSRGB, Gamma);
Dcolor_space.hpp41 GLM_FUNC_DECL vecType<T, P> convertLinearToSRGB(vecType<T, P> const & ColorLinear, T Gamma);
51 GLM_FUNC_DECL vecType<T, P> convertSRGBToLinear(vecType<T, P> const & ColorSRGB, T Gamma);
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
DBetaDistributionImpl.java22 import org.apache.commons.math.special.Gamma;
121 z = Gamma.logGamma(alpha) + Gamma.logGamma(beta) - Gamma.logGamma(alpha + beta); in recomputeZ()
DTDistributionImpl.java25 import org.apache.commons.math.special.Gamma;
118 …return FastMath.exp(Gamma.logGamma(nPlus1Over2) - 0.5 * (FastMath.log(FastMath.PI) + FastMath.log(… in density()
119 Gamma.logGamma(n/2) - nPlus1Over2 * FastMath.log(1 + x * x /n)); in density()
DGammaDistributionImpl.java24 import org.apache.commons.math.special.Gamma;
100 ret = Gamma.regularizedGammaP(alpha, x / beta); in cumulativeProbability()
206 …th.pow(x / beta, alpha - 1) / beta * FastMath.exp(-x / beta) / FastMath.exp(Gamma.logGamma(alpha)); in density()
DWeibullDistributionImpl.java24 import org.apache.commons.math.special.Gamma;
316 return sc * FastMath.exp(Gamma.logGamma(1 + (1 / sh))); in calculateNumericalMean()
335 FastMath.exp(Gamma.logGamma(1 + (2 / sh))) - in calculateNumericalVariance()
DSaddlePointExpansion.java19 import org.apache.commons.math.special.Gamma;
114 ret = Gamma.logGamma(z + 1.0) - (z + 0.5) * FastMath.log(z) + in getStirlingError()
DPoissonDistributionImpl.java24 import org.apache.commons.math.special.Gamma;
219 return Gamma.regularizedGammaQ((double) x + 1, mean, epsilon, maxIterations); in cumulativeProbability()
/external/tensorflow/tensorflow/python/ops/distributions/
Dgamma.py43 class Gamma(distribution.Distribution): class
172 super(Gamma, self).__init__(
287 class GammaWithSoftplusConcentrationRate(Gamma):
313 @kullback_leibler.RegisterKL(Gamma, Gamma)
/external/apache-commons-math/src/main/java/org/apache/commons/math/special/
DBeta.java196 ret = Gamma.logGamma(a) + Gamma.logGamma(b) - in logBeta()
197 Gamma.logGamma(a + b); in logBeta()
DErf.java58 double ret = Gamma.regularizedGammaP(0.5, x * x, 1.0e-15, 10000); in erf()
88 final double ret = Gamma.regularizedGammaQ(0.5, x * x, 1.0e-15, 10000); in erfc()
DGamma.java30 public class Gamma { class
74 private Gamma() { in Gamma() method in Gamma
/external/zucchini/fuzzers/testdata/
Dold_imposed_archive.txt8 Lorem Ipsum, Ipsum Lorem, Alpha Beta Gamma <1,1>
30 Lorem Ipsum, Ipsum Lorem, Alpha Beta Gamma <1,1>
Dnew_imposed_archive.txt9 Lorem Ipsum, Ipsum Lorem, Alpha Beta Gamma <1,1>
30 Lorem Ipsum, Ipsum Lorem, Alpha Beta Gamma <1,1>
/external/crosvm/base/src/
Dwait_context.rs252 Gamma(u32), in event_token_derive() enumerator
266 Token::from_raw_token(Token::Gamma(55).as_raw_token()), in event_token_derive()
267 Token::Gamma(55) in event_token_derive()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/
DMSP430InstrFormats.td76 let DecoderNamespace = "Gamma";
102 let DecoderNamespace = "Gamma";
132 let DecoderNamespace = "Gamma";
162 let DecoderNamespace = "Gamma";
203 let DecoderNamespace = "Gamma";
229 let DecoderNamespace = "Gamma";
259 let DecoderNamespace = "Gamma";
289 let DecoderNamespace = "Gamma";
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.distributions.-gamma.pbtxt1 path: "tensorflow.distributions.Gamma"
3 is_instance: "<class \'tensorflow.python.ops.distributions.gamma.Gamma\'>"
49 …w_nan_stats\', \'name\'], varargs=None, keywords=None, defaults=[\'False\', \'True\', \'Gamma\'], "
/external/pdfium/testing/resources/
Dmultiple_form_types.in84 /Opt [(Alpha) (Beta) (Gamma) (Delta) (Epsilon)]
85 /V [(Epsilon) (Gamma)]
Dlistbox_form.in109 /Opt [(Alpha) (Beta) (Gamma) (Delta) (Epsilon)]
110 /V [(Epsilon) (Gamma)]
/external/clang/test/Sema/
Dexprs.c80 void test7(int *P, _Complex float Gamma) { in test7() argument
81 …P = (P-42) + Gamma*4; // expected-error {{invalid operands to binary expression ('int *' and '_Co… in test7()
/external/crosvm/base/src/sys/unix/
Dpoll.rs345 Gamma(u32), in event_token_derive() enumerator
359 Token::from_raw_token(Token::Gamma(55).as_raw_token()), in event_token_derive()
360 Token::Gamma(55) in event_token_derive()

12345