From 32c8e8257007d387ed6a0b3357d34a61457a74f7 Mon Sep 17 00:00:00 2001 From: Gusev Dmitry/Engineer/AI Tools Lab /SRR/Samsung Electronics Date: Wed, 16 Oct 2019 22:00:12 +0300 Subject: [PATCH] [mir-tflite-importer] Fixed a bug (wrong Deconv2d constructir). (#8248) Setting attributes values is corrected. Signed-off-by: Dmitry Gusev --- compiler/mir-tflite-importer/tflite_op_creator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/mir-tflite-importer/tflite_op_creator.cpp b/compiler/mir-tflite-importer/tflite_op_creator.cpp index bf15ec7..a6da759 100644 --- a/compiler/mir-tflite-importer/tflite_op_creator.cpp +++ b/compiler/mir-tflite-importer/tflite_op_creator.cpp @@ -296,7 +296,7 @@ TFLiteOpCreator::convertTransposeConv(const tflite::TransposeConvOptionsT *opts, kernel = createOp(kernel, axis_order)->getOutput(0); attributes.padding_type = convertPadding(opts->padding); - auto result = createOp(input, kernel, attributes)->getOutput(0); + auto result = createOp(input, kernel, attributes, output_shape)->getOutput(0); return {result}; } -- 2.7.4