CMSIS-DSP:Test framework improvements and bug corrections
Corrected memory issue in IORunner when using static buffer of
parameters.
Added script to generate a db of regression
Added max regression coef to summary results.
diff --git a/CMSIS/DSP/Testing/addAllBenchToRegressionDatabase.bat b/CMSIS/DSP/Testing/addAllBenchToRegressionDatabase.bat
new file mode 100755
index 0000000..c8e059f
--- /dev/null
+++ b/CMSIS/DSP/Testing/addAllBenchToRegressionDatabase.bat
@@ -0,0 +1,24 @@
+echo "Basic Maths"
+python addToRegDB.py -f bench.txt  BasicBenchmarks
+echo "Complex Maths"
+python addToRegDB.py -f bench.txt  ComplexBenchmarks
+echo "FIR"
+python addToRegDB.py -f bench.txt  FIR
+echo "Convolution / Correlation"
+python addToRegDB.py -f bench.txt  MISC
+echo "Decimation / Interpolation"
+python addToRegDB.py -f bench.txt  DECIM
+echo "BiQuad"
+python addToRegDB.py -f bench.txt  BIQUAD
+echo "Controller"
+python addToRegDB.py -f bench.txt  Controller
+echo "Fast Math"
+python addToRegDB.py -f bench.txt  FastMath
+echo "Barycenter"
+python addToRegDB.py -f bench.txt  SupportBarF32
+echo "Support"
+python addToRegDB.py -f bench.txt  Support
+echo "Unary Matrix"
+python addToRegDB.py -f bench.txt  Unary 
+echo "Binary Matrix"
+python addToRegDB.py -f bench.txt  Binary
\ No newline at end of file