-
Notifications
You must be signed in to change notification settings - Fork 2.8k
[CORE] Try to correct 'undefined' and 'dynamic' type serialization #28524
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
[CORE] Try to correct 'undefined' and 'dynamic' type serialization #28524
Conversation
b16492a to
799051c
Compare
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.
The more detailed serialization of Precision should be backward compatible as de-serialization just read name and convert it.
| return "undefined"; | ||
| case ::ov::element::Type_t::dynamic: | ||
| return "UNSPECIFIED"; | ||
| return "dynamic"; |
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.
Can you some simple test(s) in:
- one of file in:
src/core/tests/pass/serialization/ src/frontends/ir/tests/frontend_test_basic.cppto check de-serialization also works
|
After merge of #28766 this change will be not required as underdefined and dynamic is same type and undefined will be remove in 2026.0 |
### Details: - Mark `ov::element::undefined` as deprecated - Use dynamic type instead of undefined ### Related PRs: - openvinotoolkit/openvino_contrib#945 - #28524 ### Tickets: - CVS-161637 --------- Signed-off-by: Pawel Raasz <[email protected]> Signed-off-by: Raasz, Pawel <[email protected]>
|
This PR will be closed in a week because of 2 weeks of no activity. |
|
This PR will be closed in a week because of 2 weeks of no activity. |
|
This PR was closed because it has been stalled for 2 week with no activity. |
Details:
and the ir serializer itself.
After introduction of internal opset FullyConnected operation the 'undefined' element type basically
became valid and serializable