From 93c3c24c2b1572642dae6b8eb4bebd36348149ef Mon Sep 17 00:00:00 2001 From: Gleb Kazantaev Date: Wed, 26 May 2021 13:06:56 +0300 Subject: [PATCH] Added attributes comparision to CompareNetwork function (#5823) Co-authored-by: Gleb Kazantaev --- .../python/src/openvino/test_utils/test_utils_api_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inference-engine/ie_bridges/python/src/openvino/test_utils/test_utils_api_impl.cpp b/inference-engine/ie_bridges/python/src/openvino/test_utils/test_utils_api_impl.cpp index 86c74cb32071f0..bb289b9266a35b 100644 --- a/inference-engine/ie_bridges/python/src/openvino/test_utils/test_utils_api_impl.cpp +++ b/inference-engine/ie_bridges/python/src/openvino/test_utils/test_utils_api_impl.cpp @@ -8,5 +8,5 @@ #include std::pair InferenceEnginePython::CompareNetworks(InferenceEnginePython::IENetwork lhs, InferenceEnginePython::IENetwork rhs) { - return compare_functions(lhs.actual->getFunction(), rhs.actual->getFunction(), true, true, false, true); + return compare_functions(lhs.actual->getFunction(), rhs.actual->getFunction(), true, true, false, true, true); }