Skip to content

Commit

Permalink
[NPUW] Support i16/u16 constants during partitioning (#27437)
Browse files Browse the repository at this point in the history
  • Loading branch information
smirnov-alexey authored Nov 6, 2024
1 parent 42d4377 commit 33cba00
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1287,6 +1287,8 @@ void Partitioner::saveRepeatedConstants(const std::string& func_name) {
HANDLE_CASE(boolean, bool);
HANDLE_CASE(i4, int8_t);
HANDLE_CASE(u4, uint8_t);
HANDLE_CASE(i16, int16_t);
HANDLE_CASE(u16, uint16_t);
HANDLE_CASE(i32, int);
HANDLE_CASE(i64, int64_t);
HANDLE_CASE(f16, uint16_t);
Expand Down

0 comments on commit 33cba00

Please sign in to comment.