Home
last modified time | relevance | path

Searched refs:OpLevelCostEstimator (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/core/grappler/costs/
Dop_level_cost_estimator.cc218 OpLevelCostEstimator::OpLevelCostEstimator() { in OpLevelCostEstimator() function in tensorflow::grappler::OpLevelCostEstimator
221 typedef Costs (OpLevelCostEstimator::*CostImpl)(const OpContext& op_context) in OpLevelCostEstimator()
230 {kConv2d, wrap(&OpLevelCostEstimator::PredictConv2D)}, in OpLevelCostEstimator()
232 wrap(&OpLevelCostEstimator::PredictConv2DBackpropFilter)}, in OpLevelCostEstimator()
234 wrap(&OpLevelCostEstimator::PredictConv2DBackpropInput)}, in OpLevelCostEstimator()
236 wrap(&OpLevelCostEstimator::PredictFusedConv2DBiasActivation)}, in OpLevelCostEstimator()
240 {kDepthwiseConv2dNative, wrap(&OpLevelCostEstimator::PredictConv2D)}, in OpLevelCostEstimator()
242 wrap(&OpLevelCostEstimator::PredictConv2DBackpropFilter)}, in OpLevelCostEstimator()
244 wrap(&OpLevelCostEstimator::PredictConv2DBackpropInput)}, in OpLevelCostEstimator()
245 {kMatMul, wrap(&OpLevelCostEstimator::PredictMatMul)}, in OpLevelCostEstimator()
[all …]
Danalytical_cost_estimator.h47 std::unique_ptr<OpLevelCostEstimator> node_estimator,
68 std::unique_ptr<OpLevelCostEstimator> node_estimator_;
Dop_level_cost_estimator.h32 class OpLevelCostEstimator {
34 OpLevelCostEstimator();
35 virtual ~OpLevelCostEstimator() {} in ~OpLevelCostEstimator()
Danalytical_cost_estimator.cc112 cluster, absl::make_unique<OpLevelCostEstimator>(), in AnalyticalCostEstimator()
117 Cluster* cluster, std::unique_ptr<OpLevelCostEstimator> node_estimator, in AnalyticalCostEstimator()
Dop_level_cost_estimator_test.cc34 class TestOpLevelCostEstimator : public OpLevelCostEstimator {
492 auto dims = OpLevelCostEstimator::OpDimensionsFromInputs( in ValidateOpDimensionsFromImputs()
515 OpLevelCostEstimator estimator_;
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dstatic_schedule.cc31 const GraphProperties& properties, const OpLevelCostEstimator& estimator, in PredictExecutionTime()
96 OpLevelCostEstimator estimator; in EstimateEarliestExecutionTimes()
164 OpLevelCostEstimator estimator; in EstimateRequiredTimes()
/external/tensorflow/tensorflow/core/grappler/clusters/
Dvirtual_cluster.cc29 : VirtualCluster(devices, absl::make_unique<OpLevelCostEstimator>(), in VirtualCluster()
34 std::unique_ptr<OpLevelCostEstimator> node_estimator, in VirtualCluster()
Dvirtual_cluster.h38 std::unique_ptr<OpLevelCostEstimator> node_estimator,
/external/tensorflow/tensorflow/python/grappler/
Dcluster.i310 tensorflow::grappler::OpLevelCostEstimator estimator; in TF_EstimatePerformance()