You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NPUW: Change the sub-byte (i4) element order in the unpack procedure to match OpenVINO 2024.0 (#25827)
### Details:
In the latest versions of OpenVINO the sub-byte order is defined as
[1,0]
meaning that first (MSB) 4 bits of an 8-bit vector form 1st element, and
the last (LSB) 4 bits of an 8-bit vector form 0th element.
Our unpack procedures for i4 were aligned with the older representation,
where sub-byte order was defined as
[0,1]
meaning that first (MSB) 4 bits of an 8-bit vector form 0th element, and
the last (LSB) 4 bits were the 1st element.
**Updated these unpack functions to use this new order.**
### Tickets:
- *121052*
0 commit comments