Skip to content

Commit 1c46127

Browse files
committed
tests adjust for TL
1 parent 11de65b commit 1c46127

File tree

3 files changed

+7
-15
lines changed

3 files changed

+7
-15
lines changed

src/plugins/intel_cpu/tests/functional/shared_tests_instances/snippets/matmul.cpp

+7-8
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,19 @@ static inline std::vector<std::vector<element::Type>> precisions() {
2727
std::vector<std::vector<ov::test::InputShape>> input_shapes{
2828
{ {{}, {{2, 1, 3, 5}}}, {{}, {{1, 3, 5, 3}}} },
2929
{ {{}, {{3, 1, 32, 14}}}, {{}, {{1, 3, 14, 37}}} },
30-
// { {{}, {{1, 2, 37, 23}}}, {{}, {{2, 1, 23, 37}}} },
30+
{ {{}, {{1, 2, 37, 23}}}, {{}, {{2, 1, 23, 37}}} },
3131
{ {{}, {{1, 1, 32, 23}}}, {{}, {{1, 1, 23, 68}}} },
3232
{ {{}, {{1, 16, 384, 64}}}, {{}, {{1, 16, 64, 384}}} },
3333
{ {{}, {{1, 1, 100, 700}}}, {{}, {{1, 1, 700, 100}}} },
3434
{ {{}, {{1, 1, 100, 1024}}}, {{}, {{1, 1, 1024, 100}}} },
3535
{ {{}, {{1, 1, 100, 2500}}}, {{}, {{1, 1, 2500, 100}}} },
36-
{ {{}, {{1, 1, 100, 4500}}}, {{}, {{1, 1, 4500, 100}}} },
3736
{ {{}, {{1, 1, 100, 2048}}}, {{}, {{1, 1, 2048, 100}}} },
38-
{ {{}, {{1, 1, 100, 1024 + 32}}}, {{}, {{1, 1, 1024 + 32, 100}}} },
39-
{ {{}, {{1, 1, 100, 1024 + 16}}}, {{}, {{1, 1, 1024 + 16, 100}}} },
40-
{ {{}, {{1, 1, 100, 1024 + 8}}}, {{}, {{1, 1, 1024 + 8, 100}}} },
41-
{ {{}, {{1, 1, 100, 1024 + 4}}}, {{}, {{1, 1, 1024 + 4, 100}}} },
42-
{ {{}, {{1, 1, 100, 1024 + 2}}}, {{}, {{1, 1, 1024 + 2, 100}}} },
43-
{ {{}, {{1, 1, 100, 1024 + 1}}}, {{}, {{1, 1, 1024 + 1, 100}}} },
37+
{ {{}, {{1, 1, 100, 512 + 32}}}, {{}, {{1, 1, 512 + 32, 100}}} },
38+
{ {{}, {{1, 1, 100, 512 + 16}}}, {{}, {{1, 1, 512 + 16, 100}}} },
39+
{ {{}, {{1, 1, 100, 512 + 8}}}, {{}, {{1, 1, 512 + 8, 100}}} },
40+
{ {{}, {{1, 1, 100, 512 + 4}}}, {{}, {{1, 1, 512 + 4, 100}}} },
41+
{ {{}, {{1, 1, 100, 512 + 2}}}, {{}, {{1, 1, 512 + 2, 100}}} },
42+
{ {{}, {{1, 1, 100, 512 + 1}}}, {{}, {{1, 1, 512 + 1, 100}}} },
4443
// Only M dimension is dynamic + one one loop by M
4544
{
4645
{PartialShape{-1, 2, -1, 64}, {{2, 2, 64, 64}, {2, 2, 64, 64}, {2, 2, 35, 64},

src/plugins/intel_cpu/tests/functional/shared_tests_instances/snippets/mha_quantized.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ std::vector<std::vector<InputShape>> inputShapesQuantized {
2525
{{}, {{1, 1, 68, 68}}},
2626
{{}, {{2, 68, 6, 92}}}
2727
},
28-
{
29-
{{}, {{2, 24, 4250, 64}}},
30-
{{}, {{2, 24, 4250, 64}}},
31-
{{}, {{2, 4250, 24, 24}}},
32-
{{}, {{2, 24, 4250, 64}}}
33-
},
3428
// K, N are static
3529
{
3630
{PartialShape{-1, -1, -1, 100}, {{1, 64, 4, 100}, {2, 16, 2, 100}, {1, 72, 4, 100}}},

src/plugins/intel_cpu/tests/functional/shared_tests_instances/snippets/mha_wo_transpose.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ namespace {
1515
std::vector<std::vector<ov::test::InputShape>> originalShape_4D {
1616
{ {{}, {{1, 12, 197, 64}}}, {{}, {{1, 12, 64, 197}}}, {{}, {{1, 12, 197, 64}}} },
1717
{ {{}, {{1, 12, 12, 64}}}, {{}, {{1, 12, 64, 48}}}, {{}, {{1, 12, 48, 64}}} },
18-
{ {{}, {{2, 24, 4250, 64}}}, {{}, {{2, 24, 64, 4250}}}, {{}, {{2, 24, 4250, 64}}} },
1918
{
2019
{PartialShape{-1, -1, -1, -1}, {{1, 3, 128, 64}, {1, 12, 197, 100}, {1, 3, 128, 64}, {1, 12, 197, 600}}},
2120
{PartialShape{-1, -1, -1, -1}, {{1, 3, 64, 128}, {1, 12, 100, 197}, {1, 3, 64, 128}, {1, 12, 600, 197}}},

0 commit comments

Comments
 (0)