aboutsummaryrefslogtreecommitdiff
path: root/src/armnnTfLiteParser/TfLiteParser.hpp
diff options
context:
space:
mode:
authorjimfly01 <jim.flynn@arm.com>2018-11-14 17:47:22 +0000
committerjimfly01 <jim.flynn@arm.com>2018-11-14 17:47:22 +0000
commitc25411cdf2908609d3bce37ef4da9cfef1e21c9b (patch)
tree17c437259a41de26c5ffc766074a79493472679e /src/armnnTfLiteParser/TfLiteParser.hpp
parent07bb5216ba427993a1f0a5c513d39474780b8bfa (diff)
downloadarmnn-c25411cdf2908609d3bce37ef4da9cfef1e21c9b.tar.gz
IVGCVSW-2152: Convert TfLiteParser to NHWC
* Removed the convertFromTfToArmnnFormat flag from the CreateConstTensor and CreateConstTensorImpl functions * Removed the SwizzleInDeswizzleOut function and its invocations in the ParseConv2D, ParseDepthwiseConv2D and ParsePool functions. Change-Id: Id935e28ab6eff4731f838af9490d016e108f6df6
Diffstat (limited to 'src/armnnTfLiteParser/TfLiteParser.hpp')
-rw-r--r--src/armnnTfLiteParser/TfLiteParser.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/armnnTfLiteParser/TfLiteParser.hpp b/src/armnnTfLiteParser/TfLiteParser.hpp
index 76e539acaf..e7a7469f1f 100644
--- a/src/armnnTfLiteParser/TfLiteParser.hpp
+++ b/src/armnnTfLiteParser/TfLiteParser.hpp
@@ -139,8 +139,7 @@ private:
};
std::pair<armnn::ConstTensor, SupportedDataStorage> CreateConstTensor(TensorRawPtr tensorPtr,
- armnn::TensorInfo & tensorInfo,
- bool convertFromTfToArmnnFormat);
+ armnn::TensorInfo & tensorInfo);
/// The network we're building. Gets cleared after it is passed to the user
armnn::INetworkPtr m_Network;