Home
last modified time | relevance | path

Searched refs:best_ratio (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/compiler/aot/
Dbenchmark.cc58 static constexpr float best_ratio = 0.1; in DumpStatsToStdout() local
60 const size_t count_best = count_us * best_ratio; in DumpStatsToStdout()
78 snprintf(buf, kBufSize, "Mean of %2.0f%% best:", best_ratio * 100); in DumpStatsToStdout()
/external/gemmlowp/test/
Dbenchmark_meta_gemm.cc123 const float best_ratio = 0.1; in print_summary() local
124 const size_t count_best = times->size() * best_ratio; in print_summary()
152 std::cout << " Mean of " << 100 * best_ratio in print_summary()
Dbenchmark.cc237 const float best_ratio = 0.1; in benchmark_gemm_sizes() local
238 const size_t count_best = gemm_times.size() * best_ratio; in benchmark_gemm_sizes()
266 std::cout << " Mean of " << 100 * best_ratio in benchmark_gemm_sizes()
/external/python/cpython2/Lib/
Ddifflib.py964 best_ratio, cutoff = 0.74, 0.75
987 if cruncher.real_quick_ratio() > best_ratio and \
988 cruncher.quick_ratio() > best_ratio and \
989 cruncher.ratio() > best_ratio:
990 best_ratio, best_i, best_j = cruncher.ratio(), i, j
991 if best_ratio < cutoff:
999 best_i, best_j, best_ratio = eqi, eqj, 1.0
/external/python/cpython3/Lib/
Ddifflib.py949 best_ratio, cutoff = 0.74, 0.75
972 if cruncher.real_quick_ratio() > best_ratio and \
973 cruncher.quick_ratio() > best_ratio and \
974 cruncher.ratio() > best_ratio:
975 best_ratio, best_i, best_j = cruncher.ratio(), i, j
976 if best_ratio < cutoff:
983 best_i, best_j, best_ratio = eqi, eqj, 1.0
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dexpand.cc419 int32_t best_ratio = std::numeric_limits<int32_t>::min(); in AnalyzeSignal() local
430 if (ratio > best_ratio) { in AnalyzeSignal()
432 best_ratio = ratio; in AnalyzeSignal()