Skip to content

Commit

Permalink
Fix instruction name in table
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegec committed Dec 14, 2023
1 parent 8d5dee6 commit ed07aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1901,7 +1901,7 @@ def latency_throughput_table():

for inst in insts:
result += "<tr>"
result += f"<td>{inst}</td>"
result += f"<td>{inst.replace('_', '.')}</td>"
for cpu in cpus:
result += f"<td>{measure[cpu][inst]['latency']}</td>"
result += f"<td>{measure[cpu][inst]['throughput(cpi)']}</td>"
Expand Down

0 comments on commit ed07aa5

Please sign in to comment.