mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 17:44:04 +08:00
Merge pull request #21009 from alalek:dnn_skip_tests_32bit
This commit is contained in:
commit
635990a5b0
@ -282,7 +282,10 @@ TEST_P(Test_Model, Classify)
|
|||||||
|
|
||||||
TEST_P(Test_Model, DetectRegion)
|
TEST_P(Test_Model, DetectRegion)
|
||||||
{
|
{
|
||||||
applyTestTag(CV_TEST_TAG_LONG, CV_TEST_TAG_MEMORY_1GB);
|
applyTestTag(
|
||||||
|
CV_TEST_TAG_LONG,
|
||||||
|
CV_TEST_TAG_MEMORY_2GB
|
||||||
|
);
|
||||||
|
|
||||||
#if defined(INF_ENGINE_RELEASE) && INF_ENGINE_VER_MAJOR_EQ(2020040000) // nGraph compilation failure
|
#if defined(INF_ENGINE_RELEASE) && INF_ENGINE_VER_MAJOR_EQ(2020040000) // nGraph compilation failure
|
||||||
if (backend == DNN_BACKEND_INFERENCE_ENGINE_NGRAPH && target == DNN_TARGET_OPENCL)
|
if (backend == DNN_BACKEND_INFERENCE_ENGINE_NGRAPH && target == DNN_TARGET_OPENCL)
|
||||||
@ -332,7 +335,10 @@ TEST_P(Test_Model, DetectRegion)
|
|||||||
|
|
||||||
TEST_P(Test_Model, DetectRegionWithNmsAcrossClasses)
|
TEST_P(Test_Model, DetectRegionWithNmsAcrossClasses)
|
||||||
{
|
{
|
||||||
applyTestTag(CV_TEST_TAG_LONG, CV_TEST_TAG_MEMORY_1GB);
|
applyTestTag(
|
||||||
|
CV_TEST_TAG_LONG,
|
||||||
|
CV_TEST_TAG_MEMORY_2GB
|
||||||
|
);
|
||||||
|
|
||||||
#if defined(INF_ENGINE_RELEASE) && INF_ENGINE_VER_MAJOR_EQ(2020040000) // nGraph compilation failure
|
#if defined(INF_ENGINE_RELEASE) && INF_ENGINE_VER_MAJOR_EQ(2020040000) // nGraph compilation failure
|
||||||
if (backend == DNN_BACKEND_INFERENCE_ENGINE_NGRAPH && target == DNN_TARGET_OPENCL)
|
if (backend == DNN_BACKEND_INFERENCE_ENGINE_NGRAPH && target == DNN_TARGET_OPENCL)
|
||||||
@ -582,6 +588,10 @@ TEST_P(Test_Model, Detection_normalized)
|
|||||||
|
|
||||||
TEST_P(Test_Model, Segmentation)
|
TEST_P(Test_Model, Segmentation)
|
||||||
{
|
{
|
||||||
|
applyTestTag(
|
||||||
|
CV_TEST_TAG_MEMORY_2GB
|
||||||
|
);
|
||||||
|
|
||||||
std::string inp = _tf("dog416.png");
|
std::string inp = _tf("dog416.png");
|
||||||
std::string weights_file = _tf("fcn8s-heavy-pascal.prototxt");
|
std::string weights_file = _tf("fcn8s-heavy-pascal.prototxt");
|
||||||
std::string config_file = _tf("fcn8s-heavy-pascal.caffemodel", false);
|
std::string config_file = _tf("fcn8s-heavy-pascal.caffemodel", false);
|
||||||
|
Loading…
Reference in New Issue
Block a user