NonZero operation: uncomment tests since they can be passed now (#11548)

* NonZero operation: uncomment tests since they can be passed now

# Conflicts:
#	src/tests/functional/plugin/cpu/shared_tests_instances/skip_tests_config.cpp

* Unbreak tests once more by changing base class from LayerTestsCommon to SubgraphBaseTest

* Unbreak compilation / style

* Add test case for cache

Co-authored-by: Chenhu Wang <chenhu.wang@intel.com>

* Increase zeroes count for NonZero tests

* Correct the change

* Remove my previous changes and add dynamic shapes / repeatable shapes into the correct file

Co-authored-by: Chenhu Wang <chenhu.wang@intel.com>
This commit is contained in:
avoskoboinyk-lohika 2022-07-11 08:34:11 +03:00 committed by GitHub
parent b371e74735
commit bb82f43e22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,6 +175,26 @@ std::vector<InputShape> inShapesDynamic = {
{4, 4, 4, 200},
{4, 4, 4, 300}
}
},
{
// dynamic shape
{-1, -1, -1, -1, -1},
{ // target static shapes
{4, 24, 5, 6, 4},
{8, 32, 9, 10, 2},
{4, 24, 5, 6, 4},
{16, 48, 9, 12, 2}
}
},
{
// dynamic shape
{-1, {1, 50}, -1, {1, 30}, -1},
{ // target static shapes
{1, 16, 1, 8, 8},
{8, 32, 5, 14, 6},
{4, 16, 9, 10, 8},
{8, 32, 5, 14, 6}
}
}
};
std::vector<ngraph::Shape> inShapesStatic = {