aboutsummaryrefslogtreecommitdiff
path: root/test/DriverTestHelpers.hpp
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-06-17 13:26:34 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-06-17 14:56:39 +0100
commita5f9e76b991d9d69d3242b26be137956d0f4d0a8 (patch)
tree16e376328203787d604b0b2f9c61509e7c09b67d /test/DriverTestHelpers.hpp
parent44cfd848c1913f87a77c0427450dba93ba47fb94 (diff)
downloadandroid-nn-driver-a5f9e76b991d9d69d3242b26be137956d0f4d0a8.tar.gz
IVGCVSW-2779 Fix Android Q build
* Included required functions to the Android Q build by using macro ARMNN_ANDROID_NN_V1_2 Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com> Change-Id: I3ea99ba4bebd85f0e8e69c72a90e1a7def4f9b35
Diffstat (limited to 'test/DriverTestHelpers.hpp')
-rw-r--r--test/DriverTestHelpers.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/DriverTestHelpers.hpp b/test/DriverTestHelpers.hpp
index 428359e2..980b3a72 100644
--- a/test/DriverTestHelpers.hpp
+++ b/test/DriverTestHelpers.hpp
@@ -242,12 +242,12 @@ android::sp<V1_0::IPreparedModel> PrepareModelWithStatus(const V1_0::Model& mode
ErrorStatus& prepareStatus,
ErrorStatus expectedStatus = ErrorStatus::NONE);
-#ifdef ARMNN_ANDROID_NN_V1_1
+#if defined(ARMNN_ANDROID_NN_V1_1) || defined(ARMNN_ANDROID_NN_V1_2)
android::sp<V1_0::IPreparedModel> PrepareModelWithStatus(const V1_1::Model& model,
- armnn_driver::ArmnnDriver& driver,
- ErrorStatus& prepareStatus,
- ErrorStatus expectedStatus = ErrorStatus::NONE);
+ armnn_driver::ArmnnDriver& driver,
+ ErrorStatus& prepareStatus,
+ ErrorStatus expectedStatus = ErrorStatus::NONE);
#endif