aboutsummaryrefslogtreecommitdiff
path: root/Utils.hpp
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2019-05-22 18:00:30 +0100
committerSadik Armagan <sadik.armagan@arm.com>2019-05-22 18:00:30 +0100
commitd6539c58519962acd8967e93ceb2da049631c832 (patch)
treefc1a324e5b2a757d6b9e26a721db362988c93dfe /Utils.hpp
parentef08a1179a707f4d93616403c2c6e0d143f71351 (diff)
downloadandroid-nn-driver-d6539c58519962acd8967e93ceb2da049631c832.tar.gz
IVGCVSW-2911 Add Android Q support to android-nn-driver infrastructure
* Updated Android.mk to build Android Q * Added androidnn.go to inject cpp flags for Q * Create Runtime when ACL is not enabled Change-Id: Ia3e7a8e484fc81ce63998a65e29753cbf941173c Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Signed-off-by: Kevin May <kevin.may@arm.com>
Diffstat (limited to 'Utils.hpp')
-rw-r--r--Utils.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Utils.hpp b/Utils.hpp
index e55d8f80..42fef3fb 100644
--- a/Utils.hpp
+++ b/Utils.hpp
@@ -29,12 +29,12 @@ extern const armnn::PermutationVector g_DontPermute;
class UnsupportedOperand: public std::runtime_error
{
public:
- UnsupportedOperand(const OperandType type)
+ UnsupportedOperand(const V1_0::OperandType type)
: std::runtime_error("Operand type is unsupported")
, m_type(type)
{}
- OperandType m_type;
+ V1_0::OperandType m_type;
};
/// Swizzles tensor data in @a input according to the dimension mappings.