Skip to content

Commit 634d852

Browse files
Temporarily consider constant nets for clustering.
1 parent c9cc32d commit 634d852

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/pack/cluster_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1783,7 +1783,7 @@ void mark_and_update_partial_gain(const AtomNetId net_id,
17831783
/* There are VCC and GND nets in the netlist. These nets have a high fanout,
17841784
* but their sinks do not necessarily have a logical relation with each other.
17851785
* Therefore, we exclude constant nets when evaluating high fanout connectivity. */
1786-
if (!is_global.count(net_id) && !atom_ctx.nlist.net_is_constant(net_id)) {
1786+
if (!is_global.count(net_id)) {
17871787
/* If no low/medium fanout nets, we may need to consider
17881788
* high fan-out nets for packing, so select one and store it */
17891789
AtomNetId stored_net = cur_pb->pb_stats->tie_break_high_fanout_net;

0 commit comments

Comments
 (0)