[GNA] fix permute 0_2_1 (#993)

This commit is contained in:
Andrey Dmitriev
2020-06-19 10:20:55 +03:00
committed by GitHub
parent c41c6294f9
commit 532dec140b
2 changed files with 2 additions and 1 deletions

View File

@@ -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) {

View File

@@ -9,6 +9,7 @@ using namespace LayerTestsDefinitions;
namespace {
std::vector<std::vector<std::vector<size_t>>> 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}},