Home
last modified time | relevance | path

Searched refs:parser (Results 1 – 14 of 14) sorted by relevance

/cmsis-dsp-latest/Testing/
DprocessTests.py7 parser = argparse.ArgumentParser(description='Parse test description') variable
8 parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="Pickle path")
10 parser.add_argument('-p', nargs='?',type = str, default="Patterns", help="Pattern dir path")
11 parser.add_argument('-d', nargs='?',type = str, default="Parameters", help="Parameter dir path")
12 parser.add_argument('-gen', nargs='?',type = str, default=".", help="Folder for generated C sources…
18 parser.add_argument('-e', action='store_true', help="Embedded test")
20 parser.add_argument('-b', action='store_true', help="Benchmark mode to use different generated fold…
22 parser.add_argument('others', nargs=argparse.REMAINDER)
24 args = parser.parse_args()
40 parser.print_help()
DconvertToOld.py88 parser = argparse.ArgumentParser(description='Generate summary benchmarks') variable
90 parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="Test description fil…
91 parser.add_argument('-b', nargs='?',type = str, default="FullBenchmark", help="Full Benchmark dir p…
92 parser.add_argument('-e', action='store_true', help="Embedded test")
93 parser.add_argument('-o', nargs='?',type = str, default="bench.csv", help="Output csv file using ol…
95 parser.add_argument('others', nargs=argparse.REMAINDER)
97 args = parser.parse_args()
112 parser.print_help()
Dpreprocess.py5 parser = argparse.ArgumentParser(description='Parse test description') variable
7 parser.add_argument('-f', nargs='?',type = str, default=None, help="Test description file path")
9 parser.add_argument('-o', nargs='?',type = str, default="Output.pickle", help="output file for pars…
11 args = parser.parse_args()
DsummaryBench.py117 parser = argparse.ArgumentParser(description='Generate summary benchmarks') variable
119 parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="Test description cac…
120 parser.add_argument('-b', nargs='?',type = str, default="FullBenchmark", help="Full Benchmark dir p…
122 parser.add_argument('-r', nargs='?',type = str, default=None, help="Result file path")
124 parser.add_argument('others', nargs=argparse.REMAINDER)
126 args = parser.parse_args()
138 parser.print_help()
DprocessResult.py565 parser = argparse.ArgumentParser(description='Parse test description') variable
567 parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="Test description fil…
569 parser.add_argument('-r', nargs='?',type = str, default=None, help="Result file path")
570 parser.add_argument('-c', action='store_true', help="CSV output")
571 parser.add_argument('-html', action='store_true', help="HTML output")
572 parser.add_argument('-ahtml', action='store_true', help="Partial HTML output")
574 parser.add_argument('-e', action='store_true', help="Embedded test")
576 parser.add_argument('-o', nargs='?',type = str, default="Output", help="Output dir path")
578 parser.add_argument('-b', nargs='?',type = str, default="FullBenchmark", help="Full Benchmark dir p…
579 parser.add_argument('-m', action='store_true', help="Mathematica output")
[all …]
DaddToRegDB.py323 parser = argparse.ArgumentParser(description='Generate summary benchmarks') variable
325 parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="Pickle path")
326 parser.add_argument('-b', nargs='?',type = str, default="FullBenchmark", help="Full Benchmark dir p…
328 parser.add_argument('-o', nargs='?',type = str, default="reg.db", help="Regression benchmark databa…
329 parser.add_argument('-r', nargs='?',type = int, default=0, help="Run ID")
331 parser.add_argument('others', nargs=argparse.REMAINDER, help="Suite class")
333 args = parser.parse_args()
348 parser.print_help()
DaddToDB.py313 parser = argparse.ArgumentParser(description='Generate summary benchmarks') variable
315 parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="Pickle")
316 parser.add_argument('-b', nargs='?',type = str, default="FullBenchmark", help="Full Benchmark dir p…
318 parser.add_argument('-o', nargs='?',type = str, default="bench.db", help="Benchmark database")
319 parser.add_argument('-r', nargs='?',type = int, default=0, help="Run ID")
321 parser.add_argument('others', nargs=argparse.REMAINDER, help="Suite class")
323 args = parser.parse_args()
338 parser.print_help()
DextractDb.py48 parser = argparse.ArgumentParser(description='Generate summary benchmarks') variable
50 parser.add_argument('-b', nargs='?',type = str, default="bench.db", help="Database")
51 parser.add_argument('-o', nargs='?',type = str, default="full.md", help="Full summary")
52 parser.add_argument('-r', action='store_true', help="Regression database")
53 parser.add_argument('-t', nargs='?',type = str, default="md", help="type md or html")
54 parser.add_argument('-byc', action='store_true', help="Result oganized by Compiler")
55 parser.add_argument('-g', action='store_true', help="Include graphs in regression report")
57 parser.add_argument('-details', action='store_true', help="Details about runids")
58 parser.add_argument('-lastid', action='store_true', help="Get last ID")
59 parser.add_argument('-comments', nargs='?',type = str, default="comments", help="Comment folder")
[all …]
/cmsis-dsp-latest/Scripts/
DGenMFCCDataForCPP.py42 parser = argparse.ArgumentParser(description='Generate MFCC Data for CPP') variable
45 parser.add_argument('-n', nargs='?',type = str, default="mfccdata", help="mfcc file name")
46 parser.add_argument('-d', nargs='?',type = str, default="Testing/Source/Tests", help="mfcc c file d…
47 parser.add_argument('-i', nargs='?',type = str, default="Testing/Include/Tests", help="mfcc h file …
48 parser.add_argument('others', help="yaml configuration file", nargs=argparse.REMAINDER)
50 args = parser.parse_args()
DgenMVETwiddleCoefs.py19 parser = argparse.ArgumentParser(description='Generate C arrays') variable
20 parser.add_argument('-f', nargs='?',type = str, default="../Source/CommonTables/arm_mve_tables.c", …
21 parser.add_argument('-f16', nargs='?',type = str, default="../Source/CommonTables/arm_mve_tables_f1…
22 parser.add_argument('-he', nargs='?',type = str, default="../Include/arm_mve_tables.h", help="H Fil…
23 parser.add_argument('-he16', nargs='?',type = str, default="../Include/arm_mve_tables_f16.h", help=…
25 args = parser.parse_args()
/cmsis-dsp-latest/Testing/cmsis_build/
Drunall.py10 parser = argparse.ArgumentParser(description='Parse test description') variable
11 parser.add_argument('-avh', nargs='?',type = str, default="C:/Keil_v5/ARM/avh-fvp/bin/models", help…
12 parser.add_argument('-d', action='store_true', help="Debug log")
13 parser.add_argument('-n', action='store_true', help="No force rebuild")
14 parser.add_argument('-r', action='store_true', help="Raw results only")
15 parser.add_argument('-c', action='store_true', help="Display cycles (so passing test are displayed)…
16 parser.add_argument('-g', nargs='?',type = str,help="AC6 / CLANG / GCC")
17 parser.add_argument('-s', action='store_true', help="Take into account AVH error code")
19 args = parser.parse_args()
/cmsis-dsp-latest/dsppp/
Drun_all.py85 parser = argparse.ArgumentParser(description='Parse test description') variable
86 parser.add_argument('-c', nargs='?',type = str, default="M55",help="M55/M4/M0")
87 parser.add_argument('-p', nargs='?',type = str, default="VHT",help="VHT/MPS3")
88 parser.add_argument('-a', action='store_true', help="Generate allocator definitions")
89 parser.add_argument('-i', action='store_true', help="Refresh global allocator index")
90 parser.add_argument('-b', action='store_true', help="Only benchmarks")
91 parser.add_argument('-d', action='store_true', help="Dry run")
92 parser.add_argument('-g', nargs='?',type = str, default="AC6",help="AC6 / CLANG / GCC")
93 parser.add_argument('-u', nargs='?',type = str, default="L85986697A",help="Debug UUID")
94 parser.add_argument('-t', action='store_true', help="Enable test mode")
[all …]
/cmsis-dsp-latest/Testing/DebugScripts/
Ddebug.py12 parser = argparse.ArgumentParser(description='Debug description') variable
13 parser.add_argument('-f', nargs='?',type = str, default="f32", help="Format")
14 parser.add_argument('-n', nargs='?',type = str, default="1", help="Test number")
15 parser.add_argument('-i', nargs='?',type = bool, default=False, help="Ifft")
16 parser.add_argument('-ui', nargs='?',const=True,type = bool, default=False, help="Display curves")
18 args = parser.parse_args()
/cmsis-dsp-latest/Documentation/Doxygen/
Ddsp.dxy.in325 # Doxygen selects the parser to use depending on the extension of the files it
326 # parses. With this tag you can assign which parser to use for a given
332 # FortranFree, unknown formatted Fortran: Fortran. In the later case the parser
1284 # clang parser (see:
1287 # which doxygen's built-in parser lacks the necessary type information.
1310 # If clang assisted parsing is enabled you can provide the clang parser with the
1316 # will then be passed to the parser. Any options specified with CLANG_OPTIONS
2447 # are typically used for boiler-plate code, and will confuse the parser if not