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

20 # For sql table creation
25 MKKEYFIELD=['DATE','NAME','CATEGORY', 'PLATFORM', 'CORE', 'COMPILER','TYPE',"RUN"]
31 'COMPILER':'compilerid',
35 # For csv table value extraction
41 VALKEYFIELD=['DATE','NAME','CATEGORY', 'PLATFORM', 'CORE', 'COMPILER','TYPE']
46 for x in it:
57 return [item for item in first if item not in second]
65 for field in common:
88 for field in params:
92 for field in common:
111 sql += "FOREIGN KEY(compilerid) REFERENCES COMPILER(compilerid)"
136 …r = conn.execute("select compilerid from COMPILER where compilerkindid=? AND version=?" , (kind,v…
143 …conn.execute("INSERT INTO COMPILER(compilerkindid,version,testdateid) VALUES(?,?,?)" ,(kind,versio…
145 …r = conn.execute("select compilerid from COMPILER where compilerkindid=? AND version=? AND testdat…
165 for c in params + keep:
174 for index, row in full.iterrows():
179 for field in common:
226 for field in common:
231 # help for post processing.
252 if field == "COMPILER":
253 compilerkind = findInTable(conn,"COMPILERKIND","compiler",row[field],"compilerkindid")
254 compiler = findInCompilerTable(conn,compilerkind,keys["VERSION"])
255 keys[field]=compiler
256 compilerid = compiler
260 for field in params:
264 for field in keep:
308 for c in elem.children:
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…
317 #parser.add_argument('-e', action='store_true', help="Embedded test")
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")