Home | History | Annotate | Download | only in cached

Lines Matching refs:callWeighting

38         self.callWeighting = 0.1
82 self.callWeighting = weight
115 shouldCallFunc = (self.lastFuncNum > 2 and random.random() < self.callWeighting)
174 def generateKScript(filename, numFuncs, elementsPerFunc, funcsBetweenExec, callWeighting, timingScript):
179 print(" Call weighting = %f" % callWeighting)
181 script.setCallWeighting(callWeighting)
186 script.writeComment(" call weighting = %f" % callWeighting)
216 for (numFuncs, elementsPerFunc, funcsBetweenExec, callWeighting) in dataSets:
217 filename = "test-%d-%d-%d-%d.k" % (numFuncs, elementsPerFunc, funcsBetweenExec, int(callWeighting * 100))
218 generateKScript(filename, numFuncs, elementsPerFunc, funcsBetweenExec, callWeighting, timingScript)