Disable auto fusing in ie backend

This commit is contained in:
Anatoliy Talamanov 2021-05-12 09:02:17 +03:00
parent 776d92e797
commit 7e12af2448

View File

@ -1290,6 +1290,17 @@ namespace {
, cv::gimpl::ie::InferList2
>();
}
virtual bool controlsMerge() const override {
return true;
}
virtual bool allowsMerge(const cv::gimpl::GIslandModel::Graph &,
const ade::NodeHandle &,
const ade::NodeHandle &,
const ade::NodeHandle &) const override {
return false;
}
};
}