Remove ConvolutionBackprop as dynamic op. (#7800)

This commit is contained in:
Szymon Durawa 2021-10-04 12:09:58 +02:00 committed by GitHub
parent 74a0ffb1b0
commit 111c502997
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,8 +65,7 @@ runtime::dynamic::DynamicExecutable::DynamicExecutable(shared_ptr<Function> wrap
// Due to clang++-3.9 bugs, this needs to be a non-static separate function from
// count_dyn_nodes.
bool is_dynamic_op(const std::shared_ptr<Node>& op) {
return ov::is_type<op::Range>(op) || ov::is_type<op::v1::ConvolutionBackpropData>(op) ||
ov::is_type<op::v3::Broadcast>(op);
return ov::is_type<op::Range>(op) || ov::is_type<op::v3::Broadcast>(op);
}
// Helper for a vile hack in DynamicExecutable::call. See body of that function for details.