Skip to content

Commit

Permalink
#0: Fix process op logs (compute and ideal were inverted) (#18544)
Browse files Browse the repository at this point in the history
Co-authored-by: ppopovic <ppopovic@tenstorrent.com>
  • Loading branch information
pavlepopovic and ppopovic authored Mar 6, 2025
1 parent 87ab998 commit fbaa49a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tt_metal/tools/profiler/process_ops_logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,8 +706,8 @@ def row_compare(row):
add_io_data(opData["output_tensors"], "OUTPUT")

if "performance_model" in opData.keys():
rowDict["PM IDEAL [ns]"] = opData["performance_model"]["compute_ns"]
rowDict["PM COMPUTE [ns]"] = opData["performance_model"]["ideal_ns"]
rowDict["PM IDEAL [ns]"] = opData["performance_model"]["ideal_ns"]
rowDict["PM COMPUTE [ns]"] = opData["performance_model"]["compute_ns"]
rowDict["PM BANDWIDTH [ns]"] = opData["performance_model"]["bandwidth_ns"]
rowDict["PM REQ I BW"] = opData["performance_model"]["input_bws"]
rowDict["PM REQ O BW"] = opData["performance_model"]["output_bws"]
Expand Down

0 comments on commit fbaa49a

Please sign in to comment.