From f07f9edfc3651616c8043ee1f998e77cf8badd24 Mon Sep 17 00:00:00 2001 From: Georgy Evtushenko Date: Wed, 3 May 2023 19:17:44 +0400 Subject: [PATCH] Filter out failed runs --- benchmarks/scripts/analyze.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/benchmarks/scripts/analyze.py b/benchmarks/scripts/analyze.py index 97835e28b..41cd41f90 100755 --- a/benchmarks/scripts/analyze.py +++ b/benchmarks/scripts/analyze.py @@ -173,6 +173,9 @@ def iterate_case_dfs(args, callable): continue df = storage.alg_to_df(algname) + with pd.option_context('mode.use_inf_as_na', True): + df = df.dropna(subset=['center'], how='all') + for _, row in df[['ctk', 'cub']].drop_duplicates().iterrows(): ctk_version = row['ctk'] cub_version = row['cub']