/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/costs/ |
D | op_level_cost_estimator_test.cc | 531 EXPECT_EQ(Costs::Duration(1), cost.execution_time); in TEST_F() 551 EXPECT_EQ(Costs::Duration(146), cost.execution_time); in TEST_F() 569 EXPECT_EQ(Costs::Duration(0), cost.execution_time); in TEST_F() 589 EXPECT_EQ(Costs::Duration(91), cost.execution_time); in TEST_F() 599 EXPECT_EQ(Costs::Duration(9400), cost.execution_time); in TEST_F() 609 EXPECT_EQ(Costs::Duration(355111220), cost.execution_time); in TEST_F() 620 EXPECT_EQ(Costs::Duration(4271060), cost.execution_time); in TEST_F() 630 EXPECT_EQ(Costs::Duration(2000), cost.execution_time); in TEST_F() 641 EXPECT_EQ(Costs::Duration(2000), cost.execution_time); // max(2000, 200) in TEST_F() 655 EXPECT_EQ(Costs::Duration(356146383), 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 | 125 Duration execution_time; member 180 execution_time = Duration::zero(); in Costs() 193 costs.execution_time = Duration::zero(); in ZeroCosts()
|
D | virtual_scheduler.cc | 770 std::make_pair(node_costs.execution_time.asMicroSeconds().count(), in MarkCurrNodeExecuted() 783 device.device_costs.execution_time = node_state.time_scheduled; in MarkCurrNodeExecuted() 863 VLOG(1) << "Expected execution time: " << graph_costs_.execution_time.count(); in Summary() 877 const auto& cost = op_cost_pair.second.execution_time.count(); in Summary() 955 const auto& cost = op_cost_pair.second.execution_time.count(); in Summary() 960 total_compute_time_ns += op_cost_pair.second.execution_time; in Summary() 999 if (critical_path_costs.execution_time <= state.GetCurrTime()) { in Summary() 1018 << critical_path_costs.execution_time.count(); in Summary()
|
D | analytical_cost_estimator.cc | 61 node->set_compute_cost(node_costs.execution_time.asMicroSeconds().count()); in AddCostNode() 143 costs->execution_time = Costs::Duration::max(); in PredictCosts()
|
D | analytical_cost_estimator_test.cc | 105 EXPECT_EQ(Costs::NanoSeconds(9157), summary.execution_time); in TEST_F()
|
D | virtual_scheduler_test.cc | 1608 c.execution_time = Costs::NanoSeconds(exec_cost); in SimplePredictCosts() 2291 EXPECT_EQ(13000005, c.execution_time.asMicroSeconds().count()); in TEST_F() 2307 EXPECT_EQ(13000005, c.execution_time.asMicroSeconds().count()); in TEST_F() 2627 EXPECT_EQ(23, c.execution_time.asMicroSeconds().count()); in TEST_F() 2645 EXPECT_EQ(178, c.execution_time.asMicroSeconds().count()); in TEST_F() 2698 EXPECT_EQ(7, c.execution_time.asMicroSeconds().count()); in TEST_F() 2760 EXPECT_EQ(5, c.execution_time.asMicroSeconds().count()); in TEST_F()
|
D | op_level_cost_estimator.cc | 380 << costs.execution_time.count() << " ns."; in PredictCosts() 1292 result.execution_time = result.compute_time; in PredictIdentity() 1304 result.execution_time = result.compute_time; in PredictVariable() 1327 costs.execution_time = costs.compute_time; in PredictMetadata() 1732 costs->execution_time = in CombineCostsAndUpdateExecutionTime() 1736 costs->execution_time = costs->compute_time + costs->memory_time + in CombineCostsAndUpdateExecutionTime()
|
D | op_performance_data.proto | 100 oneof execution_time { oneof
|
D | virtual_scheduler.h | 126 Costs::Duration GetCurrTime() const { return device_costs.execution_time; } in GetCurrTime()
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | static_schedule.cc | 53 estimator.PredictCosts(op_context).execution_time; in PredictExecutionTime() 103 Costs::NanoSeconds execution_time = in EstimateEarliestExecutionTimes() local 106 execution_time + (*completion_times)[node]; in EstimateEarliestExecutionTimes() 171 Costs::NanoSeconds execution_time = in EstimateRequiredTimes() local 173 Costs::NanoSeconds required_time = (*required_times)[node] - execution_time; in EstimateRequiredTimes()
|
/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.i | 331 run_time = static_cast<double>(costs.execution_time.count()) / 1e9; in TF_MeasureCosts()
|
/external/autotest/server/cros/tradefed_test_unittest_data/ |
D | CtsAppTestCases.txt | 1301 …40, java_shared_dirty=1904, gc_invocation_count=0, native_free=6601, execution_time=672792, java_f…
|