Skip to content

Commit

Permalink
[CPU] OV CPU plugin fails to infer SegNext model (#28637)
Browse files Browse the repository at this point in the history
### Details:
 - **
 - 
### Tickets:
 - *158419*
  • Loading branch information
nshchego authored Jan 29, 2025
1 parent 6fea70a commit 90ae7ac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ class MatMulDecompressConvertTest2 : public MatMulDecompressConvertTest {
if (transpA)
transposeCount += 2;
if (!transpB)
transposeCount++;
transposeCount += 2;

if (transpA) {
transpose_shape(inputDynamicShapes[0]);
Expand Down Expand Up @@ -503,7 +503,7 @@ namespace {

const auto testParams2D_FP16_2_smoke =
::testing::Combine(::testing::Values(static_shapes_to_test_representation({{2, 3}, {2, 3}, {3, 4}})),
::testing::Values(std::pair<bool, bool>{false, true}),
::testing::Values(std::pair<bool, bool>{false, true}, std::pair<bool, bool>{true, false}),
::testing::Values(ElementType::f16),
::testing::Values(emptyConfig),
::testing::ValuesIn(filter_specific_params(false)));
Expand Down

0 comments on commit 90ae7ac

Please sign in to comment.