Skip to content

Commit 0f9cffb

Browse files
committed
make format
1 parent b254795 commit 0f9cffb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vpr/src/pack/prepack.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@ static std::unordered_set<t_pb_type*> get_pattern_blocks(const t_pack_patterns*
12001200
auto current_connenction = current_pattern_block->connections;
12011201
/** Iterate through all the connections of the current pattern block to
12021202
* add the connected block to the queue
1203-
*/
1203+
*/
12041204
while (current_connenction != nullptr) {
12051205
if (visited_from_pins.count(current_connenction->from_pin)) {
12061206
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*
12111211
}
12121212
/** To avoid visiting the same connection twice, since it is both stored in from_pin and to_pin,
12131213
* add the from_pin and to_pin to the visited sets
1214-
*/
1214+
*/
12151215
visited_from_pins.insert(current_connenction->from_pin);
12161216
visited_to_pins.insert(current_connenction->to_pin);
12171217
/** The from_pin block belongs to the pattern block */
@@ -1642,7 +1642,7 @@ static void update_chain_root_pins(t_pack_patterns* chain_pattern,
16421642
* the Cin pin of all the adder primitives connected to this pin. Which is for typical architectures
16431643
* will be only one pin connected to the very first adder in the cluster.
16441644
*/
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,
16461646
const std::unordered_set<t_pb_type*>& pattern_blocks,
16471647
std::vector<t_pb_graph_pin*>& connected_primitive_pins) {
16481648
/* Skip pins for modes that are disabled for packing*/

0 commit comments

Comments
 (0)