diff --git a/doc/src/vpr/command_line_usage.rst b/doc/src/vpr/command_line_usage.rst index 6c5e8932d1b..9647dcfe496 100644 --- a/doc/src/vpr/command_line_usage.rst +++ b/doc/src/vpr/command_line_usage.rst @@ -1163,6 +1163,14 @@ VPR uses a negotiated congestion algorithm (based on Pathfinder) to perform rout **Default:** ``1.3`` +.. option:: --max_pres_fac + + Sets the maximum present overuse penalty factor that can ever result during routing. Should always be less than 1e25 or so to prevent overflow. + Smaller values may help prevent circuitous routing in difficult routing problems, but may increase + the number of routing iterations needed and hence runtime. + + **Default:** ``1000.0`` + .. option:: --acc_fac Specifies the accumulated overuse factor (historical congestion cost factor). diff --git a/vpr/src/base/SetupVPR.cpp b/vpr/src/base/SetupVPR.cpp index a128c1946c1..af960b93806 100644 --- a/vpr/src/base/SetupVPR.cpp +++ b/vpr/src/base/SetupVPR.cpp @@ -423,6 +423,7 @@ static void SetupRouterOpts(const t_options& Options, t_router_opts* RouterOpts) RouterOpts->min_incremental_reroute_fanout = Options.min_incremental_reroute_fanout; RouterOpts->incr_reroute_delay_ripup = Options.incr_reroute_delay_ripup; RouterOpts->pres_fac_mult = Options.pres_fac_mult; + RouterOpts->max_pres_fac = Options.max_pres_fac; RouterOpts->route_type = Options.RouteType; RouterOpts->full_stats = Options.full_stats; diff --git a/vpr/src/base/ShowSetup.cpp b/vpr/src/base/ShowSetup.cpp index 9a35246287a..231c4a4547f 100644 --- a/vpr/src/base/ShowSetup.cpp +++ b/vpr/src/base/ShowSetup.cpp @@ -328,6 +328,7 @@ static void ShowRouterOpts(const t_router_opts& RouterOpts) { VTR_LOG("RouterOpts.first_iter_pres_fac: %f\n", RouterOpts.first_iter_pres_fac); VTR_LOG("RouterOpts.initial_pres_fac: %f\n", RouterOpts.initial_pres_fac); VTR_LOG("RouterOpts.pres_fac_mult: %f\n", RouterOpts.pres_fac_mult); + VTR_LOG("RouterOpts.max_pres_fac: %f\n", RouterOpts.max_pres_fac); VTR_LOG("RouterOpts.max_router_iterations: %d\n", RouterOpts.max_router_iterations); VTR_LOG("RouterOpts.min_incremental_reroute_fanout: %d\n", RouterOpts.min_incremental_reroute_fanout); VTR_LOG("RouterOpts.do_check_rr_graph: %s\n", RouterOpts.do_check_rr_graph ? "true" : "false"); @@ -473,6 +474,7 @@ static void ShowRouterOpts(const t_router_opts& RouterOpts) { VTR_LOG("RouterOpts.first_iter_pres_fac: %f\n", RouterOpts.first_iter_pres_fac); VTR_LOG("RouterOpts.initial_pres_fac: %f\n", RouterOpts.initial_pres_fac); VTR_LOG("RouterOpts.pres_fac_mult: %f\n", RouterOpts.pres_fac_mult); + VTR_LOG("RouterOpts.max_pres_fac: %f\n", RouterOpts.max_pres_fac); VTR_LOG("RouterOpts.max_router_iterations: %d\n", RouterOpts.max_router_iterations); VTR_LOG("RouterOpts.min_incremental_reroute_fanout: %d\n", RouterOpts.min_incremental_reroute_fanout); VTR_LOG("RouterOpts.do_check_rr_graph: %s\n", RouterOpts.do_check_rr_graph ? "true" : "false"); diff --git a/vpr/src/base/read_options.cpp b/vpr/src/base/read_options.cpp index 773773beea1..e729666db5e 100644 --- a/vpr/src/base/read_options.cpp +++ b/vpr/src/base/read_options.cpp @@ -2333,6 +2333,11 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio .default_value("1.3") .show_in(argparse::ShowIn::HELP_ONLY); + route_grp.add_argument(args.max_pres_fac, "-max_pres_fac") + .help("Sets the maximum present overuse penalty factor") + .default_value("1000.0") + .show_in(argparse::ShowIn::HELP_ONLY); + route_grp.add_argument(args.acc_fac, "--acc_fac") .help("Specifies the accumulated overuse factor (historical congestion cost factor)") .default_value("1.0") diff --git a/vpr/src/base/read_options.h b/vpr/src/base/read_options.h index 68b43678a29..30211a904bb 100644 --- a/vpr/src/base/read_options.h +++ b/vpr/src/base/read_options.h @@ -187,6 +187,7 @@ struct t_options { argparse::ArgValue first_iter_pres_fac; argparse::ArgValue initial_pres_fac; argparse::ArgValue pres_fac_mult; + argparse::ArgValue max_pres_fac; argparse::ArgValue acc_fac; argparse::ArgValue bb_factor; argparse::ArgValue base_cost_type; diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index a750e3c4181..2369baae5ee 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -1405,6 +1405,7 @@ struct t_router_opts { float first_iter_pres_fac; float initial_pres_fac; float pres_fac_mult; + float max_pres_fac; float acc_fac; float bend_cost; int max_router_iterations; diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 9fc11b22ee5..f786bb6d25f 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -1708,8 +1708,8 @@ static e_move_result try_swap(const t_annealing_state* state, if (manual_move_enabled) { #ifndef NO_GRAPHICS create_move_outcome = manual_move_display_and_propose(manual_move_generator, blocks_affected, proposed_action.move_type, rlim, placer_opts, criticalities); -#else //NO_GRAPHICS - // Cast to void to explicitly avoid warning. +#else //NO_GRAPHICS + //Cast to void to explicitly avoid warning. (void)manual_move_generator; #endif //NO_GRAPHICS } else if (router_block_move) { diff --git a/vpr/src/route/route.cpp b/vpr/src/route/route.cpp index dbf07569250..2d8db77c13d 100644 --- a/vpr/src/route/route.cpp +++ b/vpr/src/route/route.cpp @@ -155,7 +155,8 @@ bool route(const Netlist<>& net_list, VTR_ASSERT(router_lookahead != nullptr); /* Routing parameters */ - float pres_fac = update_draw_pres_fac(router_opts.first_iter_pres_fac); /* Typically 0 -> ignore cong. */ + float pres_fac = router_opts.first_iter_pres_fac; + update_draw_pres_fac(pres_fac); /* Typically 0 -> ignore cong. */ int bb_fac = router_opts.bb_factor; /* When routing conflicts are detected the bounding boxes are scaled @@ -357,7 +358,8 @@ bool route(const Netlist<>& net_list, //Decrease pres_fac so that critical connections will take more direct routes //Note that we use first_iter_pres_fac here (typically zero), and switch to //use initial_pres_fac on the next iteration. - pres_fac = update_draw_pres_fac(router_opts.first_iter_pres_fac); + pres_fac = router_opts.first_iter_pres_fac; + update_draw_pres_fac(pres_fac); //Reduce timing tolerances to re-route more delay-suboptimal signals connections_inf.set_connection_criticality_tolerance(0.7); @@ -374,7 +376,8 @@ bool route(const Netlist<>& net_list, //after the first routing convergence. Since that is often zero, //we want to set pres_fac to a reasonable (i.e. typically non-zero) //value afterwards -- so it grows when multiplied by pres_fac_mult - pres_fac = update_draw_pres_fac(router_opts.initial_pres_fac); + pres_fac = router_opts.initial_pres_fac; + update_draw_pres_fac(pres_fac); } //Have we converged the maximum number of times, did not make any changes, or does it seem @@ -437,12 +440,13 @@ bool route(const Netlist<>& net_list, //Update pres_fac if (itry == 1) { - pres_fac = update_draw_pres_fac(router_opts.initial_pres_fac); + pres_fac = router_opts.initial_pres_fac; + update_draw_pres_fac(pres_fac); } else { pres_fac *= router_opts.pres_fac_mult; - - /* Avoid overflow for high iteration counts, even if acc_cost is big */ - pres_fac = update_draw_pres_fac(std::min(pres_fac, static_cast(HUGE_POSITIVE_FLOAT / 1e5))); + pres_fac = std::min(pres_fac, router_opts.max_pres_fac); + /* Set the maximum pres_fac to the value passed by the command line argument */ + update_draw_pres_fac(pres_fac); // Increase short path criticality if it's having a hard time resolving hold violations due to congestion if (budgeting_inf.if_set()) { diff --git a/vpr/src/route/route_utils.cpp b/vpr/src/route/route_utils.cpp index f90789e5250..21e0b52bbef 100644 --- a/vpr/src/route/route_utils.cpp +++ b/vpr/src/route/route_utils.cpp @@ -507,15 +507,16 @@ void try_graph(int width_fac, is_flat); } -float update_draw_pres_fac(float new_pres_fac) { #ifndef NO_GRAPHICS - +void update_draw_pres_fac(const float new_pres_fac) { +#else +void update_draw_pres_fac(const float /*new_pres_fac*/) { +#endif +#ifndef NO_GRAPHICS // Only updates the drawing pres_fac if graphics is enabled get_draw_state_vars()->pres_fac = new_pres_fac; #endif // NO_GRAPHICS - - return new_pres_fac; } #ifndef NO_GRAPHICS diff --git a/vpr/src/route/route_utils.h b/vpr/src/route/route_utils.h index 8b86f230290..fddad8247dd 100644 --- a/vpr/src/route/route_utils.h +++ b/vpr/src/route/route_utils.h @@ -136,10 +136,8 @@ void try_graph(int width_fac, int num_directs, bool is_flat); -/* This routine should take the new value of the present congestion factor - * and propagate it to all the relevant data fields in the vpr flow. - * Currently, it only updates the pres_fac used by the drawing functions */ -float update_draw_pres_fac(float new_pres_fac); +/* This routine updates the pres_fac used by the drawing functions */ +void update_draw_pres_fac(const float new_pres_fac); #ifndef NO_GRAPHICS /** Updates router iteration information and checks for router iteration and net id breakpoints diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt index 86e5238f5f4..0606a6ee1c9 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt @@ -133,7 +133,7 @@ k6_frac_2uripple_N8_22nm.xml fir_nopipe_27.v common 21.80 vpr 75.34 MiB 0.13 12 k6_frac_2uripple_N8_22nm.xml fir_nopipe_28.v common 27.61 vpr 75.93 MiB 0.13 12672 -1 -1 1 0.42 -1 -1 39444 -1 -1 83 22 0 8 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T22:36:55 gh-actions-runner-vtr-auto-spawned38 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77752 22 19 2459 1781 1 1417 132 18 18 324 mult_36 auto 38.4 MiB 0.91 8901 22577 4985 14993 2599 75.9 MiB 0.76 0.01 7.8713 -549.689 -7.8713 7.8713 1.41 0.0044721 0.00400453 0.37567 0.335486 70 15022 26 8.18539e+06 4.3894e+06 1.34436e+06 4149.26 18.64 2.63309 2.3407 37264 347768 -1 13242 23 9518 11089 1869023 398865 0 0 1869023 398865 10194 9636 0 0 76816 71405 0 0 102665 82788 0 0 10196 9695 0 0 837549 113400 0 0 831603 111941 0 0 10194 0 0 701 5045 4474 13769 940 130 8.87728 8.87728 -957.043 -8.87728 0 0 1.69344e+06 5226.66 0.81 0.83 0.44 -1 -1 0.81 0.299514 0.271162 594 551 513 19 0 0 k6_frac_2uripple_N8_22nm.xml fir_nopipe_29.v common 27.15 vpr 76.10 MiB 0.14 12824 -1 -1 1 0.46 -1 -1 40700 -1 -1 85 22 0 9 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T22:36:55 gh-actions-runner-vtr-auto-spawned38 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77928 22 19 2565 1853 1 1485 135 22 22 484 mult_36 auto 38.7 MiB 0.98 9689 25047 6275 16269 2503 76.1 MiB 0.94 0.01 7.43624 -544.661 -7.43624 7.43624 2.37 0.00627739 0.005399 0.475538 0.415759 70 16428 27 1.33067e+07 4.81483e+06 2.06816e+06 4273.05 14.91 2.30064 2.03522 56434 539830 -1 14001 25 11439 13263 2233851 474457 0 0 2233851 474457 12595 11730 0 0 97078 90555 0 0 128940 103685 0 0 12598 11816 0 0 988671 129989 0 0 993969 126682 0 0 12595 0 0 1181 5046 6091 28215 698 2 8.73683 8.73683 -847.048 -8.73683 0 0 2.60483e+06 5381.88 1.40 1.01 0.68 -1 -1 1.40 0.349618 0.316208 619 570 532 19 0 0 k6_frac_2uripple_N8_22nm.xml fir_nopipe_30.v common 25.19 vpr 76.62 MiB 0.14 12956 -1 -1 1 0.47 -1 -1 39948 -1 -1 89 22 0 9 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T22:36:55 gh-actions-runner-vtr-auto-spawned38 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78460 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 39.2 MiB 1.02 9640 28859 6707 18502 3650 76.6 MiB 1.13 0.01 7.43624 -520.251 -7.43624 7.43624 2.32 0.00629213 0.00540153 0.557969 0.48787 70 16649 34 1.33067e+07 4.87369e+06 2.06816e+06 4273.05 12.67 2.06295 1.82406 56434 539830 -1 14184 24 12418 14250 2862133 602975 0 0 2862133 602975 13565 12580 0 0 104860 98182 0 0 141217 112467 0 0 13569 12703 0 0 1300740 182621 0 0 1288182 184422 0 0 13565 0 0 1174 4689 4837 20323 761 3 8.95347 8.95347 -846.506 -8.95347 0 0 2.60483e+06 5381.88 1.35 1.16 0.68 -1 -1 1.35 0.337838 0.304321 639 589 551 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_31.v common 29.27 vpr 77.28 MiB 0.15 13268 -1 -1 1 0.50 -1 -1 40004 -1 -1 93 22 0 9 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T22:36:55 gh-actions-runner-vtr-auto-spawned38 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79136 22 19 2744 1981 1 1590 143 22 22 484 mult_36 auto 39.9 MiB 1.02 10213 28491 6600 18816 3075 77.3 MiB 1.04 0.01 7.49539 -582.535 -7.49539 7.49539 2.26 0.00571464 0.00518578 0.46636 0.42051 66 19056 43 1.33067e+07 4.93255e+06 1.96511e+06 4060.15 17.03 2.09287 1.85069 54986 507526 -1 15439 26 13348 15703 3065311 631596 0 0 3065311 631596 14541 13592 0 0 110840 103858 0 0 151041 119264 0 0 14544 13652 0 0 1379224 189774 0 0 1395121 191456 0 0 14541 0 0 1223 6898 7095 21649 1209 28 9.15632 9.15632 -1101.43 -9.15632 0 0 2.45963e+06 5081.88 1.27 1.24 0.60 -1 -1 1.27 0.360304 0.325056 665 608 570 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_31.v common 29.27 vpr 77.28 MiB 0.15 13268 -1 -1 1 0.50 -1 -1 40004 -1 -1 93 22 0 9 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T22:36:55 gh-actions-runner-vtr-auto-spawned38 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79136 22 19 2744 1981 1 1590 143 22 22 484 mult_36 auto 39.9 MiB 1.02 10213 28491 6600 18816 3075 77.3 MiB 1.04 0.01 7.49539 -582.535 -7.49539 7.49539 2.26 0.00571464 0.00518578 0.46636 0.42051 70 19056 43 1.33067e+07 4.93255e+06 1.96511e+06 4060.15 17.03 2.09287 1.85069 54986 507526 -1 15439 26 13348 15703 3065311 631596 0 0 3065311 631596 14541 13592 0 0 110840 103858 0 0 151041 119264 0 0 14544 13652 0 0 1379224 189774 0 0 1395121 191456 0 0 14541 0 0 1223 6898 7095 21649 1209 28 9.15632 9.15632 -1101.43 -9.15632 0 0 2.45963e+06 5081.88 1.27 1.24 0.60 -1 -1 1.27 0.360304 0.325056 665 608 570 19 0 0 k6_frac_2uripple_N8_22nm.xml fir_nopipe_32.v common 91.23 vpr 77.48 MiB 0.15 13384 -1 -1 1 0.55 -1 -1 40200 -1 -1 96 22 0 9 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T22:36:55 gh-actions-runner-vtr-auto-spawned38 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79340 22 19 2818 2038 1 1627 146 22 22 484 mult_36 auto 40.3 MiB 1.09 10325 30482 7786 19419 3277 77.5 MiB 1.10 0.01 7.52039 -582.013 -7.52039 7.52039 2.22 0.00673795 0.00600573 0.559271 0.496011 66 18458 33 1.33067e+07 4.9767e+06 1.96511e+06 4060.15 78.92 4.50174 3.97192 54986 507526 -1 15293 24 12697 14781 2882895 607845 0 0 2882895 607845 13913 12967 0 0 106785 100349 0 0 141821 114087 0 0 13919 13073 0 0 1294441 181143 0 0 1312016 186226 0 0 13913 0 0 1241 5665 5902 20707 932 59 9.34202 9.34202 -1030.73 -9.34202 0 0 2.45963e+06 5081.88 1.31 1.11 0.62 -1 -1 1.31 0.310599 0.281128 684 627 589 19 0 0 k6_frac_2uripple_N8_22nm.xml fir_nopipe_33.v common 26.53 vpr 78.12 MiB 0.16 13808 -1 -1 1 0.56 -1 -1 40348 -1 -1 100 22 0 10 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T22:36:55 gh-actions-runner-vtr-auto-spawned38 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79992 22 19 2923 2109 1 1695 151 22 22 484 mult_36 auto 40.9 MiB 0.97 10491 33835 8574 21105 4156 78.1 MiB 1.20 0.01 7.94064 -597.141 -7.94064 7.94064 2.29 0.00674974 0.00577428 0.614694 0.531941 64 19070 50 1.33067e+07 5.43155e+06 1.90554e+06 3937.06 14.02 2.63693 2.32895 54502 494576 -1 15787 25 13858 15489 2824485 600452 0 0 2824485 600452 14633 14088 0 0 112285 105253 0 0 152161 121338 0 0 14640 14194 0 0 1278006 170780 0 0 1252760 174799 0 0 14633 0 0 801 4949 5286 21186 894 34 9.95291 9.95291 -1096.7 -9.95291 0 0 2.40101e+06 4960.76 1.27 1.19 0.59 -1 -1 1.27 0.380018 0.342807 710 646 608 19 0 0 k6_frac_2uripple_N8_22nm.xml fir_nopipe_34.v common 38.28 vpr 78.56 MiB 0.16 14048 -1 -1 1 0.58 -1 -1 40192 -1 -1 101 22 0 10 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T22:36:55 gh-actions-runner-vtr-auto-spawned38 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80444 22 19 2997 2166 1 1734 152 22 22 484 mult_36 auto 41.4 MiB 1.33 10939 30122 6941 19995 3186 78.6 MiB 1.07 0.01 7.88963 -601.708 -7.88963 7.88963 2.34 0.00551573 0.0049006 0.494171 0.437728 66 19440 28 1.33067e+07 5.44627e+06 1.96511e+06 4060.15 25.16 3.23147 2.86271 54986 507526 -1 16262 25 13499 15395 2906042 608239 0 0 2906042 608239 14574 13765 0 0 115250 108127 0 0 152837 123878 0 0 14585 13883 0 0 1312936 172636 0 0 1295860 175950 0 0 14574 0 0 1098 5319 5331 20493 889 64 9.72351 9.72351 -1073.66 -9.72351 0 0 2.45963e+06 5081.88 1.32 1.22 0.63 -1 -1 1.32 0.385734 0.348973 729 665 627 19 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt index 55a38dba070..cbf603eb7e4 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt @@ -1,41 +1,41 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k4_n4_v7_bidir.xml alu4.blif common 24.35 vpr 69.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70888 14 8 1536 1544 0 1091 497 24 24 576 clb auto 31.7 MiB 0.31 14174 132286 40868 89655 1763 69.2 MiB 1.00 0.01 13.4464 -91.906 -13.4464 nan 1.46 0.00330105 0.00278724 0.236292 0.203157 25 21622 49 1.452e+07 1.425e+07 -1 -1 16.88 1.3231 1.11834 20024 249020 -1 19931 28 7417 30112 2389745 225324 16.2805 nan -112.317 -16.2805 0 0 -1 -1 0.53 0.81 0.18 -1 -1 0.53 0.219021 0.188899 -k4_n4_v7_bidir.xml apex2.blif common 26.24 vpr 72.65 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74392 38 3 1916 1919 0 1509 641 27 27 729 clb auto 34.8 MiB 0.40 20043 185695 57099 124547 4049 72.6 MiB 1.44 0.02 17.2847 -48.9949 -17.2847 nan 1.91 0.00438794 0.00369514 0.323503 0.275977 31 29759 31 1.875e+07 1.8e+07 -1 -1 16.43 1.81719 1.5431 28210 394495 -1 28402 19 10536 37900 3455408 293736 20.0938 nan -57.5105 -20.0938 0 0 -1 -1 0.84 0.94 0.27 -1 -1 0.84 0.217542 0.191939 -k4_n4_v7_bidir.xml apex4.blif common 21.42 vpr 67.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68984 9 19 1271 1290 0 990 436 23 23 529 clb auto 29.7 MiB 0.24 13678 104512 30234 72991 1287 67.4 MiB 0.83 0.01 13.0701 -215.669 -13.0701 nan 1.27 0.00315972 0.00277184 0.203669 0.177975 33 24041 37 1.323e+07 1.224e+07 -1 -1 14.21 1.4937 1.28436 21042 297717 -1 22347 31 9905 34281 6406959 618900 23.6672 nan -371.571 -23.6672 0 0 -1 -1 0.59 1.37 0.19 -1 -1 0.59 0.20727 0.180475 -k4_n4_v7_bidir.xml bigkey.blif common 22.09 vpr 73.13 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74884 229 197 2152 2349 1 1587 882 29 29 841 io auto 35.3 MiB 0.30 12681 423682 131937 280629 11116 73.1 MiB 2.25 0.03 7.52913 -1787.21 -7.52913 7.52913 2.26 0.00441318 0.00385853 0.484983 0.422295 20 18798 27 2.187e+07 1.368e+07 -1 -1 11.28 2.14539 1.87116 26634 302857 -1 17908 21 8060 23618 1637157 169788 8.927 8.927 -2363.9 -8.927 0 0 -1 -1 0.66 0.62 0.22 -1 -1 0.66 0.221657 0.196825 -k4_n4_v7_bidir.xml clma.blif common 182.52 vpr 208.65 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 213656 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 92.0 MiB 1.67 105809 1777419 713008 1051759 12652 200.9 MiB 16.27 0.16 26.856 -1426.32 -26.856 26.856 8.92 0.023738 0.0192431 2.35018 1.91607 39 144360 45 7.803e+07 7.569e+07 -1 -1 122.40 10.3858 8.55774 121914 1953961 -1 146507 33 50487 175674 40498171 3526994 39.7322 39.7322 -1923.91 -39.7322 0 0 -1 -1 4.89 9.42 1.30 -1 -1 4.89 1.67161 1.38822 -k4_n4_v7_bidir.xml des.blif common 21.76 vpr 76.35 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78184 256 245 1847 2092 0 1443 950 34 34 1156 io auto 34.0 MiB 0.35 15843 374390 116979 243880 13531 76.4 MiB 1.86 0.02 12.214 -2211.05 -12.214 nan 3.23 0.00525699 0.00459677 0.396395 0.351797 20 22948 41 3.072e+07 1.347e+07 -1 -1 8.33 1.7429 1.54937 36518 419916 -1 21872 18 8734 29213 2411537 237989 15.5292 nan -2768.26 -15.5292 0 0 -1 -1 1.00 0.68 0.30 -1 -1 1.00 0.21127 0.192729 -k4_n4_v7_bidir.xml diffeq.blif common 19.58 vpr 70.13 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71812 64 39 1935 1974 1 1104 519 23 23 529 clb auto 32.6 MiB 0.29 10636 127643 33462 91017 3164 70.1 MiB 0.95 0.01 11.0319 -2451.49 -11.0319 11.0319 1.29 0.003939 0.00350059 0.277924 0.241008 24 15735 25 1.323e+07 1.248e+07 -1 -1 13.01 1.60302 1.37839 18402 227975 -1 14577 20 6648 22691 1514943 149126 13.9615 13.9615 -3254.15 -13.9615 0 0 -1 -1 0.45 0.55 0.15 -1 -1 0.45 0.205451 0.180497 -k4_n4_v7_bidir.xml dsip.blif common 21.97 vpr 70.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71860 229 197 1815 2012 1 1190 816 29 29 841 io auto 32.6 MiB 0.31 11596 366672 114248 242106 10318 70.2 MiB 1.94 0.02 6.92377 -1731.8 -6.92377 6.92377 2.30 0.0040957 0.00359702 0.443669 0.38502 20 17027 36 2.187e+07 1.17e+07 -1 -1 11.62 2.11664 1.85347 26634 302857 -1 16519 19 6815 23133 1723667 173146 8.40294 8.40294 -2287.35 -8.40294 0 0 -1 -1 0.62 0.53 0.22 -1 -1 0.62 0.170641 0.15289 -k4_n4_v7_bidir.xml elliptic.blif common 83.09 vpr 93.24 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95480 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 53.2 MiB 0.73 31785 534521 184504 344581 5436 93.2 MiB 3.96 0.05 18.5215 -11025.6 -18.5215 18.5215 3.32 0.0109731 0.00909002 0.9474 0.799756 30 52857 49 3.072e+07 2.988e+07 -1 -1 64.60 4.93605 4.18129 44604 633776 -1 42614 21 11276 53032 4812250 403504 22.2182 22.2182 -14178.5 -22.2182 0 0 -1 -1 1.44 1.65 0.44 -1 -1 1.44 0.567508 0.494064 -k4_n4_v7_bidir.xml ex1010.blif common 95.93 vpr 120.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 123856 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 59.4 MiB 0.93 45315 752816 281185 469923 1708 121.0 MiB 6.84 0.08 24.3506 -238.09 -24.3506 nan 5.18 0.0110604 0.00894356 1.02869 0.844104 29 70618 47 4.563e+07 4.5e+07 -1 -1 64.64 5.63128 4.63748 63042 887209 -1 69761 45 34214 135061 18052918 1589392 31.8431 nan -308.251 -31.8431 0 0 -1 -1 2.17 5.18 0.63 -1 -1 2.17 1.06263 0.885476 -k4_n4_v7_bidir.xml ex5p.blif common 14.28 vpr 65.96 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67540 8 63 1072 1135 0 907 417 21 21 441 clb auto 28.1 MiB 0.20 11649 95394 26684 66851 1859 66.0 MiB 0.69 0.01 12.2107 -549.822 -12.2107 nan 1.02 0.00251595 0.00225692 0.167129 0.147552 31 17848 38 1.083e+07 1.038e+07 -1 -1 8.77 0.966218 0.835477 17122 234247 -1 16588 20 8071 28869 2693938 237988 14.9605 nan -706.694 -14.9605 0 0 -1 -1 0.45 0.68 0.16 -1 -1 0.45 0.136048 0.120932 -k4_n4_v7_bidir.xml frisc.blif common 47.25 vpr 95.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 98056 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 52.4 MiB 0.83 38027 513436 174788 329424 9224 94.5 MiB 4.04 0.05 22.8124 -12212.1 -22.8124 22.8124 3.52 0.00933461 0.00829912 0.863833 0.731696 35 53209 28 3.267e+07 3.138e+07 -1 -1 26.10 3.97482 3.38756 50922 772933 -1 54612 25 16531 72684 13148497 1182353 31.4932 31.4932 -17458.2 -31.4932 0 0 -1 -1 1.82 3.03 0.55 -1 -1 1.82 0.584548 0.507264 -k4_n4_v7_bidir.xml misex3.blif common 18.71 vpr 68.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70108 14 14 1411 1425 0 1075 460 23 23 529 clb auto 30.8 MiB 0.31 14069 110510 32966 75632 1912 68.5 MiB 0.81 0.01 13.2769 -167.707 -13.2769 nan 1.30 0.00331223 0.0027945 0.190565 0.164918 31 20753 34 1.323e+07 1.296e+07 -1 -1 11.89 1.38196 1.18229 20514 283063 -1 19633 19 7436 27581 2385653 214806 16.2089 nan -204.899 -16.2089 0 0 -1 -1 0.59 0.67 0.20 -1 -1 0.59 0.156704 0.13966 -k4_n4_v7_bidir.xml pdc.blif common 137.49 vpr 129.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 133044 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 60.9 MiB 1.26 70145 832915 321309 505590 6016 125.2 MiB 6.91 0.07 23.6438 -801.137 -23.6438 nan 5.36 0.0114996 0.00930053 1.09595 0.898067 43 109176 50 4.8e+07 4.587e+07 -1 -1 105.88 5.44641 4.5122 82004 1356368 -1 92308 18 22074 91352 10603940 833880 27.2323 nan -952.488 -27.2323 0 0 -1 -1 3.30 2.91 1.02 -1 -1 3.30 0.584698 0.511068 -k4_n4_v7_bidir.xml s298.blif common 30.45 vpr 72.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74668 4 6 1942 1948 1 1189 579 26 26 676 clb auto 35.1 MiB 0.32 13928 162183 48631 112366 1186 72.9 MiB 1.28 0.02 20.5855 -161.064 -20.5855 20.5855 1.75 0.00461281 0.00382861 0.346359 0.298091 24 20327 23 1.728e+07 1.707e+07 -1 -1 21.60 1.92449 1.62892 23472 293888 -1 19756 21 7114 39066 2896263 248088 24.952 24.952 -201.017 -24.952 0 0 -1 -1 0.64 0.93 0.21 -1 -1 0.64 0.249626 0.220185 -k4_n4_v7_bidir.xml s38417.blif common 84.90 vpr 147.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 151280 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 75.5 MiB 1.24 46320 1026794 365793 646544 14457 147.7 MiB 9.06 0.10 16.9705 -10248.7 -16.9705 16.9705 6.03 0.0177366 0.0144399 1.6497 1.35041 24 61696 32 5.292e+07 5.205e+07 -1 -1 51.47 6.83412 5.62514 66744 864380 -1 58966 22 27155 89128 5755861 569898 20.3299 20.3299 -12928.6 -20.3299 0 0 -1 -1 2.09 2.26 0.62 -1 -1 2.09 0.877399 0.754907 -k4_n4_v7_bidir.xml s38584.1.blif common 67.89 vpr 143.94 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 147396 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 74.1 MiB 1.35 44338 1202277 446289 732973 23015 143.7 MiB 9.45 0.13 13.476 -8715.74 -13.476 13.476 5.64 0.0168041 0.0137427 1.71928 1.40668 24 58524 34 5.043e+07 4.941e+07 -1 -1 35.47 5.59212 4.59946 63762 824815 -1 54644 16 20568 62309 3930967 404060 15.582 15.582 -10688.2 -15.582 0 0 -1 -1 1.93 1.57 0.59 -1 -1 1.93 0.676849 0.590801 -k4_n4_v7_bidir.xml seq.blif common 22.90 vpr 71.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72984 41 35 1791 1826 0 1383 615 26 26 676 clb auto 33.9 MiB 0.38 18170 183595 57158 121708 4729 71.3 MiB 1.40 0.02 13.4584 -384.563 -13.4584 nan 1.76 0.00433749 0.00371089 0.323462 0.277605 31 27311 27 1.728e+07 1.617e+07 -1 -1 13.80 1.54265 1.31731 26172 364912 -1 25257 17 8876 30887 2732565 239423 15.8959 nan -467.929 -15.8959 0 0 -1 -1 0.77 0.77 0.26 -1 -1 0.77 0.190983 0.170342 -k4_n4_v7_bidir.xml spla.blif common 75.78 vpr 106.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 108648 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 52.0 MiB 0.91 48320 593326 210099 381047 2180 102.2 MiB 4.79 0.05 19.804 -670.02 -19.804 nan 4.33 0.00890554 0.00730493 0.798281 0.661759 39 70752 34 3.888e+07 3.696e+07 -1 -1 48.32 3.67312 3.03944 62858 992060 -1 75452 42 25223 109996 25573156 2346030 33.729 nan -1108.23 -33.729 0 0 -1 -1 2.38 5.76 0.74 -1 -1 2.38 0.786224 0.666177 -k4_n4_v7_bidir.xml tseng.blif common 9.99 vpr 66.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68280 52 122 1483 1605 1 736 453 19 19 361 clb auto 28.9 MiB 0.21 6010 104793 27903 73131 3759 66.7 MiB 0.64 0.01 9.61652 -2176.65 -9.61652 9.61652 0.80 0.00241985 0.0021282 0.177401 0.155571 22 11378 49 8.67e+06 8.37e+06 -1 -1 5.71 1.38426 1.19517 11874 134567 -1 8622 22 4145 14149 784699 87644 13.6608 13.6608 -2921.54 -13.6608 0 0 -1 -1 0.24 0.30 0.08 -1 -1 0.24 0.136017 0.12034 -k4_n4_v7_l1_bidir.xml alu4.blif common 20.98 vpr 69.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70872 14 8 1536 1544 0 1091 497 24 24 576 clb auto 31.7 MiB 0.31 14038 132286 40480 89756 2050 69.2 MiB 0.98 0.01 18.8338 -136.416 -18.8338 nan 2.12 0.00291201 0.00249655 0.23973 0.20704 21 16028 34 1.452e+07 1.425e+07 -1 -1 11.49 0.95332 0.81403 39160 271852 -1 14069 15 7125 28415 1884060 312363 20.012 nan -146.625 -20.012 0 0 -1 -1 0.68 0.67 0.23 -1 -1 0.68 0.130154 0.116167 -k4_n4_v7_l1_bidir.xml apex2.blif common 99.18 vpr 74.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76396 38 3 1916 1919 0 1509 641 27 27 729 clb auto 35.0 MiB 0.40 19885 205029 64844 135695 4490 74.6 MiB 1.59 0.02 18.2297 -54.2142 -18.2297 nan 2.84 0.00472432 0.00402191 0.365508 0.312877 24 22874 44 1.875e+07 1.8e+07 -1 -1 86.06 1.96596 1.67478 55250 396047 -1 20091 14 9653 34475 2940174 411351 19.9438 nan -58.7579 -19.9438 0 0 -1 -1 1.09 0.97 0.33 -1 -1 1.09 0.179821 0.160283 -k4_n4_v7_l1_bidir.xml apex4.blif common 33.95 vpr 67.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69064 9 19 1271 1290 0 990 436 23 23 529 clb auto 29.8 MiB 0.25 13558 117728 36618 79402 1708 67.4 MiB 0.87 0.01 15.4514 -256.46 -15.4514 nan 1.90 0.00256173 0.00222051 0.192612 0.168446 25 16511 44 1.323e+07 1.224e+07 -1 -1 25.26 1.12293 0.960437 39522 283015 -1 13937 18 7490 27552 2694520 350441 16.4652 nan -276.892 -16.4652 0 0 -1 -1 0.72 0.75 0.24 -1 -1 0.72 0.119575 0.10643 -k4_n4_v7_l1_bidir.xml bigkey.blif common 22.52 vpr 80.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82524 229 197 2152 2349 1 1587 882 29 29 841 io auto 35.1 MiB 0.29 12767 444822 145271 288077 11474 80.6 MiB 2.44 0.03 9.91523 -2238.85 -9.91523 9.91523 3.35 0.00579741 0.00504427 0.58838 0.51045 13 12524 25 2.187e+07 1.368e+07 -1 -1 8.32 1.55266 1.35671 39906 235943 -1 11885 19 7685 22909 1223419 232147 11.794 11.794 -2659.73 -11.794 0 0 -1 -1 0.66 0.67 0.20 -1 -1 0.66 0.243072 0.215084 -k4_n4_v7_l1_bidir.xml clma.blif common 322.66 vpr 260.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 266464 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 92.1 MiB 1.77 106250 1906828 766911 1124716 15201 255.2 MiB 18.12 0.18 38.7957 -1752.06 -38.7957 38.7957 13.74 0.0247064 0.0200029 2.58099 2.12258 32 105659 32 7.803e+07 7.569e+07 -1 -1 243.81 11.4004 9.44643 274482 2081397 -1 102527 16 41600 150661 23168676 4306064 41.644 41.644 -2118.42 -41.644 0 0 -1 -1 6.82 7.90 1.77 -1 -1 6.82 1.06835 0.927022 -k4_n4_v7_l1_bidir.xml des.blif common 33.98 vpr 94.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96456 256 245 1847 2092 0 1443 950 34 34 1156 io auto 33.9 MiB 0.36 15948 383726 122306 247332 14088 94.2 MiB 1.92 0.02 15.9777 -2830.67 -15.9777 nan 4.93 0.00488185 0.00427826 0.41542 0.367652 14 15886 22 3.072e+07 1.347e+07 -1 -1 15.18 1.56791 1.39556 59520 369080 -1 15176 14 8346 27403 1850652 292864 17.4436 nan -3096.96 -17.4436 0 0 -1 -1 1.06 0.70 0.32 -1 -1 1.06 0.198341 0.181616 -k4_n4_v7_l1_bidir.xml diffeq.blif common 22.56 vpr 70.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71916 64 39 1935 1974 1 1104 519 23 23 529 clb auto 32.7 MiB 0.27 10598 138063 36162 98499 3402 70.2 MiB 1.06 0.02 12.2512 -2895.83 -12.2512 12.2512 1.98 0.0044422 0.00382638 0.313635 0.267433 20 10469 21 1.323e+07 1.248e+07 -1 -1 13.66 1.5444 1.31927 33978 232261 -1 10047 16 6450 22448 1735228 308798 13.2662 13.2662 -3434.57 -13.2662 0 0 -1 -1 0.60 0.63 0.19 -1 -1 0.60 0.166232 0.147178 -k4_n4_v7_l1_bidir.xml dsip.blif common 73.29 vpr 78.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80752 229 197 1815 2012 1 1190 816 29 29 841 io auto 32.5 MiB 0.30 11385 385727 121997 253019 10711 78.9 MiB 2.04 0.02 10.2792 -2388.21 -10.2792 10.2792 3.38 0.00525813 0.0045987 0.493043 0.430973 12 11507 36 2.187e+07 1.17e+07 -1 -1 59.67 1.87653 1.64604 39906 235943 -1 10566 13 5606 18437 954620 179519 11.1449 11.1449 -2690.38 -11.1449 0 0 -1 -1 0.67 0.48 0.20 -1 -1 0.67 0.16415 0.147516 -k4_n4_v7_l1_bidir.xml elliptic.blif common 72.17 vpr 111.70 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 114380 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 53.1 MiB 0.74 31282 587849 207319 373027 7503 111.7 MiB 4.13 0.05 22.9812 -14010 -22.9812 22.9812 5.02 0.00996667 0.00785203 0.93321 0.773281 25 33498 36 3.072e+07 2.988e+07 -1 -1 47.18 4.09405 3.43039 89088 639360 -1 30784 17 11930 54099 5318101 837975 24.7539 24.7539 -16426 -24.7539 0 0 -1 -1 1.87 1.88 0.55 -1 -1 1.87 0.429574 0.374341 -k4_n4_v7_l1_bidir.xml ex1010.blif common 85.73 vpr 154.08 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 157780 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 59.6 MiB 0.92 45908 779024 293384 483341 2299 154.1 MiB 6.79 0.08 32.4915 -315.42 -32.4915 nan 8.01 0.0111379 0.00900983 1.00997 0.826251 22 50171 39 4.563e+07 4.5e+07 -1 -1 48.46 3.9459 3.24197 118482 826103 -1 46078 17 25511 101071 6590738 1092110 34.9322 nan -340.348 -34.9322 0 0 -1 -1 2.48 2.70 0.72 -1 -1 2.48 0.488621 0.421509 -k4_n4_v7_l1_bidir.xml ex5p.blif common 49.28 vpr 65.96 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67544 8 63 1072 1135 0 907 417 21 21 441 clb auto 28.1 MiB 0.20 11744 106293 32437 71356 2500 66.0 MiB 0.80 0.01 15.9063 -721.883 -15.9063 nan 1.52 0.00258573 0.00222125 0.205927 0.179744 24 13498 30 1.083e+07 1.038e+07 -1 -1 42.12 0.938611 0.808978 32642 233591 -1 11884 17 7028 24556 2102298 313540 17.2144 nan -794.877 -17.2144 0 0 -1 -1 0.58 0.66 0.19 -1 -1 0.58 0.119613 0.107889 -k4_n4_v7_l1_bidir.xml frisc.blif common 143.07 vpr 115.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 118664 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 52.4 MiB 0.79 37595 544671 189581 345218 9872 115.9 MiB 4.32 0.05 25.8633 -14640.9 -25.8633 25.8633 5.22 0.0110211 0.00925772 0.986069 0.832937 28 40223 31 3.267e+07 3.138e+07 -1 -1 115.70 4.75884 4.0474 103554 761463 -1 37382 18 14032 62532 6166689 992704 27.512 27.512 -16318.6 -27.512 0 0 -1 -1 2.18 2.22 0.61 -1 -1 2.18 0.49512 0.432801 -k4_n4_v7_l1_bidir.xml misex3.blif common 41.63 vpr 68.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69736 14 14 1411 1425 0 1075 460 23 23 529 clb auto 30.4 MiB 0.32 13603 122935 37802 83503 1630 68.1 MiB 0.97 0.01 13.8245 -177.164 -13.8245 nan 1.97 0.00312972 0.00260962 0.246565 0.212191 23 17026 47 1.323e+07 1.296e+07 -1 -1 32.62 1.30425 1.1144 37674 266685 -1 14055 20 8154 28373 3163693 569405 15.0958 nan -195.746 -15.0958 0 0 -1 -1 0.68 0.96 0.22 -1 -1 0.68 0.152893 0.135247 -k4_n4_v7_l1_bidir.xml pdc.blif common 684.74 vpr 159.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 163412 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 60.5 MiB 1.11 68899 906811 351987 548831 5993 152.0 MiB 7.55 0.08 29.6897 -986.645 -29.6897 nan 8.04 0.0122054 0.0099952 1.20106 0.988071 36 79688 37 4.8e+07 4.587e+07 -1 -1 635.30 5.19652 4.26964 183520 1412616 -1 75020 27 29230 122004 31921787 6931662 34.086 nan -1145.98 -34.086 0 0 -1 -1 4.60 9.95 1.26 -1 -1 4.60 0.8502 0.723923 -k4_n4_v7_l1_bidir.xml s298.blif common 32.05 vpr 72.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74568 4 6 1942 1948 1 1189 579 26 26 676 clb auto 35.1 MiB 0.31 14145 167007 51573 114453 981 72.8 MiB 1.26 0.02 24.5862 -193.603 -24.5862 24.5862 2.61 0.00437567 0.0036735 0.327326 0.278491 18 15874 36 1.728e+07 1.707e+07 -1 -1 20.57 1.39798 1.18115 41472 276960 -1 14064 16 7878 38925 3061259 365760 25.9691 25.9691 -211.4 -25.9691 0 0 -1 -1 0.72 0.92 0.23 -1 -1 0.72 0.176725 0.156075 -k4_n4_v7_l1_bidir.xml s38417.blif common 110.99 vpr 179.43 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 183740 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 75.5 MiB 1.22 46153 1084374 392034 674958 17382 179.4 MiB 9.83 0.10 24.4089 -13791 -24.4089 24.4089 9.15 0.018842 0.0152669 1.83813 1.49581 18 44467 48 5.292e+07 5.205e+07 -1 -1 66.03 7.19722 5.95117 122472 822684 -1 40260 15 23071 73802 4051835 724247 26.057 26.057 -15946 -26.057 0 0 -1 -1 2.46 2.09 0.66 -1 -1 2.46 0.755006 0.652014 -k4_n4_v7_l1_bidir.xml s38584.1.blif common 181.48 vpr 173.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 177468 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 74.3 MiB 1.36 44316 1227283 454172 750014 23097 173.3 MiB 9.73 0.13 16.4414 -11776.3 -16.4414 16.4414 8.67 0.0174731 0.0140159 1.83681 1.49733 18 41868 40 5.043e+07 4.941e+07 -1 -1 138.25 8.01352 6.66143 116850 784767 -1 38255 12 19955 61536 3544555 616407 17.9661 17.9661 -13338.9 -17.9661 0 0 -1 -1 2.37 1.74 0.66 -1 -1 2.37 0.626097 0.554966 -k4_n4_v7_l1_bidir.xml seq.blif common 83.70 vpr 71.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72940 41 35 1791 1826 0 1383 615 26 26 676 clb auto 33.9 MiB 0.35 18254 201893 63880 132728 5285 71.2 MiB 1.54 0.02 17.233 -510.179 -17.233 nan 2.60 0.00423845 0.00359441 0.359909 0.307509 24 20619 33 1.728e+07 1.617e+07 -1 -1 71.54 1.82795 1.55234 51072 366016 -1 18361 15 8342 30289 2621537 395138 18.9372 nan -562.557 -18.9372 0 0 -1 -1 1.01 0.92 0.28 -1 -1 1.01 0.184578 0.164083 -k4_n4_v7_l1_bidir.xml spla.blif common 270.62 vpr 131.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 134796 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 51.7 MiB 0.84 48226 649710 239147 405633 4930 131.2 MiB 5.16 0.05 24.4927 -822.54 -24.4927 nan 6.13 0.00975796 0.0079987 0.903627 0.747163 32 56254 40 3.888e+07 3.696e+07 -1 -1 236.12 4.29596 3.57308 138672 1051752 -1 51816 20 22309 96671 16120750 2921203 28.9891 nan -954.056 -28.9891 0 0 -1 -1 3.34 4.94 0.97 -1 -1 3.34 0.515446 0.446497 -k4_n4_v7_l1_bidir.xml tseng.blif common 15.20 vpr 66.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success b93114b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:43:08 gh-actions-runner-vtr-auto-spawned21 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68240 52 122 1483 1605 1 736 453 19 19 361 clb auto 28.8 MiB 0.19 5895 113488 30987 78721 3780 66.6 MiB 0.75 0.01 10.0375 -2507.19 -10.0375 10.0375 1.19 0.00333037 0.00300089 0.236546 0.206882 14 6534 44 8.67e+06 8.37e+06 -1 -1 9.58 1.05013 0.907359 17850 109085 -1 5895 19 4875 17226 998633 199992 11.2415 11.2415 -3110.8 -11.2415 0 0 -1 -1 0.26 0.44 0.08 -1 -1 0.26 0.153491 0.136008 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_n4_v7_bidir.xml alu4.blif common 17.97 vpr 69.13 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70788 14 8 1536 1544 0 1091 497 24 24 576 clb auto 31.6 MiB 0.29 14174 69.1 MiB 1.05 0.01 13.4464 -91.906 -13.4464 nan 1.36 0.00347385 0.00290782 0.247999 0.211234 28 20910 32 1.452e+07 1.425e+07 -1 -1 10.82 1.44391 1.22437 21174 279108 -1 19878 20 7201 27995 2276505 212795 0 0 2276505 212795 16951 11554 0 0 31392 28016 0 0 50562 32519 0 0 53034 24138 0 0 1089394 57817 0 0 1035172 58751 0 0 16951 0 0 12554 113703 115472 357504 11933 2267 18 nan -109.749 -18 0 0 -1 -1 0.57 0.72 0.17 -1 -1 0.57 0.18904 0.168713 +k4_n4_v7_bidir.xml apex2.blif common 22.29 vpr 72.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74632 38 3 1916 1919 0 1509 641 27 27 729 clb auto 35.0 MiB 0.38 19839 72.9 MiB 1.44 0.02 14.9286 -44.0658 -14.9286 nan 1.71 0.00447423 0.0037738 0.318034 0.271255 31 29152 43 1.875e+07 1.8e+07 -1 -1 13.08 1.89132 1.61731 28210 394495 -1 28088 18 10308 35327 3215747 279851 0 0 3215747 279851 29720 16267 0 0 39742 35335 0 0 61341 40948 0 0 80107 33828 0 0 1543669 76168 0 0 1461168 77305 0 0 29720 0 0 24742 194098 209672 870568 6388 201 17.3073 nan -51.5022 -17.3073 0 0 -1 -1 0.80 0.88 0.22 -1 -1 0.80 0.204316 0.178519 +k4_n4_v7_bidir.xml apex4.blif common 20.47 vpr 67.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68812 9 19 1271 1290 0 990 436 23 23 529 clb auto 29.6 MiB 0.24 13522 67.2 MiB 0.88 0.01 12.9459 -210.249 -12.9459 nan 1.31 0.00304529 0.00263188 0.202833 0.176455 31 21733 44 1.323e+07 1.224e+07 -1 -1 13.75 1.2743 1.09421 20514 283063 -1 19523 24 8011 29398 3111419 256159 0 0 3111419 256159 27108 14933 0 0 33129 29452 0 0 53736 33902 0 0 81514 31763 0 0 1464504 74767 0 0 1451428 71342 0 0 27108 0 0 31372 225582 235236 1191218 2710 504 24.98505 nan -264.732 -24.98505 0 0 -1 -1 0.57 0.82 0.17 -1 -1 0.57 0.173296 0.153258 +k4_n4_v7_bidir.xml bigkey.blif common 26.60 vpr 73.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75028 229 197 2152 2349 1 1587 882 29 29 841 io auto 35.1 MiB 0.30 12959 73.3 MiB 2.51 0.02 7.48553 -1803.94 -7.48553 7.48553 2.28 0.00469204 0.00410364 0.51071 0.442793 18 20371 48 2.187e+07 1.368e+07 -1 -1 15.57 1.94898 1.6994 25794 279159 -1 18368 19 8448 24780 1743257 182995 0 0 1743257 182995 13766 10049 0 0 30505 25889 0 0 47823 31434 0 0 40964 21410 0 0 806666 46627 0 0 803533 47586 0 0 13766 0 0 6197 80865 80423 213680 11837 3693 9.06144 9.06144 -2390.66 -9.06144 0 0 -1 -1 0.61 0.68 0.17 -1 -1 0.61 0.253486 0.225627 +k4_n4_v7_bidir.xml clma.blif common 142.35 vpr 187.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 192504 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 92.3 MiB 1.80 106462 171.3 MiB 18.59 0.16 27.3694 -1405.65 -27.3694 27.3694 9.76 0.0244187 0.0196415 2.5024 2.05173 39 139434 27 7.803e+07 7.569e+07 -1 -1 76.80 10.1302 8.39795 121914 1953961 -1 144525 31 49683 171853 40636067 3446563 0 0 40636067 3446563 131588 83133 0 0 195439 172145 0 0 321140 204566 0 0 417577 203354 0 0 19358442 1426844 0 0 20211881 1356521 0 0 131588 0 0 119534 1007982 997442 3452968 44789 50391 35.3515 35.3515 -1874.87 -35.3515 0 0 -1 -1 5.12 10.08 1.18 -1 -1 5.12 1.68323 1.4069 +k4_n4_v7_bidir.xml des.blif common 23.62 vpr 71.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72980 256 245 1847 2092 0 1443 950 34 34 1156 io auto 33.6 MiB 0.35 16116 71.3 MiB 1.98 0.03 12.1555 -2310.02 -12.1555 nan 3.25 0.00544401 0.0047579 0.394496 0.349342 20 23620 43 3.072e+07 1.347e+07 -1 -1 9.87 1.76085 1.56242 36518 419916 -1 22263 23 10124 34066 3025249 296853 0 0 3025249 296853 31691 18908 0 0 39976 35072 0 0 66141 41206 0 0 79559 38882 0 0 1378551 82326 0 0 1429331 80459 0 0 31691 0 0 27667 129057 127151 621415 3326 4 15.4638 nan -2935.27 -15.4638 0 0 -1 -1 0.98 0.93 0.28 -1 -1 0.98 0.281328 0.254279 +k4_n4_v7_bidir.xml diffeq.blif common 18.57 vpr 70.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71796 64 39 1935 1974 1 1104 519 23 23 529 clb auto 32.6 MiB 0.29 10612 70.1 MiB 1.04 0.02 11.2136 -2465.35 -11.2136 11.2136 1.32 0.00454802 0.00396332 0.310543 0.268356 24 15679 28 1.323e+07 1.248e+07 -1 -1 11.93 1.60313 1.37816 18402 227975 -1 14539 21 6424 21196 1456215 145994 0 0 1456215 145994 17973 9193 0 0 24483 21325 0 0 39605 25276 0 0 51419 20779 0 0 650016 35238 0 0 672719 34183 0 0 17973 0 0 17677 75015 74106 385162 3943 1788 15.6994 15.6994 -3159.95 -15.6994 0 0 -1 -1 0.45 0.56 0.13 -1 -1 0.45 0.220429 0.194677 +k4_n4_v7_bidir.xml dsip.blif common 17.61 vpr 69.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71540 229 197 1815 2012 1 1190 816 29 29 841 io auto 32.2 MiB 0.29 11338 69.9 MiB 2.10 0.03 6.78424 -1682.3 -6.78424 6.78424 2.26 0.00461262 0.0039929 0.459096 0.396794 18 17527 41 2.187e+07 1.17e+07 -1 -1 7.42 1.81094 1.58864 25794 279159 -1 15395 15 6452 19926 1299311 140436 0 0 1299311 140436 12157 7470 0 0 24890 21082 0 0 37977 25483 0 0 31685 15748 0 0 605396 34414 0 0 587206 36239 0 0 12157 0 0 6413 50387 50201 110246 8260 1780 9.01728 9.01728 -2205.55 -9.01728 0 0 -1 -1 0.60 0.50 0.17 -1 -1 0.60 0.18749 0.167586 +k4_n4_v7_bidir.xml elliptic.blif common 69.11 vpr 89.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 92020 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 53.1 MiB 0.73 31456 89.9 MiB 4.26 0.05 18.9025 -10909.3 -18.9025 18.9025 3.29 0.0101721 0.00908163 0.968685 0.817533 30 52978 48 3.072e+07 2.988e+07 -1 -1 50.43 5.12544 4.34518 44604 633776 -1 42011 19 11537 51254 4572824 386879 0 0 4572824 386879 38004 16059 0 0 59624 51865 0 0 94572 61167 0 0 101837 34763 0 0 2152730 110268 0 0 2126057 112757 0 0 38004 0 0 43133 327755 335053 1351042 15185 11666 23.0444 23.0444 -14356.4 -23.0444 0 0 -1 -1 1.47 1.62 0.38 -1 -1 1.47 0.538091 0.473642 +k4_n4_v7_bidir.xml ex1010.blif common 71.35 vpr 111.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 113844 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 59.5 MiB 0.95 45872 101.7 MiB 7.25 0.08 24.5792 -235.267 -24.5792 nan 5.30 0.0111252 0.00889648 1.06433 0.869968 31 65695 22 4.563e+07 4.5e+07 -1 -1 41.62 5.2262 4.28588 64722 929407 -1 64534 20 24936 100574 7806517 709051 0 0 7806517 709051 60509 37981 0 0 114508 100614 0 0 184637 118813 0 0 184407 78252 0 0 3667667 182901 0 0 3594789 190490 0 0 60509 0 0 44495 471267 474245 1414540 43464 21867 27.7913 nan -270.144 -27.7913 0 0 -1 -1 2.35 2.58 0.64 -1 -1 2.35 0.591769 0.508861 +k4_n4_v7_bidir.xml ex5p.blif common 15.39 vpr 65.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67484 8 63 1072 1135 0 907 417 21 21 441 clb auto 28.1 MiB 0.21 11634 65.9 MiB 0.73 0.01 11.978 -548.759 -11.978 nan 1.07 0.00292061 0.00254546 0.181734 0.159563 32 17719 34 1.083e+07 1.038e+07 -1 -1 9.16 1.16136 1.01254 17562 246361 -1 18739 28 9438 30715 5369320 511376 0 0 5369320 511376 28940 20285 0 0 35234 31047 0 0 55404 36228 0 0 99566 49748 0 0 2568030 187880 0 0 2582146 186188 0 0 28940 0 0 31517 145037 153285 763874 1914 39 21.5878 nan -899.15 -21.5878 0 0 -1 -1 0.48 1.20 0.14 -1 -1 0.48 0.182491 0.160903 +k4_n4_v7_bidir.xml frisc.blif common 57.61 vpr 91.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93448 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 52.4 MiB 0.85 38585 89.7 MiB 4.32 0.05 22.1146 -12365.8 -22.1146 22.1146 3.54 0.0115452 0.00973288 0.969395 0.812984 35 57472 38 3.267e+07 3.138e+07 -1 -1 35.21 4.54213 3.84136 50922 772933 -1 56598 25 17222 77259 15811791 1477237 0 0 15811791 1477237 63030 30948 0 0 89154 78174 0 0 147213 91749 0 0 172679 78915 0 0 7527610 607462 0 0 7812105 589989 0 0 63030 0 0 62103 410569 411653 1666140 15685 11675 32.2679 32.2679 -18125.6 -32.2679 0 0 -1 -1 1.83 3.92 0.47 -1 -1 1.83 0.668168 0.583883 +k4_n4_v7_bidir.xml misex3.blif common 18.76 vpr 68.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69736 14 14 1411 1425 0 1075 460 23 23 529 clb auto 30.4 MiB 0.32 13609 68.1 MiB 0.96 0.01 12.4424 -149.071 -12.4424 nan 1.35 0.00328638 0.00288741 0.228776 0.196418 29 22322 42 1.323e+07 1.296e+07 -1 -1 11.52 1.19383 1.01742 19986 270173 -1 20348 28 8859 29487 3869933 348873 0 0 3869933 348873 23845 15825 0 0 33114 29526 0 0 53651 34352 0 0 74663 38033 0 0 1876058 113330 0 0 1808602 117807 0 0 23845 0 0 20205 114520 122449 437755 6445 279 16.7203 nan -203.293 -16.7203 0 0 -1 -1 0.55 0.97 0.17 -1 -1 0.55 0.197335 0.171467 +k4_n4_v7_bidir.xml pdc.blif common 130.05 vpr 116.83 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 119632 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 60.8 MiB 1.24 69136 105.4 MiB 7.51 0.08 21.6179 -743.475 -21.6179 nan 5.52 0.0128612 0.0103429 1.12296 0.911833 44 100825 34 4.8e+07 4.587e+07 -1 -1 95.65 5.44737 4.46483 83766 1407084 -1 96776 21 25984 111801 17151035 1289269 0 0 17151035 1289269 81490 43452 0 0 126633 111956 0 0 217767 132486 0 0 235627 91401 0 0 8216199 458881 0 0 8273319 451093 0 0 81490 0 0 81080 838833 866443 2851501 34177 15307 25.8078 nan -905.706 -25.8078 0 0 -1 -1 3.58 4.36 0.96 -1 -1 3.58 0.64678 0.549082 +k4_n4_v7_bidir.xml s298.blif common 23.68 vpr 72.97 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74720 4 6 1942 1948 1 1189 579 26 26 676 clb auto 35.2 MiB 0.32 13902 73.0 MiB 1.25 0.02 21.2653 -159.337 -21.2653 21.2653 1.70 0.00404275 0.00347083 0.296835 0.256916 28 19709 22 1.728e+07 1.707e+07 -1 -1 14.84 2.01907 1.72455 24822 329400 -1 19479 18 6634 35892 2626126 230557 0 0 2626126 230557 17008 10168 0 0 40943 35962 0 0 66535 42234 0 0 57260 21984 0 0 1227379 60688 0 0 1217001 59521 0 0 17008 0 0 21198 263909 258893 1051566 21162 19368 25.4875 25.4875 -197.762 -25.4875 0 0 -1 -1 0.73 0.88 0.22 -1 -1 0.73 0.235005 0.206912 +k4_n4_v7_bidir.xml s38417.blif common 88.72 vpr 128.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 131864 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 75.3 MiB 1.27 47115 120.9 MiB 10.49 0.11 18.2412 -10727.7 -18.2412 18.2412 6.18 0.0192554 0.0154887 1.84109 1.49575 24 61704 39 5.292e+07 5.205e+07 -1 -1 53.07 7.46909 6.1302 66744 864380 -1 58905 18 26720 83763 5378251 555913 0 0 5378251 555913 64683 36591 0 0 97467 84195 0 0 156057 101739 0 0 183892 79757 0 0 2433961 124956 0 0 2442191 128675 0 0 64683 0 0 45122 234304 228759 879435 20330 25528 21.4718 21.4718 -13465.3 -21.4718 0 0 -1 -1 2.17 2.21 0.58 -1 -1 2.17 0.829587 0.707689 +k4_n4_v7_bidir.xml s38584.1.blif common 77.28 vpr 126.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 129316 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 74.6 MiB 1.38 45240 117.8 MiB 10.45 0.13 11.9263 -8962.66 -11.9263 11.9263 5.89 0.0184976 0.0147338 1.85878 1.51041 24 60919 48 5.043e+07 4.941e+07 -1 -1 42.74 6.636 5.48201 63762 824815 -1 56541 19 22387 66663 4809398 478500 0 0 4809398 478500 59252 29333 0 0 78504 67676 0 0 120843 81329 0 0 155160 66235 0 0 2228270 113561 0 0 2167369 120366 0 0 59252 0 0 44499 186100 192412 1025254 7854 11555 13.7507 13.7507 -10930.9 -13.7507 0 0 -1 -1 2.06 2.13 0.55 -1 -1 2.06 0.921664 0.803959 +k4_n4_v7_bidir.xml seq.blif common 28.17 vpr 71.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73264 41 35 1791 1826 0 1383 615 26 26 676 clb auto 33.7 MiB 0.37 18103 71.5 MiB 1.51 0.02 14.1718 -400.404 -14.1718 nan 1.77 0.00447893 0.0037976 0.340345 0.291858 30 31057 47 1.728e+07 1.617e+07 -1 -1 19.01 1.73627 1.48359 26172 364912 -1 25380 16 8985 30629 2861962 250537 0 0 2861962 250537 25106 13969 0 0 34884 30763 0 0 54020 35946 0 0 69763 29606 0 0 1389883 68765 0 0 1288306 71488 0 0 25106 0 0 22096 153117 158712 646194 6097 806 16.758 nan -485.01 -16.758 0 0 -1 -1 0.78 0.80 0.23 -1 -1 0.78 0.188967 0.168217 +k4_n4_v7_bidir.xml spla.blif common 73.80 vpr 97.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 99532 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 51.7 MiB 0.91 48512 89.3 MiB 4.85 0.05 19.8708 -663.452 -19.8708 nan 4.31 0.00929601 0.00722443 0.787301 0.650829 39 72151 32 3.888e+07 3.696e+07 -1 -1 45.77 3.98785 3.3423 62858 992060 -1 77542 37 25589 107341 26668651 2627948 0 0 26668651 2627948 77722 50767 0 0 121306 107522 0 0 198387 125323 0 0 254326 130878 0 0 12808265 1118501 0 0 13208645 1094957 0 0 77722 0 0 83595 688469 708121 2254809 35056 6239 34.9081 nan -1115.52 -34.9081 0 0 -1 -1 2.46 6.22 0.65 -1 -1 2.46 0.751 0.637103 +k4_n4_v7_bidir.xml tseng.blif common 8.40 vpr 66.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67948 52 122 1483 1605 1 736 453 19 19 361 clb auto 28.6 MiB 0.20 6088 66.4 MiB 0.76 0.01 10.2937 -2093.39 -10.2937 10.2937 0.83 0.00332237 0.00290241 0.223239 0.195939 20 9957 42 8.67e+06 8.37e+06 -1 -1 3.73 0.787509 0.686428 11514 125901 -1 9990 29 5011 16576 1439513 162557 0 0 1439513 162557 14011 8384 0 0 19532 16993 0 0 30030 20081 0 0 41245 20221 0 0 654871 49002 0 0 679824 47876 0 0 14011 0 0 11034 35108 33894 139846 2941 1247 19.7201 19.7201 -3163.4 -19.7201 0 0 -1 -1 0.24 0.53 0.08 -1 -1 0.24 0.208626 0.184136 +k4_n4_v7_l1_bidir.xml alu4.blif common 34.84 vpr 69.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70948 14 8 1536 1544 0 1091 497 24 24 576 clb auto 31.7 MiB 0.31 14281 69.3 MiB 1.07 0.02 17.405 -119.79 -17.405 nan 2.13 0.0045875 0.00406708 0.262534 0.225911 22 16271 40 1.452e+07 1.425e+07 -1 -1 25.15 1.22173 1.04401 39160 271852 -1 14226 15 6997 28306 1931113 329186 0 0 1931113 329186 15346 8872 0 0 32065 28332 0 0 61791 32252 0 0 43171 17605 0 0 886288 121135 0 0 892452 120990 0 0 15346 0 0 9226 213153 228005 423480 13610 9293 18.4209 nan -129.929 -18.4209 0 0 -1 -1 0.74 0.76 0.20 -1 -1 0.74 0.153264 0.137365 +k4_n4_v7_l1_bidir.xml apex2.blif common 102.31 vpr 72.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74564 38 3 1916 1919 0 1509 641 27 27 729 clb auto 35.0 MiB 0.43 20018 72.8 MiB 1.71 0.02 19.526 -55.2387 -19.526 nan 2.79 0.00488424 0.0041277 0.383636 0.325401 24 22118 39 1.875e+07 1.8e+07 -1 -1 89.14 2.04687 1.72825 55250 396047 -1 19775 14 8986 31316 2736987 394561 0 0 2736987 394561 25265 11830 0 0 35499 31329 0 0 67573 35812 0 0 60942 23450 0 0 1282512 142192 0 0 1265196 149948 0 0 25265 0 0 17919 420247 467927 1194412 6824 1654 20.5616 nan -58.2176 -20.5616 0 0 -1 -1 1.11 0.97 0.30 -1 -1 1.11 0.18625 0.16592 +k4_n4_v7_l1_bidir.xml apex4.blif common 89.84 vpr 67.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68984 9 19 1271 1290 0 990 436 23 23 529 clb auto 29.8 MiB 0.25 13467 67.4 MiB 0.99 0.01 17.1168 -270.116 -17.1168 nan 1.91 0.00297691 0.00256524 0.224708 0.194607 24 16302 38 1.323e+07 1.224e+07 -1 -1 80.97 1.22647 1.05141 39522 283015 -1 13889 16 7146 27459 2781985 364765 0 0 2781985 364765 24039 10954 0 0 31163 27550 0 0 62028 31415 0 0 63511 23479 0 0 1321089 134334 0 0 1280155 137033 0 0 24039 0 0 23482 526544 527019 1611977 3644 1238 18.3367 nan -298.806 -18.3367 0 0 -1 -1 0.74 0.83 0.19 -1 -1 0.74 0.129661 0.115195 +k4_n4_v7_l1_bidir.xml bigkey.blif common 22.67 vpr 73.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75044 229 197 2152 2349 1 1587 882 29 29 841 io auto 35.2 MiB 0.30 12931 73.3 MiB 2.67 0.03 11.5134 -2580.62 -11.5134 11.5134 3.37 0.00552349 0.00477065 0.582477 0.505666 13 12765 29 2.187e+07 1.368e+07 -1 -1 8.20 1.567 1.36759 39906 235943 -1 11969 18 7124 21299 1153521 218194 0 0 1153521 218194 11501 7598 0 0 26289 22170 0 0 45758 26441 0 0 31205 14323 0 0 515445 74325 0 0 523323 73337 0 0 11501 0 0 4674 117311 119848 154219 10522 10930 12.056 12.056 -2911.61 -12.056 0 0 -1 -1 0.68 0.64 0.18 -1 -1 0.68 0.225189 0.201027 +k4_n4_v7_l1_bidir.xml clma.blif common 573.90 vpr 233.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 238796 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 92.3 MiB 1.80 104583 221.5 MiB 18.47 0.16 40.1845 -1767.17 -40.1845 40.1845 13.18 0.0231544 0.0187544 2.44967 1.99032 32 106308 31 7.803e+07 7.569e+07 -1 -1 496.36 10.7853 8.79574 274482 2081397 -1 101996 16 40594 151795 23814315 4432967 0 0 23814315 4432967 100773 51320 0 0 172148 152050 0 0 339425 174315 0 0 268766 110124 0 0 11536818 1957698 0 0 11396385 1987460 0 0 100773 0 0 70259 2317122 2306531 4801468 54291 155481 42.9009 42.9009 -2145.85 -42.9009 0 0 -1 -1 6.67 7.82 1.47 -1 -1 6.67 0.969179 0.826732 +k4_n4_v7_l1_bidir.xml des.blif common 53.11 vpr 87.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89384 256 245 1847 2092 0 1443 950 34 34 1156 io auto 33.8 MiB 0.36 16346 87.3 MiB 2.35 0.02 19.6565 -2858.74 -19.6565 nan 4.77 0.00535069 0.00476587 0.514918 0.457842 14 16500 26 3.072e+07 1.347e+07 -1 -1 34.11 1.87913 1.68679 59520 369080 -1 15478 12 7561 24058 1864200 313580 0 0 1864200 313580 22278 10629 0 0 29001 24933 0 0 53680 29288 0 0 48539 20774 0 0 861985 116664 0 0 848717 111292 0 0 22278 0 0 15933 244240 250313 743674 2444 210 21.4109 nan -3191.29 -21.4109 0 0 -1 -1 1.08 0.68 0.28 -1 -1 1.08 0.174295 0.159883 +k4_n4_v7_l1_bidir.xml diffeq.blif common 24.03 vpr 69.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71604 64 39 1935 1974 1 1104 519 23 23 529 clb auto 32.4 MiB 0.30 10465 69.9 MiB 1.12 0.02 11.8225 -2870.74 -11.8225 11.8225 1.92 0.0043116 0.00367468 0.319898 0.275666 17 11085 37 1.323e+07 1.248e+07 -1 -1 15.27 1.2403 1.06517 30282 197837 -1 10169 18 7282 25044 2184183 406188 0 0 2184183 406188 20367 11188 0 0 28555 25222 0 0 52752 28791 0 0 58766 24448 0 0 1014502 158471 0 0 1009241 158068 0 0 20367 0 0 17479 229597 223773 691660 5435 9780 12.8449 12.8449 -3357.9 -12.8449 0 0 -1 -1 0.48 0.75 0.13 -1 -1 0.48 0.182139 0.159281 +k4_n4_v7_l1_bidir.xml dsip.blif common 25.48 vpr 70.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72456 229 197 1815 2012 1 1190 816 29 29 841 io auto 32.5 MiB 0.30 11724 70.8 MiB 2.16 0.02 9.84842 -2315.87 -9.84842 9.84842 3.39 0.00473118 0.00412819 0.469999 0.410592 13 11676 41 2.187e+07 1.17e+07 -1 -1 11.77 1.44116 1.26298 39906 235943 -1 10782 13 5853 18929 1079825 212814 0 0 1079825 212814 11468 6525 0 0 23746 20136 0 0 39849 23813 0 0 28118 13244 0 0 488247 76528 0 0 488397 72568 0 0 11468 0 0 5835 106807 105576 203100 7872 7184 10.32 10.32 -2567.64 -10.32 0 0 -1 -1 0.63 0.48 0.20 -1 -1 0.63 0.150489 0.135384 +k4_n4_v7_l1_bidir.xml elliptic.blif common 250.40 vpr 102.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 105396 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 53.1 MiB 0.75 31289 99.7 MiB 4.31 0.05 24.5087 -13712.9 -24.5087 24.5087 5.03 0.0112512 0.00926088 0.918318 0.756965 24 33225 33 3.072e+07 2.988e+07 -1 -1 225.15 4.55672 3.79953 89088 639360 -1 29910 15 11471 49628 4991238 807844 0 0 4991238 807844 35206 14431 0 0 58199 50281 0 0 106893 58707 0 0 87885 30463 0 0 2358616 320211 0 0 2344439 333751 0 0 35206 0 0 33070 750845 802927 2001792 16086 32215 26.3301 26.3301 -15780.3 -26.3301 0 0 -1 -1 1.89 1.87 0.49 -1 -1 1.89 0.422747 0.368937 +k4_n4_v7_l1_bidir.xml ex1010.blif common 86.96 vpr 135.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 138788 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 59.6 MiB 0.97 45506 134.1 MiB 7.15 0.07 35.0666 -326.901 -35.0666 nan 7.64 0.01112 0.0090887 1.0511 0.859689 22 49059 47 4.563e+07 4.5e+07 -1 -1 48.96 4.41129 3.6562 118482 826103 -1 44567 14 23597 90262 5488495 951218 0 0 5488495 951218 51571 30862 0 0 102361 90324 0 0 194271 103531 0 0 150754 65172 0 0 2491692 330107 0 0 2497846 331222 0 0 51571 0 0 31811 582564 595064 662964 42219 79285 37.8509 nan -350.371 -37.8509 0 0 -1 -1 2.57 2.40 0.64 -1 -1 2.57 0.464393 0.404428 +k4_n4_v7_l1_bidir.xml ex5p.blif common 54.09 vpr 65.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67440 8 63 1072 1135 0 907 417 21 21 441 clb auto 28.0 MiB 0.20 11821 65.9 MiB 0.85 0.01 15.1106 -656.442 -15.1106 nan 1.49 0.00325923 0.00254923 0.214238 0.18683 24 14318 41 1.083e+07 1.038e+07 -1 -1 46.82 0.97289 0.84189 32642 233591 -1 12054 17 6940 23303 2343367 380584 0 0 2343367 380584 21162 10849 0 0 26541 23589 0 0 52114 26762 0 0 58957 21151 0 0 1106107 146693 0 0 1078486 151540 0 0 21162 0 0 18893 282102 291344 911959 2272 196 16.1916 nan -727.382 -16.1916 0 0 -1 -1 0.59 0.75 0.16 -1 -1 0.59 0.126837 0.113701 +k4_n4_v7_l1_bidir.xml frisc.blif common 168.03 vpr 107.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110040 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 52.2 MiB 0.82 37497 102.7 MiB 4.68 0.05 24.4278 -14825.6 -24.4278 24.4278 5.26 0.0100112 0.00829789 1.02722 0.863059 28 40186 28 3.267e+07 3.138e+07 -1 -1 140.77 4.60032 3.88152 103554 761463 -1 37393 16 14334 63647 6450908 1039336 0 0 6450908 1039336 51220 20703 0 0 72963 64296 0 0 143419 73506 0 0 122959 41808 0 0 3027944 414000 0 0 3032403 425023 0 0 51220 0 0 43985 879494 941241 2480121 13305 21431 25.9971 25.9971 -16524.4 -25.9971 0 0 -1 -1 2.25 2.32 0.53 -1 -1 2.25 0.461908 0.406094 +k4_n4_v7_l1_bidir.xml misex3.blif common 37.83 vpr 68.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69912 14 14 1411 1425 0 1075 460 23 23 529 clb auto 30.5 MiB 0.29 13559 68.3 MiB 0.97 0.01 15.1312 -191.55 -15.1312 nan 1.72 0.00319552 0.00273496 0.226681 0.19278 24 14779 29 1.323e+07 1.296e+07 -1 -1 29.40 1.26787 1.07574 39522 283015 -1 13598 15 7073 26155 2058099 312011 0 0 2058099 312011 20194 9778 0 0 29527 26207 0 0 58435 29778 0 0 51685 19023 0 0 939017 112821 0 0 959241 114404 0 0 20194 0 0 15085 281799 316999 807207 6556 329 16.5576 nan -206.846 -16.5576 0 0 -1 -1 0.74 0.70 0.19 -1 -1 0.74 0.13185 0.117274 +k4_n4_v7_l1_bidir.xml pdc.blif common 704.96 vpr 151.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 155372 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 60.9 MiB 1.17 69783 139.0 MiB 8.28 0.07 33.871 -1073.72 -33.871 nan 8.09 0.0124289 0.00994374 1.29349 1.05837 36 80196 38 4.8e+07 4.587e+07 -1 -1 660.80 4.99864 4.09467 183520 1412616 -1 73362 22 26841 111690 29971058 6847814 0 0 29971058 6847814 76466 39532 0 0 126110 111903 0 0 258237 127170 0 0 209270 90615 0 0 14664297 3262554 0 0 14636678 3216040 0 0 76466 0 0 61859 1956575 1958439 4214975 39086 47642 37.7686 nan -1222.75 -37.7686 0 0 -1 -1 2.95 5.90 0.62 -1 -1 2.95 0.362121 0.308989 +k4_n4_v7_l1_bidir.xml s298.blif common 31.42 vpr 72.70 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74448 4 6 1942 1948 1 1189 579 26 26 676 clb auto 34.9 MiB 0.30 13873 72.7 MiB 1.29 0.02 24.2645 -193.053 -24.2645 24.2645 2.49 0.00475038 0.00401284 0.33782 0.288048 17 15671 45 1.728e+07 1.707e+07 -1 -1 19.97 1.41569 1.20012 39072 255848 -1 14304 18 8473 41165 3833296 587270 0 0 3833296 587270 20044 11481 0 0 46389 41319 0 0 87504 46597 0 0 61683 25771 0 0 1820349 232879 0 0 1797327 229223 0 0 20044 0 0 18131 676939 645318 1754970 22976 56266 26.2082 26.2082 -219.739 -26.2082 0 0 -1 -1 0.68 1.27 0.18 -1 -1 0.68 0.225644 0.200505 +k4_n4_v7_l1_bidir.xml s38417.blif common 84.62 vpr 157.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 160996 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 75.3 MiB 1.24 45823 156.3 MiB 10.73 0.11 22.8839 -12843.2 -22.8839 22.8839 9.17 0.0179289 0.0144971 1.89489 1.5397 17 42804 48 5.292e+07 5.205e+07 -1 -1 36.44 7.21674 5.97127 115248 760028 -1 41227 28 29324 99099 9100578 1646509 0 0 9100578 1646509 74226 40556 0 0 113142 99736 0 0 206293 114295 0 0 203460 83895 0 0 4267481 655519 0 0 4235976 652508 0 0 74226 0 0 48435 1064315 1073325 3277497 26120 98729 25.3218 25.3218 -15829.1 -25.3218 0 0 -1 -1 2.33 4.05 0.55 -1 -1 2.33 1.22365 1.05247 +k4_n4_v7_l1_bidir.xml s38584.1.blif common 67.25 vpr 152.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 155984 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 74.5 MiB 1.27 43857 151.2 MiB 10.33 0.13 16.7322 -11603.5 -16.7322 16.7322 8.04 0.0160929 0.0129275 1.75651 1.42667 19 43230 46 5.043e+07 4.941e+07 -1 -1 25.65 5.82502 4.83199 116850 784767 -1 37598 11 19651 60501 3469053 596793 0 0 3469053 596793 51486 22909 0 0 71387 61426 0 0 123251 72199 0 0 123192 45868 0 0 1562459 187884 0 0 1537278 206507 0 0 51486 0 0 33652 387772 428572 1211453 9396 26419 17.258 17.258 -12827.2 -17.258 0 0 -1 -1 2.26 1.68 0.57 -1 -1 2.26 0.597634 0.51978 +k4_n4_v7_l1_bidir.xml seq.blif common 112.10 vpr 71.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73252 41 35 1791 1826 0 1383 615 26 26 676 clb auto 33.7 MiB 0.36 18265 71.5 MiB 1.58 0.02 17.4129 -521.247 -17.4129 nan 2.47 0.00412259 0.00347615 0.352468 0.298175 24 22041 50 1.728e+07 1.617e+07 -1 -1 100.24 1.71907 1.44888 51072 366016 -1 18467 15 8949 32128 2827304 423587 0 0 2827304 423587 25144 11833 0 0 36756 32284 0 0 70197 37093 0 0 62412 24082 0 0 1320326 158987 0 0 1312469 159308 0 0 25144 0 0 18730 405555 439805 1113933 7435 1255 19.3002 nan -576.518 -19.3002 0 0 -1 -1 0.96 0.95 0.24 -1 -1 0.96 0.170585 0.148909 +k4_n4_v7_l1_bidir.xml spla.blif common 312.76 vpr 121.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 124356 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 51.9 MiB 0.84 47819 116.7 MiB 5.77 0.05 25.6975 -850.101 -25.6975 nan 6.49 0.0100554 0.00830429 0.971394 0.798786 32 52300 31 3.888e+07 3.696e+07 -1 -1 277.17 4.51179 3.74679 138672 1051752 -1 50528 21 21568 93360 15166036 2720735 0 0 15166036 2720735 64972 32585 0 0 104989 93585 0 0 214610 105807 0 0 175643 70717 0 0 7350580 1212848 0 0 7255242 1205193 0 0 64972 0 0 55204 1577363 1563473 3523260 32982 18780 29.3385 nan -989.871 -29.3385 0 0 -1 -1 3.07 4.66 0.73 -1 -1 3.07 0.495574 0.426224 +k4_n4_v7_l1_bidir.xml tseng.blif common 15.30 vpr 66.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68264 52 122 1483 1605 1 736 453 19 19 361 clb auto 28.9 MiB 0.19 5903 66.7 MiB 0.77 0.01 9.31933 -2372.61 -9.31933 9.31933 1.15 0.00355213 0.00309294 0.236842 0.205728 14 6636 41 8.67e+06 8.37e+06 -1 -1 9.70 1.02295 0.884484 17850 109085 -1 5721 18 4691 16161 949670 190869 0 0 949670 190869 12380 7185 0 0 19102 16641 0 0 32981 19199 0 0 35910 16089 0 0 425733 65931 0 0 423564 65824 0 0 12380 0 0 9131 70540 68387 175028 4158 4411 10.8554 10.8554 -2988.61 -10.8554 0 0 -1 -1 0.26 0.43 0.07 -1 -1 0.26 0.149867 0.133188