Skip to content

Commit a55460e

Browse files
committed
skip null values in asv benchmark results
1 parent 07f891e commit a55460e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mx.graalpython/mx_graalpython_python_benchmarks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def parse(self, text: str) -> dict:
206206
param_combinations = itertools.product(*result[param_idx])
207207
for run_idx, params in enumerate(param_combinations):
208208
value = result[peak_idx][run_idx]
209-
if math.isnan(value):
209+
if not value or math.isnan(value):
210210
continue
211211
r.append(
212212
{

0 commit comments

Comments
 (0)