-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove dynamism from API 1.0 #10167
Remove dynamism from API 1.0 #10167
Conversation
7c6dc7b
to
5e7a764
Compare
@@ -476,17 +469,21 @@ void TemplateInferRequest::SetBlob(const std::string& name, const InferenceEngin | |||
IE_THROW(NotAllocated) << "Failed to set empty blob with name: \'" << name << "\'"; | |||
InputInfo::Ptr foundInput; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what if we remove usage of old foundInput
and foundOutput
? In this case we will rely on new _results
and _parameters
which are introduced in OV 2.0 and they have information about dynamism.
In this case we don't need to play with has_zeros
, because in general we want template plugin to work only with OV 2.0 and ov::Model
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm ok from Python API perspective
Details:
Tickets: