Skip to content

Commit

Permalink
Increase version for 2022.3.1 release (#18081)
Browse files Browse the repository at this point in the history
+ Fix for gna tests
  • Loading branch information
RaguzovaTatyana authored Jun 16, 2023
1 parent 12b562b commit 5fb2f72
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/core/include/openvino/core/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
2 changes: 1 addition & 1 deletion src/inference/include/ie/ie_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const std::vector<InferenceEngine::Precision> netPrecisions = {

const std::vector<std::map<std::string, std::string>> 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"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,18 +173,15 @@ const std::vector<convReluSpecificParamsAll> convReluSpecificParamsAllAll = {
};

const std::vector<std::map<std::string, std::string> > 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),
Expand Down

0 comments on commit 5fb2f72

Please sign in to comment.