[CPU] RNN, GRU, LSTM Sequences batch 1 tests failure. (#9719)
This commit is contained in:
parent
4e4b04bbd3
commit
7d173eb354
@ -71,8 +71,6 @@ std::vector<std::string> disabledTestPatterns() {
|
||||
R"(.*NonZeroLayerTest.*)",
|
||||
// TODO: 69084 Not constant Axis input produces dynamic output shape.
|
||||
R"(.*GatherLayerTestCPU.*constAx=False.*)",
|
||||
// TODO: 74601. RNN, GRU, LSTM Sequences batch 1 tests failure.
|
||||
R"(.*smoke_dynamic_BatchSizeOne.*Sequence.*)",
|
||||
// TODO: 74961. Enforce precision via inType and outType does not work properly.
|
||||
R"(.*(RNN|GRU|LSTM).*ENFORCE_BF16=YES.*)",
|
||||
// Not expected behavior
|
||||
|
@ -295,7 +295,7 @@ const std::vector<std::vector<InputShape>> dynamicShapes = {
|
||||
{ {1, 2, 10}, {1, 4, 10}, {1, 8, 10} } }, // Target shapes
|
||||
{ {1, 1, 10}, // Dynamic shape 1
|
||||
{ {1, 1, 10}, {1, 1, 10}, {1, 1, 10} } }, // Target shapes
|
||||
{ {1}, // Dynamic shape 2
|
||||
{ {-1}, // Dynamic shape 2
|
||||
{ {1}, {1}, {1} } } }, // Target shapes
|
||||
{ { {-1, -1, -1}, // #5. Dynamic shape 0
|
||||
{ {1, 2, 10}, {1, 4, 10}, {1, 8, 10} } }, // Target shapes
|
||||
|
@ -307,7 +307,7 @@ const std::vector<std::vector<InputShape>> dynamicShapes = {
|
||||
{ {1, 1, 10}, {1, 1, 10}, {1, 1, 10} } }, // Target shapes
|
||||
{ {1, 1, 10}, // Dynamic shape 2
|
||||
{ {1, 1, 10}, {1, 1, 10}, {1, 1, 10} } }, // Target shapes
|
||||
{ {1}, // Dynamic shape 3
|
||||
{ {-1}, // Dynamic shape 3
|
||||
{ {1}, {1}, {1} } } }, // Target shapes
|
||||
{ { {-1, -1, -1}, // #5. Dynamic shape 0
|
||||
{ {1, 2, 10}, {1, 4, 10}, {1, 8, 10} } }, // Target shapes
|
||||
@ -351,7 +351,7 @@ INSTANTIATE_TEST_SUITE_P(smoke_dynamic_BatchSizeOne, LSTMSequenceCPUTest,
|
||||
::testing::ValuesIn(clip),
|
||||
::testing::ValuesIn(direction),
|
||||
::testing::ValuesIn(netPrecisions),
|
||||
::testing::Values(cpuParamsBatchSizeOne),
|
||||
::testing::Values(CPUSpecificParams{{tnc}, {tnc}, {"ref_any"}, "ref_any"}),
|
||||
::testing::Values(std::map<std::string, std::string>{})),
|
||||
LSTMSequenceCPUTest::getTestCaseName);
|
||||
|
||||
|
@ -248,16 +248,16 @@ const std::vector<std::vector<InputShape>> dynamicShapes = {
|
||||
{ {-1}, // Dynamic shape 2
|
||||
{ {10}, {3}, {5} } } }, // Target shapes
|
||||
{ { {-1, {0, 7}, 10}, // #3. Dynamic shape 0
|
||||
{ {1, 2, 10}, {1, 3, 10}, {1, 6, 10} } }, // Target shapes
|
||||
{ {1, 2, 10}, {2, 3, 10}, {1, 6, 10} } }, // Target shapes
|
||||
{ {-1, 1, 1}, // Dynamic shape 1
|
||||
{ {1, 1, 1}, {1, 1, 1}, {1, 1, 1} } }, // Target shapes
|
||||
{ {1, 1, 1}, {2, 1, 1}, {1, 1, 1} } }, // Target shapes
|
||||
{ {-1}, // Dynamic shape 2
|
||||
{ {1}, {1}, {1} } } }, // Target shapes
|
||||
{ {1}, {2}, {1} } } }, // Target shapes
|
||||
{ { {1, -1, 10}, // #4. Dynamic shape 0
|
||||
{ {1, 2, 10}, {1, 4, 10}, {1, 8, 10} } }, // Target shapes
|
||||
{ {1, 1, 10}, // Dynamic shape 1
|
||||
{ {1, 1, 10}, {1, 1, 10}, {1, 1, 10} } }, // Target shapes
|
||||
{ {1}, // Dynamic shape 2
|
||||
{ {-1}, // Dynamic shape 2
|
||||
{ {1}, {1}, {1} } } }, // Target shapes
|
||||
{ { {-1, -1, -1}, // #5. Dynamic shape 0
|
||||
{ {1, 2, 10}, {1, 4, 10}, {1, 8, 10} } }, // Target shapes
|
||||
@ -282,7 +282,7 @@ const std::vector<std::vector<InputShape>> dynamicShapes = {
|
||||
};
|
||||
|
||||
INSTANTIATE_TEST_SUITE_P(smoke_dynamic, RNNSequenceCPUTest,
|
||||
::testing::Combine(::testing::ValuesIn({dynamicShapes[0], dynamicShapes[1], dynamicShapes[2]}),
|
||||
::testing::Combine(::testing::ValuesIn({dynamicShapes[0], dynamicShapes[1], dynamicShapes[2], dynamicShapes[3]}),
|
||||
::testing::ValuesIn(mode),
|
||||
::testing::ValuesIn(activations),
|
||||
::testing::ValuesIn(clip),
|
||||
|
Loading…
Reference in New Issue
Block a user