| 35 | |
| 36 | template <typename TaskType> |
| 37 | void Execute(int tasks_count, TaskType* tasks, |
| 38 | CpuBackendContext* cpu_backend_context) { |
| 39 | TFLITE_DCHECK_LE(tasks_count, cpu_backend_context->max_num_threads()); |
| 40 | cpu_backend_context->ruy_context()->workers_pool.Execute(tasks_count, tasks); |
| 41 | } |
| 42 | |
| 43 | #else // not TFLITE_WITH_RUY |
| 44 |