aboutsummaryrefslogtreecommitdiff
path: root/python/pyarmnn/README.md
diff options
context:
space:
mode:
authorNikhil Raj <nikhil.raj@arm.com>2023-11-15 14:23:19 +0000
committerNikhil Raj <nikhil.raj@arm.com>2023-11-15 15:20:17 +0000
commitd7e3b75ed641406e44dd2b256ad7b0fad931dc1f (patch)
tree482dd26ddc0a6855c9128632876894abdf861614 /python/pyarmnn/README.md
parent080d45d73c03830cb80b223fd64c546e84d8337a (diff)
downloadarmnn-d7e3b75ed641406e44dd2b256ad7b0fad931dc1f.tar.gz
IVGCVSW-7936 Update ArmNN minor version and opaque delegate version
* Opaque delegate was broken by https://review.mlplatform.org/c/ml/armnn/+/10493/ * Updated ArmNN minor version in pyarmnn Signed-off-by: Nikhil Raj <nikhil.raj@arm.com> Change-Id: I9eb3a2901c9383b95079b092e05373680781b1ab
Diffstat (limited to 'python/pyarmnn/README.md')
-rw-r--r--python/pyarmnn/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/pyarmnn/README.md b/python/pyarmnn/README.md
index d155703055..b510c361c7 100644
--- a/python/pyarmnn/README.md
+++ b/python/pyarmnn/README.md
@@ -69,8 +69,8 @@ PyArmNN can be distributed as a source package or a binary package (wheel).
Binary package is platform dependent, the name of the package will indicate the platform it was built for, e.g.:
-* Linux x86 64bit machine: pyarmnn-33.0.0-cp36-cp36m-*linux_x86_64*.whl
-* Linux Aarch 64 bit machine: pyarmnn-33.0.0-cp36-cp36m-*linux_aarch64*.whl
+* Linux x86 64bit machine: pyarmnn-33.1.0-cp36-cp36m-*linux_x86_64*.whl
+* Linux Aarch 64 bit machine: pyarmnn-33.1.0-cp36-cp36m-*linux_aarch64*.whl
The source package is platform independent but installation involves compilation of Arm NN python extension. You will need to have g++ compatible with C++ 14 standard and a python development library installed on the build machine.
@@ -110,7 +110,7 @@ $ pip show pyarmnn
You can also verify it by running the following and getting output similar to below:
```bash
$ python -c "import pyarmnn as ann;print(ann.GetVersion())"
-'33.0.0'
+'33.1.0'
```
@@ -148,7 +148,7 @@ $ pip show pyarmnn
You can also verify it by running the following and getting output similar to below:
```bash
$ python -c "import pyarmnn as ann;print(ann.GetVersion())"
-'33.0.0'
+'33.1.0'
```
# PyArmNN API overview