From 7d1b1ca5b25a3aaeecebc537e8cbed2ee1ed3337 Mon Sep 17 00:00:00 2001 From: Ryan OShea Date: Tue, 1 Aug 2023 17:15:24 +0100 Subject: IVGCVSW-7952 Output deprecation message when building pyarmnn * Adds warning message when enabling pyarmnn through CMake * Adds print out when building pyarmnn through setup.py * Remove deprecated functions from batch matmul descripter Signed-off-by: Ryan OShea Change-Id: I210ddbd0dd2f3b0d260a644bc62b8754375fbebe --- python/pyarmnn/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'python/pyarmnn/setup.py') diff --git a/python/pyarmnn/setup.py b/python/pyarmnn/setup.py index 44e810d422..6304ba5d54 100755 --- a/python/pyarmnn/setup.py +++ b/python/pyarmnn/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright © 2020 Arm Ltd. All rights reserved. +# Copyright © 2020, 2023 Arm Ltd. All rights reserved. # Copyright © 2020 NXP and Contributors. All rights reserved. # SPDX-License-Identifier: MIT """Python bindings for Arm NN @@ -265,6 +265,7 @@ class LazyArmnnFinderExtension(Extension): if __name__ == '__main__': + print("WARNING: PyArmNN is deprecated. To use ArmNN on python, please use the tflite delegate. Expected to be removed in release 24.05.") # mandatory extensions pyarmnn_module = LazyArmnnFinderExtension('pyarmnn._generated._pyarmnn', sources=['src/pyarmnn/_generated/armnn_wrap.cpp'], -- cgit v1.2.1