Skip to content

Commit

Permalink
Fix dynamic shapes test
Browse files Browse the repository at this point in the history
  • Loading branch information
mitruska committed Feb 10, 2025
1 parent 25f075a commit 920f081
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tests/functional/shared_test_classes/src/single_op/istft.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,11 @@ const ISTFTLayerTest::TGenData ISTFTLayerTest::GetTestDataForDevice(const char*
},
{
// Dynamic dims in the first and second input shape
{{-1}, {{9, 3, 2}}}, // 1st input
{{-1}, {{8}}}, // 2nd input
{{}, {{}}}, // 3rd input
{{}, {{}}}, // 4th input
{{}, {{}}} // 5th input
{{-1, -1, -1}, {{9, 3, 2}}}, // 1st input
{{-1}, {{8}}}, // 2nd input
{{}, {{}}}, // 3rd input
{{}, {{}}}, // 4th input
{{}, {{}}} // 5th input
}};

const std::vector<int64_t> frame_size = {16, 24};
Expand Down

0 comments on commit 920f081

Please sign in to comment.