CMSIS-DSP: Added test patterns for Statistics functions.
Added MVE code for statistics functions.
Improvement to test framework.
diff --git a/CMSIS/DSP/Testing/addToRegDB.py b/CMSIS/DSP/Testing/addToRegDB.py
index 899faf8..cf21085 100755
--- a/CMSIS/DSP/Testing/addToRegDB.py
+++ b/CMSIS/DSP/Testing/addToRegDB.py
@@ -298,7 +298,7 @@
parser = argparse.ArgumentParser(description='Generate summary benchmarks')
-parser.add_argument('-f', nargs='?',type = str, default=None, help="Test description file path")
+parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="Test description file path")
parser.add_argument('-b', nargs='?',type = str, default="FullBenchmark", help="Full Benchmark dir path")
#parser.add_argument('-e', action='store_true', help="Embedded test")
parser.add_argument('-o', nargs='?',type = str, default="reg.db", help="Regression benchmark database")
@@ -308,9 +308,10 @@
args = parser.parse_args()
if args.f is not None:
- p = parse.Parser()
+ #p = parse.Parser()
# Parse the test description file
- root = p.parse(args.f)
+ #root = p.parse(args.f)
+ root=parse.loadRoot(args.f)
d.deprecate(root,args.others)
if args.others:
group=args.others[0]