Skip to content

Commit

Permalink
[Fix](mlu-ops): Fix an error of perf analyses of the whole bench (#999)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhouxiangZhouxiang authored Apr 15, 2024
1 parent 031e6ea commit b60d07f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/perf_analyse/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def is_testsuite_for_mluop_op(self, test_name):

def preprocess(self, df):
# protoName and mlu_platform are used to merge database
df['protoName'] = df['file_path'].apply(lambda x: x.split("/")[-1])
df['protoName'] = df['file_path']
df['mlu_platform'] = [
i.split('[')[0] for i in df['mlu_platform'].to_list()
]
Expand Down

0 comments on commit b60d07f

Please sign in to comment.