aboutsummaryrefslogtreecommitdiff
path: root/include/armnnTfLiteParser/ITfLiteParser.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnnTfLiteParser/ITfLiteParser.hpp')
-rw-r--r--include/armnnTfLiteParser/ITfLiteParser.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/armnnTfLiteParser/ITfLiteParser.hpp b/include/armnnTfLiteParser/ITfLiteParser.hpp
index b286c1ee4c..ea6e87a0a7 100644
--- a/include/armnnTfLiteParser/ITfLiteParser.hpp
+++ b/include/armnnTfLiteParser/ITfLiteParser.hpp
@@ -29,9 +29,11 @@ public:
struct TfLiteParserOptions
{
TfLiteParserOptions()
- : m_StandInLayerForUnsupported(false),
+ : m_AllowExpandedDims(false),
+ m_StandInLayerForUnsupported(false),
m_InferAndValidate(false) {}
+ bool m_AllowExpandedDims;
bool m_StandInLayerForUnsupported;
bool m_InferAndValidate;
};