HomeSort by relevance Sort by last modified time
    Searched defs:op_cost (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/core/grappler/costs/
op_level_cost_estimator.cc 385 int op_cost = 1; local
389 op_cost = it->second;
395 Costs costs = PredictOpCountBasedCost(op_count * op_cost, op_features);
    [all...]
virtual_scheduler.cc 710 std::map<string, Costs>* op_cost) {
711 auto it = op_cost->find(op_name);
712 if (it == op_cost->end()) {
715 it = op_cost->emplace(op_name, Costs::ZeroCosts()).first;
734 auto& op_cost = FindOrCreateZero(op_name, &op_to_cost_); local
735 op_cost = CombineCosts(op_cost, node_costs);
    [all...]

Completed in 155 milliseconds