[CPU] Double registration of MVN6 decomposition. (#4388)

This commit is contained in:
Nikolay Shchegolev 2021-02-18 11:11:02 +03:00 committed by GitHub
parent 9d28767b72
commit a5fce440e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 13 deletions

View File

@ -120,7 +120,6 @@ static void Transformation(CNNNetwork& clonedNetwork, const Config& conf) {
// WA: ConvertPriorBox must be executed before the 1st ConstantFolding pass
manager.register_pass<ngraph::pass::ConvertPriorBox>();
manager.register_pass<ngraph::pass::MVN6Decomposition>();
manager.register_pass<ngraph::pass::ConvertNMS5ToLegacyMatcher>();
manager.register_pass<ngraph::pass::CommonOptimizations>();
manager.register_pass<ngraph::pass::ConvertRNNSequenceToTensorIterator>();

View File

@ -130,18 +130,6 @@ INSTANTIATE_TEST_CASE_P(smoke_MVN_1D, Mvn6LayerTest,
::testing::Values(CommonTestUtils::DEVICE_CPU)),
Mvn6LayerTest::getTestCaseName);
INSTANTIATE_TEST_CASE_P(smoke_Decomposition_1D, Mvn6LayerTest,
::testing::Combine(
::testing::ValuesIn(std::vector<std::vector<size_t>>{{3}, {9}, {55}}),
::testing::ValuesIn(dataPrecisions),
::testing::ValuesIn(idxPrecisions),
::testing::ValuesIn(std::vector<std::vector<int>>{{}}),
::testing::ValuesIn(normalizeVariance),
::testing::ValuesIn(epsilonF),
::testing::ValuesIn(epsMode),
::testing::Values(CommonTestUtils::DEVICE_CPU)),
Mvn6LayerTest::getTestCaseName);
INSTANTIATE_TEST_CASE_P(smoke_Decomposition_3D, Mvn6LayerTest,
::testing::Combine(
::testing::ValuesIn(std::vector<std::vector<size_t>>{{1, 32, 17}, {1, 37, 9}}),