@@ -169,6 +169,10 @@ TEST_F(TokenizeMHASnippetsTests, smoke_Snippets_MHA3D_SplitM) {
169
169
}
170
170
171
171
TEST_F (TokenizeMHASnippetsTests, smoke_Snippets_MHA3D_SplitM_withMul) {
172
+ #if defined(WIN32) && !defined(NDEBUG)
173
+ test_skipped = true ;
174
+ GTEST_SKIP () << " Skipping on Windows in Debug mode due to Issue 155258." ;
175
+ #endif
172
176
const auto & f = MHASplitMFunction (std::vector<PartialShape>{{128 , 12 , 64 }, {128 , 12 , 64 }, {12 , 128 , 128 }, {128 , 12 , 64 }},
173
177
std::vector<ov::element::Type>({ov::element::f32, ov::element::f32, ov::element::f32, ov::element::f32}),
174
178
std::vector<Shape>{{2 , 64 , 12 , 64 }, {128 , 12 , 1 , 64 }, {12 , 2 , 64 , 128 }, {1 , 128 , 12 , 64 }, {128 , 12 , 64 }},
@@ -191,6 +195,10 @@ TEST_F(TokenizeMHASnippetsTests, smoke_Snippets_MHA4D_SplitM) {
191
195
}
192
196
193
197
TEST_F (TokenizeMHASnippetsTests, smoke_Snippets_MHA4D_SplitM_withMul) {
198
+ #if defined(WIN32) && !defined(NDEBUG)
199
+ test_skipped = true ;
200
+ GTEST_SKIP () << " Skipping on Windows in Debug mode due to Issue 155258." ;
201
+ #endif
194
202
const auto & f = MHASplitMFunction (std::vector<PartialShape>{{1 , 384 , 16 , 64 }, {1 , 384 , 16 , 64 }, {1 , 1 , 1 , 384 }, {1 , 384 , 16 , 64 }},
195
203
std::vector<ov::element::Type>({ov::element::f32, ov::element::f32, ov::element::f32, ov::element::f32}),
196
204
std::vector<Shape>{{1 , 6 , 64 , 16 , 64 }, {1 , 384 , 16 , 1 , 64 }, {1 , 1 , 1 , 1 , 384 }, {1 , 1 , 384 , 16 , 64 }, {1 , 384 , 16 , 64 }},
0 commit comments