Searched refs:plan_cache_ (Results 1 – 2 of 2) sorted by relevance
356 plan_cache_.reset(TfLiteIntArrayCreate(execution_plan_.size())); in GetExecutionPlan()357 *execution_plan = plan_cache_.get(); 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()
512 std::unique_ptr<TfLiteIntArray, TfLiteIntArrayDeleter> plan_cache_; variable