Skip to content

Commit

Permalink
Fix for #1834
Browse files Browse the repository at this point in the history
  • Loading branch information
ChadliaJerad committed Jun 14, 2023
1 parent 75fbc1c commit 5e3b84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/tracing/visualization/fedsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def load_and_process_csv_file(csv_file) :
x_coor[fed_id] = (padding * 2) + (spacing * (len(actors)-1))
fed_df['x1'] = x_coor[fed_id]
# Append into trace_df
trace_df = trace_df.append(fed_df, sort=False, ignore_index=True)
trace_df = pd.concat([trace_df, fed_df])
fed_df = fed_df[0:0]

# Sort all traces by physical time and then reset the index
Expand Down

0 comments on commit 5e3b84f

Please sign in to comment.