diff --git a/src/common/low_precision_transformations/src/recurrent_cell.cpp b/src/common/low_precision_transformations/src/recurrent_cell.cpp index 77f50ce101f2cd..0a3657af986500 100644 --- a/src/common/low_precision_transformations/src/recurrent_cell.cpp +++ b/src/common/low_precision_transformations/src/recurrent_cell.cpp @@ -58,14 +58,6 @@ RecurrentCellTransformation::RecurrentCellTransformation(const Params& params) : const auto lstm_cell_with_dequantizations_without_subtract = ngraph::pattern::wrap_type( {dequantization_multiply_without_subtract_X, dequantization_multiply_without_subtract_H, C, fq_W, fq_R, B}); - const auto seq_lengths = ngraph::pattern::wrap_type(); - const auto lstm_sequence = ngraph::pattern::wrap_type( - {fq_X, fq_H, C, seq_lengths, fq_W, fq_R, B}); - const auto lstm_sequence_with_dequantizations = ngraph::pattern::wrap_type( - {dequantization_multiply_X, dequantization_multiply_H, C, seq_lengths, fq_W, fq_R, B}); - const auto lstm_sequence_with_dequantizations_without_subtract = ngraph::pattern::wrap_type( - {dequantization_multiply_without_subtract_X, dequantization_multiply_without_subtract_H, C, seq_lengths, fq_W, fq_R, B}); - const auto gru_cell = ngraph::pattern::wrap_type({fq_X, fq_H, fq_W, fq_R, B}); const auto gru_cell_with_dequantizations = ngraph::pattern::wrap_type( {dequantization_multiply_X, dequantization_multiply_X, fq_W, fq_R, B}); @@ -91,9 +83,6 @@ RecurrentCellTransformation::RecurrentCellTransformation(const Params& params) : std::make_shared(OutputVector{lstm_cell, lstm_cell_with_dequantizations, lstm_cell_with_dequantizations_without_subtract, - lstm_sequence, - lstm_sequence_with_dequantizations, - lstm_sequence_with_dequantizations_without_subtract, gru_cell, gru_cell_with_dequantizations, gru_cell_with_dequantizations_without_subtract, diff --git a/src/tests/functional/inference_engine/lp_transformations/recurrent_cell_transformation.cpp b/src/tests/functional/inference_engine/lp_transformations/recurrent_cell_transformation.cpp index c7afae4b86f51a..068081b49c3993 100644 --- a/src/tests/functional/inference_engine/lp_transformations/recurrent_cell_transformation.cpp +++ b/src/tests/functional/inference_engine/lp_transformations/recurrent_cell_transformation.cpp @@ -432,7 +432,7 @@ const std::vector testValues = { }, }; INSTANTIATE_TEST_SUITE_P( - smoke_LPT, + DISABLED_smoke_LPT, RecurrentCellTransformation, ::testing::Combine( ::testing::ValuesIn(precisions),