Commit Graph

502 Commits (8353800b3fcf0b018c0c3d847fcaeddaa08b8261)
 

Author SHA1 Message Date
JbR 8353800b3f Ignore old c cast style not supported by apple cc (#1334) 4 years ago
Christophe Favergeon 9a5083c565 CMSIS-DSP: Additional fixes for issue #1328 4 years ago
Christophe Favergeon d26cd50388 CMSIS-DSP: Correcting issue #1328
Sign issue warnings
4 years ago
Christophe Favergeon 46231a68e5 CMSIS-DSP: Correcting issue #1285
representation of float 16 values in generated tables.
4 years ago
Thomas Törnblom 2a7714ced7 DSP: Cleanup of type mismatches (#1327)
The IAR compiler appears to provide more warnings about type
mismatches than the other compilers. This cleans a lot of them up.

Signed-off-by: TTornblom <thomas.tornblom@iar.com>
4 years ago
Christophe Favergeon b4822217d0 CMSIS-DSP: Fixes to build with an additional compiler 4 years ago
JbR 606f49743b Adding support for Apple Compiler 4 years ago
Christophe Favergeon cd7ecea5a7 CMSIS-DSP: Corrected some failing f16 tests. 4 years ago
Christophe Favergeon 3976ce6959 CMSIS-DSP: Corrected wrong test pattern for fixed point division. 4 years ago
Christophe Favergeon 49a38a5eb1 CMSIS-DSP: Corrected issue #1053
(documentation issue)
4 years ago
TTornblom 225ab53a54 DSP: Eliminate some non-standard C code
Cleaned out some non-standard C code, typeof() and using
"const" variables as constants.

Also added some initial IAR support.

Signed-off-by: TTornblom <thomas.tornblom@iar.com>
4 years ago
TTornblom 9b6b4fff80 DSP: Eliminate some non-standard C code
Cleaned out some non-standard C code, typeof() and using
"const" variables as constants.

Also added some initial IAR support.

Signed-off-by: TTornblom <thomas.tornblom@iar.com>
4 years ago
Christophe Favergeon 8092cc61f9 CMSIS-DSP: New MFCC Q15 and Q31
arm_cmplx_mag_q15 reworked to be more accurate but less efficient.

New function arm_cmplx_mag_fast_q15 introduced to retain previous
(less accurate) but faster behavior.

Improvement to Python wrapper to support the new functions.
4 years ago
Christophe Favergeon 99dc566e87 CMSIS-DSP: MVE versions of vlog q15 and q31 and PythonWrapper fix
PythonWrapper was no more building on windows due to a too long
link command line.

A temporary fix was made. But on long term the wrapper must be refactored
into submodules to allow to more easily add new functions.
4 years ago
Christophe Favergeon cd9ac529d6 CMSIS-DSP: Some small changes to thresholds used in test for Q15 convolution. 4 years ago
Christophe Favergeon 0597838b9f CMSIS-DSP: New f64 tests
Tests for : BasicMaths, ComplexMaths, Stats, FastMath
Filtering, Distances, Support.

Some tests are disabled because only a subset
of the functions has been converted to f64.
4 years ago
JbR c91d16b2c2 Fixing double init values 4 years ago
JbR 6c469c6c18 Adding new f64 files to CMakeLists 4 years ago
JbR 329dae5fad Removing defgroup from f64 & fixing double init values 4 years ago
JbR 193adbe24b Removing Doxygen group 4 years ago
JbR 4954674848 Fixing double init value 4 years ago
JbR 7a4579d9a9 Implement some f64 methods 4 years ago
Christophe Favergeon 9674e00294 CMSIS-DSP: log f16 update 4 years ago
Christophe Favergeon 8fb55a90b7 CMSIS-DSP: Added MFCC F16
This first version is not very accurate due to problems with the log.
A coming commit will improve the log accuracy.

Issues #1305 and #1304 also corrected as part of this commit.
4 years ago
Sandeep Mistry bf965eb609 Correct interpol(...) arg in ComplexMathFunctions CMakeLists.txt 4 years ago
Christophe Favergeon 3d264cfabb CMSIS-DSP: MFCC F32
MFCC F32 implementation
MFCC F32 tests
MFCC F32 in Python wrapper
Python wrapper structure updated to support submodule like
cmsisdsp.mfcc and cmsisdsp.fixedpoint
PythonWrapper tests updated to use the new fixedpoint
cmsisdsp.mfcc is used to generate the mel filter, dct and window coefficients.
4 years ago
Christophe Favergeon 9f36d99a0b CMSIS-DSP: Correction os issue 1274
arm_mat_solve_lower_triangular_f32 and arm_mat_solve_upper_triangular_f32
had constraints which could be removed to make the function
more generic.
4 years ago
Christophe Favergeon 0bf67b2333 CMSIS-DSP: Correcting issue 1289
A test check was disabled by mistake.
4 years ago
Christophe Favergeon d58f76a768 CMSIS-DSP: Correcting issue 1291
Test was wrongly assuming a complex matrix / vector and so the
buffer sizes were too big.
4 years ago
Christophe Favergeon f1e33b7a7f CMSIS-DSP: Correcting issue 1293
Missing const qualifier in linear interpolation
4 years ago
Christophe Favergeon ab33fa64d7 CMSIS-DSP: Synchronous Data Flow
Set of Python scripts used to describe synchronous data flow networks
and generate a static scheduling.

It is working with CMSIS-DSP and a few standard nodes provided as C++ or Python classes.
It can be easily extended.

It is also working with the Python wrapper for CMSIS-DSP.

Detailed documentation in the SDFTools/README.md
4 years ago
Christophe Favergeon 840a233053 CMSIS-DSP: Scalar version for arm_vlog_q31
Added scalar version of arm_vlog_q15

Updated PythonWrapper with vlog q31 and q15
Corrected small compilation issue with AC5 compiler.
4 years ago
Christophe Favergeon 3879adccd7 CMSIS-DSP: Correcting issue 1244
warning "statement is unreachable"
4 years ago
Christophe Favergeon 079b404a19 CMSIS-DSP : Correcting issue 1248
ARM_MATH_DSP is not behind a define guard
4 years ago
Christophe Favergeon 8970ae1e81 CMSIS-DSP: Update to the README
Additional info about the compilation defines for FFT tables and the
Python configuration script.
4 years ago
Christophe Favergeon 2a2f745bd3 CMSIS-DSP: Correction of issue 1217
Wrong initialization code for Neon version of biquad DF2T.
Initialization function was trying to modify a const array.
Added Neon function to Doxygen output and some correction because of Doxygen.
5 years ago
Christophe Favergeon 5fac45cc96 CMSIS-DSP: Removed float promotion issues
Corrected some additional warnings when compiling with AC5 compiler.
Updated version numbers,
5 years ago
Christophe Favergeon 515c07c575 CMSIS-DSP: Removed new compilation warnings with AC6.17 compiler. 5 years ago
Christophe Favergeon 2bc66f36fb CMSIS-DSP: Remove deprecated test framework.
Removed project folder used to build the library binaries since the
library is now distributed in source form only.
5 years ago
Christophe Favergeon 96c89e0a51 CMSIS-DSP: Corrections to tests
Build issue with f16 on gcc.
Added some customization hooks.
5 years ago
Christophe Favergeon 28746aeadb CMSIS-DSP: Improved tests on matrix inversions
And correction of an internal pointer bug in pivot code.
5 years ago
Christophe Favergeon 1019e4c4a8 CMSIS-DSP: Correcting a bug in matrix inversion
When pivot is 0, the row permutation code was not correct and failing on
some matrixes (but not all matrixes).
5 years ago
Christophe Favergeon ac7da660b7 CMSIS-DSP: Remove type punning in vector code and some compilation warnings. 5 years ago
Christophe Favergeon 12e56614de CMSIS-DSP: Update to Python wrapper
New functions added.
5 years ago
Christophe Favergeon 4014866174 CMSIS-DSP: Remove some gcc compilation warnings. 5 years ago
Christophe Favergeon acaa70a62a CMSIS-DSP: Correcting issue #1182 5 years ago
Sun Yiming Z 8a5de0715b Update svm_functions.h 5 years ago
Sun Yiming Z 69a0cf38d5 Update parseLog_SV.py 5 years ago
Sun Yiming Z 1454ab6f0d Update parseLog_SV.py 5 years ago
Sun Yiming Z 7fc18f0e6f Update svm_functions.h 5 years ago