CMSIS-DSP: Added test patterns for Statistics functions.
Added MVE code for statistics functions.
Improvement to test framework.
diff --git a/CMSIS/DSP/Testing/summaryBench.py b/CMSIS/DSP/Testing/summaryBench.py
index ff758bc..10aef20 100644
--- a/CMSIS/DSP/Testing/summaryBench.py
+++ b/CMSIS/DSP/Testing/summaryBench.py
@@ -107,7 +107,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")
# Needed to find the currentConfig.csv and know the headers
parser.add_argument('-r', nargs='?',type = str, default=None, help="Result file path")
@@ -117,9 +117,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)
resultPath=os.path.dirname(args.r)
extractBenchmarks(resultPath,args.b,root)