| 130 | } |
| 131 | |
| 132 | TfLiteStatus Refresh(TfLiteContext* context) { |
| 133 | SetEigenNbThreads(context->recommended_num_threads); |
| 134 | |
| 135 | auto* ptr = GetEigenContext(context); |
| 136 | if (ptr != nullptr) { |
| 137 | ptr->thread_pool_holder->SetNumThreads(context->recommended_num_threads); |
| 138 | } |
| 139 | |
| 140 | return kTfLiteOk; |
| 141 | } |
| 142 | |
| 143 | } // namespace |
| 144 |
nothing calls this directly
no test coverage detected