Skip to content

Commit

Permalink
Remove fix for gna tests (#18135)
Browse files Browse the repository at this point in the history
  • Loading branch information
RaguzovaTatyana authored Jun 19, 2023
1 parent 5fb2f72 commit cf2c7da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
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_EXEC_TARGET", "GNA_TARGET_3_0"}
{"GNA_DEVICE_MODE", "GNA_SW_EXACT"}
},
{
{"GNA_DEVICE_MODE", "GNA_SW_FP32"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,15 +173,18 @@ 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_EXEC_TARGET, InferenceEngine::GNAConfigParams::GNA_TARGET_3_0}
{InferenceEngine::GNAConfigParams::KEY_GNA_DEVICE_MODE, InferenceEngine::GNAConfigParams::GNA_SW_EXACT}
}
};

// 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 cf2c7da

Please sign in to comment.