Home
last modified time | relevance | path

Searched refs:cpu_time (Results 1 – 24 of 24) sorted by relevance

/external/tensorflow/tensorflow/python/platform/
Dbenchmark.py49 name, iters=None, cpu_time=None, wall_time=None, argument
71 wall_time if wall_time is not None else -1, cpu_time if
72 cpu_time is not None else -1, throughput if
80 if cpu_time is not None:
81 entry.cpu_time = cpu_time
162 cpu_time=None, argument
181 name=name, iters=iters, cpu_time=cpu_time, wall_time=wall_time,
/external/google-benchmark/src/
Dcounter.cc20 double Finish(Counter const& c, double cpu_time, double num_threads) { in Finish() argument
23 v /= cpu_time; in Finish()
31 void Finish(UserCounters *l, double cpu_time, double num_threads) { in Finish() argument
33 c.second.value = Finish(c.second, cpu_time, num_threads); in Finish()
Dconsole_reporter.cc131 const double cpu_time = result.GetAdjustedCPUTime(); in PrintRunData() local
136 cpu_time, big_o.c_str()); in PrintRunData()
139 cpu_time * 100); in PrintRunData()
143 cpu_time, timeLabel); in PrintRunData()
Dcomplexity.cc162 std::vector<double> cpu_time; in ComputeBigO() local
169 cpu_time.push_back(run.cpu_accumulated_time / run.iterations); in ComputeBigO()
176 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda); in ComputeBigO()
179 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity); in ComputeBigO()
/external/libcxx/utils/google-benchmark/src/
Dcounter.cc20 double Finish(Counter const& c, double cpu_time, double num_threads) { in Finish() argument
23 v /= cpu_time; in Finish()
31 void Finish(UserCounters *l, double cpu_time, double num_threads) { in Finish() argument
33 c.second.value = Finish(c.second, cpu_time, num_threads); in Finish()
Dconsole_reporter.cc131 const double cpu_time = result.GetAdjustedCPUTime(); in PrintRunData() local
136 cpu_time, big_o.c_str()); in PrintRunData()
139 cpu_time * 100); in PrintRunData()
143 cpu_time, timeLabel); in PrintRunData()
Dcomplexity.cc162 std::vector<double> cpu_time; in ComputeBigO() local
169 cpu_time.push_back(run.cpu_accumulated_time / run.iterations); in ComputeBigO()
176 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda); in ComputeBigO()
179 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity); in ComputeBigO()
/external/perfetto/src/base/
Dwatchdog_posix.cc152 uint64_t cpu_time = utime + stime; in ThreadMain() local
156 CheckCpu(cpu_time); in ThreadMain()
177 void Watchdog::CheckCpu(uint64_t cpu_time) { in CheckCpu() argument
182 if (cpu_window_time_ticks_.Push(cpu_time)) { in CheckCpu()
/external/tensorflow/tensorflow/core/util/
Dreporter.cc40 Status TestReporter::Benchmark(int64 iters, double cpu_time, double wall_time, in Benchmark() argument
44 benchmark_entry_.set_cpu_time(cpu_time / iters); in Benchmark()
Dreporter.h75 Status Benchmark(int64 iters, double cpu_time, double wall_time,
Dreporter_test.cc113 EXPECT_EQ(benchmark_entry.cpu_time(), 1.0); in TEST()
Dtest_log.proto36 double cpu_time = 3; field
/external/valgrind/include/vki/
Dvki-xen-domctl.h144 vki_xen_uint64_aligned_t cpu_time; member
163 vki_xen_uint64_aligned_t cpu_time; member
183 vki_xen_uint64_aligned_t cpu_time; member
274 vki_xen_uint64_aligned_t cpu_time;/* total cpu time consumed (ns) */ member
/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_screen.c56 int64_t cpu_time = os_time_get() * 1000; in nouveau_screen_get_timestamp() local
60 return cpu_time + nouveau_screen(pscreen)->cpu_gpu_time_delta; in nouveau_screen_get_timestamp()
/external/tensorflow/tensorflow/tools/api/golden/
Dtensorflow.test.-benchmark.pbtxt15 …argspec: "args=[\'self\', \'iters\', \'cpu_time\', \'wall_time\', \'throughput\', \'extras\', \'na…
/external/swiftshader/third_party/LLVM/utils/Misc/
Dzkill254 if opts.minTime <= p.cpu_time <= opts.maxTime]
266 … (p.pid, signalValueName, p.user, p.executable, p.cpu_percent, p.cpu_time, p.vmem_size, p.rss))
/external/llvm/utils/Misc/
Dzkill254 if opts.minTime <= p.cpu_time <= opts.maxTime]
266 … (p.pid, signalValueName, p.user, p.executable, p.cpu_percent, p.cpu_time, p.vmem_size, p.rss))
/external/perfetto/include/perfetto/base/
Dwatchdog_posix.h127 void CheckCpu(uint64_t cpu_time);
/external/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_screen.c124 int64_t cpu_time = os_time_get() * 1000; in fd_screen_get_timestamp() local
125 return cpu_time + screen->cpu_gpu_time_delta; in fd_screen_get_timestamp()
/external/libchrome/base/process/
Dprocess_metrics_linux.cc238 TimeDelta cpu_time = internal::ClockTicksToTimeDelta(cpu); in GetCPUUsage() local
248 if (last_cpu_time < cpu_time) { in GetCPUUsage()
249 percentage = 100.0 * (cpu_time - last_cpu_time).InSecondsF() / in GetCPUUsage()
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-xen.c1885 POST_XEN_DOMCTL_WRITE(getvcpuinfo, cpu_time); in POST()
1971 POST_XEN_DOMCTL_WRITE(getdomaininfo_00000007, cpu_time); in POST()
1986 POST_XEN_DOMCTL_WRITE(getdomaininfo_00000008, cpu_time); in POST()
2003 POST_XEN_DOMCTL_WRITE(getdomaininfo_00000009, cpu_time); in POST()
/external/google-benchmark/
DREADME.md836 "cpu_time": 29836,
844 "cpu_time": 32429,
852 "cpu_time": 33355,
863 name,iterations,real_time,cpu_time,bytes_per_second,items_per_second,label
/external/libcxx/utils/google-benchmark/
DREADME.md840 "cpu_time": 29836,
848 "cpu_time": 32429,
856 "cpu_time": 33355,
867 name,iterations,real_time,cpu_time,bytes_per_second,items_per_second,label
/external/autotest/server/cros/tradefed_test_unittest_data/
DCtsAppTestCases.txt1301 …, native_allocated=17462, global_freed_count=47, global_alloc_size=200, cpu_time=32844, native_pss…