Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement recognizing Blackhole p150c board type #565

Merged
merged 1 commit into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion device/api/umd/device/types/cluster_descriptor_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ inline BoardType get_board_type_from_board_id(const uint64_t board_id) {
return BoardType::P100;
} else if (upi == 0x43) {
return BoardType::P100;
} else if (upi == 0x40 || upi == 0x41) {
} else if (upi == 0x40 || upi == 0x41 || upi == 0x42) {
return BoardType::P150;
}

Expand Down
4 changes: 3 additions & 1 deletion device/tt_cluster_descriptor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,9 @@ void tt_ClusterDescriptor::load_chips_from_connectivity_descriptor(YAML::Node &y
board_type = BoardType::N300;
} else if (chip_board_type.second == "p100") {
board_type = BoardType::P100;
} else if (chip_board_type.second == "p150A" || chip_board_type.second == "p150") {
} else if (
chip_board_type.second == "p150" || chip_board_type.second == "p150A" ||
chip_board_type.second == "p150C") {
board_type = BoardType::P150;
} else if (chip_board_type.second == "p300") {
board_type = BoardType::P300;
Expand Down
Loading