Lines Matching +full:add +full:- +full:path

8 import os.path
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")
60 parser.add_argument('-byd', action='store_true', help="Result oganized by datatype")
61 parser.add_argument('-ratio', action='store_true', help="Compute ratios for regression by core inst…
62 parser.add_argument('-ref', nargs='?',type = str, default="M55", help="Reference COREDEF for ratio …
63 parser.add_argument('-clampval', nargs='?',type = float, default=8.0, help="Clamp for ratio")
64 parser.add_argument('-clamp', action='store_true', help="Clamp enabled for ratio")
65 parser.add_argument('-cores', nargs='?',type = str, help="Cores to keep")
66 parser.add_argument('-toc', nargs='?',type = str, help="Yaml for the table of contents")
91 if re.search(r'-',t):
92 bounds=[int(x) for x in t.split("-")]
143 # So no need to add this information here
263 WHERE compilerid=? AND coreid=? AND typeid = ? AND ID = ? AND runid > (? - 10)
269 WHERE coreid=? AND typeid = ? AND ID = ? AND runid > (? - 10)
287 WHERE compilerid=? AND typeid = ? AND ID = ? AND runid > (? - 10)
619 if os.path.exists(args.comments):
621 path=os.path.join(args.comments,fileName+".html")
623 if os.path.exists(path):
626 with open(path,"r") as r:
920 values=["ratio"], aggfunc='first',fill_value=-1.0)
960 # Add a report for each table
1011 # Add report for each type
1019 ## Add report for each core
1047 ## Add report for each compiler
1097 if os.path.exists(args.comments):
1099 path=os.path.join(args.comments,"comments.txt")
1103 with open(path,"r") as r: