Skip to content

Commit 88dfefe

Browse files
alingTTdpopovTT
authored andcommitted
Fix incorrect cluster name in TTT model config (#36352)
### Ticket NA ### Problem description - APC failing due to: `E AttributeError: P300x2. Did you mean: 'P300_X2'` ? ### What's changed - incorrect names for cluster types ### Checklist - [x] [APC](https://github.com/tenstorrent/tt-metal/actions/runs/21260749135)
1 parent 61d142e commit 88dfefe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

models/tt_transformers/tt/model_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1481,9 +1481,9 @@ def is_distributed_norm(self, mode):
14811481
def ccl_topology(self):
14821482
# Use ring on a T3K or 6U galaxy or P300x2 or P150x4/8 submesh
14831483
if ttnn.cluster.get_cluster_type() in [
1484-
ttnn.cluster.ClusterType.P300x2,
1485-
ttnn.cluster.ClusterType.P150x4,
1486-
ttnn.cluster.ClusterType.P150x8,
1484+
ttnn.cluster.ClusterType.P300_X2,
1485+
ttnn.cluster.ClusterType.P150_X4,
1486+
ttnn.cluster.ClusterType.P150_X8,
14871487
ttnn.cluster.ClusterType.T3K,
14881488
ttnn.cluster.ClusterType.GALAXY,
14891489
]:

0 commit comments

Comments
 (0)