Commit d1a2633b authored by Christophe Favergeon's avatar Christophe Favergeon
Browse files

Updated PythonWrapper version and README

parent 31d9d2ef
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -239,9 +239,10 @@ The wrapper is now containing the compute graph Python scripts and you should re

# Change history

## Version 1.10.0:
## Version 1.9.4:

* Dynamic Time Warping API
* Window functions for FFT
* New asynchronous mode for the compute graph
(see [compute graph documentation](https://github.com/ARM-software/CMSIS-DSP/tree/main/ComputeGraph) for more details.

+3 −3
Original line number Diff line number Diff line
@@ -20,15 +20,15 @@ from cmsisdsp_window import *
__version__ = cmsisdsp.version.__version__

# CMSIS-DSP Version used to build the wrapper
cmsis_dsp_version="1.14.4"
cmsis_dsp_version="1.14.3"


# CMSIS-DSP Commit hash used to build the wrapper
commit_hash=" b46a2f86b5c9d8247ea5417fc0e0022876b80dcf"
commit_hash=" 31d9d2ef4ace9d3e3ca014d25525af3b99e86a66"

# True if development version of CMSIS-DSP used
# (So several CMSIS-DSP versions may have same version number hence the commit hash)
developmentVersion=True
developmentVersion=False

__all__ = ["datatype", "fixedpoint", "mfcc"]

+1 −1
Original line number Diff line number Diff line
# Python wrapper version
__version__ = "1.10.0"
__version__ = "1.9.4"