Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
HanTengfei99 authored Mar 26, 2024
1 parent d84e597 commit 0517056
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions byte_micro_perf/backends/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def dump_communication_ops_report(
"Dtype": dtype,
"Memory Size(MB)": round(mb, 2),
"Group": group_size,
"Algo bandwidth(GB/s)": round(algo_bw, 2),
"Kernel bandwidth(GB/s)": round(algo_bw, 2),
"Bus bandwidth(GB/s)": round(bus_bw, 2),
"Bandwidth Utilization(%)": bandwidth_utils,
"Avg latency(us)": round(latency, 2),
Expand Down Expand Up @@ -97,7 +97,7 @@ def dump_computation_ops_report(
report = {
"Dtype": dtype,
"Memory Size(MB)": round(mb, 2),
"Algo bandwidth(GB/s)": round(algo_bw, 2),
"Kernel bandwidth(GB/s)": round(algo_bw, 2),
"Bandwidth Utilization(%)": bandwidth_utils,
"Avg latency(us)": round(latency, 2),
}
Expand Down

0 comments on commit 0517056

Please sign in to comment.