Home
last modified time | relevance | path

Searched refs:execution_plan_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/lite/core/
Dsubgraph.cc283 execution_plan_.clear(); in ReplaceNodeSubsetsWithDelegateKernels()
293 execution_plan_.push_back(*it); in ReplaceNodeSubsetsWithDelegateKernels()
356 plan_cache_.reset(TfLiteIntArrayCreate(execution_plan_.size())); in GetExecutionPlan()
358 static_assert(sizeof(plan_cache_->data[0]) == sizeof(execution_plan_[0]), in GetExecutionPlan()
360 std::memcpy(plan_cache_->data, execution_plan_.data(), in GetExecutionPlan()
361 sizeof(plan_cache_->data[0]) * execution_plan_.size()); in GetExecutionPlan()
576 execution_plan_.push_back(new_node_index); in AddNodeWithParameters()
614 execution_plan_index < execution_plan_.size(); execution_plan_index++) { in PrepareOpsStartingAt()
615 int node_index = execution_plan_[execution_plan_index]; in PrepareOpsStartingAt()
670 if (next_execution_plan_index_to_prepare_ == execution_plan_.size()) { in Invoke()
[all …]
Dsubgraph.h167 std::vector<int>& execution_plan() { return execution_plan_; } in execution_plan()
170 const std::vector<int>& execution_plan() const { return execution_plan_; } in execution_plan()
508 std::vector<int> execution_plan_; variable