cmsisdsp


Namecmsisdsp JSON
Version 1.9.7 PyPI version JSON
download
home_pagehttps://github.com/ARM-software/CMSIS-DSP
SummaryCMSIS-DSP Python API
upload_time2023-03-13 13:39:44
maintainer
docs_urlNone
authorCopyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved.
requires_python>=3.6
licenseLicense :: OSI Approved :: Apache Software License
keywords development dsp cmsis cmsis-dsp arm signal processing maths ml cortex-m cortex-a
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # README

This is a Python wrapper for the Arm open source [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) and it is compatible with `NumPy`.

The CMSIS-DSP is available on our [GitHub](https://github.com/ARM-software/CMSIS-DSP) or as a [CMSIS Pack](https://github.com/ARM-software/CMSIS-DSP/releases).

The idea is to follow as closely as possible the C [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) API to ease the migration to the final implementation on a board.

The signal processing chain can thus be tested and developed in a Python environment and then easily converted to a C implementation running on a Cortex-M or Cortex-A board.

A tutorial is also available but with less details than this README:
https://developer.arm.com/documentation/102463/latest/

This wrapper is also containing the scripts for the new [CMSIS-DSP compute graph framework](https://github.com/ARM-software/CMSIS-DSP/tree/main/ComputeGraph) (CG).

CG is also including some nodes to communicate with Modelica using the VHT Modelica blocks developed as part of our [VHT-SystemModeling](https://github.com/ARM-software/VHT-SystemModeling) demos.

An history of the changes to this wrapper is available at the end of the README.

# How to build and install

## Tested configurations

The building of this package has been tested on Windows with the Python install from python.org and Microsoft Visual 2017. 

It has also been tested with `cygwin`. In that case, `python-devel` must be installed too. On Mac, it was tested with standard XCode installation.

To run the examples, `scipy` and `matplotlib` must also be installed.

Other configurations should work but the `setup.py` file would have to be improved. 

Python 3 must be used.

## Installing and Building

### Installing

It is advised to do it in a Python virtual environment. Then, in the virtual environment you can just do:

    pip install cmsisdsp

You must have a recent `pip` (to automatically install the dependencies like `NumPy`) and you should have a compiler which can be found by Python when building the package.

DSP examples are available in the [CMSIS-DSP PythonWrapper examples](https://github.com/ARM-software/CMSIS-DSP/tree/main/PythonWrapper/examples) folder.

Synchronous Data Flow examples are available in the [ComputeGraph](https://github.com/ARM-software/CMSIS-DSP/tree/main/ComputeGraph) folder of [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) .

You can also install and run it from [Google colab](https://colab.research.google.com/):

This [link](https://colab.research.google.com/github/ARM-software/CMSIS-DSP/blob/main/PythonWrapper/examples/cmsisdsp_tests.ipynb) will open a Jupyter notebook in [Google colab](https://colab.research.google.com/) for testing. This notebook is from the [examples](https://github.com/ARM-software/CMSIS-DSP/tree/main/PythonWrapper/examples) in the CMSIS-DSP GitHub repository.

### Building

It it is not working (because it is not possible for us to test all configurations), you can then try to build and install the wrapper manually.

It is advised to do this it into a virtualenv


Since the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) wrapper is using `NumPy`, you must first install it in the virtual environment. 

    > pip install numpy

Once `NumPy` is installed, you can build the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) python wrapper. Go to folder `CMSIS/DSP`.

Now, you can install the cmsisdsp package in editable mode:

    > pip install -e .

Before using this command, you need to rebuild the CMSIS-DSP library which is no more built by the `setup.py` script.

There is a `CMakeLists.txt` in the `PythonWrapper` folder for this. The `build` folders in `PythonWrapper` are giving some examples of the options to use with the `cmake` command to generate the `Makefile` and build the library.

This library is then used by the `setup.py` script to build the Python extension.

## Running the examples

Install some packages to be able to run the examples

    > pip install numpy
    > pip install scipy
    > pip install matplotlib

Depending on the example, you may have to install more packages.

The examples are in the  [CMSIS-DSP PythonWrapper examples](https://github.com/ARM-software/CMSIS-DSP/tree/main/PythonWrapper/examples) folder.

You can test the scripts `testdsp.py` and `example.py` and try to run them from this virtual environment. `example.py` is requiring a data file to be downloaded from the web. See below in this document for the link.

Note that due to the great number of possible configurations (OS, Compiler, Python), we can't give any support if you have problems compiling the `PythonWrapper` on your specific configuration. But, generally people manage to do it and solve all the problems.

# Usage

The idea is to follow as closely as possible the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) API to ease the migration to the final implementation on a board.

First you need to import the module

    > import cmsisdsp as dsp

If you use numpy:

    > import numpy as np

If you use scipy signal processing functions:

    > from scipy import signal

## Functions with no instance arguments

You can use a [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) function with numpy arrays:

    > r = dsp.arm_add_f32(np.array([1.,2,3]),np.array([4.,5,7]))

The function can also be called more simply with

    > r = dsp.arm_add_f32([1.,2,3],[4.,5,7])

The result of a [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) function will always be a numpy array whatever the arguments were (numpy array or list).

## Functions with instance arguments 

When the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) function is requiring an instance data structure, it is just a bit more complex to use it:

First you need to create this instance:

    > firf32 = dsp.arm_fir_instance_f32()

Then, you need to call an init function:

    > dsp.arm_fir_init_f32(firf32,3,[1.,2,3],[0,0,0,0,0,0,0])

The third argument in this function is the state. Since all arguments (except the instance ones) are read-only in this Python API, this state will never be changed ! It is just used to communicate the length of the state array which must be allocated by the init function. This argument is required because it is present in the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) API and in the final C implementation you'll need to allocate a state array with the right dimension.

Since the goal is to be as close as possible to the C API, the API is forcing the use of this argument.

The only change compared to the C API is that the size variables (like blockSize for filter) are computed automatically from the other arguments. This choice was made to make it a bit easier the use of numpy array with the API.

Now, you can check that the instance was initialized correctly.

    > print(firf32.numTaps())

Then, you can filter with CMSIS-DSP:

    > print(dsp.arm_fir_f32(firf32,[1,2,3,4,5]))

The size of this signal should be `blockSize`. `blockSize` was inferred from the size of the state array : `numTaps + blockSize - 1` according to [CMSIS-DSP.](https://github.com/ARM-software/CMSIS-DSP) So here the signal must have 5 samples.

If you want to filter more than 5 samples, then you can just call the function again. The state variable inside firf32 will ensure that it works like in the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) C code. 

    > print(dsp.arm_fir_f32(firf32,[6,7,8,9,10]))

If you want to compare with scipy it is easy but warning : coefficients for the filter are in opposite order in scipy :

    > filtered_x = signal.lfilter([3,2,1.], 1.0, [1,2,3,4,5,6,7,8,9,10])
    > print(filtered_x)

The principles are the same for all other APIs.

## FFT 

Here is an example for using FFT from the Python interface:

Let's define a signal you will use for the FFT.

    > nb = 16
    > signal = np.cos(2 * np.pi * np.arange(nb) / nb)

The [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) cfft is requiring complex signals with a specific layout in memory.

To remain as close as possible to the C API, we are not using complex numbers in the wrapper. So a complex signal must be converted into a real one. The function imToReal1D is defined in testdsp.py 

    > signalR = imToReal1D(signal)

Then, you create the FFT instance with:

    > cfftf32=dsp.arm_cfft_instance_f32()

You initialize the instance with the init function provided by the wrapper:

    > status=dsp.arm_cfft_init_f32(cfftf32, nb)
    > print(status)

You compute the FFT of the signal with:

    > resultR = dsp.arm_cfft_f32(cfftf32,signalR,0,1)

You convert back to a complex format to compare with scipy:

    > resultI = realToIm1D(resultR)
    > print(resultI)

## Matrix 

For matrix, the instance variables are masked by the Python API. We decided that for matrix only there was no use for having the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) instance visibles since they contain the same information as the numpy array (samples and dimension).

So to use a [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) matrix function, it is very simple:

    > a=np.array([[1.,2,3,4],[5,6,7,8],[9,10,11,12]])
    > b=np.array([[1.,2,3],[5.1,6,7],[9.1,10,11],[5,8,4]])

`NumPy` result as reference:

    > print(np.dot(a , b))

[CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) result:

    > v=dsp.arm_mat_mult_f32(a,b)
    > print(v)

In a real C code, a pointer to a data structure for the result `v` would have to be passed as argument of the function.

## example.py

This example depends on a data file which can be downloaded here:

https://archive.physionet.org/pn3/ecgiddb/Person_87/rec_2.dat

This signal was created for a master thesis:

Lugovaya T.S. Biometric human identification based on electrocardiogram. [Master's thesis] Faculty of Computing Technologies and Informatics, Electrotechnical University "LETI", Saint-Petersburg, Russian Federation; June 2005. 

and it is part of the PhysioNet database

Goldberger AL, Amaral LAN, Glass L, Hausdorff JM, Ivanov PCh, Mark RG, Mietus JE, Moody GB, Peng C-K, Stanley HE. PhysioBank, PhysioToolkit, and PhysioNet: Components of a New Research Resource for Complex Physiologic Signals. Circulation 101(23):e215-e220 [Circulation Electronic Pages; http://circ.ahajournals.org/cgi/content/full/101/23/e215]; 2000 (June 13). 

## Submodules

The Python wrapper is containing three submodules : `fixedpoint` , `mfcc` and `datatype`

`fixedpoint` is proving some tools to help generating the fixedpoint values expected
by [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP).

`mfcc` is generating some tools to generate the MEL filters, DCT and window coefficients
expected by the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) MFCC implementation.

MEL filters are represented as 3 arrays to encode a sparse array.

`datatype` is an API on top of `fixedpoint` to provide more reuse when converting between data formats.

The wrapper is now containing the compute graph Python scripts and you should refer the the documentation in `DSP/ComputeGraph` folder to know how to use those tools.



# Change history

## Version 1.9.6:

* Corrections to the RFFTs APIs
* More flexibility in the compute graph to specify the additional arguments of the scheduler and nodes
* Possibility to set the FIFO scaling factor at FIFO level (in asynchronous mode)

## Version 1.9.5:

Same as 1.9.4 but will work in Google Colab.

## 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.

## Version 1.9.3:

* Corrected real FFTs in the wrapper
* Corrected arm_fir_decimate and arm_fir_interpolate
* Possibility to customize the FIFO class on a connection for the Python wrapper

## Version 1.9.2:

* New customization options for the compute graph:
  * CAPI
  * CMSISDSP
  * postCustomCName

## Version 1.9.1:

* Small fix to the compute graph generator. The `#ifdef` at beginning of the custom header should be different for different scheduler names
* Improve `addLiteralArg` and `addVariableArg` in compute graph to use variable number of arguments

## Version 1.9.0:

* New scheduling mode, in the compute graph generator, giving priority to sinks in the scheduling. The idea is to try to decrease the latency between sinks and sources.
* More customization options (Macros to be defined) in the C++ code generated by the compute graph generator

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ARM-software/CMSIS-DSP",
    "name": "cmsisdsp",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "development,dsp,cmsis,cmsis-dsp,Arm,signal processing,maths,ml,cortex-m,cortex-a",
    "author": "Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved.",
    "author_email": "christophe.favergeon@arm.com",
    "download_url": "",
    "platform": "any",
    "description": "# README\n\nThis is a Python wrapper for the Arm open source [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) and it is compatible with `NumPy`.\n\nThe CMSIS-DSP is available on our [GitHub](https://github.com/ARM-software/CMSIS-DSP) or as a [CMSIS Pack](https://github.com/ARM-software/CMSIS-DSP/releases).\n\nThe idea is to follow as closely as possible the C [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) API to ease the migration to the final implementation on a board.\n\nThe signal processing chain can thus be tested and developed in a Python environment and then easily converted to a C implementation running on a Cortex-M or Cortex-A board.\n\nA tutorial is also available but with less details than this README:\nhttps://developer.arm.com/documentation/102463/latest/\n\nThis wrapper is also containing the scripts for the new [CMSIS-DSP compute graph framework](https://github.com/ARM-software/CMSIS-DSP/tree/main/ComputeGraph) (CG).\n\nCG is also including some nodes to communicate with Modelica using the VHT Modelica blocks developed as part of our [VHT-SystemModeling](https://github.com/ARM-software/VHT-SystemModeling) demos.\n\nAn history of the changes to this wrapper is available at the end of the README.\n\n# How to build and install\n\n## Tested configurations\n\nThe building of this package has been tested on Windows with the Python install from python.org and Microsoft Visual 2017. \n\nIt has also been tested with `cygwin`. In that case, `python-devel` must be installed too. On Mac, it was tested with standard XCode installation.\n\nTo run the examples, `scipy` and `matplotlib` must also be installed.\n\nOther configurations should work but the `setup.py` file would have to be improved. \n\nPython 3 must be used.\n\n## Installing and Building\n\n### Installing\n\nIt is advised to do it in a Python virtual environment. Then, in the virtual environment you can just do:\n\n    pip install cmsisdsp\n\nYou must have a recent `pip` (to automatically install the dependencies like `NumPy`) and you should have a compiler which can be found by Python when building the package.\n\nDSP examples are available in the [CMSIS-DSP PythonWrapper examples](https://github.com/ARM-software/CMSIS-DSP/tree/main/PythonWrapper/examples) folder.\n\nSynchronous Data Flow examples are available in the [ComputeGraph](https://github.com/ARM-software/CMSIS-DSP/tree/main/ComputeGraph) folder of [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) .\n\nYou can also install and run it from [Google colab](https://colab.research.google.com/):\n\nThis [link](https://colab.research.google.com/github/ARM-software/CMSIS-DSP/blob/main/PythonWrapper/examples/cmsisdsp_tests.ipynb) will open a Jupyter notebook in [Google colab](https://colab.research.google.com/) for testing. This notebook is from the [examples](https://github.com/ARM-software/CMSIS-DSP/tree/main/PythonWrapper/examples) in the CMSIS-DSP GitHub repository.\n\n### Building\n\nIt it is not working (because it is not possible for us to test all configurations), you can then try to build and install the wrapper manually.\n\nIt is advised to do this it into a virtualenv\n\n\nSince the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) wrapper is using `NumPy`, you must first install it in the virtual environment. \n\n    > pip install numpy\n\nOnce `NumPy` is installed, you can build the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) python wrapper. Go to folder `CMSIS/DSP`.\n\nNow, you can install the cmsisdsp package in editable mode:\n\n    > pip install -e .\n\nBefore using this command, you need to rebuild the CMSIS-DSP library which is no more built by the `setup.py` script.\n\nThere is a `CMakeLists.txt` in the `PythonWrapper` folder for this. The `build` folders in `PythonWrapper` are giving some examples of the options to use with the `cmake` command to generate the `Makefile` and build the library.\n\nThis library is then used by the `setup.py` script to build the Python extension.\n\n## Running the examples\n\nInstall some packages to be able to run the examples\n\n    > pip install numpy\n    > pip install scipy\n    > pip install matplotlib\n\nDepending on the example, you may have to install more packages.\n\nThe examples are in the  [CMSIS-DSP PythonWrapper examples](https://github.com/ARM-software/CMSIS-DSP/tree/main/PythonWrapper/examples) folder.\n\nYou can test the scripts `testdsp.py` and `example.py` and try to run them from this virtual environment. `example.py` is requiring a data file to be downloaded from the web. See below in this document for the link.\n\nNote that due to the great number of possible configurations (OS, Compiler, Python), we can't give any support if you have problems compiling the `PythonWrapper` on your specific configuration. But, generally people manage to do it and solve all the problems.\n\n# Usage\n\nThe idea is to follow as closely as possible the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) API to ease the migration to the final implementation on a board.\n\nFirst you need to import the module\n\n    > import cmsisdsp as dsp\n\nIf you use numpy:\n\n    > import numpy as np\n\nIf you use scipy signal processing functions:\n\n    > from scipy import signal\n\n## Functions with no instance arguments\n\nYou can use a [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) function with numpy arrays:\n\n    > r = dsp.arm_add_f32(np.array([1.,2,3]),np.array([4.,5,7]))\n\nThe function can also be called more simply with\n\n    > r = dsp.arm_add_f32([1.,2,3],[4.,5,7])\n\nThe result of a [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) function will always be a numpy array whatever the arguments were (numpy array or list).\n\n## Functions with instance arguments \n\nWhen the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) function is requiring an instance data structure, it is just a bit more complex to use it:\n\nFirst you need to create this instance:\n\n    > firf32 = dsp.arm_fir_instance_f32()\n\nThen, you need to call an init function:\n\n    > dsp.arm_fir_init_f32(firf32,3,[1.,2,3],[0,0,0,0,0,0,0])\n\nThe third argument in this function is the state. Since all arguments (except the instance ones) are read-only in this Python API, this state will never be changed ! It is just used to communicate the length of the state array which must be allocated by the init function. This argument is required because it is present in the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) API and in the final C implementation you'll need to allocate a state array with the right dimension.\n\nSince the goal is to be as close as possible to the C API, the API is forcing the use of this argument.\n\nThe only change compared to the C API is that the size variables (like blockSize for filter) are computed automatically from the other arguments. This choice was made to make it a bit easier the use of numpy array with the API.\n\nNow, you can check that the instance was initialized correctly.\n\n    > print(firf32.numTaps())\n\nThen, you can filter with CMSIS-DSP:\n\n    > print(dsp.arm_fir_f32(firf32,[1,2,3,4,5]))\n\nThe size of this signal should be `blockSize`. `blockSize` was inferred from the size of the state array : `numTaps + blockSize - 1` according to [CMSIS-DSP.](https://github.com/ARM-software/CMSIS-DSP) So here the signal must have 5 samples.\n\nIf you want to filter more than 5 samples, then you can just call the function again. The state variable inside firf32 will ensure that it works like in the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) C code. \n\n    > print(dsp.arm_fir_f32(firf32,[6,7,8,9,10]))\n\nIf you want to compare with scipy it is easy but warning : coefficients for the filter are in opposite order in scipy :\n\n    > filtered_x = signal.lfilter([3,2,1.], 1.0, [1,2,3,4,5,6,7,8,9,10])\n    > print(filtered_x)\n\nThe principles are the same for all other APIs.\n\n## FFT \n\nHere is an example for using FFT from the Python interface:\n\nLet's define a signal you will use for the FFT.\n\n    > nb = 16\n    > signal = np.cos(2 * np.pi * np.arange(nb) / nb)\n\nThe [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) cfft is requiring complex signals with a specific layout in memory.\n\nTo remain as close as possible to the C API, we are not using complex numbers in the wrapper. So a complex signal must be converted into a real one. The function imToReal1D is defined in testdsp.py \n\n    > signalR = imToReal1D(signal)\n\nThen, you create the FFT instance with:\n\n    > cfftf32=dsp.arm_cfft_instance_f32()\n\nYou initialize the instance with the init function provided by the wrapper:\n\n    > status=dsp.arm_cfft_init_f32(cfftf32, nb)\n    > print(status)\n\nYou compute the FFT of the signal with:\n\n    > resultR = dsp.arm_cfft_f32(cfftf32,signalR,0,1)\n\nYou convert back to a complex format to compare with scipy:\n\n    > resultI = realToIm1D(resultR)\n    > print(resultI)\n\n## Matrix \n\nFor matrix, the instance variables are masked by the Python API. We decided that for matrix only there was no use for having the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) instance visibles since they contain the same information as the numpy array (samples and dimension).\n\nSo to use a [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) matrix function, it is very simple:\n\n    > a=np.array([[1.,2,3,4],[5,6,7,8],[9,10,11,12]])\n    > b=np.array([[1.,2,3],[5.1,6,7],[9.1,10,11],[5,8,4]])\n\n`NumPy` result as reference:\n\n    > print(np.dot(a , b))\n\n[CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) result:\n\n    > v=dsp.arm_mat_mult_f32(a,b)\n    > print(v)\n\nIn a real C code, a pointer to a data structure for the result `v` would have to be passed as argument of the function.\n\n## example.py\n\nThis example depends on a data file which can be downloaded here:\n\nhttps://archive.physionet.org/pn3/ecgiddb/Person_87/rec_2.dat\n\nThis signal was created for a master thesis:\n\nLugovaya T.S. Biometric human identification based on electrocardiogram. [Master's thesis] Faculty of Computing Technologies and Informatics, Electrotechnical University \"LETI\", Saint-Petersburg, Russian Federation; June 2005. \n\nand it is part of the PhysioNet database\n\nGoldberger AL, Amaral LAN, Glass L, Hausdorff JM, Ivanov PCh, Mark RG, Mietus JE, Moody GB, Peng C-K, Stanley HE. PhysioBank, PhysioToolkit, and PhysioNet: Components of a New Research Resource for Complex Physiologic Signals. Circulation 101(23):e215-e220 [Circulation Electronic Pages; http://circ.ahajournals.org/cgi/content/full/101/23/e215]; 2000 (June 13). \n\n## Submodules\n\nThe Python wrapper is containing three submodules : `fixedpoint` , `mfcc` and `datatype`\n\n`fixedpoint` is proving some tools to help generating the fixedpoint values expected\nby [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP).\n\n`mfcc` is generating some tools to generate the MEL filters, DCT and window coefficients\nexpected by the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP) MFCC implementation.\n\nMEL filters are represented as 3 arrays to encode a sparse array.\n\n`datatype` is an API on top of `fixedpoint` to provide more reuse when converting between data formats.\n\nThe wrapper is now containing the compute graph Python scripts and you should refer the the documentation in `DSP/ComputeGraph` folder to know how to use those tools.\n\n\n\n# Change history\n\n## Version 1.9.6:\n\n* Corrections to the RFFTs APIs\n* More flexibility in the compute graph to specify the additional arguments of the scheduler and nodes\n* Possibility to set the FIFO scaling factor at FIFO level (in asynchronous mode)\n\n## Version 1.9.5:\n\nSame as 1.9.4 but will work in Google Colab.\n\n## Version 1.9.4:\n\n* Dynamic Time Warping API\n* Window functions for FFT\n* New asynchronous mode for the compute graph\n(see [compute graph documentation](https://github.com/ARM-software/CMSIS-DSP/tree/main/ComputeGraph) for more details.\n\n## Version 1.9.3:\n\n* Corrected real FFTs in the wrapper\n* Corrected arm_fir_decimate and arm_fir_interpolate\n* Possibility to customize the FIFO class on a connection for the Python wrapper\n\n## Version 1.9.2:\n\n* New customization options for the compute graph:\n  * CAPI\n  * CMSISDSP\n  * postCustomCName\n\n## Version 1.9.1:\n\n* Small fix to the compute graph generator. The `#ifdef` at beginning of the custom header should be different for different scheduler names\n* Improve `addLiteralArg` and `addVariableArg` in compute graph to use variable number of arguments\n\n## Version 1.9.0:\n\n* New scheduling mode, in the compute graph generator, giving priority to sinks in the scheduling. The idea is to try to decrease the latency between sinks and sources.\n* More customization options (Macros to be defined) in the C++ code generated by the compute graph generator\n",
    "bugtrack_url": null,
    "license": "License :: OSI Approved :: Apache Software License",
    "summary": "CMSIS-DSP Python API",
    "version": "1.9.7",
    "split_keywords": [
        "development",
        "dsp",
        "cmsis",
        "cmsis-dsp",
        "arm",
        "signal processing",
        "maths",
        "ml",
        "cortex-m",
        "cortex-a"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7003f4fe2acec947350b68cbc95f08b5c0ef507ac1f839092c93f2c46d507da0",
                "md5": "b898275b1c26017a5b551045ce4e3745",
                "sha256": "9f31cd3bc8e8c950b67fc02e2e8d6116e94e69893d071166756bc8c21d3b2933"
            },
            "downloads": -1,
            "filename": "cmsisdsp-1.9.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b898275b1c26017a5b551045ce4e3745",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 4723347,
            "upload_time": "2023-03-13T13:39:44",
            "upload_time_iso_8601": "2023-03-13T13:39:44.042998Z",
            "url": "https://files.pythonhosted.org/packages/70/03/f4fe2acec947350b68cbc95f08b5c0ef507ac1f839092c93f2c46d507da0/cmsisdsp-1.9.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c496737dfc93a269a428b95b2d6418f1e0a9fc88e85b65bc7de4ed529ca69684",
                "md5": "d9dd728e2805cdc930e9aa66172f9e82",
                "sha256": "c8b09e29a7984f0a07c35d57da22dbb9d6b2a5741d9770da386d1c8bc1588512"
            },
            "downloads": -1,
            "filename": "cmsisdsp-1.9.7-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d9dd728e2805cdc930e9aa66172f9e82",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 4009722,
            "upload_time": "2023-03-13T13:40:24",
            "upload_time_iso_8601": "2023-03-13T13:40:24.240091Z",
            "url": "https://files.pythonhosted.org/packages/c4/96/737dfc93a269a428b95b2d6418f1e0a9fc88e85b65bc7de4ed529ca69684/cmsisdsp-1.9.7-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "794633f27d83aed717117387c2e2e67759e0f4ebdf026d4523556b0743afd2f5",
                "md5": "018841ba1393deb185aee26b9826dc24",
                "sha256": "97462df50ea4c4a94d51add977c5b27b5d5d67273b708cd4d2bf6b9ea6611ea5"
            },
            "downloads": -1,
            "filename": "cmsisdsp-1.9.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "018841ba1393deb185aee26b9826dc24",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 4729652,
            "upload_time": "2023-03-13T13:41:11",
            "upload_time_iso_8601": "2023-03-13T13:41:11.806839Z",
            "url": "https://files.pythonhosted.org/packages/79/46/33f27d83aed717117387c2e2e67759e0f4ebdf026d4523556b0743afd2f5/cmsisdsp-1.9.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bbbfc5b7ae3d4074d28195afac7de96e0b0db3736d0bb67abf86f8d2b483274",
                "md5": "d0dcce2312b3fc0d6aa8bb329e87b049",
                "sha256": "1282a7f750196d232b107320f0e2923a2c14e005c168727c827558dad618a572"
            },
            "downloads": -1,
            "filename": "cmsisdsp-1.9.7-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d0dcce2312b3fc0d6aa8bb329e87b049",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 4009717,
            "upload_time": "2023-03-13T13:42:05",
            "upload_time_iso_8601": "2023-03-13T13:42:05.480397Z",
            "url": "https://files.pythonhosted.org/packages/2b/bb/fc5b7ae3d4074d28195afac7de96e0b0db3736d0bb67abf86f8d2b483274/cmsisdsp-1.9.7-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9787e66cce39cef20e5fdde3525f14b1f47c2ce3a3218d1e79c563769f469207",
                "md5": "6079c3667019d9b4c900b254afb1550e",
                "sha256": "83f8884999cda517edea9bcc392cb0509861d85c0bd52f9620b94350050d5489"
            },
            "downloads": -1,
            "filename": "cmsisdsp-1.9.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6079c3667019d9b4c900b254afb1550e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 4683088,
            "upload_time": "2023-03-13T13:42:56",
            "upload_time_iso_8601": "2023-03-13T13:42:56.629841Z",
            "url": "https://files.pythonhosted.org/packages/97/87/e66cce39cef20e5fdde3525f14b1f47c2ce3a3218d1e79c563769f469207/cmsisdsp-1.9.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62cc7b8ccd6c144a44674000d3e21989542da0d6b087a6bda9882b18cabc2f6e",
                "md5": "bf726dbf28ecbd1375990538f6eb1f9c",
                "sha256": "d281e72019f176561a6aeaf82aa278f9e0c22e21228a70ec3ce6db1f1106d2d6"
            },
            "downloads": -1,
            "filename": "cmsisdsp-1.9.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf726dbf28ecbd1375990538f6eb1f9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 4755846,
            "upload_time": "2023-03-13T13:43:47",
            "upload_time_iso_8601": "2023-03-13T13:43:47.499379Z",
            "url": "https://files.pythonhosted.org/packages/62/cc/7b8ccd6c144a44674000d3e21989542da0d6b087a6bda9882b18cabc2f6e/cmsisdsp-1.9.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-13 13:39:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "ARM-software",
    "github_project": "CMSIS-DSP",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cmsisdsp"
}
        
Elapsed time: 0.04721s