From 188675fd7e7239f56212d72f8ac10598de87e76a Mon Sep 17 00:00:00 2001 From: Sadik Armagan Date: Fri, 12 Feb 2021 17:16:42 +0000 Subject: IVGCVSW-5665 Basic NN Driver support for next OS Version Signed-off-by: Kevin May Signed-off-by: Sadik Armagan Change-Id: I1e1db52322092c6b1b7ac6183c3adc90aabcec24 --- test/Lstm.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'test/Lstm.hpp') diff --git a/test/Lstm.hpp b/test/Lstm.hpp index 21056c3d..2cb3c264 100644 --- a/test/Lstm.hpp +++ b/test/Lstm.hpp @@ -15,6 +15,11 @@ using ArmnnDriver = armnn_driver::ArmnnDriver; using DriverOptions = armnn_driver::DriverOptions; +using RequestArgument = V1_0::RequestArgument; + +#ifdef ARMNN_ANDROID_S +#include +#endif using namespace driverTestHelpers; using namespace android::hardware; @@ -25,7 +30,7 @@ namespace template RequestArgument CreateRequestArgument(const std::vector& value, unsigned int poolIndex) { - DataLocation inputInloc = {}; + V1_0::DataLocation inputInloc = {}; inputInloc.poolIndex = poolIndex; inputInloc.offset = 0; inputInloc.length = value.size() * sizeof(T); -- cgit v1.2.1