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.cpp | 4 ++-- src/armnnTfLiteParser/TfLiteParser.hpp | 2 +- src/armnnTfLiteParser/test/Conv3D.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/armnnTfLiteParser/TfLiteParser.cpp b/src/armnnTfLiteParser/TfLiteParser.cpp index 91420ab302..33567953a2 100644 --- a/src/armnnTfLiteParser/TfLiteParser.cpp +++ b/src/armnnTfLiteParser/TfLiteParser.cpp @@ -684,7 +684,7 @@ TfLiteParserImpl::TfLiteParserImpl(const Optional // 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) TEST_SUITE("TensorflowLiteParser_Conv3D") { struct SimpleConv3DFixture : public ParserFlatbuffersFixture -- cgit v1.2.1