From 532dec140b49473989d29622414357031f2b83c4 Mon Sep 17 00:00:00 2001 From: Andrey Dmitriev Date: Fri, 19 Jun 2020 10:20:55 +0300 Subject: [PATCH] [GNA] fix permute 0_2_1 (#993) --- inference-engine/src/gna_plugin/backend/am_intel_dnn.cpp | 2 +- .../subgraph_tests/reshapre_permute_reshape.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/inference-engine/src/gna_plugin/backend/am_intel_dnn.cpp b/inference-engine/src/gna_plugin/backend/am_intel_dnn.cpp index a099f6bcdcf..87dbc0ccb3f 100644 --- a/inference-engine/src/gna_plugin/backend/am_intel_dnn.cpp +++ b/inference-engine/src/gna_plugin/backend/am_intel_dnn.cpp @@ -359,7 +359,7 @@ void GNAPluginNS::backend::AMIntelDNN::InitDeinterleaveComponentPrivate(intel_dn comp.operation = kDnnDeinterleaveOp; comp.macro_operation = kDnnMacroOpNone; comp.orientation_in = kDnnInterleavedOrientation; - comp.orientation_out = kDnnNonInterleavedOrientation; + comp.orientation_out = kDnnInterleavedOrientation; comp.output_scale_factor = output_scale_factor; comp.input_scale_factor = output_scale_factor; if (!postInitMem) { diff --git a/inference-engine/tests/functional/plugin/gna/shared_tests_instances/subgraph_tests/reshapre_permute_reshape.cpp b/inference-engine/tests/functional/plugin/gna/shared_tests_instances/subgraph_tests/reshapre_permute_reshape.cpp index 6f816e07bb7..89833239046 100644 --- a/inference-engine/tests/functional/plugin/gna/shared_tests_instances/subgraph_tests/reshapre_permute_reshape.cpp +++ b/inference-engine/tests/functional/plugin/gna/shared_tests_instances/subgraph_tests/reshapre_permute_reshape.cpp @@ -9,6 +9,7 @@ using namespace LayerTestsDefinitions; namespace { std::vector>> inputs{ {{1, 4 , 160}, {0, 2, 1}}, + {{1, 160, 4}, {0, 2, 1}}, {{8, 16}, {1, 0}}, {{1, 1, 4, 16}, {3, 1, 2, 0}}, {{1, 8, 200}, {0, 2, 1}},