| 58 | } |
| 59 | |
| 60 | void PassManager::run_all(Graph &g) |
| 61 | { |
| 62 | for (auto &pass : _passes) |
| 63 | { |
| 64 | if (pass) |
| 65 | { |
| 66 | ARM_COMPUTE_LOG_GRAPH_INFO("Running mutating pass : " << pass->name() << std::endl); |
| 67 | pass->mutate(g); |
| 68 | } |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | void PassManager::run_type(Graph &g, IGraphMutator::MutationType type) |
| 73 | { |