-
Notifications
You must be signed in to change notification settings - Fork 239
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
Support string dtype for OV backend #2602
Support string dtype for OV backend #2602
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #2602 +/- ##
===========================================
- Coverage 91.16% 84.84% -6.32%
===========================================
Files 494 494
Lines 45350 45418 +68
===========================================
- Hits 41342 38536 -2806
- Misses 4008 6882 +2874
... and 62 files with indirect coverage changes
Flags with carried forward coverage won't be shown. Click here to find out more.
|
@@ -19,6 +19,7 @@ | |||
class Dtype(Enum): | |||
FLOAT = "float" | |||
INTEGER = "int" | |||
STRING = "string" |
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.
may you have test for it?
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 have added tests to be sure that we cover all available OpenVINO data types.
Hi @andrey-churkin could you please add the inverse mapping (from NNCF dtype to OV dtype) in the function |
01e13dc
to
564a3d0
Compare
@DaniAffCH Thanks! I have updated the code recently. So everything is fine now. |
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.
LGTM
Changes
Reason for changes
NotImplementedError: NNCF is not yet supported OpenVINO data type: string.
Related tickets
136751
Tests