Skip to content

Commit

Permalink
Filter out failed runs
Browse files Browse the repository at this point in the history
  • Loading branch information
gevtushenko committed May 3, 2023
1 parent 68e4a13 commit f07f9ed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions benchmarks/scripts/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down

0 comments on commit f07f9ed

Please sign in to comment.