Lines Matching +full:- +full:d

45   return("Unknown error %d" % id)
68 c = c[n-1]
94 print(Style.BRIGHT + ("%s%s : %s (%d)" % (ident,kind,message,theId)) + Style.RESET_ALL)
106 …print("%s%s %s(%s - %d)%s : %s (cycles = %d)" % (ident,message,Style.BRIGHT,func,theId,Style.RESET…
108 … print("%s%s %s(%s - %d)%s : %s" % (ident,message,Style.BRIGHT,func,theId,Style.RESET_ALL,p))
112 … print(Fore.RED + ("%s %s at line %d" % (ident, errorStr(theError), theLine)) + Style.RESET_ALL)
144 print("<h%d> %s (%d) </h%d>" % (self.nb,message,theId,self.nb))
147 print("<h%d> %s (%d) </h%d>" % (self.nb,message,theId,self.nb))
149 print("<h%d> %s (%d) </h%d>" % (3,message,theId,self.nb))
175 print("<td>%d</td>" % theId)
182 print("<td>%d</td>" % cycles)
189 …print("<tr><td colspan=4><font color=\"red\">%s at line %d</font></td></tr>" % (errorStr(theError)…
196 self.nb = self.nb - 1
234 print("%s,%s,%d,%d,%d,\"%s\"" % (category,name,theId,passed,cycles,params))
253 if self._hasContent[len(self._hasContent)-1]:
257 self._hasContent[len(self._hasContent)-1] = True
268 print("\"%s\" ->" % (message))
286 if self._hasContent[len(self._hasContent)-1]:
288 …print("<|\"NAME\" -> \"%s\",\"ID\" -> %d,\"STATUS\" -> \"%s\",\"CYCLES\" -> %d,\"PARAMS\" -> \"%s\…
289 self._hasContent[len(self._hasContent)-1] = True
291 # print("%s Error = %d at line %d" % (ident, theError, theLine))
320 if re.match(r'^.*D:[ ].*$',l):
322 if re.match(r'^.*D:[ ]END$',l):
328 m = re.match(r'^.*D:[ ](.*)$',l)
334 m = re.match(r'^.*D:[ ](.*)$',l)
353 …benchFile.write("\"%s\",\"%s\",\"%s\",%d,\"%s\",%s,%d,%s\n" % (category,testname,name,theId,old,pa…
396 # D:[ ] before data dump (output patterns)
400 if not re.match(r'^.*D:[ ].*$',l):
405 # and data file with 'D: '
406 if re.match(r'^%s[gs][ ]+[0-9]+.*$' % prefix,l):
408 theId=re.sub(r'^%s[gs][ ]+([0-9]+).*$' % prefix,r'\1',l)
463 passRe = r'^%s([0-9]+)[ ]+([0-9]+)[ ]+([0-9]+)[ ]+([t0-9]+)[ ]+([YN]).*$' % prefix
482 cycles = getCyclesFromTrace(trace) - calibration
526 if re.match(r'^.*b[ ]+([0-9,]+)$',l):
527 m=re.match(r'^.*b[ ]+([0-9,]+)$',l)
567 parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="Test description fil…
569 parser.add_argument('-r', nargs='?',type = str, default=None, help="Result file path")
570 parser.add_argument('-c', action='store_true', help="CSV output")
571 parser.add_argument('-html', action='store_true', help="HTML output")
572 parser.add_argument('-ahtml', action='store_true', help="Partial HTML output")
574 parser.add_argument('-e', action='store_true', help="Embedded test")
575 # -o needed when -e is true to know where to extract the output files
576 parser.add_argument('-o', nargs='?',type = str, default="Output", help="Output dir path")
578 parser.add_argument('-b', nargs='?',type = str, default="FullBenchmark", help="Full Benchmark dir p…
579 parser.add_argument('-m', action='store_true', help="Mathematica output")
580 parser.add_argument('-t', nargs='?',type = str, default=None, help="External trace file")