From 245d64c60d0ea30f5080ff53225b5169927e24d6 Mon Sep 17 00:00:00 2001 From: Matthew Bentham Date: Mon, 2 Dec 2019 12:59:43 +0000 Subject: Work in progress of python bindings for Arm NN Not built or tested in any way Signed-off-by: Matthew Bentham Change-Id: Ie7f92b529aa5087130f0c5cc8c17db1581373236 --- python/pyarmnn/src/pyarmnn/swig/armnn.i | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 python/pyarmnn/src/pyarmnn/swig/armnn.i (limited to 'python/pyarmnn/src/pyarmnn/swig/armnn.i') diff --git a/python/pyarmnn/src/pyarmnn/swig/armnn.i b/python/pyarmnn/src/pyarmnn/swig/armnn.i new file mode 100644 index 0000000000..48e0f2edbb --- /dev/null +++ b/python/pyarmnn/src/pyarmnn/swig/armnn.i @@ -0,0 +1,27 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// SPDX-License-Identifier: MIT +// +%module pyarmnn +%{ +#define SWIG_FILE_WITH_INIT +#include "armnn/Types.hpp" +%} + +//typemap definitions and other common stuff +%include "standard_header.i" + +//armnn api submodules +%include "modules/armnn_backend.i" +%include "modules/armnn_types.i" +%include "modules/armnn_descriptors.i" +%include "modules/armnn_lstmparam.i" +%include "modules/armnn_network.i" +%include "modules/armnn_profiler.i" +%include "modules/armnn_runtime.i" +%include "modules/armnn_tensor.i" +%include "modules/armnn_types_utils.i" + +// Clear exception typemap. +%exception; + -- cgit v1.2.1