1# CMSIS-DSP {#mainpage} 2 3**CMSIS-DSP** is an open-source software library that implements common compute processing functions optimized for use on Arm Cortex-M and Cortex-A processors. The library covers such compute categories as (list not exhaustive): 4 5 - Basic mathematics (real, complex, quaternion, linear algebra, fast math functions) 6 - DSP (filtering) 7 - Transforms (FFT, MFCC, DCT) 8 - Statistics 9 - Classical ML (Support Vector Machine, Distance functions for clustering, ...) 10 11## Access to CMSIS-DSP 12 13CMSIS-DSP is actively maintained in a GitHub repository and is released as a standalone package in the CMSIS-Pack format. 14 15 - [**CMSIS-DSP GitHub Repo**](https://github.com/ARM-software/CMSIS-DSP) provides the full source code of CMSIS-DSP functions. 16 - [**CMSIS-DSP Documentation**](https://arm-software.github.io/CMSIS-DSP/latest/) explains how to use the library and describes the implemented functions in details. 17 - [**CMSIS-DSP Pack**](https://www.keil.arm.com/packs/cmsis-dsp-arm/versions/) delivers CMSIS-DSP components and examples in [CMSIS-Pack format](https://open-cmsis-pack.github.io/Open-CMSIS-Pack-Spec/main/html/index.html). 18 19## Key Features and Benefits 20 21 - CMSIS-DSP covers a broad set of compute functions common for use in embedded systems. 22 - Supports operations on 8-bit integers, 16-bit integers, 32-bit integer and 32-bit floating-point values. 23 - Provides vectorized versions of most algorthms for [Arm Helium Technology](https://developer.arm.com/Architectures/Helium) and of most f32 algorithms for [Arm Neon Technology](https://developer.arm.com/Architectures/Neon). 24 - Includes test framework. 25 - Provides examples demonstating how to use the library functions. 26