Searched refs:plan_cache_ (Results 1 – 2 of 2) sorted by relevance
502 plan_cache_.reset(TfLiteIntArrayCreate(execution_plan_.size())); in GetExecutionPlan()503 *execution_plan = plan_cache_.get(); in GetExecutionPlan()504 static_assert(sizeof(plan_cache_->data[0]) == sizeof(execution_plan_[0]), in GetExecutionPlan()506 std::memcpy(plan_cache_->data, execution_plan_.data(), in GetExecutionPlan()507 sizeof(plan_cache_->data[0]) * execution_plan_.size()); in GetExecutionPlan()
838 std::unique_ptr<TfLiteIntArray, TfLiteIntArrayDeleter> plan_cache_; variable