aboutsummaryrefslogtreecommitdiff
path: root/delegate/src/Fill.hpp
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2022-08-05 16:12:49 +0100
committerNikhil Raj <nikhil.raj@arm.com>2022-08-29 10:11:09 +0100
commit90a119b9c992de662d3719b04f03735b96259f65 (patch)
tree1b4ea68c8f66e726373814682e747cea8f50be51 /delegate/src/Fill.hpp
parentc814e8031dfe9565e94cf89ef193b6af944c73b1 (diff)
downloadarmnn-90a119b9c992de662d3719b04f03735b96259f65.tar.gz
IVGCVSW-7154 'Constant Tensors As Inputs'
* Fixed the issues about converting Conv2D and DepthwiseConv2d input issues * Read 1D input tensors that do not have shape specified Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: I12f3d1c57a2afedac42c6e7b31e4b1fc689abeca
Diffstat (limited to 'delegate/src/Fill.hpp')
-rw-r--r--delegate/src/Fill.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/delegate/src/Fill.hpp b/delegate/src/Fill.hpp
index 859f5fffc2..dc30e53ba9 100644
--- a/delegate/src/Fill.hpp
+++ b/delegate/src/Fill.hpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
+// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
@@ -52,7 +52,7 @@ TfLiteStatus VisitFillOperator(DelegateData& delegateData,
}
armnn::TensorInfo inputTensorInfo = GetTensorInfoForTfLiteTensor(tfLiteInputTensor);
- const armnn::TensorInfo& outputTensorInfo = GetTensorInfoForTfLiteTensor(tfLiteOutputTensor);
+ const armnn::TensorInfo& outputTensorInfo = GetTensorInfoForTfLiteTensor(tfLiteOutputTensor, true);
armnn::FillDescriptor descriptor;
switch (tfLiteFillTensor.type)