| 73 | std::map<Scheduler::Type, std::unique_ptr<IScheduler>> Scheduler::_schedulers{}; |
| 74 | |
| 75 | void Scheduler::set(Type t) |
| 76 | { |
| 77 | ARM_COMPUTE_ERROR_ON(!Scheduler::is_available(t)); |
| 78 | _scheduler_type = t; |
| 79 | } |
| 80 | |
| 81 | bool Scheduler::is_available(Type t) |
| 82 | { |
no outgoing calls