Home | History | Annotate | Download | only in complete

Lines Matching refs:callWeighting

43         self.callWeighting = 0.1
87 self.callWeighting = weight
120 shouldCallFunc = (self.lastFuncNum > 2 and random.random() < self.callWeighting)
179 def generateKScript(filename, numFuncs, elementsPerFunc, funcsBetweenExec, callWeighting, timingScript):
184 print(" Call weighting = %f" % callWeighting)
186 script.setCallWeighting(callWeighting)
191 script.writeComment(" call weighting = %f" % callWeighting)
221 for (numFuncs, elementsPerFunc, funcsBetweenExec, callWeighting) in dataSets:
222 filename = "test-%d-%d-%d-%d.k" % (numFuncs, elementsPerFunc, funcsBetweenExec, int(callWeighting * 100))
223 generateKScript(filename, numFuncs, elementsPerFunc, funcsBetweenExec, callWeighting, timingScript)