Skip to content

Commit

Permalink
Consistently show L/R for all Wormhole devices
Browse files Browse the repository at this point in the history
tt-smi --list shows "L" for n150s cards, but tt-smi UI does not.

Align the conditions to check for Wormhole devices in both places.
This has the side-effect of removing the only check for value "n300".

Resolves issue tenstorrent#48.

Signed-off-by: Andreas Färber <[email protected]>
  • Loading branch information
afaerber committed Sep 16, 2024
1 parent 812bb0d commit 51b3b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tt_smi/tt_smi.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def format_device_info_rows(self):
for info in constants.DEV_INFO_LIST:
val = self.backend.device_infos[i][info]
if info == "board_type":
if val == "n300":
if device.as_wh():
if device.is_remote():
rows.append(
Text(
Expand Down

0 comments on commit 51b3b0b

Please sign in to comment.