Home
last modified time | relevance | path

Searched defs:mean (Results 1 – 25 of 1129) sorted by relevance

12345678910>>...46

/aosp_15_r20/external/aws-sdk-java-v2/test/sdk-benchmarks/src/main/resources/software/amazon/awssdk/benchmark/
H A Dbaseline.json13 "mean": 11083.712145086858, number
33 "mean": 3133.078992847664, number
53 "mean": 9400.788325804802, number
73 "mean": 10081.234880927226, number
93 "mean": 2318.064309904416, number
113 "mean": 2668.2980888540214, number
133 "mean": 6452.047990499835, number
153 "mean": 7299.549654768969, number
173 "mean": 2253.2698214846414, number
193 "mean": 2349.62389971199, number
[all …]
/aosp_15_r20/external/guava/android/guava-tests/benchmark/com/google/common/math/
H A DStatsBenchmark.java36 double mean(double[] values) { in mean() method
46 double mean(double[] values) { in mean() method
60 double mean(double[] values) { in mean() method
61 double mean = values[0]; in mean() local
69 abstract double mean(double[] values); in mean() method in StatsBenchmark.MeanAlgorithm
73 private final double mean; field in StatsBenchmark.MeanAndVariance
76 MeanAndVariance(double mean, double variance) { in MeanAndVariance()
97 double mean = meanAlgorithm.mean(values); in variance() local
109 double mean = meanAlgorithm.mean(values); in variance() local
129 double mean = values[0]; in variance() local
/aosp_15_r20/external/guava/guava-tests/benchmark/com/google/common/math/
H A DStatsBenchmark.java36 double mean(double[] values) { in mean() method
46 double mean(double[] values) { in mean() method
60 double mean(double[] values) { in mean() method
61 double mean = values[0]; in mean() local
69 abstract double mean(double[] values); in mean() method in StatsBenchmark.MeanAlgorithm
73 private final double mean; field in StatsBenchmark.MeanAndVariance
76 MeanAndVariance(double mean, double variance) { in MeanAndVariance()
97 double mean = meanAlgorithm.mean(values); in variance() local
109 double mean = meanAlgorithm.mean(values); in variance() local
129 double mean = values[0]; in variance() local
/aosp_15_r20/external/pytorch/aten/src/ATen/test/
H A Dcpu_rng_test.cpp61 Tensor& normal_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in normal_()
65 Tensor& normal_Tensor_float_out(const Tensor& mean, double std, std::optional<Generator> gen, Tenso… in normal_Tensor_float_out()
69 Tensor& normal_float_Tensor_out(double mean, const Tensor& std, std::optional<Generator> gen, Tenso… in normal_float_Tensor_out()
73 Tensor& normal_Tensor_Tensor_out(const Tensor& mean, const Tensor& std, std::optional<Generator> ge… in normal_Tensor_Tensor_out()
77 Tensor normal_Tensor_float(const Tensor& mean, double std, std::optional<Generator> gen) { in normal_Tensor_float()
81 Tensor normal_float_Tensor(double mean, const Tensor& std, std::optional<Generator> gen) { in normal_float_Tensor()
85 Tensor normal_Tensor_Tensor(const Tensor& mean, const Tensor& std, std::optional<Generator> gen) { in normal_Tensor_Tensor()
103 Tensor& log_normal_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in log_normal_()
204 const auto mean = 123.45; in TEST_F() local
218 const auto mean = 123.45; in TEST_F() local
[all …]
/aosp_15_r20/external/pytorch/aten/src/ATen/native/
H A DDistributions.cpp191 Tensor& log_normal_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in log_normal_()
275 Tensor& normal_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in normal_()
279 Tensor& normal_meta_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in normal_meta_()
284 Tensor& normal_out(const Tensor& mean, double std, std::optional<Generator> gen, Tensor& output) { in normal_out()
288 Tensor& normal_out_meta(const Tensor& mean, double std, std::optional<Generator> gen, Tensor& outpu… in normal_out_meta()
293 Tensor& normal_out(double mean, const Tensor& std, std::optional<Generator> gen, Tensor& output) { in normal_out()
297 Tensor& normal_out_meta(double mean, const Tensor& std, std::optional<Generator> gen, Tensor& outpu… in normal_out_meta()
303 Tensor& normal_out(const Tensor& mean, const Tensor& std, std::optional<Generator> gen, Tensor& out… in normal_out()
307 Tensor& normal_out_meta(const Tensor& mean, const Tensor& std, std::optional<Generator> gen, Tensor… in normal_out_meta()
312 Tensor normal(const Tensor& mean, double std, std::optional<Generator> gen) { in normal()
[all …]
H A DDistributionTemplates.h203 Tensor& normal_impl_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in normal_impl_()
219 Tensor& normal_out_impl(Tensor& output, const Tensor& mean, double std, std::optional<Generator> ge… in normal_out_impl()
230 Tensor& normal_out_impl(Tensor& output, double mean, const Tensor& std, std::optional<Generator> ge… in normal_out_impl()
245 Tensor& normal_out_impl(Tensor& output, const Tensor& mean, const Tensor& std, std::optional<Genera… in normal_out_impl()
259 Tensor normal_impl(const Tensor& mean, double std, std::optional<Generator> gen) { in normal_impl()
267 Tensor normal_impl(double mean, const Tensor& std, std::optional<Generator> gen) { in normal_impl()
275 Tensor normal_impl(const Tensor& mean, const Tensor& std, std::optional<Generator> gen) { in normal_impl()
316 at::Tensor& log_normal_impl_(at::Tensor& self, double mean, double std, std::optional<Generator> ge… in log_normal_impl_()
/aosp_15_r20/external/guava/android/guava/src/com/google/common/math/
H A DDoubleMath.java414 public static double mean(double... values) { in mean() method in DoubleMath
417 double mean = checkFinite(values[0]); in mean() local
440 public static double mean(int... values) { in mean() method in DoubleMath
466 public static double mean(long... values) { in mean() method in DoubleMath
469 double mean = values[0]; in mean() local
494 public static double mean(Iterable<? extends Number> values) { in mean() method in DoubleMath
514 public static double mean(Iterator<? extends Number> values) { in mean() method in DoubleMath
517 double mean = checkFinite(values.next().doubleValue()); in mean() local
H A DStats.java67 private final double mean; field in Stats
86 Stats(long count, double mean, double sumOfSquaresOfDeltas, double min, double max) { in Stats()
179 public double mean() { in mean() method in Stats
416 double mean = values.next().doubleValue(); in meanOf() local
441 double mean = values[0]; in meanOf() local
465 double mean = values[0]; in meanOf() local
490 double mean = values[0]; in meanOf() local
/aosp_15_r20/external/guava/guava/src/com/google/common/math/
H A DDoubleMath.java414 public static double mean(double... values) { in mean() method in DoubleMath
417 double mean = checkFinite(values[0]); in mean() local
440 public static double mean(int... values) { in mean() method in DoubleMath
466 public static double mean(long... values) { in mean() method in DoubleMath
469 double mean = values[0]; in mean() local
494 public static double mean(Iterable<? extends Number> values) { in mean() method in DoubleMath
514 public static double mean(Iterator<? extends Number> values) { in mean() method in DoubleMath
517 double mean = checkFinite(values.next().doubleValue()); in mean() local
H A DStats.java71 private final double mean; field in Stats
90 Stats(long count, double mean, double sumOfSquaresOfDeltas, double min, double max) { in Stats()
255 public double mean() { in mean() method
492 double mean = values.next().doubleValue(); in meanOf() local
517 double mean = values[0]; in meanOf() local
541 double mean = values[0]; in meanOf() local
566 double mean = values[0]; in meanOf() local
/aosp_15_r20/external/pytorch/aten/src/ATen/native/cuda/
H A Dlayer_norm_kernel.cu58 T_ACC* mean, in RowwiseMomentsCUDAKernel()
96 const T_ACC* mean, in LayerNormForwardCUDAKernel()
115 float mean; member
141 U mean, sigma2; in cuWelfordCombine() local
227 T_ACC* mean, in vectorized_layer_norm_kernel_impl()
306 T_ACC* mean, in vectorized_layer_norm_kernel()
317 const T_ACC* __restrict__ mean, in compute_gI()
382 const T_ACC* __restrict__ mean, in layer_norm_grad_input_kernel()
403 const T_ACC* __restrict__ mean, in layer_norm_grad_input_kernel_vectorized()
518 const T_ACC* mean, in GammaBetaBackwardSimpleCUDAKernel()
[all …]
H A Dgroup_norm_kernel.cu36 T* mean, in RowwiseMomentsCUDAKernel()
79 const T* mean, in ComputeFusedParamsCUDAKernel()
105 const T* mean, in Compute1dBackwardFusedParamsCUDAKernel()
153 const T* mean, in GammaBeta1dBackwardCUDAKernel1()
191 const T* mean, in GammaBeta1dBackwardCUDAKernel2()
313 const T* mean, in ComputeBackwardFusedParamsCUDAKernel()
361 const T* mean, in GammaBetaBackwardCUDAKernel1()
397 const T* mean, in GammaBetaBackwardCUDAKernel2()
484 const Tensor& mean, in GroupNorm1dForward()
564 Tensor& mean, in GroupNormKernelImplInternal()
[all …]
H A DNormalization.cuh79 const accscalar_t mean; member
168 T& mean, in welford_merge_element()
183 T& mean, in welford_merge_block_vertical()
229 stat_accscalar_t mean = static_cast<stat_accscalar_t>(mean_[plane]); in batch_norm_transform_input_kernel() local
373 stat_accscalar_t mean, invstd; in batch_norm_backward_kernel() local
430 GenericPackedTensorAccessor<accscalar_t, 1, RestrictPtrTraits, index_t> mean, in batch_norm_reduce_statistics_kernel()
476 GenericPackedTensorAccessor<stat_accscalar_t, 1, DefaultPtrTraits, index_t> mean, in batch_norm_backward_reduce_kernel()
511 const GenericPackedTensorAccessor<stat_accscalar_t, 1, DefaultPtrTraits, index_t> mean, in batch_norm_backward_elemt_kernel_impl()
549 const GenericPackedTensorAccessor<stat_accscalar_t, 1, DefaultPtrTraits, index_t> mean, in batch_norm_backward_elemt_kernel()
571 const GenericPackedTensorAccessor<stat_accscalar_t, 1, DefaultPtrTraits, index_t> mean, in batch_norm_backward_elemt_kernel()
[all …]
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/
H A Deval.pass.cpp48 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
88 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
128 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
168 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
208 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
248 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
288 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
328 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
368 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
408 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.uni/rand.dist.uni.real/
H A Deval.pass.cpp49 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
89 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
129 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
169 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
209 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
249 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
289 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
329 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
369 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
409 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() local
[all …]
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/
H A Deval.pass.cpp48 double mean = std::accumulate(u.begin(), u.end(), in main() local
89 double mean = std::accumulate(u.begin(), u.end(), in main() local
130 double mean = std::accumulate(u.begin(), u.end(), in main() local
171 double mean = std::accumulate(u.begin(), u.end(), in main() local
212 double mean = std::accumulate(u.begin(), u.end(), in main() local
253 double mean = std::accumulate(u.begin(), u.end(), in main() local
294 double mean = std::accumulate(u.begin(), u.end(), in main() local
335 double mean = std::accumulate(u.begin(), u.end(), in main() local
376 double mean = std::accumulate(u.begin(), u.end(), in main() local
428 double mean = std::accumulate(u.begin(), u.end(), in main() local
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/
H A Deval.pass.cpp47 double mean = std::accumulate(u.begin(), u.end(), in test1() local
90 double mean = std::accumulate(u.begin(), u.end(), in test2() local
133 double mean = std::accumulate(u.begin(), u.end(), in test3() local
176 double mean = std::accumulate(u.begin(), u.end(), in test4() local
225 double mean = std::accumulate(u.begin(), u.end(), in test5() local
274 double mean = std::accumulate(u.begin(), u.end(), in test6() local
317 double mean = std::accumulate(u.begin(), u.end(), in test7() local
378 double mean = std::accumulate(u.begin(), u.end(), in test9() local
427 double mean = std::accumulate(u.begin(), u.end(), in test10() local
476 double mean = std::accumulate(u.begin(), u.end(), in test11() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.bern/rand.dist.bern.bin/
H A Deval.pass.cpp46 double mean = std::accumulate(u.begin(), u.end(), in test1() local
88 double mean = std::accumulate(u.begin(), u.end(), in test2() local
130 double mean = std::accumulate(u.begin(), u.end(), in test3() local
172 double mean = std::accumulate(u.begin(), u.end(), in test4() local
221 double mean = std::accumulate(u.begin(), u.end(), in test5() local
270 double mean = std::accumulate(u.begin(), u.end(), in test6() local
312 double mean = std::accumulate(u.begin(), u.end(), in test7() local
372 double mean = std::accumulate(u.begin(), u.end(), in test9() local
421 double mean = std::accumulate(u.begin(), u.end(), in test10() local
470 double mean = std::accumulate(u.begin(), u.end(), in test11() local
/aosp_15_r20/external/pytorch/aten/src/ATen/native/cpu/
H A DDistributionTemplates.h92 const __m256* mean, in normal_fill_16_AVX2()
108 void normal_fill_AVX2(const TensorBase &self, const float mean, const float std, RNG generator) { in normal_fill_AVX2()
139 static void normal_fill_16(scalar_t *data, const scalar_t mean, const scalar_t std) { in normal_fill_16()
151 …nst Vectorized<float> &one,const Vectorized<float> &minus_two,const Vectorized<float> &mean,const … in normal_fill_16_VSX()
165 void normal_fill_VSX(const TensorBase &self, const scalar_t mean, const scalar_t std, RNG generator… in normal_fill_VSX()
207 void normal_fill(const TensorBase &self, const scalar_t mean, const scalar_t std, RNG generator) { in normal_fill()
231 void normal_kernel(const TensorBase &self, double mean, double std, RNG generator) { in normal_kernel()
309 void log_normal_kernel(TensorIteratorBase& iter, double mean, double std, RNG generator) { in log_normal_kernel()
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/stat/descriptive/moment/
H A DVariance.java266 Mean mean = new Mean(); in evaluate() local
326 Mean mean = new Mean(); in evaluate() local
403 public double evaluate(final double[] values, final double mean, in evaluate()
456 …public double evaluate(final double[] values, final double mean) throws MathIllegalArgumentExcepti… in evaluate()
506 final double mean, final int begin, final int length) in evaluate()
580 public double evaluate(final double[] values, final double[] weights, final double mean) in evaluate()
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DVariance.java252 Mean mean = new Mean(); in evaluate() local
312 Mean mean = new Mean(); in evaluate() local
388 public double evaluate(final double[] values, final double mean, in evaluate()
441 public double evaluate(final double[] values, final double mean) { in evaluate()
491 final double mean, final int begin, final int length) { in evaluate()
564 public double evaluate(final double[] values, final double[] weights, final double mean) { in evaluate()
/aosp_15_r20/external/angle/third_party/abseil-cpp/absl/random/
H A Dpoisson_distribution.h65 double mean() const { return mean_; } in mean() function
92 explicit poisson_distribution(double mean) : param_(mean) {} in poisson_distribution()
114 double mean() const { return param_.mean(); } in mean() function
135 poisson_distribution<IntType>::param_type::param_type(double mean) in param_type()
252 double mean = random_internal::read_floating_point<double>(is); variable
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/
Dpoisson_distribution.h64 double mean() const { return mean_; } in mean() function
91 explicit poisson_distribution(double mean) : param_(mean) {} in poisson_distribution()
113 double mean() const { return param_.mean(); } in mean() function
134 poisson_distribution<IntType>::param_type::param_type(double mean) in param_type()
251 double mean = random_internal::read_floating_point<double>(is); variable
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/random/
H A Dpoisson_distribution.h64 double mean() const { return mean_; } in mean() function
91 explicit poisson_distribution(double mean) : param_(mean) {} in poisson_distribution()
113 double mean() const { return param_.mean(); } in mean() function
134 poisson_distribution<IntType>::param_type::param_type(double mean) in param_type()
251 double mean = random_internal::read_floating_point<double>(is); variable
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/random/
H A Dpoisson_distribution.h64 double mean() const { return mean_; } in mean() function
91 explicit poisson_distribution(double mean) : param_(mean) {} in poisson_distribution()
113 double mean() const { return param_.mean(); } in mean() function
134 poisson_distribution<IntType>::param_type::param_type(double mean) in param_type()
251 double mean = random_internal::read_floating_point<double>(is); variable

12345678910>>...46