Skip to content

Commit

Permalink
Fix analysis warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gevtushenko committed Jun 6, 2023
1 parent 1865996 commit 81ad641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/scripts/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def iterate_case_dfs(args, callable):

for gpu in ctk_cub_df['gpu'].unique():
target_df = ctk_cub_df[ctk_cub_df['gpu'] == gpu]
target_df.drop(columns=['ctk', 'cub', 'gpu'], inplace=True)
target_df = target_df.drop(columns=['ctk', 'cub', 'gpu'])
target_df = compute_speedup(target_df)

for ct_point in ct_space(target_df):
Expand Down

0 comments on commit 81ad641

Please sign in to comment.