Home
last modified time | relevance | path

Searched refs:ThreadSafeHistogram (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/core/lib/histogram/
Dhistogram.cc232 bool ThreadSafeHistogram::DecodeFromProto(const HistogramProto& proto) { in DecodeFromProto()
237 void ThreadSafeHistogram::Clear() { in Clear()
242 void ThreadSafeHistogram::Add(double value) { in Add()
247 void ThreadSafeHistogram::EncodeToProto(HistogramProto* proto, in EncodeToProto()
253 double ThreadSafeHistogram::Median() const { in Median()
258 double ThreadSafeHistogram::Percentile(double p) const { in Percentile()
263 double ThreadSafeHistogram::Average() const { in Average()
268 double ThreadSafeHistogram::StandardDeviation() const { in StandardDeviation()
273 std::string ThreadSafeHistogram::ToString() const { in ToString()
Dhistogram.h109 class ThreadSafeHistogram {
111 ThreadSafeHistogram() {} in ThreadSafeHistogram() function
112 explicit ThreadSafeHistogram(gtl::ArraySlice<double> custom_bucket_limits) in ThreadSafeHistogram() function
116 ~ThreadSafeHistogram() {} in ~ThreadSafeHistogram()
Dhistogram_test.cc115 TEST(ThreadSafeHistogram, Basic) { in TEST() argument
123 ThreadSafeHistogram tsh; in TEST()
138 ThreadSafeHistogram tsh2; in TEST()
/external/tensorflow/tensorflow/core/lib/monitoring/
Dsampler.h63 histogram::ThreadSafeHistogram histogram_;
/external/tensorflow/tensorflow/core/kernels/
Dsummary_op.cc125 histogram::ThreadSafeHistogram histogram;