diff --git a/openfpga/src/base/openfpga_build_fabric_template.h b/openfpga/src/base/openfpga_build_fabric_template.h index 453c4c3b2..2509b96a7 100644 --- a/openfpga/src/base/openfpga_build_fabric_template.h +++ b/openfpga/src/base/openfpga_build_fabric_template.h @@ -69,9 +69,9 @@ void compress_routing_hierarchy_template(T& openfpga_ctx, "Detected %lu unique switch blocks from a total of %d (compression " "rate=%.2f%)\n", openfpga_ctx.device_rr_gsb().get_num_sb_unique_module(), - find_device_rr_gsb_num_sb_modules(openfpga_ctx.device_rr_gsb()), + find_device_rr_gsb_num_sb_modules(openfpga_ctx.device_rr_gsb(), g_vpr_ctx.device().rr_graph), 100. * - ((float)find_device_rr_gsb_num_sb_modules(openfpga_ctx.device_rr_gsb()) / + ((float)find_device_rr_gsb_num_sb_modules(openfpga_ctx.device_rr_gsb(), g_vpr_ctx.device().rr_graph) / (float)openfpga_ctx.device_rr_gsb().get_num_sb_unique_module() - 1.)); @@ -79,9 +79,9 @@ void compress_routing_hierarchy_template(T& openfpga_ctx, "Detected %lu unique general switch blocks from a total of %d (compression " "rate=%.2f%)\n", openfpga_ctx.device_rr_gsb().get_num_gsb_unique_module(), - find_device_rr_gsb_num_gsb_modules(openfpga_ctx.device_rr_gsb()), + find_device_rr_gsb_num_gsb_modules(openfpga_ctx.device_rr_gsb(), g_vpr_ctx.device().rr_graph), 100. * - ((float)find_device_rr_gsb_num_gsb_modules(openfpga_ctx.device_rr_gsb()) / + ((float)find_device_rr_gsb_num_gsb_modules(openfpga_ctx.device_rr_gsb(), g_vpr_ctx.device().rr_graph) / (float)openfpga_ctx.device_rr_gsb().get_num_gsb_unique_module() - 1.)); }