Home
last modified time | relevance | path

Searched refs:Percentile (Results 1 – 25 of 26) sorted by relevance

12

/external/tensorflow/tensorflow/core/lib/histogram/
Dhistogram_test.cc78 TEST(Histogram, Percentile) { in TEST() argument
96 EXPECT_EQ(h.Percentile(0), -1.0); // -1.0 = histo.min_ in TEST()
97 EXPECT_EQ(h.Percentile(25), 1.5); // 1.5 = remap(25, 10, 40, 1, 2) in TEST()
98 EXPECT_EQ(h.Percentile(50), 2.25); // 2.25 = remap(50, 40, 80, 2, 3) in TEST()
99 EXPECT_EQ(h.Percentile(75), 2.875); // 2.875 = remap(75, 40, 80, 2, 3) in TEST()
100 EXPECT_EQ(h.Percentile(90), 3.45); // 3.45 = remap(90, 80, 100, 3, 3.9) in TEST()
101 EXPECT_EQ(h.Percentile(100), 3.9); // 3.9 = histo.max_ in TEST()
146 EXPECT_EQ(h.Percentile(40.0), tsh.Percentile(40.0)); in TEST()
Dhistogram.h68 double Percentile(double p) const;
126 double Percentile(double p) const;
Dhistogram.cc116 double Histogram::Median() const { return Percentile(50.0); } in Median()
126 double Histogram::Percentile(double p) const { in Percentile() function in tensorflow::histogram::Histogram
258 double ThreadSafeHistogram::Percentile(double p) const { in Percentile() function in tensorflow::histogram::ThreadSafeHistogram
260 return histogram_.Percentile(p); in Percentile()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
DPercentile.java82 public class Percentile extends AbstractUnivariateStatistic implements Serializable { class
104 public Percentile() { in Percentile() method in Percentile
114 public Percentile(final double p) { in Percentile() method in Percentile
125 public Percentile(Percentile original) { in Percentile() method in Percentile
475 public Percentile copy() { in copy()
476 Percentile result = new Percentile(); in copy()
489 public static void copy(Percentile source, Percentile dest) { in copy()
DMedian.java33 public class Median extends Percentile implements Serializable {
/external/llvm/lib/Analysis/
DProfileSummaryInfo.cpp41 uint64_t Percentile) { in getMinCountForPercentile() argument
42 auto Compare = [](const ProfileSummaryEntry &Entry, uint64_t Percentile) { in getMinCountForPercentile() argument
43 return Entry.Cutoff < Percentile; in getMinCountForPercentile()
45 auto It = std::lower_bound(DS.begin(), DS.end(), Percentile, Compare); in getMinCountForPercentile()
/external/chromium-trace/catapult/common/lab/
Dcommits.py35 def Percentile(data, percentile): function
97 percentile = Percentile(commit_durations, p)
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DConsoleOutput.java37 import org.apache.commons.math.stat.descriptive.rank.Percentile;
119 Percentile percentile = new Percentile(); in processTrial()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
DDescriptiveStatistics.java32 import org.apache.commons.math.stat.descriptive.rank.Percentile;
97 private UnivariateStatistic percentileImpl = new Percentile();
395 if (percentileImpl instanceof Percentile) { in getPercentile()
396 ((Percentile) percentileImpl).setQuantile(p); in getPercentile()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
DStatUtils.java28 import org.apache.commons.math.stat.descriptive.rank.Percentile;
67 private static final Percentile PERCENTILE = new Percentile();
/external/llvm-project/llvm/lib/ProfileData/
DProfileSummaryBuilder.cpp36 uint64_t Percentile) { in getEntryForPercentile() argument
38 return Entry.Cutoff < Percentile; in getEntryForPercentile()
/external/grpc-grpc/test/cpp/qps/
Ddriver.cc126 result->mutable_summary()->set_latency_50(histogram.Percentile(50)); in postprocess_scenario_result()
127 result->mutable_summary()->set_latency_90(histogram.Percentile(90)); in postprocess_scenario_result()
128 result->mutable_summary()->set_latency_95(histogram.Percentile(95)); in postprocess_scenario_result()
129 result->mutable_summary()->set_latency_99(histogram.Percentile(99)); in postprocess_scenario_result()
130 result->mutable_summary()->set_latency_999(histogram.Percentile(99.9)); in postprocess_scenario_result()
Dhistogram.h46 double Percentile(double pctile) const { in Percentile() function
Dclient.h338 histogram_per_interval_.Percentile(50) / 1e3); in UpdateHistogram()
/external/llvm-project/llvm/include/llvm/ProfileData/
DProfileCommon.h68 getEntryForPercentile(SummaryEntryVector &DS, uint64_t Percentile);
/external/tensorflow/tensorflow/core/kernels/batching_util/
Dbasic_batch_scheduler_benchmark_test.cc284 << task_latency_millis_histogram_.Percentile(99.9) << "ms" in RunBenchmark()
286 << "99% batch size: " << batch_size_histogram_.Percentile(99) in RunBenchmark()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DProfileSummaryInfo.cpp71 uint64_t Percentile) { in getEntryForPercentile() argument
73 return Entry.Cutoff < Percentile; in getEntryForPercentile()
/external/tensorflow/tensorflow/core/kernels/data/experimental/
Dchoose_fastest_dataset_op.cc348 double best_percentile = histograms_[0].Percentile(kPercentile); in SelectFastestInputIndex()
352 double percentile = histograms_[i].Percentile(kPercentile); in SelectFastestInputIndex()
Dchoose_fastest_branch_dataset_op.cc483 double best_percentile = histograms_[0].Percentile(kPercentile); in SelectFastestInputIndex()
487 double percentile = histograms_[i].Percentile(kPercentile); in SelectFastestInputIndex()
/external/libtextclassifier/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc910 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio()
912 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio()
935 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe()
938 if (Percentile > p) { in PercentileProbe()
939 Percentile -= p; in PercentileProbe()
/external/openscreen/third_party/abseil/src/absl/container/internal/
Draw_hash_set_test.cc911 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio()
913 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio()
936 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe()
939 if (Percentile > p) { in PercentileProbe()
940 Percentile -= p; in PercentileProbe()
/external/webrtc/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc909 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio()
911 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio()
934 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe()
937 if (Percentile > p) { in PercentileProbe()
938 Percentile -= p; in PercentileProbe()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc910 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio()
912 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio()
935 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe()
938 if (Percentile > p) { in PercentileProbe()
939 Percentile -= p; in PercentileProbe()
/external/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc909 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio()
911 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio()
934 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe()
937 if (Percentile > p) { in PercentileProbe()
938 Percentile -= p; in PercentileProbe()
/external/angle/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc1075 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio()
1077 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio()
1100 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe()
1103 if (Percentile > p) { in PercentileProbe()
1104 Percentile -= p; in PercentileProbe()

12