Skip to content

Commit 17afb8c

Browse files
committed
make format
1 parent 7a4ff26 commit 17afb8c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vpr/src/pack/prepack.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1092,7 +1092,7 @@ static AtomBlockId get_sink_block(const AtomBlockId block_id,
10921092
const auto& net_sinks = atom_nlist.net_sinks(net_id);
10931093
if (is_chain_pattern) {
10941094
// If the pattern is a chain, allow nets with multiple sinks.
1095-
// This enables forming chains where the COUT is connected both to
1095+
// This enables forming chains where the COUT is connected both to
10961096
// the next element in the chain and to the block's output pin.
10971097
for (const auto& sink_pin_id : net_sinks) {
10981098
auto sink_block_id = atom_nlist.pin_block(sink_pin_id);
@@ -1105,10 +1105,10 @@ static AtomBlockId get_sink_block(const AtomBlockId block_id,
11051105
}
11061106
}
11071107
} else {
1108-
// For non-chain patterns, we conservatively only consider the sink block
1109-
// if the net fanout is 1. To clarify, consider a case where the output of a LUT
1108+
// For non-chain patterns, we conservatively only consider the sink block
1109+
// if the net fanout is 1. To clarify, consider a case where the output of a LUT
11101110
// is connected to both a register and an unregistered output that feeds another block.
1111-
// If the intra-cluster architecture doesn't support having both registered and
1111+
// If the intra-cluster architecture doesn't support having both registered and
11121112
// unregistered outputs simultaneously, this could lead to a packing failure.
11131113
if (net_sinks.size() == 1) {
11141114
auto sink_pin_id = *(net_sinks.begin());

0 commit comments

Comments
 (0)