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 --- src/armnnTfLiteParser/TfLiteParser.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/armnnTfLiteParser/TfLiteParser.hpp') diff --git a/src/armnnTfLiteParser/TfLiteParser.hpp b/src/armnnTfLiteParser/TfLiteParser.hpp index e742d30521..49744a0484 100644 --- a/src/armnnTfLiteParser/TfLiteParser.hpp +++ b/src/armnnTfLiteParser/TfLiteParser.hpp @@ -120,7 +120,7 @@ private: void ParseConcatenation(size_t subgraphIndex, size_t operatorIndex); void ParseConv2D(size_t subgraphIndex, size_t operatorIndex); // Conv3D support was added in TF 2.5, so for backwards compatibility a hash define is needed. - #if defined(ARMNN_POST_TFLITE_2_3) + #if defined(ARMNN_POST_TFLITE_2_4) void ParseConv3D(size_t subgraphIndex, size_t operatorIndex); #endif void ParseDepthToSpace(size_t subgraphIndex, size_t operatorIndex); -- cgit v1.2.1