/external/tensorflow/tensorflow/core/grappler/costs/ |
D | op_level_cost_estimator_test.cc | 62 EXPECT_EQ(cost.execution_time, Costs::Duration::zero()); in ExpectZeroCost() 643 EXPECT_EQ(Costs::Duration(1), cost.execution_time); in TEST_F() 668 EXPECT_EQ(Costs::Duration(146), cost.execution_time); in TEST_F() 689 EXPECT_EQ(Costs::Duration(0), cost.execution_time); in TEST_F() 711 EXPECT_EQ(Costs::Duration(91), cost.execution_time); in TEST_F() 734 EXPECT_EQ(Costs::Duration(91), cost.execution_time); in TEST_F() 763 EXPECT_EQ(Costs::Duration(221), cost.execution_time); in TEST_F() 787 EXPECT_EQ(Costs::Duration(151), cost.execution_time); in TEST_F() 799 EXPECT_EQ(Costs::Duration(9400), cost.execution_time); in TEST_F() 811 EXPECT_EQ(Costs::Duration(355111220), cost.execution_time); in TEST_F() [all …]
|
D | cost_estimator_test.cc | 26 c.execution_time = Costs::NanoSeconds(1); in TEST() 41 EXPECT_EQ(sum.execution_time, Costs::NanoSeconds(2)); in TEST() 57 c.execution_time = Costs::NanoSeconds(1); in TEST() 72 EXPECT_EQ(product.execution_time, Costs::NanoSeconds(10)); in TEST()
|
D | cost_estimator.cc | 27 result.execution_time += right.execution_time; in CombineCosts() 68 result.execution_time *= multiplier; in MultiplyCosts()
|
D | measuring_cost_estimator.cc | 120 costs->execution_time = Costs::Duration::max(); in PredictCosts() 140 costs->execution_time = Costs::Duration::max(); in PredictCosts() 147 costs->execution_time = Costs::Duration(stats.mean()); in PredictCosts()
|
D | cost_estimator.h | 127 Duration execution_time; member 182 execution_time = Duration::zero(); in Costs() 195 costs.execution_time = Duration::zero(); in ZeroCosts()
|
D | analytical_cost_estimator.cc | 61 node->set_compute_cost(node_costs.execution_time.asMicroSeconds().count()); in AddCostNode() 170 costs->execution_time = Costs::Duration::max(); in PredictCosts()
|
D | virtual_scheduler.cc | 897 std::make_pair(total_node_costs.execution_time.asMicroSeconds().count(), in MarkNodeExecuted() 915 device.device_costs.execution_time = node_state.time_scheduled; in MarkNodeExecuted() 1015 VLOG(1) << "Expected execution time: " << graph_costs_.execution_time.count(); in Summary() 1029 const auto& cost = op_cost_pair.second.execution_time.count(); in Summary() 1127 const auto& cost = op_cost_pair.second.execution_time.count(); in Summary() 1132 total_compute_time_ns += op_cost_pair.second.execution_time; in Summary() 1168 if (critical_path_costs.execution_time <= state.GetCurrTime()) { in Summary() 1187 << critical_path_costs.execution_time.count(); in Summary()
|
D | analytical_cost_estimator_test.cc | 105 EXPECT_EQ(Costs::NanoSeconds(9158), summary.execution_time); in TEST_F()
|
D | utils.cc | 493 costs->execution_time = in CombineCostsAndUpdateExecutionTime() 497 costs->execution_time = costs->compute_time + costs->memory_time + in CombineCostsAndUpdateExecutionTime()
|
D | virtual_scheduler_test.cc | 2271 c.execution_time = Costs::NanoSeconds(exec_cost); in SimplePredictCosts() 2414 EXPECT_EQ(13000005, c.execution_time.asMicroSeconds().count()); in TEST_F() 2430 EXPECT_EQ(13000005, c.execution_time.asMicroSeconds().count()); in TEST_F() 2803 EXPECT_EQ(23, c.execution_time.asMicroSeconds().count()); in TEST_F() 2821 EXPECT_EQ(178, c.execution_time.asMicroSeconds().count()); in TEST_F() 2874 EXPECT_EQ(7, c.execution_time.asMicroSeconds().count()); in TEST_F() 2936 EXPECT_EQ(5, c.execution_time.asMicroSeconds().count()); in TEST_F()
|
D | op_performance_data.proto | 100 oneof execution_time { oneof
|
D | virtual_scheduler.h | 156 Costs::Duration GetCurrTime() const { return device_costs.execution_time; } in GetCurrTime()
|
D | op_level_cost_estimator.cc | 663 costs.execution_time = kMinComputeTime; in PredictCosts() 675 << costs.execution_time.count() << " ns."; in PredictCosts()
|
/external/ltp/testcases/kernel/sched/sched_stress/ |
D | sched_driver.c | 132 double execution_time = DEFAULT_TIME; variable 178 runseconds = (long)(execution_time * 60.0 * 60.0); in main() 193 printf("run-hours: %f (hrs)\n", execution_time); in main() 268 printf("test duration = %4.2f (hours)\n", execution_time); in startup() 606 void start_long_term_testcases(long_term_slot_total, execution_time) in start_long_term_testcases() argument 608 char *execution_time; /* runtime hours to pass to each testcase */ 622 start_testcase("./sched_tc0.32", "sched_tc0 -t", execution_time, 624 start_testcase("./sched_tc2.32", "sched_tc2", execution_time, 626 start_testcase("./sched_tc0.32", "sched_tc0 -t", execution_time, 628 start_testcase("./sched_tc2.32", "sched_tc2", execution_time, [all …]
|
D | sched_tc0.c | 91 long execution_time = DEFAULT_EXECUTION_TIME; variable 121 printf("\texecution_time: %ld (sec)\n", execution_time); in main() 145 while ((time(NULL) - start_time) < execution_time) { in main() 149 execution_time - (time(NULL) - start_time)); in main() 238 execution_time = atof(optarg); in parse_args() 261 if (execution_time < 0.0 || execution_time > 360000) in parse_args()
|
D | sched_tc2.c | 95 long execution_time = DEFAULT_EXECUTION_TIME; variable 123 printf("\texecution_time: %ld (sec)\n", execution_time); in main() 147 while ((time(NULL) - start_time) < execution_time) { in main() 151 execution_time - (time(NULL) - start_time)); in main() 243 execution_time = atof(optarg); in parse_args() 266 if (execution_time < 0.0 || execution_time > 360000) in parse_args()
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | static_schedule.cc | 55 estimator.PredictCosts(op_context).execution_time; in PredictExecutionTime() 108 Costs::NanoSeconds execution_time = in EstimateEarliestExecutionTimes() local 111 execution_time + (*completion_times)[node]; in EstimateEarliestExecutionTimes() 179 Costs::NanoSeconds execution_time = in EstimateRequiredTimes() local 181 Costs::NanoSeconds required_time = (*required_times)[node] - execution_time; in EstimateRequiredTimes()
|
/external/llvm-project/clang/utils/analyzer/ |
D | SATestBuild.py | 432 execution_time = 0.0 476 execution_time += time 485 return execution_time, peak_memory 512 execution_time = 0.0 540 execution_time += time 553 return execution_time, peak_memory
|
/external/avb/ |
D | aftltool | 1889 execution_time = end_time - start_time 1890 result_queue.put((start_time, end_time, execution_time, 1956 (start_time, end_time, execution_time, version_incremental, 1959 execution_time, 1961 execution_times.append(execution_time)
|
D | aftltool.py | 1889 execution_time = end_time - start_time 1890 result_queue.put((start_time, end_time, execution_time, 1956 (start_time, end_time, execution_time, version_incremental, 1959 execution_time, 1961 execution_times.append(execution_time)
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | profile_analyzer_cli.py | 404 command_parser.parse_time_interval(parsed.execution_time) 405 if parsed.execution_time else None)
|
/external/tensorflow/tensorflow/python/grappler/ |
D | cost_analyzer.cc | 53 *total_time = costs.execution_time.count(); in PredictCosts()
|
D | cluster_wrapper.cc | 269 run_time = static_cast<double>(costs.execution_time.count()) / 1e9; in PYBIND11_MODULE()
|
/external/autotest/server/cros/tradefed/tradefed_utils_unittest_data/ |
D | CtsAppTestCases.txt | 1301 …40, java_shared_dirty=1904, gc_invocation_count=0, native_free=6601, execution_time=672792, java_f…
|