Remove Pruning from MO (#6183)

This commit is contained in:
Gleb Kazantaev
2021-06-16 14:52:54 +03:00
committed by GitHub
parent fe1563f0f0
commit e47287264c

View File

@@ -12,9 +12,5 @@
NGRAPH_RTTI_DEFINITION(ngraph::pass::MOCTransformations, "MOCTransformations", 0);
bool ngraph::pass::MOCTransformations::run_on_function(std::shared_ptr<ngraph::Function> f) {
ngraph::pass::Manager m(get_pass_config());
m.register_pass<Pruning>();
m.run_passes(f);
return false;
}