Lines Matching +full:for +full:- +full:compiler

20 # For sql table creation
26 MKKEYFIELD=['DATE','NAME','CATEGORY', 'PLATFORM', 'CORE', 'COMPILER','TYPE','RUN']
32 'COMPILER':'compilerid',
36 # For csv table value extraction
43 VALKEYFIELD=['DATE','NAME','CATEGORY', 'PLATFORM', 'CORE', 'COMPILER','TYPE']
48 for x in it:
59 return [item for item in first if item not in second]
67 for field in common:
92 for field in params:
96 for field in common:
117 sql += "FOREIGN KEY(compilerid) REFERENCES COMPILER(compilerid)"
142 …r = conn.execute("select compilerid from COMPILER where compilerkindid=? AND version=?" , (kind,v…
149 …conn.execute("INSERT INTO COMPILER(compilerkindid,version,testdateid) VALUES(?,?,?)" ,(kind,versio…
151 …r = conn.execute("select compilerid from COMPILER where compilerkindid=? AND version=? AND testdat…
171 for c in params + keep:
180 for index, row in full.iterrows():
185 for field in common:
233 for field in common:
238 # help for post processing.
259 if field == "COMPILER":
260 compilerkind = findInTable(conn,"COMPILERKIND","compiler",row[field],"compilerkindid")
261 compiler = findInCompilerTable(conn,compilerkind,keys["VERSION"])
262 keys[field]=compiler
263 compilerid = compiler
267 for field in params:
271 for field in keep:
318 for c in elem.children:
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…
327 #parser.add_argument('-e', action='store_true', help="Embedded test")
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")