Searched refs:memory_time (Results 1 – 13 of 13) sorted by relevance
/external/tensorflow/tensorflow/core/grappler/costs/ |
D | op_level_cost_estimator_test.cc | 63 EXPECT_EQ(cost.memory_time, Costs::Duration::zero()); in ExpectZeroCost() 641 EXPECT_EQ(Costs::Duration(0), cost.memory_time); in TEST_F() 666 EXPECT_EQ(Costs::Duration(130), cost.memory_time); in TEST_F() 687 EXPECT_EQ(Costs::Duration(0), cost.memory_time); in TEST_F() 709 EXPECT_EQ(Costs::Duration(81), cost.memory_time); in TEST_F() 732 EXPECT_EQ(Costs::Duration(81), cost.memory_time); in TEST_F() 761 EXPECT_EQ(Costs::Duration(205), cost.memory_time); in TEST_F() 785 EXPECT_EQ(Costs::Duration(135), cost.memory_time); in TEST_F() 797 EXPECT_EQ(Costs::Duration(8400), cost.memory_time); in TEST_F() 809 EXPECT_EQ(Costs::Duration(233780), 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 | 133 Duration memory_time; member 184 memory_time = Duration::zero(); in Costs() 197 costs.memory_time = Duration::zero(); in ZeroCosts()
|
D | utils.cc | 325 perf->set_memory_time(cost_node->memory_time() * 1000); in CostGraphToOpPerformanceData() 495 std::max(costs->compute_time, costs->memory_time)); in CombineCostsAndUpdateExecutionTime() 497 costs->execution_time = costs->compute_time + costs->memory_time + in CombineCostsAndUpdateExecutionTime()
|
D | op_performance_data.proto | 91 int64 memory_time = 7; field
|
D | analytical_cost_estimator.cc | 63 node->set_memory_time(node_costs.memory_time.asMicroSeconds().count()); in AddCostNode()
|
D | virtual_scheduler.cc | 1017 VLOG(1) << "Expected memory time: " << graph_costs_.memory_time.count(); in Summary() 1031 const auto& memory_cost = op_cost_pair.second.memory_time.count(); in Summary() 1129 const auto& memory_cost = op_cost_pair.second.memory_time.count(); in Summary()
|
D | op_level_cost_estimator.cc | 664 costs.memory_time = 0; in PredictCosts() 872 costs.memory_time = memory_cost; in PredictOpCountBasedCost()
|
/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/profiler/utils/ |
D | cost_utils.cc | 120 << " bytes:" << costs.memory_time.count(); in Predict() 126 /*bytes_accessed=*/static_cast<uint64>(costs.memory_time.count()), in Predict()
|
/external/tensorflow/tensorflow/core/framework/ |
D | cost_graph.proto | 66 int64 memory_time = 15; field
|