From 5fb2f72af5865cbbc6f4051248658ac53a464323 Mon Sep 17 00:00:00 2001 From: Tatyana Raguzova Date: Fri, 16 Jun 2023 15:15:23 +0200 Subject: [PATCH] Increase version for 2022.3.1 release (#18081) + Fix for gna tests --- src/core/include/openvino/core/version.hpp | 2 +- src/inference/include/ie/ie_version.hpp | 2 +- .../functional/pass_tests/convolution_crop_axis_h.cpp | 2 +- .../subgraph_tests/convolution_relu_sequence.cpp | 7 ++----- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/src/core/include/openvino/core/version.hpp b/src/core/include/openvino/core/version.hpp index e24a3f4b4a6..2a64a1200ad 100644 --- a/src/core/include/openvino/core/version.hpp +++ b/src/core/include/openvino/core/version.hpp @@ -21,7 +21,7 @@ #define OPENVINO_VERSION_MAJOR 2022 #define OPENVINO_VERSION_MINOR 3 -#define OPENVINO_VERSION_PATCH 0 +#define OPENVINO_VERSION_PATCH 1 namespace ov { diff --git a/src/inference/include/ie/ie_version.hpp b/src/inference/include/ie/ie_version.hpp index 0455494ab39..7323825a31c 100644 --- a/src/inference/include/ie/ie_version.hpp +++ b/src/inference/include/ie/ie_version.hpp @@ -22,7 +22,7 @@ #define IE_VERSION_MAJOR 2022 #define IE_VERSION_MINOR 3 -#define IE_VERSION_PATCH 0 +#define IE_VERSION_PATCH 1 #include "ie_api.h" diff --git a/src/plugins/intel_gna/tests/functional/pass_tests/convolution_crop_axis_h.cpp b/src/plugins/intel_gna/tests/functional/pass_tests/convolution_crop_axis_h.cpp index c236110b136..4c74592d46d 100644 --- a/src/plugins/intel_gna/tests/functional/pass_tests/convolution_crop_axis_h.cpp +++ b/src/plugins/intel_gna/tests/functional/pass_tests/convolution_crop_axis_h.cpp @@ -120,7 +120,7 @@ const std::vector netPrecisions = { const std::vector> configs = { { - {"GNA_DEVICE_MODE", "GNA_SW_EXACT"} + {"GNA_DEVICE_MODE", "GNA_SW_EXACT"}, {"GNA_EXEC_TARGET", "GNA_TARGET_3_0"} }, { {"GNA_DEVICE_MODE", "GNA_SW_FP32"} diff --git a/src/plugins/intel_gna/tests/functional/shared_tests_instances/subgraph_tests/convolution_relu_sequence.cpp b/src/plugins/intel_gna/tests/functional/shared_tests_instances/subgraph_tests/convolution_relu_sequence.cpp index 64f8bfb3567..e8a7c65a965 100644 --- a/src/plugins/intel_gna/tests/functional/shared_tests_instances/subgraph_tests/convolution_relu_sequence.cpp +++ b/src/plugins/intel_gna/tests/functional/shared_tests_instances/subgraph_tests/convolution_relu_sequence.cpp @@ -173,18 +173,15 @@ const std::vector convReluSpecificParamsAllAll = { }; const std::vector > configs = { - { - {InferenceEngine::GNAConfigParams::KEY_GNA_DEVICE_MODE, InferenceEngine::GNAConfigParams::GNA_AUTO} - }, { {InferenceEngine::GNAConfigParams::KEY_GNA_DEVICE_MODE, InferenceEngine::GNAConfigParams::GNA_SW_FP32} }, { - {InferenceEngine::GNAConfigParams::KEY_GNA_DEVICE_MODE, InferenceEngine::GNAConfigParams::GNA_SW_EXACT} + {InferenceEngine::GNAConfigParams::KEY_GNA_DEVICE_MODE, InferenceEngine::GNAConfigParams::GNA_SW_EXACT}, + {InferenceEngine::GNAConfigParams::KEY_GNA_EXEC_TARGET, InferenceEngine::GNAConfigParams::GNA_TARGET_3_0} } }; -// Enable when using GNA 2.1 library INSTANTIATE_TEST_SUITE_P(smoke_ConvolutionReluSequenceTest, GnaConvolutionReluSequenceTest, ::testing::Combine( ::testing::ValuesIn(convReluSpecificParamsAllAll),