Searched refs:plan_cache_ (Results 1 – 2 of 2) sorted by relevance
471 plan_cache_.reset(TfLiteIntArrayCreate(execution_plan_.size())); in GetExecutionPlan()472 *execution_plan = plan_cache_.get(); in GetExecutionPlan()473 static_assert(sizeof(plan_cache_->data[0]) == sizeof(execution_plan_[0]), in GetExecutionPlan()475 std::memcpy(plan_cache_->data, execution_plan_.data(), in GetExecutionPlan()476 sizeof(plan_cache_->data[0]) * execution_plan_.size()); in GetExecutionPlan()
705 std::unique_ptr<TfLiteIntArray, TfLiteIntArrayDeleter> plan_cache_; variable