• Home
  • Raw
  • Download

Lines Matching full:runs

50     runs = {}   # platform --> list of test runs
64 runs.setdefault(platform, []).append(testrunx)
65 return runs
77 # partition all twoway runs based on name of antagonist progs
81 runs = {}
85 runs.setdefault(antag, []).append(testrunx)
87 twoway_runs[kernel] = runs
91 def collect_raw_scores(runs, metric): argument
92 # get unscaled scores of test runs for 1 test on certain jobs
95 for platform in runs:
96 vals = perf.get_metric_at_point(runs[platform], metric)
103 # get scores of test runs for 1 test on some kernels and platforms
130 runs = twoway_runs[kernel].get(test2, [])
131 vals = perf.get_metric_at_point(runs, metric)
154 # Runs for the latest kernel may be underway and incomplete.
244 print "<a href='%s?%s&runs&attrs'>" % (myurl,
253 print "number of good test runs, then standard deviation of those runs"
270 print "No runs completed on", kernel, "<br>"
326 print "<a href='%s?%s&runs&attrs'>" % (myurl,
335 print "number of good test runs, then standard deviation of those runs"
338 def table_testrun_details(runs, metric, tko_server, show_attrs): argument
347 for testrunx in runs:
441 self.test_runs = {} # kernel --> (platform --> list of test runs)
458 runs = collect_testruns(self.job_table[kernel], test,
461 if runs:
462 self.test_runs[kernel] = runs
507 def testrun_details(self, title, runs, metric): argument
515 table_testrun_details(runs, metric,
525 runs = self.test_runs[kernel].get(platform, [])
526 self.testrun_details(title, runs, metric)
540 print 'No runs'
541 elif 'runs' in self.cgiform:
549 # TODO: show #runs in header
616 runs = collect_testruns(self.job_table[kernel],
623 for testrunx in runs[platform]:
672 runs = twoway_runs[kernel].get(antagonist, [])
673 self.testrun_details(title, runs, metric)
684 print 'No runs'
685 elif 'runs' in self.cgiform: