We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ce45af commit f52aa4bCopy full SHA for f52aa4b
scripts/nvbench_compare.py
@@ -247,10 +247,13 @@ def extract_value(summary):
247
status = Fore.YELLOW + "????" + Fore.RESET
248
elif abs(frac_diff) <= min_noise:
249
pass_count += 1
250
- status = Fore.GREEN + "PASS" + Fore.RESET
+ status = Fore.BLUE + "SAME" + Fore.RESET
251
+ elif diff < 0:
252
+ failure_count += 1
253
+ status = Fore.GREEN + "FAST" + Fore.RESET
254
else:
255
failure_count += 1
- status = Fore.RED + "FAIL" + Fore.RESET
256
+ status = Fore.RED + "SLOW" + Fore.RESET
257
258
if abs(frac_diff) >= threshold:
259
row.append(format_duration(ref_time))
0 commit comments