From 80b4ef074239c56900ffe27ec5cc47a295deebbb Mon Sep 17 00:00:00 2001 From: Cathal Corbett Date: Wed, 25 May 2022 11:21:11 +0100 Subject: Fix '#if defined(ARMNN_POST_TFLITE_2_3)' in TfLiteParser Conv3D test. Signed-off-by: Cathal Corbett Change-Id: I5c68b81a67fc2b5a33cf62753351440564bb868e --- delegate/include/armnn_delegate.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'delegate') diff --git a/delegate/include/armnn_delegate.hpp b/delegate/include/armnn_delegate.hpp index 8aaf255a9d..79ab4bf79c 100644 --- a/delegate/include/armnn_delegate.hpp +++ b/delegate/include/armnn_delegate.hpp @@ -17,6 +17,10 @@ #define ARMNN_POST_TFLITE_2_3 #endif +#if TF_MAJOR_VERSION > 2 || (TF_MAJOR_VERSION == 2 && TF_MINOR_VERSION > 4) +#define ARMNN_POST_TFLITE_2_4 +#endif + #if TF_MAJOR_VERSION > 2 || (TF_MAJOR_VERSION == 2 && TF_MINOR_VERSION > 5) #define ARMNN_POST_TFLITE_2_5 #endif -- cgit v1.2.1