MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / run_all

Method run_all

src/graph/PassManager.cpp:60–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58}
59
60void 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
72void PassManager::run_type(Graph &g, IGraphMutator::MutationType type)
73{

Callers

nothing calls this directly

Calls 2

nameMethod · 0.45
mutateMethod · 0.45

Tested by

no test coverage detected