Searched refs:memory_time (Results 1 – 12 of 12) sorted by relevance
/external/tensorflow/tensorflow/core/grappler/costs/ |
D | op_level_cost_estimator_test.cc | 529 EXPECT_EQ(Costs::Duration(0), cost.memory_time); in TEST_F() 549 EXPECT_EQ(Costs::Duration(130), cost.memory_time); in TEST_F() 567 EXPECT_EQ(Costs::Duration(0), cost.memory_time); in TEST_F() 587 EXPECT_EQ(Costs::Duration(81), cost.memory_time); in TEST_F() 597 EXPECT_EQ(Costs::Duration(8400), cost.memory_time); in TEST_F() 607 EXPECT_EQ(Costs::Duration(233780), cost.memory_time); in TEST_F() 618 EXPECT_EQ(Costs::Duration(112340), cost.memory_time); in TEST_F() 628 EXPECT_EQ(Costs::Duration(2000), cost.memory_time); in TEST_F() 639 EXPECT_EQ(Costs::Duration(2000), cost.memory_time); in TEST_F() 653 EXPECT_EQ(Costs::Duration(825345), cost.memory_time); in TEST_F() [all …]
|
D | cost_estimator_test.cc | 28 c.memory_time = Costs::NanoSeconds(3); in TEST() 43 EXPECT_EQ(sum.memory_time, Costs::NanoSeconds(6)); in TEST() 59 c.memory_time = Costs::NanoSeconds(3); in TEST() 74 EXPECT_EQ(product.memory_time, Costs::NanoSeconds(30)); in TEST()
|
D | cost_estimator.cc | 29 result.memory_time += right.memory_time; in CombineCosts() 70 result.memory_time *= multiplier; in MultiplyCosts()
|
D | cost_estimator.h | 131 Duration memory_time; member 182 memory_time = Duration::zero(); in Costs() 195 costs.memory_time = Duration::zero(); in ZeroCosts()
|
D | analytical_cost_estimator.cc | 63 node->set_memory_time(node_costs.memory_time.asMicroSeconds().count()); in AddCostNode()
|
D | op_performance_data.proto | 91 int64 memory_time = 7; field
|
D | virtual_scheduler.cc | 865 VLOG(1) << "Expected memory time: " << graph_costs_.memory_time.count(); in Summary() 879 const auto& memory_cost = op_cost_pair.second.memory_time.count(); in Summary() 957 const auto& memory_cost = op_cost_pair.second.memory_time.count(); in Summary()
|
D | utils.cc | 324 perf->set_memory_time(cost_node->memory_time() * 1000); in CostGraphToOpPerformanceData()
|
D | op_level_cost_estimator.cc | 555 costs.memory_time = memory_cost; in PredictOpCountBasedCost() 1734 std::max(costs->compute_time, costs->memory_time)); in CombineCostsAndUpdateExecutionTime() 1736 costs->execution_time = costs->compute_time + costs->memory_time + in CombineCostsAndUpdateExecutionTime()
|
/external/tensorflow/tensorflow/python/grappler/ |
D | cost_analyzer.cc | 108 perf->set_memory_time(analytical.memory_time()); in PreprocessCosts() 119 double analytical_memory_cost = analytical.memory_time(); in PreprocessCosts() 148 ops[op_name].memory_time += op_perf.memory_time(); in AnalyzeCosts() 149 ops[op_name].time_upper += op_perf.compute_time() + op_perf.memory_time(); in AnalyzeCosts() 151 std::max(op_perf.compute_time(), op_perf.memory_time()); in AnalyzeCosts() 215 static_cast<double>(op.memory_time) / static_cast<double>(op.time); in PrintAnalysis() 257 os << std::setw(width_wide) << perf.memory_time() << ","; in PrintAnalysis()
|
D | cost_analyzer.h | 42 int64 memory_time; member
|
/external/tensorflow/tensorflow/core/framework/ |
D | cost_graph.proto | 64 int64 memory_time = 15; field
|