@@ -1200,7 +1200,7 @@ static std::unordered_set<t_pb_type*> get_pattern_blocks(const t_pack_patterns*
1200
1200
auto current_connenction = current_pattern_block->connections ;
1201
1201
/* * Iterate through all the connections of the current pattern block to
1202
1202
* add the connected block to the queue
1203
- */
1203
+ */
1204
1204
while (current_connenction != nullptr ) {
1205
1205
if (visited_from_pins.count (current_connenction->from_pin )) {
1206
1206
if (visited_to_pins.count (current_connenction->to_pin )) {
@@ -1211,7 +1211,7 @@ static std::unordered_set<t_pb_type*> get_pattern_blocks(const t_pack_patterns*
1211
1211
}
1212
1212
/* * To avoid visiting the same connection twice, since it is both stored in from_pin and to_pin,
1213
1213
* add the from_pin and to_pin to the visited sets
1214
- */
1214
+ */
1215
1215
visited_from_pins.insert (current_connenction->from_pin );
1216
1216
visited_to_pins.insert (current_connenction->to_pin );
1217
1217
/* * The from_pin block belongs to the pattern block */
@@ -1642,7 +1642,7 @@ static void update_chain_root_pins(t_pack_patterns* chain_pattern,
1642
1642
* the Cin pin of all the adder primitives connected to this pin. Which is for typical architectures
1643
1643
* will be only one pin connected to the very first adder in the cluster.
1644
1644
*/
1645
- static void get_all_connected_primitive_pins (const t_pb_graph_pin* cluster_input_pin,
1645
+ static void get_all_connected_primitive_pins (const t_pb_graph_pin* cluster_input_pin,
1646
1646
const std::unordered_set<t_pb_type*>& pattern_blocks,
1647
1647
std::vector<t_pb_graph_pin*>& connected_primitive_pins) {
1648
1648
/* Skip pins for modes that are disabled for packing*/
0 commit comments