Skip to content

Commit bc515a9

Browse files
committed
[vpr][pack] apply formatting comments
1 parent e026015 commit bc515a9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

vpr/src/pack/prepack.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -1201,12 +1201,14 @@ static std::unordered_set<t_pb_type*> get_pattern_blocks(const t_pack_patterns&
12011201
std::unordered_set<t_pb_graph_pin*> visited_to_pins;
12021202
std::queue<t_pack_pattern_block*> pack_pattern_blocks;
12031203
pack_pattern_blocks.push(connections->from_block);
1204+
12041205
/** Start from the root block of the pack pattern and add the connected block to the queue */
12051206
while (!pack_pattern_blocks.empty()) {
12061207
t_pack_pattern_block* current_pattern_block = pack_pattern_blocks.front();
12071208
pack_pattern_blocks.pop();
12081209
t_pack_pattern_connections* current_connenction = current_pattern_block->connections;
1209-
/** Iterate through all the connections of the current pattern block to
1210+
/*
1211+
* Iterate through all the connections of the current pattern block to
12101212
* add the connected block to the queue
12111213
*/
12121214
while (current_connenction != nullptr) {
@@ -1222,6 +1224,7 @@ static std::unordered_set<t_pb_type*> get_pattern_blocks(const t_pack_patterns&
12221224
*/
12231225
visited_from_pins.insert(current_connenction->from_pin);
12241226
visited_to_pins.insert(current_connenction->to_pin);
1227+
12251228
/** The from_pin block belongs to the pattern block */
12261229
pattern_blocks.insert(current_connenction->from_pin->port->parent_pb_type);
12271230
pack_pattern_blocks.push(current_connenction->to_block);

0 commit comments

Comments
 (0)