From e0b9f7860b0dc7b7c4aa1ea79c341b54b02af792 Mon Sep 17 00:00:00 2001 From: tangxifan Date: Fri, 28 Jun 2024 14:10:14 -0700 Subject: [PATCH] [core] fixed a bug where counter for gnets are not activated --- openfpga/src/annotation/openfpga_annotate_routing.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/openfpga/src/annotation/openfpga_annotate_routing.cpp b/openfpga/src/annotation/openfpga_annotate_routing.cpp index ad84d86e2..cfbb064ef 100644 --- a/openfpga/src/annotation/openfpga_annotate_routing.cpp +++ b/openfpga/src/annotation/openfpga_annotate_routing.cpp @@ -47,6 +47,7 @@ vtr::vector annotate_rr_node_global_net( layer, blk_loc.loc.x, blk_loc.loc.y, IPIN, phy_pin); for (RRNodeId curr_rr_node : curr_rr_nodes) { rr_node_nets[curr_rr_node] = net_id; + counter++; } } }