Home
last modified time | relevance | path

Searched refs:new_plan (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/lite/
Dinterpreter_test_util.h71 TfLiteStatus SetExecutionPlan(const std::vector<int>& new_plan) { in SetExecutionPlan() argument
72 return interpreter_->SetExecutionPlan(new_plan); in SetExecutionPlan()
Dinterpreter.cc287 TfLiteStatus Interpreter::SetExecutionPlan(const std::vector<int>& new_plan) { in SetExecutionPlan() argument
288 return primary_subgraph().SetExecutionPlan(new_plan); in SetExecutionPlan()
Dinterpreter.h796 TfLiteStatus SetExecutionPlan(const std::vector<int>& new_plan);
/external/tensorflow/tensorflow/lite/core/
Dsubgraph.h491 TfLiteStatus SetExecutionPlan(const std::vector<int>& new_plan);
Dsubgraph.cc1556 TfLiteStatus Subgraph::SetExecutionPlan(const std::vector<int>& new_plan) { in SetExecutionPlan() argument
1557 for (int node_index : new_plan) { in SetExecutionPlan()
1561 execution_plan_ = new_plan; in SetExecutionPlan()