From 1137fc431b2a55980efd4b954c45c010a5ad2f5b Mon Sep 17 00:00:00 2001 From: pjanevski Date: Fri, 8 Nov 2024 16:41:02 +0000 Subject: [PATCH] Nit change for comment --- device/tt_cluster_descriptor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device/tt_cluster_descriptor.cpp b/device/tt_cluster_descriptor.cpp index 920d74ce..06dfaec6 100644 --- a/device/tt_cluster_descriptor.cpp +++ b/device/tt_cluster_descriptor.cpp @@ -528,7 +528,7 @@ void tt_ClusterDescriptor::load_chips_from_connectivity_descriptor(YAML::Node &y for (YAML::const_iterator node = yaml["arch"].begin(); node != yaml["arch"].end(); ++node) { chip_id_t chip_id = node->first.as(); - // Not all archs (e.g. BH) have chip coordinates + // Not all archs (e.g. Blackhole and Grayskull) have chip coordinates if (chip_coordinate_map.find(chip_id) != chip_coordinate_map.end()) { std::vector chip_rack_coords = chip_coordinate_map[chip_id]; log_assert(chip_rack_coords.size() == 4, "Galaxy (x, y, rack, shelf) coords must be size 4");