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 de1eae7635..a68b719a66 100644
--- a/include/armnnTfLiteParser/ITfLiteParser.hpp
+++ b/include/armnnTfLiteParser/ITfLiteParser.hpp
@@ -28,9 +28,11 @@ public:
struct TfLiteParserOptions
{
TfLiteParserOptions()
- : m_StandInLayerForUnsupported(false) {}
+ : m_StandInLayerForUnsupported(false),
+ m_InferAndValidate(false) {}
bool m_StandInLayerForUnsupported;
+ bool m_InferAndValidate;
};
static ITfLiteParser* CreateRaw(const armnn::Optional<TfLiteParserOptions>& options = armnn::EmptyOptional());