CMSIS-DSP: Some improvement to a few f16 functions
diff --git a/CMSIS/DSP/Testing/extractDb.py b/CMSIS/DSP/Testing/extractDb.py
index 3b9daaf..a723035 100755
--- a/CMSIS/DSP/Testing/extractDb.py
+++ b/CMSIS/DSP/Testing/extractDb.py
@@ -55,6 +55,7 @@
parser.add_argument('-details', action='store_true', help="Details about runids")
parser.add_argument('-lastid', action='store_true', help="Get last ID")
parser.add_argument('-comments', nargs='?',type = str, default="comments.txt", help="Comment section")
+parser.add_argument('-byd', action='store_true', help="Result oganized by datatype")
# For runid or runid range
parser.add_argument('others', nargs=argparse.REMAINDER,help="Run ID")
@@ -685,7 +686,10 @@
if args.t=="md":
document.accept(Markdown(output))
if args.t=="html":
- document.accept(HTML(output,args.r))
+ reorder=True
+ if args.byc:
+ reorder=False
+ document.accept(HTML(output,args.r,reorder))
finally:
c.close()