Lines Matching refs:vals

86   vals=[]
93 vals += bounds
101 vals.append(theid)
103 runidval = tuple(vals)
215 vals = (typeid,) + runidval
216 r=c.execute(allCores % (benchTable,runidCMD),vals).fetchall()
362 vals=(core,compilerid) + runidval
363 result=c.execute(benchNamesForCoreCompiler % (benchTable,runidCMD),vals).fetchall()
370 vals=(core,typeid) + runidval
371 result=c.execute(benchNamesForCore % (benchTable,runidCMD),vals).fetchall()
378 vals=(comp,typeid) + runidval
379 result=c.execute(benchNamesForCompiler % (benchTable,runidCMD),vals).fetchall()
423 vals=(coreid,typeid) + runidval
424 result=c.execute(nbElemsInBenchAndTypeAndCoreCmd % (benchTable,runidCMD),vals).fetchone()
429 vals=(comp,typeid) + runidval
430 result=c.execute(nbElemsInBenchAndTypeAndCompilerCmd % (benchTable,runidCMD),vals).fetchone()
435 vals=(comp,coreid) + runidval
436 result=c.execute(nbElemsInBenchAndCoreAndCompilerCmd % (benchTable,runidCMD),vals).fetchone()
440 vals=(typeid,) + runidval
441 result=c.execute(nbElemsInBenchAndTypeCmd % (benchTable,runidCMD),vals).fetchone()
445 vals=(coreid,) + runidval
446 result=c.execute(nbElemsInBenchAndCoreCmd % (benchTable,runidCMD),vals).fetchone()
461 vals=(compiler,core,typeid,testid,runid)
462 result=cursor.execute(historyCmd % (keepColsStr,benchTable),vals)
463 vals =np.array([list(x) for x in list(result)])
464 return(keepCols,vals)
474 vals=(core,typeid) + runidval
475 result=cursor.execute(benchCmdForCore % (keepColsStr,benchTable,runidCMD),vals)
476 vals =np.array([list(x) for x in list(result)])
477 return(keepCols,vals)
487 vals=(core,compilerid) + runidval
488 result=cursor.execute(benchCmdForCoreCompiler % (keepColsStr,benchTable,runidCMD),vals)
489 vals =np.array([list(x) for x in list(result)])
490 return(keepCols,vals)
500 vals=(comp,typeid) + runidval
501 result=cursor.execute(benchCmdForCompiler % (keepColsStr,benchTable,runidCMD),vals)
502 vals =np.array([list(x) for x in list(result)])
503 return(keepCols,vals)
559 vals=(compilerid,typeid,testid,runid)
560 result=c.execute(coresForHistory % benchTable,vals).fetchall()
565 vals=(coreid,typeid,testid,runid)
566 result=c.execute(compilersForHistory % benchTable,vals).fetchall()
637 def formatTableBy(desc,byname,section,typeSection,testNames,cols,vals): argument
638 if vals.size != 0:
639 ref=pd.DataFrame(vals,columns=cols)
1003 cols,vals=getColNamesAndDataForCoreCompiler(benchName,compiler,aCoreID)
1007 … formatTableBy(desc,['type'],['core','version','compiler'],compilerSection,names,cols,vals)
1029 cols,vals=getColNamesAndDataForCore(benchName,core,aTypeID)
1032 … formatTableBy(desc,['compiler','version'],['core'],coreSection,names,cols,vals)
1057 cols,vals=getColNamesAndDataForCompiler(benchName,compiler,aTypeID)
1060 … formatTableBy(desc,['core'],['version','compiler'],compilerSection,names,cols,vals)