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 92286e1 commit 8731c83Copy full SHA for 8731c83
scripts/nvbench_compare.py
@@ -218,10 +218,13 @@ def extract_value(summary):
218
status = Fore.YELLOW + "????" + Fore.RESET
219
elif abs(frac_diff) <= min_noise:
220
pass_count += 1
221
- status = Fore.GREEN + "PASS" + Fore.RESET
+ status = Fore.BLUE + "SAME" + Fore.RESET
222
+ elif diff < 0:
223
+ failure_count += 1
224
+ status = Fore.GREEN + "FAST" + Fore.RESET
225
else:
226
failure_count += 1
- status = Fore.RED + "FAIL" + Fore.RESET
227
+ status = Fore.RED + "SLOW" + Fore.RESET
228
229
if abs(frac_diff) >= threshold:
230
row.append(format_duration(ref_time))
0 commit comments