Home
last modified time | relevance | path

Searched refs:total_time (Results 1 – 25 of 51) sorted by relevance

123

/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/
Dprofiling_info.cc24 absl::Duration total_time; in GetTotalTime() local
26 total_time += dispatch.duration; in GetTotalTime()
28 return total_time; in GetTotalTime()
35 double total_time; in GetDetailedReport() member
47 statistics[name].total_time += in GetDetailedReport()
51 statistics[name].total_time = in GetDetailedReport()
60 std::to_string(stat.total_time) + " ms\n"; in GetDetailedReport()
/external/mesa3d/src/gallium/drivers/freedreno/
Dlog-parser.py29 def dump_gmem_passes(gmem_passes, blit_time, sysmem_time, total_time): argument
53 lrz_clear_time, 100.0 * lrz_clear_time / total_time,
54 binning_time, 100.0 * binning_time / total_time,
55 restore_clear_time, 100.0 * restore_clear_time / total_time,
56 draw_time, 100.0 * draw_time / total_time,
57 resolve_time, 100.0 * resolve_time / total_time,
58 blit_time, 100.0 * blit_time / total_time,
59 sysmem_time, 100.0 * sysmem_time / total_time,
60 total_time
184total_time = sum(times_blit) + sum(times_sysmem) + sum(times_gmem) + sum(times_compute)
[all …]
/external/tensorflow/tensorflow/python/eager/
Dbenchmarks_test_base.py49 total_time = run_benchmark(func, num_iters_xprof, execution_mode)
50 us_per_example = float("{0:.3f}".format(total_time * 1e6 / num_iters_xprof))
55 total_time = run_benchmark(func, num_iters, execution_mode)
56 mean_us = total_time * 1e6 / num_iters
58 "examples_per_sec": float("{0:.3f}".format(num_iters / total_time)),
59 "us_per_example": float("{0:.3f}".format(total_time * 1e6 / num_iters))
Dremote_benchmarks_test.py88 total_time = run_benchmark(func, num_iters, execution_mode)
89 mean_us = total_time * 1e6 / num_iters
93 extras={"examples_per_sec": num_iters / total_time})
/external/curl/docs/examples/
Dfileupload.c36 curl_off_t speed_upload, total_time; in main() local
76 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME_T, &total_time); in main()
81 (total_time / 1000000), (long)(total_time % 1000000)); in main()
/external/autotest/client/profilers/powertop/src/
Dcpufreqstats.c97 uint64_t total_time = 0; in do_cpufreq_stats() local
152 total_time += delta[ret].count; in do_cpufreq_stats()
159 if (!total_time) in do_cpufreq_stats()
169 …ret+1], "%6s %5.1f%%\n", HzToHuman(delta[ret].frequency), delta[ret].count * 100.0 / total_time); in do_cpufreq_stats()
170 if (delta[ret].count > total_time/2) in do_cpufreq_stats()
/external/libevent/test/
Dbench_httpclient.c57 struct timeval total_time = {0,0}; variable
93 evutil_timeradd(&diff, &total_time, &total_time); in errorcb()
207 usec = total_time.tv_sec * (long long)1000000 + total_time.tv_usec; in main()
/external/mesa3d/src/gallium/auxiliary/hud/
Dhud_cpu.c64 get_cpu_stats(unsigned cpu_index, uint64_t *busy_time, uint64_t *total_time) in get_cpu_stats() argument
84 *total_time = filetime_to_scalar(ftNow) - filetime_to_scalar(ftCreation); in get_cpu_stats()
90 *total_time *= sysInfo.dwNumberOfProcessors; in get_cpu_stats()
101 get_cpu_stats(unsigned cpu_index, uint64_t *busy_time, uint64_t *total_time) in get_cpu_stats() argument
168 *total_time = *busy_time + cp_time[CP_IDLE]; in get_cpu_stats()
176 get_cpu_stats(unsigned cpu_index, uint64_t *busy_time, uint64_t *total_time) in get_cpu_stats() argument
209 *total_time = *busy_time; in get_cpu_stats()
213 *total_time += v[i]; in get_cpu_stats()
/external/tensorflow/tensorflow/python/keras/benchmarks/layer_benchmarks/
Dlayer_benchmarks_test_base.py46 total_time = time.time() - start
47 us_mean_time = total_time * 1e6 / num_iters
51 "value": float("{0:.3f}".format(num_iters / total_time))},
Drun_xprof.py38 total_time = time.time() - start
39 us_per_example = float("{0:.3f}".format(total_time * 1e6 / num_iters_xprof))
/external/llvm-project/clang/utils/analyzer/
DSumTimerInfo.py19 total_time = 0.0 variable
66 total_time = total_time + float(s[6]) variable
/external/tensorflow/tensorflow/python/framework/
Dgraph_building_benchmark.py56 total_time = run_benchmark(func, num_iters)
57 mean_us = total_time * 1e6 / num_iters
62 "examples_per_sec": float("{0:.3f}".format(num_iters / total_time)),
/external/autotest/client/site_tests/power_HotCPUSuspend/
Dpower_HotCPUSuspend.py42 total_time = sum(diff_times[field] for field in PROC_STAT_CPU_FIELDS)
44 return float(total_time - idle_time) / total_time
/external/tensorflow/tensorflow/python/keras/benchmarks/
Deager_microbenchmarks_test.py52 total_time = run_benchmark(func, num_iters, execution_mode)
53 mean_us = total_time * 1e6 / num_iters
56 "value": float("{0:.3f}".format(num_iters / total_time))
59 "value": float("{0:.3f}".format(total_time * 1e6 / num_iters))
/external/autotest/client/site_tests/graphics_SanAngeles/src/
Dapp-linux.c226 double total_time = 0.0; in main() local
253 total_time += (timeAfter.tv_sec - timeNow.tv_sec) + in main()
261 fprintf(stdout, "frame_rate = %.1f\n", num_frames / total_time); in main()
/external/python/cpython2/Tools/pybench/
Dpybench.py374 total_time = reduce(operator.add, self.times, 0.0)
375 avg_time = total_time / float(runs)
376 operation_avg = total_time / float(runs
383 return min_time, avg_time, total_time, operation_avg, min_overhead
581 total_time = reduce(operator.add, self.roundtimes, 0.0)
582 avg_time = total_time / float(runs)
615 total_time,
667 total_time,
/external/autotest/server/hosts/
Dmoblab_host.py319 total_time = 0
321 total_time < DUT_VERIFY_TIMEOUT):
322 total_time = total_time + DUT_VERIFY_SLEEP_SECS
/external/ltp/testcases/kernel/io/disktest/
Dtimer.c76 time_t total_time = 0; in ChildTimer() local
138 total_time = env->global_stats.rtime in ChildTimer()
146 ((double)(total_time) / (double)(tmp_io_count))); in ChildTimer()
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/kgsl/kgsl_pwrstats/
Dformat10 field:s64 total_time; offset:16; size:8; signed:1;
15 …d busy=%lld ram_time=%lld ram_wait=%lld", __get_str(device_name), REC->total_time, REC->busy_time,…
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/kgsl/kgsl_pwrstats/
Dformat10 field:s64 total_time; offset:16; size:8; signed:1;
16 …ime=%lld ram_wait=%lld context_count=%u", __get_str(device_name), REC->total_time, REC->busy_time,…
/external/autotest/client/site_tests/hardware_UnsafeMemory/src/rowhammer-test-4d619293e1c7/
Drowhammer_test.cc54 double total_time = get_diff(); in print_iters() local
55 double iter_time = total_time / iterations; in print_iters()
57 iter_time * 1e9, total_time, iterations); in print_iters()
/external/eigen/bench/spbench/
Dspbenchsolver.h217 double total_time; in call_solver() local
250 total_time = solve_time + compute_time; in call_solver()
251 statbuf << " <TOTAL> " << total_time << "</TOTAL>\n"; in call_solver()
252 std::cout<< "TOTAL TIME : " << total_time <<std::endl; in call_solver()
270 if(!best_time_val || (best_time_val > total_time)) in call_solver()
272 best_time_val = total_time; in call_solver()
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dtime_log.h120 const float total_time = in PrintTimeLog() local
124 total_time, average_running_total); in PrintTimeLog()
/external/python/cpython3/Tools/importbench/
Dimportbench.py26 total_time = 0
28 while total_time < seconds:
30 total_time += timer.timeit(1)
36 if total_time > seconds:
/external/libchrome/base/message_loop/
Dmessage_pump_perftest.cc122 base::TimeDelta total_time; in ScheduleWork() local
127 total_time += scheduling_times_[i]; in ScheduleWork()
142 total_time.InMicroseconds() / static_cast<double>(counter_), in ScheduleWork()

123