Home
last modified time | relevance | path

Searched full:exponential (Results 1 – 25 of 915) sorted by relevance

12345678910>>...37

/third_party/mindspore/mindspore-src/source/tests/ut/python/nn/probability/distribution/
Dtest_exponential.py16 Test nn.probability.distribution.Exponential.
33 e = msd.Exponential()
35 e = msd.Exponential([0.1, 0.3, 0.5, 1.0], dtype=dtype.float32)
41 msd.Exponential([0.1], dtype=dtype.int32)
46 msd.Exponential([0.1], name=1.0)
51 msd.Exponential([0.1], seed='seed')
59 msd.Exponential([-0.1], dtype=dtype.float32)
61 msd.Exponential([0.0], dtype=dtype.float32)
66 Exponential distribution: initialize with rate.
71 self.e = msd.Exponential(0.5, dtype=dtype.float32)
[all …]
/third_party/mindspore/mindspore-src/source/tests/st/probability/distribution/
Dtest_exponential.py15 """test cases for Exponential distribution"""
28 Test class: probability of Exponential distribution.
32 self.e = msd.Exponential([[1.0], [0.5]], dtype=dtype.float32)
51 Test class: log probability of Exponential distribution.
55 self.e = msd.Exponential([[1.0], [0.5]], dtype=dtype.float32)
74 Test class: kl_loss between Exponential distributions.
78 self.e = msd.Exponential([1.5], dtype=dtype.float32)
81 return self.e.kl_loss('Exponential', x_)
97 Test class: mean/sd/mode of Exponential distribution.
101 self.e = msd.Exponential([0.5], dtype=dtype.float32)
[all …]
Dtest_get_dist_args.py67 Test class: Exponential distribution. `dist_spec_args` is `rate`.
71 self.expon = msd.Exponential(dtype=dtype.float32)
72 self.expon1 = msd.Exponential(1.0, dtype=dtype.float32)
73 self.expon2 = msd.Exponential(2.0, dtype=dtype.float32)
/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/nn/probability/distribution/
Dexponential.py15 """Exponential Distribution"""
26 class Exponential(Distribution): class
28 Exponential Distribution.
29 An Exponential distributio is a continuous distribution with the range :math:`[0, \inf)`
41 name (str): The name of the distribution. Default: ``'Exponential'`` .
46 `dtype` must be a float type because Exponential distributions are continuous.
60 >>> # To initialize a Exponential distribution of the probability 0.5.
61 >>> e1 = msd.Exponential(0.5, dtype=mindspore.float32)
62 >>> # An Exponential distribution can be initialized without arguments.
64 >>> e2 = msd.Exponential(dtype=mindspore.float32)
[all …]
D__init__.py25 from .exponential import Exponential
44 'Exponential',
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
Dautoscan_exponential.c2 * 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",
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
Dautoscan_exponential.c2 * 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",
/third_party/mesa3d/src/etnaviv/ci/
Detnaviv-gc7000-flakes.txt107 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 …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
Dfunc_exponential.hpp4 …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>
/third_party/mindspore/mindspore-src/source/docs/api/api_python/nn_probability/
Dmindspore.nn.probability.distribution.Exponential.rst1 mindspore.nn.probability.distribution.Exponential
4 …: mindspore.nn.probability.distribution.Exponential(rate=None, seed=None, dtype=mstype.float32, na…
6 指数分布(Exponential Distribution)。
18 - **name** (str) - 分布的名称。默认值: ``'Exponential'`` 。
/third_party/rust/rust/tests/ui/traits/new-solver/
Dexponential-trait-goals.stderr2 --> $DIR/exponential-trait-goals.rs:17:5
8 --> $DIR/exponential-trait-goals.rs:17:5
15 --> $DIR/exponential-trait-goals.rs:14:13
/third_party/skia/third_party/externals/icu/source/data/locales/
Dgd.txt30 exponential{"E"}
47 exponential{"اس"}
64 exponential{"×۱۰^"}
81 exponential{"E"}
98 exponential{"E"}
115 exponential{"E"}
132 exponential{"E"}
149 exponential{"E"}
167 exponential{"E"}
347 exponential{"E"}
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-double-to-string.h120 // The exponent_character is used in exponential representations. It is
136 // max_leading_padding_zeroes before returning the number in exponential
143 // returning an exponential representation. A zero added by the
150 // The min_exponent_width is used for exponential representations.
185 // Lower case 'e' for exponential values.
195 // exponential representation.
226 // - the longest exponential representation. (A negative number with
279 // Computes a representation in exponential format with requested_digits
281 // If requested_digits equals -1, then the shortest exponential representation
315 // either in exponential or decimal format, depending on
[all …]
/third_party/icu/icu4c/source/i18n/
Ddouble-conversion-double-to-string.h120 // The exponent_character is used in exponential representations. It is
136 // max_leading_padding_zeroes before returning the number in exponential
143 // returning an exponential representation. A zero added by the
150 // The min_exponent_width is used for exponential representations.
185 // Lower case 'e' for exponential values.
195 // exponential representation.
226 // - the longest exponential representation. (A negative number with
279 // Computes a representation in exponential format with requested_digits
281 // If requested_digits equals -1, then the shortest exponential representation
315 // either in exponential or decimal format, depending on
[all …]
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
Ddouble-to-string.h105 // 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 …]
/third_party/icu/icu4c/source/data/locales/
Dgd.txt30 exponential{"E"}
47 exponential{"اس"}
64 exponential{"×۱۰^"}
81 exponential{"E"}
98 exponential{"E"}
115 exponential{"E"}
132 exponential{"E"}
149 exponential{"E"}
167 exponential{"E"}
351 exponential{"E"}
[all …]
/third_party/skia/m133/third_party/externals/icu/source/i18n/
Ddouble-conversion-double-to-string.h129 // 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 …]
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
DExponentialTaper.java20 * Maps integer range info to a double value along an exponential scale.
64 public double exponentialToLinear(double exponential) { in exponentialToLinear() argument
65 return Math.log((exponential + offset) / a) / (b * Math.log(ROOT)); in exponentialToLinear()
/third_party/mindspore/mindspore-src/source/docs/api/api_python/dataset_audio/
Dmindspore.dataset.audio.FadeShape.rst8 …deShape.HALF_SINE`` 、 ``FadeShape.LINEAR`` 、 ``FadeShape.LOGARITHMIC`` 、 ``FadeShape.EXPONENTIAL``。
14 - **FadeShape.EXPONENTIAL**:表示淡入淡出形状为指数模式。
/third_party/rust/crates/regex/
DPERFORMANCE.md13 exponential time.
27 exponential behavior doesn't mean we are immune from large constant factors
237 ## Excessive counting can lead to exponential state blow up in the DFA
242 Wait, didn't I say that this crate guards against exponential worst cases?
244 an exponential blow up in the number of states. This crate specifically guards
245 against exponential blow up by doing two things:
260 In effect, this crate will detect exponential state blow up and fall back to
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlists/
Dgles2-master-PASS.txt3051 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_float_fragment
3052 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_float_vertex
3053 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec2_fragment
3054 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec2_vertex
3055 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec3_fragment
3056 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec3_vertex
3057 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec4_fragment
3058 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec4_vertex
3059 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp_float_fragment
3060 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp_float_vertex
[all …]
Dgles2-master.txt5096 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_float_vertex
5097 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_float_fragment
5098 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_float_vertex
5099 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_float_fragment
5100 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec2_vertex
5101 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec2_fragment
5102 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_vec2_vertex
5103 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_vec2_fragment
5104 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec3_vertex
5105 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec3_fragment
[all …]
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.2.x/
Dgles2-master.txt4825 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_float_vertex
4826 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_float_fragment
4827 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_float_vertex
4828 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_float_fragment
4829 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec2_vertex
4830 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec2_fragment
4831 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_vec2_vertex
4832 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_vec2_fragment
4833 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec3_vertex
4834 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec3_fragment
[all …]
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.2.x/src/
Dgles2-master.txt4825 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_float_vertex
4826 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_float_fragment
4827 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_float_vertex
4828 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_float_fragment
4829 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec2_vertex
4830 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec2_fragment
4831 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_vec2_vertex
4832 dEQP-GLES2.functional.shaders.operator.exponential.pow.highp_vec2_fragment
4833 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec3_vertex
4834 dEQP-GLES2.functional.shaders.operator.exponential.pow.mediump_vec3_fragment
[all …]
/third_party/vk-gl-cts/android/cts/main/
Dgles2-master-2020-03-01.txt3196 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_float_fragment
3197 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_float_vertex
3198 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec2_fragment
3199 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec2_vertex
3200 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec3_fragment
3201 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec3_vertex
3202 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec4_fragment
3203 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp2_vec4_vertex
3204 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp_float_fragment
3205 dEQP-GLES2.functional.shaders.constant_expressions.builtin_functions.exponential.exp_float_vertex
[all …]

12345678910>>...37