We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec85a46 commit 91e62d5Copy full SHA for 91e62d5
vpr/src/power/power.cpp
@@ -924,6 +924,9 @@ static void power_usage_routing(t_power_usage* power_usage,
924
int seg_index = device_ctx.rr_indexed_data[rr_graph.node_cost_index(rr_id)].seg_index;
925
C_wire = wire_length * rr_graph.rr_segments(RRSegmentId(seg_index)).Cmetal;
926
//(double)power_ctx.commonly_used->tile_length);
927
+ if (node_fan_in == 0) {
928
+ continue; // Bypass some nodes with 0 fan-in
929
+ }
930
VTR_ASSERT(node_power->selected_input < node_fan_in);
931
932
/* Multiplexor */
0 commit comments