tt-perf-report 1.1.7__tar.gz → 1.1.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of tt-perf-report might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tt-perf-report
3
- Version: 1.1.7
3
+ Version: 1.1.8
4
4
  Summary: This tool analyzes performance traces from TT-Metal operations, providing insights into throughput, bottlenecks, and optimization opportunities.
5
5
  License: Apache License
6
6
  Version 2.0, January 2004
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "tt-perf-report"
7
- version = "1.1.7"
7
+ version = "1.1.8"
8
8
  description = "This tool analyzes performance traces from TT-Metal operations, providing insights into throughput, bottlenecks, and optimization opportunities."
9
9
  license = {file = "LICENSE"}
10
10
  readme = "README.md"
@@ -500,7 +500,7 @@ def analyze_op(row, prev_row, csv_format="v2"):
500
500
  if math_fidelity
501
501
  else None
502
502
  )
503
- elif "OptimizedConvNew" in op_code.raw_value:
503
+ elif any(x in op_code.raw_value for x in ["OptimizedConvNew", "Conv2d"]):
504
504
  (
505
505
  flops,
506
506
  flops_percentage,
@@ -622,6 +622,7 @@ def color_row(op_data, percentage, min_percentage):
622
622
  "(torch)": "red",
623
623
  "Matmul": "magenta",
624
624
  "OptimizedConvNew" : "orange",
625
+ "Conv2d" : "orange",
625
626
  "LayerNorm": "cyan",
626
627
  "AllGather": "cyan",
627
628
  "AllReduce": "cyan",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tt-perf-report
3
- Version: 1.1.7
3
+ Version: 1.1.8
4
4
  Summary: This tool analyzes performance traces from TT-Metal operations, providing insights into throughput, bottlenecks, and optimization opportunities.
5
5
  License: Apache License
6
6
  Version 2.0, January 2004
File without changes
File without changes
File without changes