From 859276c44c1f4798930983326676719204dcf3d5 Mon Sep 17 00:00:00 2001 From: AlexandreSinger Date: Wed, 14 Aug 2024 13:18:51 -0400 Subject: [PATCH] [LOGGING] Fixed LUT Sizing Issue The size of the LUTs were being calculated incorrectly by using the width of the port instead of the actual number of pins in the port. The parsing scripts for the golden results were also incorrect since they were using the number of 6-LUTs as the total number of LUTs. --- vpr/src/base/read_circuit.cpp | 50 +- vtr_flow/parse/parse_config/vpr_chain.txt | 2 +- .../figure_8/config/golden_results.txt | 442 ++-- .../multless_consts/config/golden_results.txt | 2048 ++++++++--------- .../FIR_filters/config/golden_results.txt | 470 ++-- .../config/golden_results.txt | 780 +++---- .../figure_8/config/golden_results.txt | 442 ++-- .../multless_consts/config/golden_results.txt | 2048 ++++++++--------- .../vtr_reg_qor/config/golden_results.txt | 42 +- .../vtr_reg_qor/config/golden_results.txt | 42 +- .../config/golden_results.txt | 6 +- .../config/golden_results.txt | 14 +- .../config/golden_results.txt | 14 +- 13 files changed, 3203 insertions(+), 3197 deletions(-) diff --git a/vpr/src/base/read_circuit.cpp b/vpr/src/base/read_circuit.cpp index dd2be16f7cd..4d6fab3f25d 100644 --- a/vpr/src/base/read_circuit.cpp +++ b/vpr/src/base/read_circuit.cpp @@ -4,10 +4,8 @@ #include "atom_netlist.h" #include "atom_netlist_utils.h" #include "echo_files.h" - #include "vtr_assert.h" #include "vtr_log.h" -#include "vtr_util.h" #include "vtr_path.h" #include "vtr_time.h" @@ -145,34 +143,31 @@ static void process_circuit(AtomNetlist& netlist, } static void show_circuit_stats(const AtomNetlist& netlist) { + // Count the block statistics std::map block_type_counts; - - //Count the block statistics + std::map lut_size_counts; for (auto blk_id : netlist.blocks()) { + // For each model, count the number of occurrences in the netlist. const t_model* blk_model = netlist.block_model(blk_id); + ++block_type_counts[blk_model->name]; + // If this block is a LUT, also count the occurences of this size of LUT + // for more logging information. if (blk_model->name == std::string(MODEL_NAMES)) { - //LUT - size_t lut_size = 0; + // May have zero (no input LUT) or one input port auto in_ports = netlist.block_input_ports(blk_id); - - //May have zero (no input LUT) or one input port + VTR_ASSERT(in_ports.size() <= 1 && "Expected number of input ports for LUT to be 0 or 1"); + size_t lut_size = 0; if (in_ports.size() == 1) { + // Use the number of pins in the input port to determine the + // size of the LUT. auto port_id = *in_ports.begin(); - - //Figure out the LUT size - lut_size = netlist.port_width(port_id); - - } else { - VTR_ASSERT(in_ports.size() == 0); + lut_size = netlist.port_pins(port_id).size(); } - - ++block_type_counts[std::to_string(lut_size) + "-LUT"]; - } else { - //Other types - ++block_type_counts[blk_model->name]; + ++lut_size_counts[std::to_string(lut_size) + "-LUT"]; } } - //Count the net statistics + + // Count the net statistics std::map net_stats; for (auto net_id : netlist.nets()) { double fanout = netlist.net_sinks(net_id).size(); @@ -189,21 +184,32 @@ static void show_circuit_stats(const AtomNetlist& netlist) { } net_stats["Avg Fanout"] /= netlist.nets().size(); - //Determine the maximum length of a type name for nice formatting + // Determine the maximum length of a type name for nice formatting size_t max_block_type_len = 0; for (const auto& kv : block_type_counts) { max_block_type_len = std::max(max_block_type_len, kv.first.size()); } + size_t max_lut_size_len = 0; + for (const auto& kv : lut_size_counts) { + max_lut_size_len = std::max(max_lut_size_len, kv.first.size()); + } size_t max_net_type_len = 0; for (const auto& kv : net_stats) { max_net_type_len = std::max(max_net_type_len, kv.first.size()); } - //Print the statistics + // Print the statistics VTR_LOG("Circuit Statistics:\n"); VTR_LOG(" Blocks: %zu\n", netlist.blocks().size()); for (const auto& kv : block_type_counts) { VTR_LOG(" %-*s: %7zu\n", max_block_type_len, kv.first.c_str(), kv.second); + // If this block is a LUT, print the different sizes of LUTs in the + // design. + if (kv.first == std::string(MODEL_NAMES)) { + for (const auto& lut_kv : lut_size_counts) { + VTR_LOG(" %-*s: %7zu\n", max_lut_size_len, lut_kv.first.c_str(), lut_kv.second); + } + } } VTR_LOG(" Nets : %zu\n", netlist.nets().size()); for (const auto& kv : net_stats) { diff --git a/vtr_flow/parse/parse_config/vpr_chain.txt b/vtr_flow/parse/parse_config/vpr_chain.txt index 48315bd83ae..202e362e304 100644 --- a/vtr_flow/parse/parse_config/vpr_chain.txt +++ b/vtr_flow/parse/parse_config/vpr_chain.txt @@ -1,7 +1,7 @@ %include "vpr_standard.txt" num_le;vpr.out;\s*Total number of Logic Elements used\s*:\s*(\d+) -num_luts;vpr.out;\s*6-LUT\s*:\s*(\d+) +num_luts;vpr.out;\s*.names\s*:\s*(\d+) num_add_blocks;odin.out;The Total Number of Hard Block adders: (\d+) max_add_chain_length;odin.out;The Number of Hard Block adders in the Longest Chain: (\d+) num_sub_blocks;odin.out;The Total Number of Hard Block subs: (\d+) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt index 5fffec0e332..656cc397df0 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt @@ -1,221 +1,221 @@ - 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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.83 vpr 62.66 MiB -1 -1 0.09 19512 1 0.06 -1 -1 35968 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64160 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 24.3 MiB 0.01 66 238 53 181 4 62.7 MiB 0.00 0.00 0.701249 -7.34893 -0.701249 0.701249 0.88 5.1661e-05 4.5494e-05 0.00105831 0.000935191 20 137 6 6.55708e+06 24110 394039. 1363.46 1.17 0.00441567 0.00384437 19870 87366 -1 144 7 56 56 4309 1239 0.83871 0.83871 -8.27133 -0.83871 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.00205708 0.00186975 10 4 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.25 vpr 62.73 MiB -1 -1 0.10 19656 2 0.05 -1 -1 36088 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64232 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 24.3 MiB 0.01 138 156 48 106 2 62.7 MiB 0.00 0.00 0.900447 -11.3379 -0.900447 0.900447 0.89 6.3066e-05 5.6245e-05 0.000794082 0.000717402 20 235 7 6.55708e+06 24110 394039. 1363.46 0.56 0.00343991 0.00308261 19870 87366 -1 223 9 85 86 5405 1499 0.819447 0.819447 -11.9992 -0.819447 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.0025386 0.00227437 13 6 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.38 vpr 62.75 MiB -1 -1 0.10 19644 2 0.06 -1 -1 35500 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64252 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 24.3 MiB 0.02 61 544 113 372 59 62.7 MiB 0.01 0.00 0.900447 -11.5662 -0.900447 0.900447 0.87 6.7545e-05 6.0116e-05 0.00181129 0.00162097 26 178 14 6.55708e+06 24110 477104. 1650.88 0.68 0.0226789 0.0208174 21022 109990 -1 177 9 115 121 6516 2239 0.819447 0.819447 -12.5524 -0.819447 0 0 585099. 2024.56 0.25 0.01 0.10 -1 -1 0.25 0.0026605 0.00237909 16 7 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 4.32 vpr 62.86 MiB -1 -1 0.08 19544 3 0.06 -1 -1 35908 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64372 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 24.4 MiB 0.01 79 663 125 500 38 62.9 MiB 0.01 0.00 1.58811 -15.8163 -1.58811 1.58811 0.91 9.2892e-05 8.373e-05 0.00226208 0.00202885 20 271 7 6.55708e+06 36165 394039. 1363.46 1.56 0.0106969 0.00917209 19870 87366 -1 250 11 106 127 6915 2276 1.58811 1.58811 -17.5334 -1.58811 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.0035596 0.00315613 19 9 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 5.09 vpr 62.63 MiB -1 -1 0.10 19676 3 0.06 -1 -1 35480 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64132 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 24.2 MiB 0.01 92 976 219 613 144 62.6 MiB 0.01 0.00 1.23151 -17.401 -1.23151 1.23151 0.90 0.000113655 0.000103613 0.00308595 0.00279915 26 362 35 6.55708e+06 36165 477104. 1650.88 2.28 0.0288322 0.0240594 21022 109990 -1 299 13 188 211 9360 3345 1.13885 1.13885 -19.0838 -1.13885 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.00410639 0.00363337 23 10 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 4.27 vpr 62.85 MiB -1 -1 0.10 19536 3 0.06 -1 -1 35604 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64360 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 24.4 MiB 0.07 118 2468 742 1169 557 62.9 MiB 0.02 0.00 1.70831 -21.0444 -1.70831 1.70831 0.89 0.000123982 0.000111278 0.00714222 0.00645072 24 449 19 6.55708e+06 48220 448715. 1552.65 1.44 0.0283585 0.0241516 20734 103517 -1 343 17 212 236 12543 3862 1.82851 1.82851 -23.2742 -1.82851 0 0 554710. 1919.41 0.24 0.01 0.10 -1 -1 0.24 0.00552843 0.00483321 25 14 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.46 vpr 62.95 MiB -1 -1 0.10 19532 4 0.06 -1 -1 35740 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64460 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 24.4 MiB 0.01 141 2165 594 1180 391 62.9 MiB 0.02 0.00 1.58811 -24.792 -1.58811 1.58811 0.91 0.000132516 0.000120126 0.00588031 0.00530889 26 513 16 6.55708e+06 48220 477104. 1650.88 1.62 0.0386759 0.0325269 21022 109990 -1 400 16 258 307 15525 5097 1.58811 1.58811 -26.6416 -1.58811 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00564459 0.00493838 29 13 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.79 vpr 63.08 MiB -1 -1 0.11 19644 4 0.06 -1 -1 36084 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64592 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 24.5 MiB 0.03 284 1928 664 976 288 63.1 MiB 0.01 0.00 1.68077 -30.4899 -1.68077 1.68077 0.92 0.000138017 0.000123631 0.00525783 0.00476634 26 598 10 6.55708e+06 60275 477104. 1650.88 1.95 0.0408808 0.0345205 21022 109990 -1 563 11 181 227 14793 3787 1.46791 1.46791 -31.3524 -1.46791 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.00511555 0.00457088 33 17 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.53 vpr 62.99 MiB -1 -1 0.10 19624 5 0.07 -1 -1 35812 -1 -1 6 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64500 23 12 76 88 1 61 41 17 17 289 -1 unnamed_device 24.4 MiB 0.02 228 3471 1214 1851 406 63.0 MiB 0.02 0.00 2.07857 -32.6138 -2.07857 2.07857 0.88 0.000139097 0.000124872 0.00806635 0.00727748 26 584 15 6.55708e+06 72330 477104. 1650.88 0.73 0.0276092 0.0238968 21022 109990 -1 505 11 250 317 17417 4955 1.83817 1.83817 -33.3714 -1.83817 0 0 585099. 2024.56 0.25 0.01 0.11 -1 -1 0.25 0.0054129 0.00481629 37 19 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 5.21 vpr 62.87 MiB -1 -1 0.10 19908 5 0.07 -1 -1 35236 -1 -1 6 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64380 25 13 83 96 1 66 44 17 17 289 -1 unnamed_device 24.5 MiB 0.02 230 1661 271 1364 26 62.9 MiB 0.01 0.00 1.80097 -35.7252 -1.80097 1.80097 0.89 0.000175281 0.000158565 0.00433674 0.00394176 28 728 17 6.55708e+06 72330 500653. 1732.36 2.40 0.0396404 0.0336321 21310 115450 -1 592 13 286 408 24297 6568 1.65484 1.65484 -37.2094 -1.65484 0 0 612192. 2118.31 0.26 0.02 0.10 -1 -1 0.26 0.00633896 0.00561255 40 21 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.57 vpr 63.08 MiB -1 -1 0.11 19408 5 0.07 -1 -1 35700 -1 -1 7 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64596 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 24.8 MiB 0.02 298 2223 446 1605 172 63.1 MiB 0.02 0.00 1.82851 -37.5 -1.82851 1.82851 0.89 0.000196027 0.000177972 0.00583217 0.00532012 26 745 17 6.55708e+06 84385 477104. 1650.88 0.74 0.0298427 0.0257556 21022 109990 -1 668 12 263 378 22460 5886 1.73584 1.73584 -40.7811 -1.73584 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00668685 0.00596104 42 24 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 5.30 vpr 63.12 MiB -1 -1 0.10 19932 6 0.07 -1 -1 35720 -1 -1 7 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64632 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 24.8 MiB 0.04 329 2401 440 1903 58 63.1 MiB 0.02 0.00 2.39596 -45.5411 -2.39596 2.39596 0.89 0.000202428 0.00018437 0.00598065 0.00546351 28 759 10 6.55708e+06 84385 500653. 1732.36 2.41 0.0436861 0.0373178 21310 115450 -1 706 10 258 360 20144 5444 2.15556 2.15556 -44.9364 -2.15556 0 0 612192. 2118.31 0.27 0.02 0.11 -1 -1 0.27 0.00622558 0.00557035 45 23 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.74 vpr 63.03 MiB -1 -1 0.10 19808 6 0.07 -1 -1 35864 -1 -1 10 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64544 31 16 104 120 1 81 57 17 17 289 -1 unnamed_device 24.6 MiB 0.04 463 3000 671 1855 474 63.0 MiB 0.02 0.00 1.9467 -49.1372 -1.9467 1.9467 0.90 0.000229393 0.000208026 0.00724422 0.00661318 28 1004 14 6.55708e+06 120550 500653. 1732.36 0.83 0.0333714 0.0289497 21310 115450 -1 909 10 299 460 29503 7303 1.85404 1.85404 -50.2387 -1.85404 0 0 612192. 2118.31 0.27 0.02 0.11 -1 -1 0.27 0.00689678 0.00619823 50 27 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 5.58 vpr 63.18 MiB -1 -1 0.10 19816 7 0.07 -1 -1 35728 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64696 33 17 112 129 1 86 57 17 17 289 -1 unnamed_device 24.8 MiB 0.05 322 6597 2323 2891 1383 63.2 MiB 0.04 0.00 2.57253 -53.1074 -2.57253 2.57253 0.91 0.000232898 0.000212058 0.0145397 0.0131746 28 1084 13 6.55708e+06 84385 500653. 1732.36 2.62 0.0585912 0.0505798 21310 115450 -1 789 11 372 478 28544 8239 2.3425 2.3425 -54.886 -2.3425 0 0 612192. 2118.31 0.27 0.02 0.11 -1 -1 0.27 0.00742359 0.00666602 52 30 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 5.54 vpr 63.38 MiB -1 -1 0.11 19752 7 0.07 -1 -1 35748 -1 -1 10 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64896 37 19 127 146 1 99 66 17 17 289 -1 unnamed_device 24.9 MiB 0.02 517 7514 3058 4421 35 63.4 MiB 0.04 0.00 3.08562 -69.1539 -3.08562 3.08562 0.91 0.000264032 0.000240357 0.0151067 0.0137122 32 1157 14 6.55708e+06 120550 554710. 1919.41 2.58 0.0785689 0.0677204 22174 131602 -1 999 9 347 484 30205 7755 2.87276 2.87276 -68.2585 -2.87276 0 0 701300. 2426.64 0.28 0.02 0.13 -1 -1 0.28 0.00753898 0.00679889 59 35 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 5.34 vpr 63.46 MiB -1 -1 0.11 19776 8 0.07 -1 -1 36064 -1 -1 11 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64984 41 21 139 160 1 110 73 17 17 289 -1 unnamed_device 24.9 MiB 0.05 423 10105 3105 5166 1834 63.5 MiB 0.05 0.00 2.75456 -69.4691 -2.75456 2.75456 0.91 0.000279944 0.000253919 0.0201714 0.0183239 28 1229 19 6.55708e+06 132605 500653. 1732.36 2.35 0.0885276 0.0768618 21310 115450 -1 1013 16 459 599 40727 11036 2.5417 2.5417 -71.5857 -2.5417 0 0 612192. 2118.31 0.27 0.03 0.11 -1 -1 0.27 0.0110399 0.00982338 67 37 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 5.93 vpr 63.50 MiB -1 -1 0.12 19780 9 0.08 -1 -1 36012 -1 -1 13 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65020 45 23 153 176 1 123 81 17 17 289 -1 unnamed_device 24.9 MiB 0.24 454 9181 2871 4452 1858 63.5 MiB 0.05 0.00 3.20898 -80.9842 -3.20898 3.20898 0.91 0.000278633 0.000251369 0.0173729 0.015786 30 1196 23 6.55708e+06 156715 526063. 1820.29 2.73 0.0958237 0.0830769 21886 126133 -1 873 11 414 517 24759 7523 3.02956 3.02956 -80.0769 -3.02956 0 0 666494. 2306.21 0.27 0.02 0.13 -1 -1 0.27 0.00945683 0.00850046 74 41 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 5.79 vpr 63.50 MiB -1 -1 0.12 19748 10 0.08 -1 -1 36060 -1 -1 12 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65024 49 25 166 191 1 129 86 17 17 289 -1 unnamed_device 25.1 MiB 0.08 677 9725 2981 5215 1529 63.5 MiB 0.05 0.00 3.75902 -99.1822 -3.75902 3.75902 0.91 0.000331517 0.000301484 0.0186532 0.0170145 32 1400 10 6.55708e+06 144660 554710. 1919.41 2.69 0.0992016 0.0862657 22174 131602 -1 1255 11 469 643 39075 10434 3.63882 3.63882 -98.8492 -3.63882 0 0 701300. 2426.64 0.30 0.03 0.13 -1 -1 0.30 0.0103055 0.00930304 79 44 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.71 vpr 63.73 MiB -1 -1 0.13 19852 11 0.09 -1 -1 35860 -1 -1 14 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65260 57 29 198 227 1 159 100 17 17 289 -1 unnamed_device 25.3 MiB 0.22 710 9844 2338 6831 675 63.7 MiB 0.05 0.00 4.36968 -119.507 -4.36968 4.36968 0.90 0.000388698 0.000353505 0.018292 0.0166913 34 1591 23 6.55708e+06 168770 585099. 2024.56 1.41 0.0784156 0.0687564 22462 138074 -1 1413 13 546 739 43127 11305 3.88888 3.88888 -116.039 -3.88888 0 0 742403. 2568.87 0.31 0.03 0.14 -1 -1 0.31 0.0128879 0.0115272 93 56 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 6.25 vpr 63.77 MiB -1 -1 0.13 20100 13 0.09 -1 -1 36092 -1 -1 16 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65296 65 33 224 257 1 180 114 17 17 289 -1 unnamed_device 25.2 MiB 0.28 986 13638 3602 8892 1144 63.8 MiB 0.06 0.00 4.63562 -152.464 -4.63562 4.63562 0.90 0.000421812 0.000380966 0.0220664 0.0201056 30 1963 18 6.55708e+06 192880 526063. 1820.29 2.90 0.135242 0.117937 21886 126133 -1 1731 12 577 785 47918 11606 4.18236 4.18236 -146.964 -4.18236 0 0 666494. 2306.21 0.27 0.03 0.12 -1 -1 0.27 0.0135241 0.0121871 107 62 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.39 vpr 64.81 MiB -1 -1 0.14 20632 19 0.12 -1 -1 35840 -1 -1 24 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 97 49 340 389 1 266 170 17 17 289 -1 unnamed_device 26.1 MiB 0.22 1351 35890 10935 20783 4172 64.8 MiB 0.15 0.00 7.54965 -280.539 -7.54965 7.54965 0.89 0.000648573 0.000588032 0.0495448 0.0450556 30 2921 38 6.55708e+06 289320 526063. 1820.29 1.02 0.148692 0.132215 21886 126133 -1 2413 13 874 1213 66598 17862 6.85599 6.85599 -268.058 -6.85599 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0210996 0.0191312 161 98 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 7.41 vpr 65.17 MiB -1 -1 0.17 20612 26 0.12 -1 -1 36184 -1 -1 35 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 129 65 453 518 1 353 229 17 17 289 -1 unnamed_device 26.5 MiB 0.20 1861 50629 13453 32595 4581 65.2 MiB 0.20 0.00 10.1317 -478.148 -10.1317 10.1317 0.90 0.000821946 0.000746997 0.0630117 0.0573693 30 4125 27 6.55708e+06 421925 526063. 1820.29 3.84 0.312578 0.278956 21886 126133 -1 3417 13 1217 1654 102697 25460 9.39576 9.39576 -452.566 -9.39576 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0282473 0.0257755 213 131 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.28 abc 32.87 MiB -1 -1 0.09 19500 1 0.02 -1 -1 33660 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25004 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.27 abc 32.86 MiB -1 -1 0.10 19108 1 0.02 -1 -1 33648 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24540 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.26 abc 32.47 MiB -1 -1 0.10 19348 1 0.02 -1 -1 33248 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24440 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.26 abc 32.46 MiB -1 -1 0.09 19548 1 0.02 -1 -1 33244 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25180 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.27 abc 32.88 MiB -1 -1 0.10 19444 1 0.02 -1 -1 33664 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25112 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.27 abc 32.60 MiB -1 -1 0.09 19572 1 0.02 -1 -1 33384 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24240 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.27 abc 32.87 MiB -1 -1 0.09 19496 1 0.02 -1 -1 33656 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24184 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.26 abc 32.88 MiB -1 -1 0.10 19780 1 0.02 -1 -1 33668 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25408 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.27 abc 32.62 MiB -1 -1 0.09 19692 1 0.02 -1 -1 33404 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25232 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.27 abc 32.96 MiB -1 -1 0.09 19680 1 0.02 -1 -1 33748 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24808 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.27 abc 32.70 MiB -1 -1 0.10 19892 1 0.02 -1 -1 33488 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25244 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.27 abc 32.93 MiB -1 -1 0.10 19544 1 0.02 -1 -1 33724 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25024 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.27 abc 32.62 MiB -1 -1 0.10 19384 1 0.02 -1 -1 33404 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25272 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.27 abc 32.85 MiB -1 -1 0.11 19536 1 0.02 -1 -1 33640 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25520 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.27 abc 32.86 MiB -1 -1 0.10 19496 1 0.02 -1 -1 33652 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25176 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.27 abc 32.91 MiB -1 -1 0.10 19604 1 0.02 -1 -1 33696 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25412 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.27 abc 32.87 MiB -1 -1 0.09 20076 1 0.02 -1 -1 33660 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25392 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.27 abc 32.86 MiB -1 -1 0.10 19900 1 0.02 -1 -1 33648 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25144 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.29 abc 32.96 MiB -1 -1 0.11 19836 1 0.03 -1 -1 33748 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25548 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.29 abc 32.88 MiB -1 -1 0.11 19868 1 0.03 -1 -1 33672 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25516 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.32 abc 32.93 MiB -1 -1 0.12 20072 1 0.03 -1 -1 33720 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25480 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.34 abc 33.14 MiB -1 -1 0.13 20412 1 0.03 -1 -1 33940 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25768 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.25 abc 32.90 MiB -1 -1 0.09 19496 1 0.02 -1 -1 33688 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24484 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.25 abc 32.64 MiB -1 -1 0.09 19528 1 0.02 -1 -1 33428 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24840 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.24 abc 32.79 MiB -1 -1 0.08 19656 1 0.02 -1 -1 33580 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24756 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.26 abc 32.57 MiB -1 -1 0.10 19784 1 0.02 -1 -1 33352 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24608 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.27 abc 32.75 MiB -1 -1 0.09 19756 1 0.02 -1 -1 33532 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25016 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.26 abc 32.58 MiB -1 -1 0.09 19832 1 0.02 -1 -1 33364 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24892 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.26 abc 32.58 MiB -1 -1 0.09 19800 1 0.02 -1 -1 33360 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24624 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.26 abc 32.50 MiB -1 -1 0.09 19656 1 0.02 -1 -1 33280 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24828 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.27 abc 32.55 MiB -1 -1 0.09 19632 1 0.02 -1 -1 33336 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25028 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.27 abc 32.62 MiB -1 -1 0.10 19908 1 0.02 -1 -1 33408 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24916 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.27 abc 32.95 MiB -1 -1 0.10 19756 1 0.02 -1 -1 33736 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24760 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.28 abc 32.88 MiB -1 -1 0.09 19764 1 0.02 -1 -1 33672 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25172 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.27 abc 32.86 MiB -1 -1 0.09 19580 1 0.02 -1 -1 33652 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25068 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.27 abc 32.83 MiB -1 -1 0.10 19888 1 0.02 -1 -1 33616 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25116 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.27 abc 33.12 MiB -1 -1 0.09 19772 1 0.02 -1 -1 33920 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25168 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.28 abc 33.11 MiB -1 -1 0.11 19428 1 0.02 -1 -1 33908 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25076 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.28 abc 33.26 MiB -1 -1 0.10 20204 1 0.02 -1 -1 34056 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25076 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.27 abc 32.87 MiB -1 -1 0.10 19812 1 0.02 -1 -1 33656 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25104 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.29 abc 32.68 MiB -1 -1 0.11 19812 1 0.02 -1 -1 33468 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25316 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.32 abc 32.90 MiB -1 -1 0.11 19652 1 0.03 -1 -1 33692 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25356 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.31 abc 32.87 MiB -1 -1 0.12 20100 1 0.03 -1 -1 33660 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25628 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.32 abc 33.41 MiB -1 -1 0.13 20136 1 0.03 -1 -1 34216 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25824 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.53 vpr 63.19 MiB -1 -1 0.10 19500 1 0.02 -1 -1 33380 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64708 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 24.8 MiB 0.01 45 88 36 48 4 63.2 MiB 0.00 0.00 0.824016 -7.40657 -0.824016 0.824016 0.90 6.2315e-05 4.7278e-05 0.000591993 0.000521342 12 109 9 6.64007e+06 25116 231691. 801.699 0.96 0.00477776 0.00411029 19090 58805 -1 115 5 36 36 2174 676 0.770048 0.770048 -8.25533 -0.770048 0 0 318358. 1101.58 0.15 0.01 0.06 -1 -1 0.15 0.0020191 0.00185002 10 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.88 vpr 62.91 MiB -1 -1 0.08 19496 1 0.02 -1 -1 33596 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64424 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.5 MiB 0.01 43 476 113 309 54 62.9 MiB 0.01 0.00 0.792048 -9.40096 -0.792048 0.792048 0.89 6.3559e-05 5.6917e-05 0.00187377 0.0016749 18 145 18 6.64007e+06 25116 355633. 1230.56 1.21 0.0134081 0.0111389 20242 81429 -1 131 12 120 120 4689 1704 0.901248 0.901248 -10.0628 -0.901248 0 0 448715. 1552.65 0.20 0.01 0.08 -1 -1 0.20 0.00296367 0.00261961 13 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.37 vpr 63.26 MiB -1 -1 0.09 19644 1 0.02 -1 -1 33676 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64780 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 24.8 MiB 0.01 57 869 279 533 57 63.3 MiB 0.01 0.00 0.803048 -11.5224 -0.803048 0.803048 0.87 6.8742e-05 6.406e-05 0.00278417 0.00253807 26 201 39 6.64007e+06 25116 477104. 1650.88 0.69 0.015235 0.0127454 21682 110474 -1 184 35 220 220 11427 3507 0.923248 0.923248 -13.188 -0.923248 0 0 585099. 2024.56 0.24 0.02 0.11 -1 -1 0.24 0.00592456 0.0050179 16 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.42 vpr 63.27 MiB -1 -1 0.10 19416 1 0.02 -1 -1 33604 -1 -1 4 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64784 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 24.7 MiB 0.01 139 840 239 448 153 63.3 MiB 0.01 0.00 0.825048 -15.1967 -0.825048 0.825048 0.89 7.6434e-05 6.8672e-05 0.0023741 0.0021418 26 313 13 6.64007e+06 50232 477104. 1650.88 0.72 0.0137642 0.0116446 21682 110474 -1 281 12 159 159 9704 2622 0.934248 0.934248 -16.5101 -0.934248 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00357903 0.00315472 20 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.61 vpr 63.18 MiB -1 -1 0.08 19492 1 0.02 -1 -1 33628 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64700 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 24.6 MiB 0.02 109 1242 363 655 224 63.2 MiB 0.01 0.00 1.18536 -16.9279 -1.18536 1.18536 0.89 0.000109962 0.000100062 0.00375684 0.00339493 32 250 10 6.64007e+06 37674 554710. 1919.41 0.80 0.0154181 0.0131606 22834 132086 -1 237 13 135 135 7706 2270 1.06345 1.06345 -18.3624 -1.06345 0 0 701300. 2426.64 0.28 0.01 0.13 -1 -1 0.28 0.00398267 0.00351298 22 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 5.42 vpr 63.19 MiB -1 -1 0.10 19532 1 0.02 -1 -1 33604 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64708 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 24.7 MiB 0.02 121 1870 575 914 381 63.2 MiB 0.01 0.00 1.19636 -19.6512 -1.19636 1.19636 0.90 0.000111329 9.9904e-05 0.00496555 0.00448245 32 311 14 6.64007e+06 50232 554710. 1919.41 2.58 0.0357012 0.0299207 22834 132086 -1 248 11 158 158 7583 2240 0.943248 0.943248 -19.308 -0.943248 0 0 701300. 2426.64 0.28 0.01 0.13 -1 -1 0.28 0.00373608 0.00331513 25 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.52 vpr 63.21 MiB -1 -1 0.09 19636 1 0.02 -1 -1 33592 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64724 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 24.7 MiB 0.03 130 1749 486 940 323 63.2 MiB 0.01 0.00 1.20736 -22.2432 -1.20736 1.20736 0.91 0.000132323 0.000120033 0.00477246 0.00432334 26 362 15 6.64007e+06 50232 477104. 1650.88 0.72 0.0205086 0.0175664 21682 110474 -1 318 12 182 182 11942 3286 1.10745 1.10745 -24.0466 -1.10745 0 0 585099. 2024.56 0.27 0.01 0.10 -1 -1 0.27 0.00463985 0.00411409 28 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.35 vpr 63.09 MiB -1 -1 0.10 19516 1 0.02 -1 -1 33672 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64600 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 24.5 MiB 0.03 173 2599 639 1402 558 63.1 MiB 0.02 0.00 1.21836 -24.9885 -1.21836 1.21836 0.86 0.000141304 0.000128183 0.00645072 0.00583582 26 465 15 6.64007e+06 62790 477104. 1650.88 1.63 0.0371718 0.0314603 21682 110474 -1 383 13 196 196 12393 3314 1.00925 1.00925 -26.0016 -1.00925 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00397787 0.00353292 31 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.54 vpr 63.23 MiB -1 -1 0.10 19648 1 0.02 -1 -1 33404 -1 -1 5 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64744 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 24.7 MiB 0.03 164 2964 931 1425 608 63.2 MiB 0.02 0.00 1.22936 -27.3898 -1.22936 1.22936 0.89 0.000148864 0.000134529 0.0070538 0.00639559 28 493 20 6.64007e+06 62790 500653. 1732.36 0.79 0.0259442 0.0223293 21970 115934 -1 449 18 287 287 22883 6108 1.12945 1.12945 -29.8071 -1.12945 0 0 612192. 2118.31 0.26 0.02 0.11 -1 -1 0.26 0.0065079 0.00568002 34 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.59 vpr 63.44 MiB -1 -1 0.11 19624 1 0.02 -1 -1 33324 -1 -1 5 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64964 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 24.9 MiB 0.03 184 3793 1189 1796 808 63.4 MiB 0.02 0.00 1.24036 -30.1907 -1.24036 1.24036 0.89 0.000158319 0.000142767 0.00865056 0.00786973 28 543 17 6.64007e+06 62790 500653. 1732.36 0.80 0.0284146 0.0246538 21970 115934 -1 470 16 377 377 26116 7071 1.15265 1.15265 -31.7389 -1.15265 0 0 612192. 2118.31 0.27 0.02 0.11 -1 -1 0.27 0.00633197 0.00555372 37 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 5.44 vpr 63.53 MiB -1 -1 0.09 19748 1 0.02 -1 -1 33504 -1 -1 6 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65052 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 25.0 MiB 0.02 211 3827 1497 2158 172 63.5 MiB 0.02 0.00 1.25136 -33.107 -1.25136 1.25136 0.89 0.000163786 0.000147752 0.00852233 0.00770632 30 621 21 6.64007e+06 75348 526063. 1820.29 2.60 0.0487232 0.0415028 22546 126617 -1 496 20 396 396 23543 6618 1.25085 1.25085 -32.5747 -1.25085 0 0 666494. 2306.21 0.27 0.02 0.12 -1 -1 0.27 0.00757846 0.0066021 40 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 4.62 vpr 63.27 MiB -1 -1 0.09 19436 1 0.02 -1 -1 33616 -1 -1 7 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64784 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 24.9 MiB 0.02 224 4187 1190 2032 965 63.3 MiB 0.02 0.00 1.26236 -35.4106 -1.26236 1.26236 0.88 0.000179653 0.000163 0.00870008 0.00790179 28 726 25 6.64007e+06 87906 500653. 1732.36 1.83 0.0537909 0.0459272 21970 115934 -1 567 23 477 477 36507 9790 1.13065 1.13065 -35.8668 -1.13065 0 0 612192. 2118.31 0.25 0.03 0.11 -1 -1 0.25 0.00904258 0.00787412 44 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 5.42 vpr 63.59 MiB -1 -1 0.10 19748 1 0.02 -1 -1 33656 -1 -1 7 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65116 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 25.2 MiB 0.02 288 4950 1971 2770 209 63.6 MiB 0.03 0.00 1.62267 -39.7496 -1.62267 1.62267 0.88 0.000198217 0.000180214 0.0101854 0.00926268 30 651 37 6.64007e+06 87906 526063. 1820.29 2.61 0.0569188 0.0486992 22546 126617 -1 526 15 302 302 16740 4566 1.05125 1.05125 -38.0908 -1.05125 0 0 666494. 2306.21 0.27 0.02 0.12 -1 -1 0.27 0.0069465 0.00613461 46 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 5.58 vpr 63.31 MiB -1 -1 0.11 19500 1 0.02 -1 -1 33732 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64832 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 24.9 MiB 0.03 307 5834 1940 2742 1152 63.3 MiB 0.03 0.00 1.63367 -42.0204 -1.63367 1.63367 0.87 0.000205312 0.000187471 0.0120497 0.0110014 32 726 14 6.64007e+06 87906 554710. 1919.41 2.74 0.0554558 0.0476611 22834 132086 -1 636 17 427 427 32889 8693 1.02925 1.02925 -40.8658 -1.02925 0 0 701300. 2426.64 0.28 0.02 0.13 -1 -1 0.28 0.00760259 0.00667627 49 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.81 vpr 63.44 MiB -1 -1 0.11 19900 1 0.02 -1 -1 33868 -1 -1 8 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64964 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 25.0 MiB 0.03 341 7938 3219 4414 305 63.4 MiB 0.04 0.00 1.65567 -48.7751 -1.65567 1.65567 0.88 0.000226935 0.000206274 0.0152537 0.013918 30 830 16 6.64007e+06 100464 526063. 1820.29 1.93 0.0677488 0.0585302 22546 126617 -1 667 12 383 383 21275 5866 1.06225 1.06225 -46.1571 -1.06225 0 0 666494. 2306.21 0.29 0.02 0.12 -1 -1 0.29 0.00736085 0.00656267 55 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 5.83 vpr 63.62 MiB -1 -1 0.10 19828 1 0.02 -1 -1 33940 -1 -1 8 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65144 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 25.1 MiB 0.03 384 7846 3210 4515 121 63.6 MiB 0.04 0.00 1.67767 -55.4572 -1.67767 1.67767 0.90 0.000266647 0.000243207 0.015028 0.0136905 32 1081 24 6.64007e+06 100464 554710. 1919.41 2.88 0.0881583 0.0760537 22834 132086 -1 891 14 540 540 46730 11738 1.24965 1.24965 -55.9942 -1.24965 0 0 701300. 2426.64 0.30 0.03 0.13 -1 -1 0.30 0.00899646 0.00799673 61 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.88 vpr 63.68 MiB -1 -1 0.11 20040 1 0.02 -1 -1 33680 -1 -1 10 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65208 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 25.2 MiB 0.03 432 8876 3599 5116 161 63.7 MiB 0.05 0.00 1.69967 -61.7455 -1.69967 1.69967 0.89 0.000270046 0.000244593 0.0151457 0.0137973 32 1345 24 6.64007e+06 125580 554710. 1919.41 0.93 0.0507272 0.0444278 22834 132086 -1 996 15 645 645 57878 15572 1.30585 1.30585 -61.5086 -1.30585 0 0 701300. 2426.64 0.29 0.03 0.14 -1 -1 0.29 0.00984418 0.00873495 68 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 5.03 vpr 63.70 MiB -1 -1 0.10 19760 1 0.02 -1 -1 33996 -1 -1 10 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65224 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 25.1 MiB 0.04 558 5025 968 3800 257 63.7 MiB 0.04 0.00 2.07098 -71.2143 -2.07098 2.07098 0.90 0.000314568 0.000288081 0.00945632 0.00867192 28 1391 24 6.64007e+06 125580 500653. 1732.36 2.12 0.0862147 0.074528 21970 115934 -1 1226 12 568 568 57127 16713 1.41065 1.41065 -74.0365 -1.41065 0 0 612192. 2118.31 0.27 0.03 0.11 -1 -1 0.27 0.00926094 0.00825872 73 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.88 vpr 64.12 MiB -1 -1 0.11 19956 1 0.03 -1 -1 33708 -1 -1 11 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65656 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 25.8 MiB 0.04 667 10531 2201 7783 547 64.1 MiB 0.05 0.00 2.11498 -86.1894 -2.11498 2.11498 0.92 0.000331515 0.000301554 0.0169977 0.015488 30 1561 21 6.64007e+06 138138 526063. 1820.29 0.93 0.0591251 0.0520208 22546 126617 -1 1268 16 646 646 43813 11534 1.39065 1.39065 -81.4616 -1.39065 0 0 666494. 2306.21 0.28 0.03 0.12 -1 -1 0.28 0.012359 0.0110009 85 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 5.78 vpr 64.26 MiB -1 -1 0.11 20016 1 0.03 -1 -1 33956 -1 -1 13 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65800 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 25.8 MiB 0.04 868 13145 3010 9693 442 64.3 MiB 0.07 0.00 2.50829 -103.421 -2.50829 2.50829 0.89 0.000383295 0.000351932 0.0204197 0.0186878 30 1817 19 6.64007e+06 163254 526063. 1820.29 2.78 0.101452 0.0886338 22546 126617 -1 1542 13 610 610 44456 10941 1.39845 1.39845 -95.2543 -1.39845 0 0 666494. 2306.21 0.30 0.03 0.12 -1 -1 0.30 0.0121374 0.0108638 97 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.14 vpr 64.72 MiB -1 -1 0.12 20212 1 0.03 -1 -1 33616 -1 -1 19 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 25.9 MiB 0.06 1568 34065 14169 19781 115 64.7 MiB 0.17 0.00 3.38291 -182.49 -3.38291 3.38291 0.89 0.000577648 0.000522666 0.0438326 0.0400644 32 2884 17 6.64007e+06 238602 554710. 1919.41 0.94 0.111339 0.0994272 22834 132086 -1 2651 12 1032 1032 96525 21316 1.51625 1.51625 -150.019 -1.51625 0 0 701300. 2426.64 0.32 0.05 0.13 -1 -1 0.32 0.0164089 0.0147957 145 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 6.91 vpr 65.15 MiB -1 -1 0.12 20552 1 0.03 -1 -1 33820 -1 -1 25 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 26.6 MiB 0.07 2005 50303 16107 29492 4704 65.2 MiB 0.24 0.01 4.25753 -269.889 -4.25753 4.25753 0.88 0.000758726 0.000697073 0.0588477 0.0539563 30 3994 32 6.64007e+06 313950 526063. 1820.29 3.57 0.263996 0.236392 22546 126617 -1 3418 18 1360 1360 120282 27724 1.95065 1.95065 -218.265 -1.95065 0 0 666494. 2306.21 0.30 0.07 0.12 -1 -1 0.30 0.028547 0.0257147 193 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.21 vpr 63.00 MiB -1 -1 0.09 19540 1 0.02 -1 -1 33420 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64508 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 24.6 MiB 0.01 45 88 36 48 4 63.0 MiB 0.00 0.00 0.824016 -7.37037 -0.824016 0.824016 0.88 5.0297e-05 4.3954e-05 0.000591441 0.000532679 12 108 7 6.65987e+06 25356 231691. 801.699 0.70 0.00381542 0.00337308 19090 58805 -1 104 6 32 32 2079 656 0.770048 0.770048 -7.85853 -0.770048 0 0 318358. 1101.58 0.15 0.01 0.06 -1 -1 0.15 0.00211988 0.00194855 10 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 4.37 vpr 63.00 MiB -1 -1 0.09 19440 1 0.02 -1 -1 33512 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64508 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.6 MiB 0.01 41 456 116 304 36 63.0 MiB 0.01 0.00 0.781048 -9.22036 -0.781048 0.781048 0.91 7.1198e-05 6.4397e-05 0.00180214 0.00161897 26 147 11 6.65987e+06 25356 477104. 1650.88 1.67 0.0185966 0.0152737 21682 110474 -1 111 8 83 83 4352 1424 0.890248 0.890248 -9.2053 -0.890248 0 0 585099. 2024.56 0.25 0.01 0.11 -1 -1 0.25 0.00259376 0.00234552 13 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 4.24 vpr 62.95 MiB -1 -1 0.10 19496 1 0.02 -1 -1 33532 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64460 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 24.4 MiB 0.01 72 1094 334 508 252 62.9 MiB 0.01 0.00 0.803048 -11.753 -0.803048 0.803048 0.89 7.8693e-05 7.0373e-05 0.00381032 0.00342528 26 208 13 6.65987e+06 25356 477104. 1650.88 1.50 0.0217254 0.0180867 21682 110474 -1 158 11 127 127 6178 1900 1.02145 1.02145 -12.4088 -1.02145 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00317635 0.00283099 16 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.57 vpr 63.05 MiB -1 -1 0.10 19572 1 0.02 -1 -1 33320 -1 -1 4 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64568 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 24.6 MiB 0.01 116 976 287 524 165 63.1 MiB 0.01 0.00 0.825048 -14.7932 -0.825048 0.825048 0.90 9.0181e-05 8.0828e-05 0.00295766 0.00267054 32 254 13 6.65987e+06 50712 554710. 1919.41 0.81 0.0139799 0.0118969 22834 132086 -1 224 16 152 152 8724 2737 0.923248 0.923248 -15.6599 -0.923248 0 0 701300. 2426.64 0.29 0.01 0.13 -1 -1 0.29 0.00419463 0.003677 20 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 4.64 vpr 63.10 MiB -1 -1 0.09 19880 1 0.02 -1 -1 33444 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64616 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 24.6 MiB 0.01 108 1090 278 634 178 63.1 MiB 0.01 0.00 1.18536 -17.031 -1.18536 1.18536 0.91 9.8709e-05 8.878e-05 0.00336964 0.00304646 26 310 14 6.65987e+06 38034 477104. 1650.88 1.90 0.0294708 0.0246302 21682 110474 -1 279 17 205 205 16408 4648 1.12359 1.12359 -19.3184 -1.12359 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.0047261 0.00412162 22 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.47 vpr 62.80 MiB -1 -1 0.10 19672 1 0.02 -1 -1 33564 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64304 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 24.3 MiB 0.01 121 1870 577 901 392 62.8 MiB 0.01 0.00 1.19636 -19.7591 -1.19636 1.19636 0.90 0.000106371 9.5701e-05 0.00502841 0.00453978 26 318 12 6.65987e+06 50712 477104. 1650.88 0.72 0.0188598 0.0161288 21682 110474 -1 302 11 170 170 9595 2763 0.992389 0.992389 -20.881 -0.992389 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.00427367 0.00379294 25 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.81 vpr 63.14 MiB -1 -1 0.10 19640 1 0.02 -1 -1 33340 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64656 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 24.6 MiB 0.01 130 1489 379 854 256 63.1 MiB 0.01 0.00 1.20736 -22.2972 -1.20736 1.20736 0.90 0.00012224 0.000110503 0.0041194 0.00374211 28 377 20 6.65987e+06 50712 500653. 1732.36 2.01 0.0380053 0.031801 21970 115934 -1 314 11 178 178 11897 3324 0.998248 0.998248 -22.9356 -0.998248 0 0 612192. 2118.31 0.27 0.01 0.11 -1 -1 0.27 0.00456224 0.00404354 28 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.71 vpr 63.24 MiB -1 -1 0.10 19748 1 0.02 -1 -1 33368 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64760 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 24.6 MiB 0.01 174 2721 690 1411 620 63.2 MiB 0.02 0.00 1.21836 -25.1455 -1.21836 1.21836 0.90 0.000138794 0.000125637 0.00667927 0.00608027 26 497 17 6.65987e+06 63390 477104. 1650.88 1.93 0.0433477 0.0366724 21682 110474 -1 428 17 239 239 26261 6885 1.23865 1.23865 -28.9047 -1.23865 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.00612801 0.00534415 31 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.66 vpr 63.25 MiB -1 -1 0.11 19496 1 0.02 -1 -1 33328 -1 -1 5 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64764 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 24.7 MiB 0.01 167 2964 885 1525 554 63.2 MiB 0.02 0.00 1.22936 -27.524 -1.22936 1.22936 0.89 0.00014353 0.000129621 0.00701392 0.00634555 32 481 21 6.65987e+06 63390 554710. 1919.41 0.84 0.025841 0.0222749 22834 132086 -1 397 15 290 290 19600 5497 1.11845 1.11845 -28.5061 -1.11845 0 0 701300. 2426.64 0.28 0.02 0.13 -1 -1 0.28 0.00601913 0.00530333 34 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.62 vpr 62.90 MiB -1 -1 0.11 19560 1 0.02 -1 -1 33672 -1 -1 5 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64412 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 24.3 MiB 0.01 182 3793 1277 1774 742 62.9 MiB 0.02 0.00 1.24036 -30.1073 -1.24036 1.24036 0.88 0.000153489 0.000138445 0.00791755 0.00716073 30 543 18 6.65987e+06 63390 526063. 1820.29 0.80 0.027847 0.0240818 22546 126617 -1 420 14 289 289 16324 4910 1.14045 1.14045 -31.8023 -1.14045 0 0 666494. 2306.21 0.28 0.02 0.13 -1 -1 0.28 0.00601444 0.00531617 37 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 5.52 vpr 63.34 MiB -1 -1 0.10 19468 1 0.02 -1 -1 33644 -1 -1 6 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64856 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 25.0 MiB 0.02 242 3827 1191 1808 828 63.3 MiB 0.02 0.00 1.25136 -33.3667 -1.25136 1.25136 0.87 0.000161223 0.000145748 0.00817176 0.00740704 32 594 16 6.65987e+06 76068 554710. 1919.41 2.71 0.0462745 0.0394637 22834 132086 -1 545 17 340 340 25670 6823 1.24965 1.24965 -36.9541 -1.24965 0 0 701300. 2426.64 0.30 0.02 0.13 -1 -1 0.30 0.00703365 0.00617827 40 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 5.62 vpr 63.27 MiB -1 -1 0.09 19676 1 0.02 -1 -1 33548 -1 -1 7 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64792 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 24.9 MiB 0.02 232 4187 1348 1837 1002 63.3 MiB 0.02 0.00 1.26236 -35.7901 -1.26236 1.26236 0.89 0.000177153 0.000160897 0.00881913 0.00802788 32 800 28 6.65987e+06 88746 554710. 1919.41 2.77 0.0571037 0.0487195 22834 132086 -1 603 13 397 397 27493 8061 1.28265 1.28265 -39.3116 -1.28265 0 0 701300. 2426.64 0.28 0.02 0.13 -1 -1 0.28 0.00637319 0.00564804 44 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.72 vpr 63.36 MiB -1 -1 0.10 19892 1 0.02 -1 -1 33844 -1 -1 7 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64884 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 25.0 MiB 0.02 288 4950 1999 2838 113 63.4 MiB 0.03 0.00 1.62267 -39.6644 -1.62267 1.62267 0.89 0.000190807 0.000173483 0.0101788 0.00926361 32 671 13 6.65987e+06 88746 554710. 1919.41 0.85 0.0326394 0.0284446 22834 132086 -1 585 18 353 353 29126 7622 1.29165 1.29165 -41.8381 -1.29165 0 0 701300. 2426.64 0.30 0.02 0.13 -1 -1 0.30 0.00825622 0.00722449 46 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 5.47 vpr 63.28 MiB -1 -1 0.10 19904 1 0.02 -1 -1 33940 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64800 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 24.9 MiB 0.02 303 5834 2357 3389 88 63.3 MiB 0.03 0.00 1.63367 -43.2049 -1.63367 1.63367 0.86 0.000204176 0.00018516 0.0119445 0.0108869 30 727 28 6.65987e+06 88746 526063. 1820.29 2.64 0.0648982 0.0555712 22546 126617 -1 595 14 318 318 19065 5260 1.09525 1.09525 -41.784 -1.09525 0 0 666494. 2306.21 0.29 0.02 0.12 -1 -1 0.29 0.00743924 0.00658908 49 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 5.65 vpr 63.38 MiB -1 -1 0.09 19836 1 0.02 -1 -1 33984 -1 -1 8 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64896 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 24.9 MiB 0.02 345 7938 3016 3746 1176 63.4 MiB 0.04 0.00 1.65567 -49.0688 -1.65567 1.65567 0.91 0.000228321 0.000207954 0.0152922 0.0139531 32 909 18 6.65987e+06 101424 554710. 1919.41 2.71 0.0821771 0.0705667 22834 132086 -1 729 25 492 492 78096 30555 1.23745 1.23745 -49.6837 -1.23745 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0121753 0.0106348 55 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 6.01 vpr 63.61 MiB -1 -1 0.10 19976 1 0.02 -1 -1 33936 -1 -1 8 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65136 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 25.1 MiB 0.02 384 7846 3176 4532 138 63.6 MiB 0.04 0.00 1.67767 -55.9313 -1.67767 1.67767 0.91 0.000244643 0.000221751 0.014328 0.0130537 36 909 11 6.65987e+06 101424 612192. 2118.31 3.09 0.0821346 0.0706422 23410 145293 -1 762 13 408 408 27360 7471 1.25945 1.25945 -53.1799 -1.25945 0 0 782063. 2706.10 0.31 0.02 0.14 -1 -1 0.31 0.0079282 0.00705491 61 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.93 vpr 63.63 MiB -1 -1 0.11 19860 1 0.02 -1 -1 33912 -1 -1 10 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65160 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 25.1 MiB 0.02 501 8876 3644 5119 113 63.6 MiB 0.05 0.00 1.69967 -63.1909 -1.69967 1.69967 0.89 0.000262626 0.000239742 0.0159733 0.0145734 32 1200 36 6.65987e+06 126780 554710. 1919.41 1.01 0.0576292 0.050334 22834 132086 -1 979 16 534 534 49382 12273 1.37965 1.37965 -63.2348 -1.37965 0 0 701300. 2426.64 0.30 0.03 0.13 -1 -1 0.30 0.0104583 0.00929169 68 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 5.03 vpr 63.64 MiB -1 -1 0.11 19940 1 0.03 -1 -1 33992 -1 -1 10 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65164 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 25.3 MiB 0.02 511 5574 1066 4247 261 63.6 MiB 0.03 0.00 2.07098 -69.2626 -2.07098 2.07098 0.89 0.000295375 0.000268901 0.0102255 0.00934759 30 1199 20 6.65987e+06 126780 526063. 1820.29 2.11 0.0860745 0.0745113 22546 126617 -1 1034 28 579 579 69244 28894 1.31245 1.31245 -68.9833 -1.31245 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.016278 0.0142635 73 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 5.92 vpr 63.86 MiB -1 -1 0.11 19808 1 0.03 -1 -1 33356 -1 -1 11 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65392 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 25.5 MiB 0.03 651 8311 1647 6236 428 63.9 MiB 0.05 0.00 2.11498 -86.6461 -2.11498 2.11498 0.89 0.00028761 0.000262811 0.0137671 0.0125971 34 1479 33 6.65987e+06 139458 585099. 2024.56 2.94 0.112758 0.0976851 23122 138558 -1 1255 14 614 614 43886 11861 1.35645 1.35645 -80.4066 -1.35645 0 0 742403. 2568.87 0.31 0.03 0.14 -1 -1 0.31 0.0112147 0.0100204 85 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.91 vpr 63.99 MiB -1 -1 0.10 19832 1 0.03 -1 -1 33832 -1 -1 13 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65524 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 25.5 MiB 0.03 868 11549 2508 8660 381 64.0 MiB 0.07 0.00 2.50829 -103.583 -2.50829 2.50829 0.87 0.00038094 0.000348589 0.0182409 0.0166921 32 1870 19 6.65987e+06 164814 554710. 1919.41 0.93 0.064973 0.0573011 22834 132086 -1 1593 16 706 706 64338 15403 1.33839 1.33839 -94.829 -1.33839 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0137768 0.0122182 97 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.25 vpr 64.88 MiB -1 -1 0.12 20340 1 0.03 -1 -1 33628 -1 -1 19 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 26.3 MiB 0.04 1535 34065 11310 19970 2785 64.9 MiB 0.17 0.00 3.38291 -182.175 -3.38291 3.38291 0.89 0.000546137 0.000498819 0.0437866 0.0400504 32 2999 48 6.65987e+06 240882 554710. 1919.41 1.08 0.138226 0.12298 22834 132086 -1 2717 15 1058 1058 103831 23767 1.66359 1.66359 -155.152 -1.66359 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0193885 0.0174469 145 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 5.16 vpr 65.37 MiB -1 -1 0.13 20396 1 0.03 -1 -1 34072 -1 -1 25 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 26.7 MiB 0.06 1995 50303 15701 29972 4630 65.4 MiB 0.24 0.01 4.25753 -271.034 -4.25753 4.25753 0.88 0.000756923 0.000694141 0.0578788 0.0529594 34 3950 36 6.65987e+06 316950 585099. 2024.56 1.82 0.236249 0.211278 23122 138558 -1 3379 19 1306 1306 128726 32047 1.98365 1.98365 -219.716 -1.98365 0 0 742403. 2568.87 0.30 0.08 0.14 -1 -1 0.30 0.0305014 0.027501 193 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 4.27 vpr 63.81 MiB -1 -1 0.10 19748 1 0.02 -1 -1 33272 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65344 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 25.4 MiB 0.02 35 142 65 72 5 63.8 MiB 0.00 0.00 0.712895 -7.85699 -0.712895 0.712895 0.89 4.722e-05 4.1811e-05 0.000791413 0.000709217 18 88 15 6.95648e+06 14475.7 376052. 1301.22 1.62 0.0153221 0.0125019 22882 88689 -1 83 6 30 30 1836 608 0.74674 0.74674 -8.48094 -0.74674 0 0 470940. 1629.55 0.19 0.01 0.09 -1 -1 0.19 0.00212196 0.00195282 5 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 3.30 vpr 63.80 MiB -1 -1 0.10 19808 1 0.02 -1 -1 33708 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65328 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 25.3 MiB 0.02 31 339 89 221 29 63.8 MiB 0.01 0.00 0.583992 -8.96727 -0.583992 0.583992 0.92 6.417e-05 5.7453e-05 0.0015398 0.00138572 18 113 10 6.95648e+06 14475.7 376052. 1301.22 0.56 0.00989791 0.00836346 22882 88689 -1 104 15 86 86 5291 1783 0.74674 0.74674 -9.62957 -0.74674 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00298455 0.0026416 7 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 4.42 vpr 63.93 MiB -1 -1 0.10 19708 1 0.02 -1 -1 33580 -1 -1 1 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65464 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 25.4 MiB 0.03 45 386 75 296 15 63.9 MiB 0.01 0.00 0.701895 -11.7042 -0.701895 0.701895 0.92 7.672e-05 6.8847e-05 0.00167611 0.0015169 20 173 9 6.95648e+06 14475.7 414966. 1435.87 1.66 0.00935896 0.00799138 23170 95770 -1 136 9 68 68 4041 1235 0.709292 0.709292 -12.5375 -0.709292 0 0 503264. 1741.40 0.22 0.01 0.10 -1 -1 0.22 0.00303201 0.00270605 8 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 4.30 vpr 63.91 MiB -1 -1 0.08 19544 1 0.02 -1 -1 33368 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65444 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 25.4 MiB 0.03 102 442 97 336 9 63.9 MiB 0.01 0.00 0.834592 -15.6382 -0.834592 0.834592 0.92 8.9911e-05 8.0754e-05 0.00172468 0.00156196 14 254 10 6.95648e+06 28951.4 292583. 1012.40 1.60 0.019492 0.0162775 22018 70521 -1 241 10 99 99 5070 1754 0.927732 0.927732 -18.1833 -0.927732 0 0 376052. 1301.22 0.16 0.01 0.07 -1 -1 0.16 0.00313668 0.00282445 10 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 4.70 vpr 64.03 MiB -1 -1 0.10 19824 1 0.02 -1 -1 33752 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65568 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 25.5 MiB 0.04 130 961 301 532 128 64.0 MiB 0.01 0.00 0.881906 -18.7043 -0.881906 0.881906 0.92 9.612e-05 8.5783e-05 0.00315095 0.00283813 26 276 13 6.95648e+06 28951.4 503264. 1741.40 1.84 0.0302063 0.0252273 24322 120374 -1 251 14 116 116 7345 2181 0.852632 0.852632 -19.0638 -0.852632 0 0 618332. 2139.56 0.26 0.01 0.12 -1 -1 0.26 0.00430406 0.00379059 11 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 4.86 vpr 63.71 MiB -1 -1 0.10 19608 1 0.02 -1 -1 33664 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65236 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 25.2 MiB 0.04 257 910 229 586 95 63.7 MiB 0.01 0.00 0.852632 -22.7137 -0.852632 0.852632 0.94 0.000106953 9.6922e-05 0.00297725 0.00271904 26 481 15 6.95648e+06 28951.4 503264. 1741.40 2.02 0.0257943 0.0215932 24322 120374 -1 456 15 194 194 15045 3456 0.949732 0.949732 -25.2621 -0.949732 0 0 618332. 2139.56 0.25 0.01 0.08 -1 -1 0.25 0.0049193 0.00432391 13 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 5.66 vpr 63.85 MiB -1 -1 0.10 19540 1 0.02 -1 -1 33504 -1 -1 2 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65380 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 25.3 MiB 0.04 130 1471 299 1132 40 63.8 MiB 0.01 0.00 1.04807 -22.9622 -1.04807 1.04807 0.92 0.000123709 0.000111415 0.00443891 0.00401812 32 391 12 6.95648e+06 28951.4 586450. 2029.24 2.75 0.0296558 0.0251148 25474 144626 -1 350 12 174 174 11501 3459 1.01093 1.01093 -25.4311 -1.01093 0 0 744469. 2576.02 0.29 0.01 0.14 -1 -1 0.29 0.00474861 0.00422204 14 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 5.38 vpr 64.14 MiB -1 -1 0.09 19704 1 0.02 -1 -1 33624 -1 -1 2 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65680 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 25.6 MiB 0.04 132 1464 547 909 8 64.1 MiB 0.01 0.00 0.896632 -24.9691 -0.896632 0.896632 0.93 0.00013025 0.00011742 0.00422334 0.00381474 32 447 35 6.95648e+06 28951.4 586450. 2029.24 2.41 0.0532754 0.0444342 25474 144626 -1 365 13 268 268 18686 5473 1.16733 1.16733 -26.3322 -1.16733 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00527937 0.00467253 16 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 5.44 vpr 63.98 MiB -1 -1 0.10 19536 1 0.02 -1 -1 33352 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65520 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 25.4 MiB 0.04 156 1235 276 946 13 64.0 MiB 0.01 0.00 0.879432 -27.3624 -0.879432 0.879432 0.92 0.000141762 0.000128098 0.00351223 0.00319437 30 551 16 6.95648e+06 43427 556674. 1926.21 2.53 0.0432829 0.0363771 25186 138497 -1 446 15 316 316 20563 6066 1.11423 1.11423 -32.014 -1.11423 0 0 706193. 2443.58 0.30 0.02 0.13 -1 -1 0.30 0.00603774 0.0053429 17 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 5.10 vpr 63.91 MiB -1 -1 0.10 19588 1 0.02 -1 -1 33356 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65440 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 25.6 MiB 0.04 171 1581 310 1236 35 63.9 MiB 0.01 0.00 0.918632 -29.9024 -0.918632 0.918632 0.90 0.000154624 0.0001401 0.00423029 0.00385757 26 673 21 6.95648e+06 43427 503264. 1741.40 2.22 0.0484546 0.0408737 24322 120374 -1 539 13 337 337 23477 7010 1.26153 1.26153 -37.4109 -1.26153 0 0 618332. 2139.56 0.26 0.02 0.11 -1 -1 0.26 0.00583195 0.00518571 19 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 4.29 vpr 64.12 MiB -1 -1 0.11 19656 1 0.02 -1 -1 33308 -1 -1 3 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65664 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 25.8 MiB 0.04 436 1584 370 1078 136 64.1 MiB 0.01 0.00 0.951632 -37.9619 -0.951632 0.951632 0.92 0.000171271 0.000155854 0.00419019 0.00384335 34 885 23 6.95648e+06 43427 618332. 2139.56 1.33 0.0403286 0.0342239 25762 151098 -1 806 17 347 347 36876 7808 1.30553 1.30553 -44.5658 -1.30553 0 0 787024. 2723.27 0.30 0.02 0.14 -1 -1 0.30 0.00730527 0.0064351 20 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 4.39 vpr 64.26 MiB -1 -1 0.10 19416 1 0.02 -1 -1 33476 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 25.9 MiB 0.03 474 4050 1146 2192 712 64.3 MiB 0.02 0.00 0.951632 -40.2713 -0.951632 0.951632 0.92 0.00017651 0.000160588 0.00896853 0.00816494 34 959 25 6.95648e+06 57902.7 618332. 2139.56 1.42 0.0479897 0.0411236 25762 151098 -1 873 14 421 421 42469 9106 1.20223 1.20223 -46.6538 -1.20223 0 0 787024. 2723.27 0.30 0.02 0.15 -1 -1 0.30 0.00643329 0.00569992 23 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 4.46 vpr 63.96 MiB -1 -1 0.09 19664 1 0.02 -1 -1 33944 -1 -1 3 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65492 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 25.6 MiB 0.05 265 3730 1483 2213 34 64.0 MiB 0.02 0.00 1.33396 -40.6409 -1.33396 1.33396 0.91 0.000187394 0.000170498 0.00873695 0.00796807 34 813 28 6.95648e+06 43427 618332. 2139.56 1.45 0.0512109 0.0438108 25762 151098 -1 684 20 497 497 55213 14342 1.29733 1.29733 -44.5761 -1.29733 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.00901788 0.00790198 24 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 4.49 vpr 64.23 MiB -1 -1 0.10 19544 1 0.02 -1 -1 33696 -1 -1 4 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 25.8 MiB 0.07 279 4848 1968 2843 37 64.2 MiB 0.03 0.00 1.34496 -43.5864 -1.34496 1.34496 0.92 0.000205954 0.000186819 0.0106433 0.00968193 34 923 38 6.95648e+06 57902.7 618332. 2139.56 1.45 0.0592112 0.050606 25762 151098 -1 716 17 477 477 43571 11025 1.25333 1.25333 -47.3958 -1.25333 0 0 787024. 2723.27 0.32 0.03 0.14 -1 -1 0.32 0.0087412 0.00770493 25 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 4.51 vpr 64.24 MiB -1 -1 0.10 19732 1 0.02 -1 -1 33764 -1 -1 4 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65784 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 25.7 MiB 0.09 365 6144 2547 3561 36 64.2 MiB 0.04 0.00 1.36696 -50.3211 -1.36696 1.36696 0.91 0.000230973 0.000210196 0.013117 0.0119685 34 914 16 6.95648e+06 57902.7 618332. 2139.56 1.47 0.0482411 0.0419279 25762 151098 -1 827 19 499 499 56308 12309 1.22703 1.22703 -54.4758 -1.22703 0 0 787024. 2723.27 0.30 0.03 0.15 -1 -1 0.30 0.0103702 0.00910386 28 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 6.84 vpr 64.16 MiB -1 -1 0.10 19732 1 0.02 -1 -1 33908 -1 -1 4 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 25.7 MiB 0.10 353 6716 2777 3889 50 64.2 MiB 0.04 0.00 1.38896 -56.1965 -1.38896 1.38896 0.92 0.000239166 0.000216521 0.0134078 0.0122153 36 1026 41 6.95648e+06 57902.7 648988. 2245.63 3.74 0.0913198 0.0784395 26050 158493 -1 850 18 534 534 49942 12071 1.39633 1.39633 -62.2585 -1.39633 0 0 828058. 2865.25 0.32 0.03 0.15 -1 -1 0.32 0.0106867 0.00945895 31 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 4.97 vpr 64.41 MiB -1 -1 0.09 19840 1 0.02 -1 -1 33968 -1 -1 5 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 45 23 160 161 1 108 73 17 17 289 -1 unnamed_device 25.9 MiB 0.10 426 8889 3770 5070 49 64.4 MiB 0.04 0.00 1.41096 -62.769 -1.41096 1.41096 0.92 0.000262664 0.000238837 0.01594 0.0145213 36 1123 25 6.95648e+06 72378.4 648988. 2245.63 1.88 0.0756382 0.0656599 26050 158493 -1 864 19 604 604 58691 13415 1.35233 1.35233 -65.2583 -1.35233 0 0 828058. 2865.25 0.32 0.03 0.15 -1 -1 0.32 0.0119563 0.0105941 34 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 5.21 vpr 64.57 MiB -1 -1 0.11 19976 1 0.03 -1 -1 33852 -1 -1 5 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 26.0 MiB 0.10 449 10895 4547 6264 84 64.6 MiB 0.06 0.00 1.43296 -68.3754 -1.43296 1.43296 0.93 0.000283575 0.000257811 0.0207575 0.0189723 38 1154 34 6.95648e+06 72378.4 678818. 2348.85 2.00 0.0927262 0.0812127 26626 170182 -1 983 17 666 666 64300 15447 1.41833 1.41833 -73.0392 -1.41833 0 0 902133. 3121.57 0.35 0.04 0.16 -1 -1 0.35 0.01197 0.0106297 37 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 7.66 vpr 64.66 MiB -1 -1 0.11 19800 1 0.02 -1 -1 33592 -1 -1 6 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 26.1 MiB 0.08 552 14789 6414 8303 72 64.7 MiB 0.07 0.00 1.47696 -82.0834 -1.47696 1.47696 0.92 0.000312229 0.000286651 0.025195 0.0229503 46 1430 36 6.95648e+06 86854.1 828058. 2865.25 4.38 0.15742 0.137121 28066 200906 -1 1169 18 809 809 80510 19780 1.48433 1.48433 -86.6209 -1.48433 0 0 1.01997e+06 3529.29 0.39 0.04 0.20 -1 -1 0.39 0.0134001 0.0119226 43 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 5.15 vpr 64.85 MiB -1 -1 0.10 19864 1 0.03 -1 -1 33772 -1 -1 7 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 26.4 MiB 0.09 753 15419 6653 8659 107 64.8 MiB 0.08 0.00 1.88129 -97.4586 -1.88129 1.88129 0.92 0.000384935 0.000351104 0.0256366 0.0234192 40 1765 33 6.95648e+06 101330 706193. 2443.58 1.94 0.113125 0.0989798 26914 176310 -1 1469 17 868 868 116248 27026 1.43363 1.43363 -98.4886 -1.43363 0 0 926341. 3205.33 0.36 0.05 0.18 -1 -1 0.36 0.0153222 0.0136381 49 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 6.36 vpr 65.34 MiB -1 -1 0.12 20000 1 0.03 -1 -1 34016 -1 -1 10 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66904 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 26.6 MiB 0.10 1496 27810 8354 17704 1752 65.3 MiB 0.13 0.00 2.41762 -167.817 -2.41762 2.41762 0.92 0.000572479 0.000522909 0.0385511 0.0351968 48 3131 48 6.95648e+06 144757 865456. 2994.66 2.87 0.186983 0.165593 28354 207349 -1 2706 21 1149 1149 233785 50932 1.72383 1.72383 -165.664 -1.72383 0 0 1.05005e+06 3633.38 0.41 0.09 0.21 -1 -1 0.41 0.0255779 0.0228793 73 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 10.17 vpr 66.20 MiB -1 -1 0.12 20332 1 0.03 -1 -1 34084 -1 -1 13 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67792 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 27.4 MiB 0.12 2187 38763 11991 23991 2781 66.2 MiB 0.19 0.01 2.95395 -243.557 -2.95395 2.95395 0.89 0.000752432 0.000689777 0.0499989 0.0458212 62 3723 20 6.95648e+06 188184 1.05005e+06 3633.38 6.46 0.316247 0.281724 30946 263737 -1 3363 18 1461 1461 187618 35225 1.73803 1.73803 -214.363 -1.73803 0 0 1.30136e+06 4502.97 0.48 0.08 0.27 -1 -1 0.48 0.0302756 0.0273943 97 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 3.05 vpr 63.66 MiB -1 -1 0.09 19536 1 0.02 -1 -1 33500 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65188 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 25.2 MiB 0.01 38 142 63 74 5 63.7 MiB 0.00 0.00 0.815432 -8.51669 -0.815432 0.815432 0.89 5.4419e-05 4.8471e-05 0.000855085 0.000765866 14 105 9 6.99608e+06 14715.7 292583. 1012.40 0.44 0.00346012 0.00308775 22018 70521 -1 87 5 26 26 1498 534 0.87204 0.87204 -8.99744 -0.87204 0 0 376052. 1301.22 0.16 0.01 0.07 -1 -1 0.16 0.00196072 0.00181392 5 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 4.64 vpr 63.43 MiB -1 -1 0.10 19440 1 0.02 -1 -1 33544 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64952 9 5 34 35 1 17 15 17 17 289 -1 unnamed_device 25.0 MiB 0.01 35 375 107 237 31 63.4 MiB 0.01 0.00 0.712895 -9.56286 -0.712895 0.712895 0.89 6.2666e-05 5.6059e-05 0.00165658 0.00148516 22 124 12 6.99608e+06 14715.7 443629. 1535.05 1.93 0.0181867 0.014992 23458 102101 -1 87 6 38 38 1755 619 0.74674 0.74674 -9.34806 -0.74674 0 0 531479. 1839.03 0.23 0.01 0.10 -1 -1 0.23 0.00239912 0.00219471 7 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 4.35 vpr 63.69 MiB -1 -1 0.10 19600 1 0.02 -1 -1 33424 -1 -1 1 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65220 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 25.1 MiB 0.01 44 409 94 303 12 63.7 MiB 0.00 0.00 0.837432 -12.9697 -0.837432 0.837432 0.92 7.8263e-05 7.0751e-05 0.00171149 0.00154987 26 147 10 6.99608e+06 14715.7 503264. 1741.40 1.54 0.0196637 0.0163264 24322 120374 -1 145 5 50 50 3581 1091 0.837432 0.837432 -14.3301 -0.837432 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00245403 0.00224204 8 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 4.62 vpr 63.70 MiB -1 -1 0.10 19644 1 0.02 -1 -1 33580 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65232 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 25.2 MiB 0.01 105 502 118 371 13 63.7 MiB 0.01 0.00 0.87204 -15.6049 -0.87204 0.87204 0.92 8.8521e-05 7.8422e-05 0.00190989 0.00172291 26 223 11 6.99608e+06 29431.4 503264. 1741.40 1.79 0.0230082 0.0191272 24322 120374 -1 213 6 57 57 3676 1011 0.99734 0.99734 -16.2101 -0.99734 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.0026128 0.00237992 10 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 3.59 vpr 63.75 MiB -1 -1 0.09 19568 1 0.02 -1 -1 33724 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65280 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 25.3 MiB 0.01 221 889 226 585 78 63.8 MiB 0.01 0.00 0.859432 -20.3506 -0.859432 0.859432 0.93 9.6431e-05 8.7207e-05 0.0029756 0.0026949 26 397 12 6.99608e+06 29431.4 503264. 1741.40 0.74 0.0153267 0.0130701 24322 120374 -1 368 9 105 105 10800 2361 0.87204 0.87204 -22.2128 -0.87204 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00341109 0.00305689 11 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 4.90 vpr 63.80 MiB -1 -1 0.09 19636 1 0.02 -1 -1 33644 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65336 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 25.3 MiB 0.01 254 910 227 603 80 63.8 MiB 0.01 0.00 0.835432 -22.1941 -0.835432 0.835432 0.92 0.000106295 9.5925e-05 0.00292783 0.00266375 26 488 14 6.99608e+06 29431.4 503264. 1741.40 2.08 0.0252854 0.0211642 24322 120374 -1 456 13 159 159 15996 3757 1.05303 1.05303 -25.2756 -1.05303 0 0 618332. 2139.56 0.26 0.01 0.11 -1 -1 0.26 0.00470058 0.00412398 13 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 3.69 vpr 63.88 MiB -1 -1 0.10 19436 1 0.02 -1 -1 33656 -1 -1 2 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65408 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 25.3 MiB 0.01 127 1327 280 1001 46 63.9 MiB 0.01 0.00 0.99734 -22.7448 -0.99734 0.99734 0.92 0.000102382 9.0931e-05 0.00364914 0.00328256 30 407 16 6.99608e+06 29431.4 556674. 1926.21 0.84 0.0192024 0.016373 25186 138497 -1 334 18 219 219 12513 3719 0.968879 0.968879 -24.6339 -0.968879 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.0054396 0.00474949 14 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 4.85 vpr 63.62 MiB -1 -1 0.09 19548 1 0.02 -1 -1 33720 -1 -1 2 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65144 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 25.0 MiB 0.01 126 1574 441 793 340 63.6 MiB 0.01 0.00 0.857432 -24.0154 -0.857432 0.857432 0.94 0.000134399 0.000121811 0.00452806 0.00411509 30 434 27 6.99608e+06 29431.4 556674. 1926.21 1.94 0.0420514 0.0352497 25186 138497 -1 351 23 370 370 16172 5279 0.982732 0.982732 -25.8412 -0.982732 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00720402 0.00622013 16 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 4.73 vpr 63.80 MiB -1 -1 0.09 19468 1 0.02 -1 -1 33444 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65336 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 25.2 MiB 0.02 183 1550 351 1152 47 63.8 MiB 0.01 0.00 0.99734 -28.2495 -0.99734 0.99734 0.93 0.000151455 0.000127293 0.00418226 0.00377875 30 528 14 6.99608e+06 44147 556674. 1926.21 1.80 0.0379492 0.0320619 25186 138497 -1 439 11 227 227 13305 3948 1.08603 1.08603 -31.0258 -1.08603 0 0 706193. 2443.58 0.30 0.01 0.13 -1 -1 0.30 0.00509381 0.00454639 17 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 5.49 vpr 63.81 MiB -1 -1 0.10 19604 1 0.02 -1 -1 33560 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65340 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 25.2 MiB 0.02 204 1721 329 1376 16 63.8 MiB 0.01 0.00 0.890432 -30.9922 -0.890432 0.890432 0.89 0.000147547 0.000132853 0.00454376 0.00411778 30 568 17 6.99608e+06 44147 556674. 1926.21 2.62 0.0472861 0.039886 25186 138497 -1 444 15 282 282 18370 4786 0.984679 0.984679 -32.4857 -0.984679 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00619035 0.00543248 19 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 4.30 vpr 63.71 MiB -1 -1 0.10 19812 1 0.02 -1 -1 33680 -1 -1 3 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65236 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 25.1 MiB 0.02 436 1892 450 1259 183 63.7 MiB 0.01 0.00 0.912432 -36.8018 -0.912432 0.912432 0.92 0.000176032 0.000160634 0.00482704 0.00441405 34 871 31 6.99608e+06 44147 618332. 2139.56 1.37 0.0435822 0.0368844 25762 151098 -1 817 14 336 336 38351 7943 1.13198 1.13198 -42.3609 -1.13198 0 0 787024. 2723.27 0.30 0.02 0.14 -1 -1 0.30 0.00606592 0.00536456 20 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 4.44 vpr 63.91 MiB -1 -1 0.09 19608 1 0.02 -1 -1 33556 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65448 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 25.6 MiB 0.02 450 1875 444 1300 131 63.9 MiB 0.01 0.00 0.923432 -40.3253 -0.923432 0.923432 0.92 0.000180277 0.000163495 0.00461299 0.00422003 34 954 25 6.99608e+06 58862.7 618332. 2139.56 1.46 0.044531 0.0378702 25762 151098 -1 848 13 411 411 49168 9894 1.10803 1.10803 -44.6937 -1.10803 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00651785 0.00578674 23 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 6.04 vpr 64.00 MiB -1 -1 0.09 19676 1 0.02 -1 -1 33604 -1 -1 3 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65540 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 25.6 MiB 0.02 264 3730 1488 2207 35 64.0 MiB 0.02 0.00 1.29476 -39.8553 -1.29476 1.29476 0.92 0.00019029 0.0001728 0.00858738 0.00781918 34 830 27 6.99608e+06 44147 618332. 2139.56 3.06 0.0577929 0.0493066 25762 151098 -1 649 16 443 443 44830 11455 1.24233 1.24233 -43.4292 -1.24233 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00776076 0.00684006 24 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 4.39 vpr 63.82 MiB -1 -1 0.10 19776 1 0.02 -1 -1 34040 -1 -1 4 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65352 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 25.4 MiB 0.02 281 4848 2013 2797 38 63.8 MiB 0.03 0.00 1.30576 -42.5699 -1.30576 1.30576 0.91 0.00021795 0.000198641 0.0106027 0.00966231 34 847 23 6.99608e+06 58862.7 618332. 2139.56 1.39 0.05343 0.0457506 25762 151098 -1 680 17 456 456 48100 11874 1.30833 1.30833 -48.5698 -1.30833 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.00857701 0.00753958 25 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 4.52 vpr 64.17 MiB -1 -1 0.11 19880 1 0.02 -1 -1 34056 -1 -1 4 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65708 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 25.8 MiB 0.02 364 6027 2460 3523 44 64.2 MiB 0.03 0.00 1.33876 -49.9999 -1.33876 1.33876 0.91 0.000230907 0.000209332 0.0127747 0.0116228 34 980 21 6.99608e+06 58862.7 618332. 2139.56 1.52 0.060715 0.0522377 25762 151098 -1 784 15 444 444 47792 10699 1.25718 1.25718 -53.9315 -1.25718 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.00869937 0.00772583 28 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 4.52 vpr 64.25 MiB -1 -1 0.09 19836 1 0.02 -1 -1 33892 -1 -1 4 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65788 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 25.8 MiB 0.03 346 6716 2738 3934 44 64.2 MiB 0.04 0.00 1.34976 -55.1748 -1.34976 1.34976 0.90 0.000246274 0.00022435 0.0135315 0.0123474 34 1160 49 6.99608e+06 58862.7 618332. 2139.56 1.58 0.0757723 0.0652418 25762 151098 -1 857 16 510 510 51385 11794 1.25718 1.25718 -58.5102 -1.25718 0 0 787024. 2723.27 0.31 0.03 0.14 -1 -1 0.31 0.00987005 0.00875855 31 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 6.45 vpr 64.28 MiB -1 -1 0.11 19864 1 0.02 -1 -1 33952 -1 -1 5 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65824 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 25.8 MiB 0.03 396 8889 3651 5188 50 64.3 MiB 0.05 0.00 1.37176 -60.7615 -1.37176 1.37176 0.93 0.000274854 0.000250777 0.0173546 0.0158532 36 1206 32 6.99608e+06 73578.4 648988. 2245.63 3.37 0.107921 0.0932114 26050 158493 -1 910 20 565 565 82385 22392 1.85353 1.85353 -73.992 -1.85353 0 0 828058. 2865.25 0.32 0.04 0.16 -1 -1 0.32 0.0124746 0.0110191 34 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 7.12 vpr 64.45 MiB -1 -1 0.11 19660 1 0.02 -1 -1 33900 -1 -1 5 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65992 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 25.9 MiB 0.03 445 10895 4568 6256 71 64.4 MiB 0.06 0.00 1.39376 -67.8862 -1.39376 1.39376 0.92 0.00029629 0.000269674 0.0202316 0.018472 38 1308 26 6.99608e+06 73578.4 678818. 2348.85 4.04 0.114493 0.0991909 26626 170182 -1 975 16 636 636 50572 12478 1.27103 1.27103 -69.3712 -1.27103 0 0 902133. 3121.57 0.34 0.03 0.16 -1 -1 0.34 0.0113973 0.0101612 37 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 9.20 vpr 64.27 MiB -1 -1 0.11 19920 1 0.03 -1 -1 33740 -1 -1 6 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65808 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 25.7 MiB 0.04 635 14168 6072 8041 55 64.3 MiB 0.06 0.00 1.43776 -80.6872 -1.43776 1.43776 0.90 0.000324779 0.000294129 0.0224158 0.0204149 38 1507 22 6.99608e+06 88294.1 678818. 2348.85 6.07 0.158912 0.13775 26626 170182 -1 1188 20 693 693 57031 13881 1.29303 1.29303 -80.6956 -1.29303 0 0 902133. 3121.57 0.35 0.04 0.17 -1 -1 0.35 0.0146591 0.0129765 43 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 7.40 vpr 64.48 MiB -1 -1 0.11 19812 1 0.03 -1 -1 33676 -1 -1 7 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 26.1 MiB 0.04 752 15419 6606 8671 142 64.5 MiB 0.08 0.00 1.85309 -96.2187 -1.85309 1.85309 0.93 0.000389307 0.000348527 0.0258503 0.0235965 40 1653 26 6.99608e+06 103010 706193. 2443.58 4.23 0.143454 0.125019 26914 176310 -1 1419 15 778 778 81665 18423 1.52633 1.52633 -101 -1.52633 0 0 926341. 3205.33 0.34 0.04 0.17 -1 -1 0.34 0.0137942 0.0123104 49 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 9.45 vpr 65.37 MiB -1 -1 0.12 20328 1 0.03 -1 -1 33832 -1 -1 10 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 26.6 MiB 0.05 1468 27810 8060 18307 1443 65.4 MiB 0.13 0.00 2.38942 -165.278 -2.38942 2.38942 0.91 0.00054444 0.000497823 0.0396118 0.0363077 48 2904 38 6.99608e+06 147157 865456. 2994.66 5.97 0.270486 0.238812 28354 207349 -1 2578 27 1313 1313 404571 187954 1.52003 1.52003 -157.689 -1.52003 0 0 1.05005e+06 3633.38 0.40 0.15 0.20 -1 -1 0.40 0.0314687 0.028059 73 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 6.58 vpr 66.07 MiB -1 -1 0.13 20484 1 0.03 -1 -1 34092 -1 -1 13 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67652 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 27.3 MiB 0.07 2210 38763 12390 23782 2591 66.1 MiB 0.17 0.00 2.92575 -242.6 -2.92575 2.92575 0.90 0.000772482 0.000708307 0.0474759 0.04345 50 3883 38 6.99608e+06 191304 902133. 3121.57 3.11 0.230821 0.206324 28642 213929 -1 3684 16 1457 1457 205560 42967 1.81463 1.81463 -221.66 -1.81463 0 0 1.08113e+06 3740.92 0.42 0.09 0.19 -1 -1 0.42 0.0270829 0.0245616 97 -1 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_003bits.v common 3.24 vpr 62.86 MiB -1 -1 0.09 19548 1 0.06 -1 -1 35476 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64364 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 24.5 MiB 0.01 84 103 37 64 2 62.9 MiB 0.00 0.00 0.77095 -8.74779 -0.77095 0.77095 0.90 4.3829e-05 3.8311e-05 0.000632852 0.000562417 18 137 6 6.79088e+06 13472 376052. 1301.22 0.52 0.00281844 0.00254676 22222 88205 -1 138 8 40 40 3761 958 0.834592 0.834592 -9.43991 -0.834592 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00222987 0.00203063 6 4 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_004bits.v common 4.05 vpr 62.87 MiB -1 -1 0.09 19772 2 0.06 -1 -1 35624 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64380 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 24.4 MiB 0.01 35 357 92 226 39 62.9 MiB 0.01 0.00 0.883748 -9.933 -0.883748 0.883748 0.93 5.9008e-05 5.2556e-05 0.00154131 0.00138325 18 137 12 6.79088e+06 13472 376052. 1301.22 1.29 0.00715763 0.00614737 22222 88205 -1 113 7 46 46 2303 814 0.883748 0.883748 -10.8459 -0.883748 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00241532 0.00218541 8 6 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_005bits.v common 3.97 vpr 62.94 MiB -1 -1 0.10 19596 2 0.06 -1 -1 35804 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64448 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 24.5 MiB 0.01 64 419 103 298 18 62.9 MiB 0.01 0.00 1.02368 -13.4613 -1.02368 1.02368 0.92 7.7214e-05 6.9144e-05 0.00168073 0.0015107 18 183 9 6.79088e+06 26944 376052. 1301.22 1.22 0.00725036 0.00628649 22222 88205 -1 175 6 65 73 3073 1098 1.02368 1.02368 -14.8017 -1.02368 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00261082 0.00237408 10 7 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_006bits.v common 5.44 vpr 63.04 MiB -1 -1 0.10 19952 3 0.06 -1 -1 35520 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64556 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 24.6 MiB 0.01 76 532 100 418 14 63.0 MiB 0.01 0.00 1.14898 -15.9034 -1.14898 1.14898 0.93 8.8793e-05 7.9489e-05 0.00205104 0.00185051 30 236 11 6.79088e+06 26944 556674. 1926.21 2.52 0.0237554 0.0197041 24526 138013 -1 187 7 66 72 3029 945 1.05944 1.05944 -16.3296 -1.05944 0 0 706193. 2443.58 0.30 0.01 0.13 -1 -1 0.30 0.00301096 0.00272878 11 9 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_007bits.v common 3.56 vpr 62.98 MiB -1 -1 0.10 19616 3 0.06 -1 -1 35348 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64496 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 24.5 MiB 0.01 104 1285 405 745 135 63.0 MiB 0.01 0.00 1.18818 -18.8265 -1.18818 1.18818 0.91 9.192e-05 8.2581e-05 0.00383608 0.00346472 26 333 14 6.79088e+06 26944 503264. 1741.40 0.72 0.0168106 0.0143657 23662 119890 -1 257 11 126 143 7630 2459 1.13784 1.13784 -19.7718 -1.13784 0 0 618332. 2139.56 0.24 0.01 0.12 -1 -1 0.24 0.00373373 0.00332241 13 10 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_008bits.v common 4.64 vpr 63.13 MiB -1 -1 0.11 19452 3 0.06 -1 -1 35340 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64644 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 24.6 MiB 0.04 140 1036 259 742 35 63.1 MiB 0.01 0.00 1.52493 -22.992 -1.52493 1.52493 0.92 0.000119696 0.000107449 0.00362929 0.00330773 22 558 14 6.79088e+06 26944 443629. 1535.05 1.82 0.0262778 0.022181 22798 101617 -1 396 10 193 215 10432 3262 1.27433 1.27433 -24.6925 -1.27433 0 0 531479. 1839.03 0.22 0.01 0.10 -1 -1 0.22 0.00411365 0.00368632 16 14 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_009bits.v common 3.72 vpr 63.30 MiB -1 -1 0.10 19392 4 0.07 -1 -1 35556 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64816 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 24.8 MiB 0.05 146 1882 579 931 372 63.3 MiB 0.01 0.00 1.31348 -24.6536 -1.31348 1.31348 0.88 0.000106174 9.5642e-05 0.00487996 0.00441828 28 479 37 6.79088e+06 40416 531479. 1839.03 0.84 0.0259084 0.0219921 23950 126010 -1 377 12 208 213 13543 4049 1.34919 1.34919 -26.3046 -1.34919 0 0 648988. 2245.63 0.28 0.01 0.12 -1 -1 0.28 0.00490161 0.0043438 17 13 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_010bits.v common 3.94 vpr 63.23 MiB -1 -1 0.10 19672 4 0.07 -1 -1 35712 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64744 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 24.7 MiB 0.20 300 2030 503 1451 76 63.2 MiB 0.02 0.00 1.85398 -35.071 -1.85398 1.85398 0.94 0.000146119 0.000131415 0.00601448 0.00547059 28 657 18 6.79088e+06 40416 531479. 1839.03 0.83 0.0251114 0.0215748 23950 126010 -1 617 13 210 249 23281 5467 1.60338 1.60338 -35.1153 -1.60338 0 0 648988. 2245.63 0.26 0.02 0.12 -1 -1 0.26 0.00548026 0.00485703 21 17 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_011bits.v common 5.04 vpr 63.16 MiB -1 -1 0.10 19544 5 0.06 -1 -1 35652 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64680 23 12 76 88 1 61 38 17 17 289 -1 unnamed_device 24.6 MiB 0.11 166 1865 679 1174 12 63.2 MiB 0.01 0.00 1.90432 -33.8065 -1.90432 1.90432 0.92 0.000162759 0.000150229 0.00494476 0.00448798 30 577 30 6.79088e+06 40416 556674. 1926.21 2.08 0.0480968 0.0406835 24526 138013 -1 446 11 322 376 14998 5053 1.72519 1.72519 -33.4029 -1.72519 0 0 706193. 2443.58 0.28 0.01 0.13 -1 -1 0.28 0.0055083 0.00494041 22 19 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_012bits.v common 4.93 vpr 63.43 MiB -1 -1 0.10 19616 5 0.06 -1 -1 35288 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64952 25 13 83 96 1 66 41 17 17 289 -1 unnamed_device 24.8 MiB 0.19 220 1581 312 1246 23 63.4 MiB 0.01 0.00 1.86512 -39.3139 -1.86512 1.86512 0.90 0.000152172 0.000137641 0.00448051 0.00406681 30 646 19 6.79088e+06 40416 556674. 1926.21 1.83 0.043588 0.036785 24526 138013 -1 552 11 279 329 17708 5108 1.72868 1.72868 -39.1753 -1.72868 0 0 706193. 2443.58 0.29 0.01 0.12 -1 -1 0.29 0.00546811 0.00488018 23 21 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_013bits.v common 4.60 vpr 63.14 MiB -1 -1 0.11 19884 5 0.07 -1 -1 35840 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64656 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 24.6 MiB 0.32 364 3005 1063 1662 280 63.1 MiB 0.02 0.00 2.15497 -46.6453 -2.15497 2.15497 0.90 0.000188237 0.000172023 0.0081593 0.0074387 34 795 13 6.79088e+06 53888 618332. 2139.56 1.30 0.0463757 0.0397243 25102 150614 -1 712 11 254 334 23124 5676 1.90093 1.90093 -45.172 -1.90093 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00647396 0.00580877 27 24 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_014bits.v common 4.59 vpr 63.57 MiB -1 -1 0.11 20148 6 0.07 -1 -1 35500 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65100 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 25.2 MiB 0.24 255 3963 1479 2060 424 63.6 MiB 0.03 0.00 2.36642 -47.9969 -2.36642 2.36642 0.91 0.000202165 0.000183444 0.0100788 0.00916818 34 793 20 6.79088e+06 53888 618332. 2139.56 1.39 0.042369 0.0365279 25102 150614 -1 609 13 313 372 29455 7884 2.31609 2.31609 -47.9355 -2.31609 0 0 787024. 2723.27 0.31 0.02 0.15 -1 -1 0.31 0.00732064 0.00650832 28 23 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_015bits.v common 4.73 vpr 63.23 MiB -1 -1 0.10 19940 6 0.07 -1 -1 35784 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64748 31 16 104 120 1 82 52 17 17 289 -1 unnamed_device 24.9 MiB 0.43 458 5484 1992 2787 705 63.2 MiB 0.03 0.00 2.44482 -57.1239 -2.44482 2.44482 0.90 0.000196946 0.000177536 0.0117818 0.0106271 34 917 21 6.79088e+06 67360 618332. 2139.56 1.33 0.0568954 0.0489238 25102 150614 -1 828 10 282 394 26257 6166 2.14389 2.14389 -55.1703 -2.14389 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00701928 0.00631098 31 27 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_016bits.v common 6.83 vpr 63.34 MiB -1 -1 0.11 19824 7 0.07 -1 -1 35784 -1 -1 5 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64856 33 17 112 129 1 88 55 17 17 289 -1 unnamed_device 24.9 MiB 0.79 550 4423 1218 2590 615 63.3 MiB 0.03 0.00 2.73468 -63.1333 -2.73468 2.73468 0.93 0.000225862 0.000204756 0.0110684 0.0101067 28 1292 46 6.79088e+06 67360 531479. 1839.03 3.08 0.0955212 0.082038 23950 126010 -1 1064 16 361 445 36125 8215 2.60594 2.60594 -66.3394 -2.60594 0 0 648988. 2245.63 0.27 0.02 0.12 -1 -1 0.27 0.00935675 0.0083118 32 30 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_018bits.v common 6.99 vpr 63.78 MiB -1 -1 0.10 19860 7 0.07 -1 -1 36188 -1 -1 6 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65312 37 19 127 146 1 99 62 17 17 289 -1 unnamed_device 25.3 MiB 1.37 427 3600 772 2818 10 63.8 MiB 0.02 0.00 3.37591 -73.3749 -3.37591 3.37591 0.92 0.000229316 0.000209443 0.00864308 0.00789849 30 1082 14 6.79088e+06 80832 556674. 1926.21 2.64 0.0751671 0.0643938 24526 138013 -1 904 10 360 451 30722 7668 3.00001 3.00001 -71.7183 -3.00001 0 0 706193. 2443.58 0.28 0.02 0.13 -1 -1 0.28 0.00807295 0.00728106 37 35 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_020bits.v common 6.58 vpr 63.74 MiB -1 -1 0.11 19756 8 0.08 -1 -1 35840 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65268 41 21 139 160 1 106 68 17 17 289 -1 unnamed_device 25.3 MiB 0.53 538 6140 1482 4552 106 63.7 MiB 0.04 0.00 2.83873 -76.6247 -2.83873 2.83873 0.91 0.000289562 0.000264232 0.0139229 0.0126782 34 1267 16 6.79088e+06 80832 618332. 2139.56 2.96 0.0865489 0.0748619 25102 150614 -1 1122 11 408 512 44203 9986 2.78163 2.78163 -79.1023 -2.78163 0 0 787024. 2723.27 0.31 0.02 0.15 -1 -1 0.31 0.00926326 0.00834255 41 37 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_022bits.v common 4.87 vpr 63.85 MiB -1 -1 0.12 20096 9 0.08 -1 -1 36212 -1 -1 6 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65384 45 23 153 176 1 119 74 17 17 289 -1 unnamed_device 25.4 MiB 0.46 495 8909 2437 5871 601 63.9 MiB 0.05 0.00 3.32208 -88.8928 -3.32208 3.32208 0.90 0.000313013 0.000286195 0.0184774 0.0168437 34 1126 14 6.79088e+06 80832 618332. 2139.56 1.37 0.0786422 0.0685167 25102 150614 -1 964 16 434 534 34665 8952 2.98195 2.98195 -84.329 -2.98195 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0121085 0.0108418 43 41 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_024bits.v common 7.09 vpr 63.89 MiB -1 -1 0.12 20088 10 0.08 -1 -1 36144 -1 -1 8 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65424 49 25 166 191 1 133 82 17 17 289 -1 unnamed_device 25.6 MiB 0.97 443 10406 3257 5328 1821 63.9 MiB 0.05 0.00 3.69804 -97.8019 -3.69804 3.69804 0.88 0.000336488 0.000305946 0.0203225 0.0184972 30 1275 29 6.79088e+06 107776 556674. 1926.21 3.14 0.13715 0.118422 24526 138013 -1 942 16 569 644 30950 9603 3.4363 3.4363 -94.393 -3.4363 0 0 706193. 2443.58 0.30 0.03 0.13 -1 -1 0.30 0.0128741 0.0115054 48 44 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_028bits.v common 6.11 vpr 64.13 MiB -1 -1 0.11 19764 11 0.08 -1 -1 35848 -1 -1 8 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65668 57 29 198 227 1 158 94 17 17 289 -1 unnamed_device 25.7 MiB 1.39 693 10744 2889 6912 943 64.1 MiB 0.06 0.00 4.24198 -129.885 -4.24198 4.24198 0.93 0.000392126 0.000357565 0.0214893 0.0195503 36 1621 34 6.79088e+06 107776 648988. 2245.63 1.55 0.110406 0.0964284 25390 158009 -1 1449 12 609 866 56809 14248 3.77654 3.77654 -122.326 -3.77654 0 0 828058. 2865.25 0.34 0.03 0.15 -1 -1 0.34 0.0129885 0.0117561 59 56 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_032bits.v common 8.05 vpr 64.32 MiB -1 -1 0.13 20324 13 0.09 -1 -1 36164 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65864 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 25.8 MiB 1.78 926 16805 6949 9813 43 64.3 MiB 0.08 0.00 5.07578 -160.683 -5.07578 5.07578 0.94 0.000426048 0.000386087 0.0306355 0.0278094 36 1844 17 6.79088e+06 121248 648988. 2245.63 3.06 0.153314 0.133624 25390 158009 -1 1659 16 690 896 53298 13256 4.62142 4.62142 -153.744 -4.62142 0 0 828058. 2865.25 0.33 0.04 0.15 -1 -1 0.33 0.0166101 0.0148293 66 62 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_048bits.v common 11.33 vpr 65.16 MiB -1 -1 0.14 20544 19 0.11 -1 -1 36096 -1 -1 13 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 97 49 340 389 1 267 159 17 17 289 -1 unnamed_device 26.5 MiB 3.49 1392 28109 7029 18915 2165 65.2 MiB 0.13 0.00 7.59683 -301.558 -7.59683 7.59683 0.92 0.000637392 0.000579491 0.045073 0.0410951 38 2894 18 6.79088e+06 175136 678818. 2348.85 4.48 0.253006 0.223731 25966 169698 -1 2642 17 1076 1468 97259 23253 6.84503 6.84503 -284.419 -6.84503 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0253758 0.02291 100 98 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_064bits.v common 13.31 vpr 65.70 MiB -1 -1 0.17 20764 26 0.13 -1 -1 36024 -1 -1 18 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67272 129 65 453 518 1 350 212 17 17 289 -1 unnamed_device 27.0 MiB 4.42 1833 46906 17001 25907 3998 65.7 MiB 0.21 0.00 10.4862 -509.792 -10.4862 10.4862 0.93 0.000840576 0.000764707 0.0680155 0.0620337 40 3816 42 6.79088e+06 242496 706193. 2443.58 5.32 0.467594 0.418801 26254 175826 -1 3371 15 1379 1841 140908 34319 9.82387 9.82387 -485.167 -9.82387 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.0336583 0.0308449 129 131 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 4.15 vpr 63.38 MiB -1 -1 0.09 19608 1 0.02 -1 -1 33544 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64900 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 25.0 MiB 0.02 25 155 63 90 2 63.4 MiB 0.00 0.00 0.605992 -7.06722 -0.605992 0.605992 0.91 5.1852e-05 4.4748e-05 0.000933558 0.000827175 22 62 10 6.87369e+06 13973.8 443629. 1535.05 1.39 0.0176942 0.014402 23458 102101 -1 59 3 19 19 1002 355 0.74674 0.74674 -6.60182 -0.74674 0 0 531479. 1839.03 0.22 0.00 0.10 -1 -1 0.22 0.00191093 0.00179105 8 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 4.05 vpr 63.40 MiB -1 -1 0.09 19528 1 0.02 -1 -1 33580 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64920 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 25.0 MiB 0.04 44 336 94 221 21 63.4 MiB 0.00 0.00 0.789073 -9.95572 -0.789073 0.789073 0.89 6.5608e-05 5.8805e-05 0.00140062 0.00125504 18 133 9 6.87369e+06 27947.7 376052. 1301.22 1.32 0.012633 0.0104884 22882 88689 -1 122 8 63 63 3717 1187 0.914373 0.914373 -10.4211 -0.914373 0 0 470940. 1629.55 0.21 0.01 0.09 -1 -1 0.21 0.00260526 0.00235631 10 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 4.42 vpr 63.32 MiB -1 -1 0.09 19580 1 0.02 -1 -1 33468 -1 -1 3 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64844 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 24.9 MiB 0.05 61 695 189 478 28 63.3 MiB 0.01 0.00 0.811073 -12.6848 -0.811073 0.811073 0.90 6.4001e-05 5.6902e-05 0.00208019 0.00184519 26 199 9 6.87369e+06 41921.5 503264. 1741.40 1.63 0.02114 0.0172615 24322 120374 -1 188 13 122 122 6474 2164 0.936373 0.936373 -14.2242 -0.936373 0 0 618332. 2139.56 0.26 0.01 0.11 -1 -1 0.26 0.00319401 0.00281058 13 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 4.92 vpr 63.55 MiB -1 -1 0.10 19548 1 0.02 -1 -1 33408 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65072 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 25.1 MiB 0.06 79 823 189 488 146 63.5 MiB 0.01 0.00 0.833073 -15.431 -0.833073 0.833073 0.90 9.517e-05 8.6419e-05 0.00265911 0.00240227 28 259 20 6.87369e+06 41921.5 531479. 1839.03 2.04 0.029085 0.0241241 24610 126494 -1 264 31 369 369 22698 7051 1.07267 1.07267 -17.5389 -1.07267 0 0 648988. 2245.63 0.26 0.02 0.12 -1 -1 0.26 0.00575001 0.00488277 15 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 3.62 vpr 63.62 MiB -1 -1 0.09 19640 1 0.02 -1 -1 33632 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65148 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 25.1 MiB 0.08 110 1774 718 1009 47 63.6 MiB 0.01 0.00 1.38906 -18.7903 -1.38906 1.38906 0.92 0.000102539 9.2684e-05 0.00513679 0.00464506 26 280 15 6.87369e+06 41921.5 503264. 1741.40 0.73 0.0178693 0.0153039 24322 120374 -1 234 12 143 143 5672 1951 1.07067 1.07067 -18.8174 -1.07067 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00383335 0.00338876 17 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 3.62 vpr 63.31 MiB -1 -1 0.09 19428 1 0.02 -1 -1 33636 -1 -1 3 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64828 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 24.8 MiB 0.06 121 1965 774 1136 55 63.3 MiB 0.02 0.00 1.2154 -21.6367 -1.2154 1.2154 0.91 0.000110558 0.000100292 0.00551964 0.00499856 26 331 14 6.87369e+06 41921.5 503264. 1741.40 0.76 0.0199015 0.017005 24322 120374 -1 277 13 161 161 10288 3152 1.00037 1.00037 -22.4597 -1.00037 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00430562 0.00380315 18 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 5.75 vpr 63.75 MiB -1 -1 0.10 19880 1 0.02 -1 -1 33696 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65280 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 25.2 MiB 0.06 132 2382 822 1143 417 63.8 MiB 0.02 0.00 1.2264 -24.2078 -1.2264 1.2264 0.93 0.000120681 0.000108998 0.00639069 0.00578568 34 351 22 6.87369e+06 41921.5 618332. 2139.56 2.74 0.0429692 0.0360996 25762 151098 -1 296 11 165 165 10562 3100 1.01137 1.01137 -24.9922 -1.01137 0 0 787024. 2723.27 0.32 0.01 0.15 -1 -1 0.32 0.00447082 0.00395729 20 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 5.66 vpr 63.62 MiB -1 -1 0.09 19920 1 0.02 -1 -1 33680 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65148 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 25.1 MiB 0.07 144 2942 1070 1287 585 63.6 MiB 0.02 0.00 1.2374 -27.3029 -1.2374 1.2374 0.93 0.00013531 0.000121917 0.00726851 0.00657877 32 390 13 6.87369e+06 41921.5 586450. 2029.24 2.67 0.0436789 0.0368763 25474 144626 -1 342 13 206 206 15975 4187 1.10367 1.10367 -27.6336 -1.10367 0 0 744469. 2576.02 0.30 0.01 0.14 -1 -1 0.30 0.00513827 0.00453887 22 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 3.86 vpr 63.84 MiB -1 -1 0.10 19504 1 0.02 -1 -1 33724 -1 -1 4 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65368 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 25.3 MiB 0.07 162 3207 1137 1446 624 63.8 MiB 0.02 0.00 1.2484 -29.9497 -1.2484 1.2484 0.92 0.000143909 0.000129942 0.00756449 0.00685378 32 462 19 6.87369e+06 55895.4 586450. 2029.24 0.87 0.0252849 0.021822 25474 144626 -1 414 14 252 252 18126 4939 1.21797 1.21797 -32.1502 -1.21797 0 0 744469. 2576.02 0.31 0.02 0.14 -1 -1 0.31 0.00575911 0.00507288 24 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 3.86 vpr 63.84 MiB -1 -1 0.10 19660 1 0.02 -1 -1 33464 -1 -1 4 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65368 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 25.3 MiB 0.07 186 2994 1117 1328 549 63.8 MiB 0.02 0.00 1.2594 -33.2136 -1.2594 1.2594 0.91 0.000153592 0.000138912 0.00720508 0.00651506 32 639 22 6.87369e+06 55895.4 586450. 2029.24 0.89 0.0277132 0.0238266 25474 144626 -1 486 17 367 367 28907 7440 1.13667 1.13667 -33.3442 -1.13667 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00669831 0.00582981 26 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 4.93 vpr 63.82 MiB -1 -1 0.09 19524 1 0.02 -1 -1 33752 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65348 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 25.3 MiB 0.07 207 4445 1357 2117 971 63.8 MiB 0.03 0.00 1.2704 -35.3786 -1.2704 1.2704 0.93 0.000163946 0.000148973 0.0100501 0.00912932 30 672 21 6.87369e+06 55895.4 556674. 1926.21 1.94 0.0514902 0.043973 25186 138497 -1 484 26 515 515 30262 8667 1.15397 1.15397 -34.7532 -1.15397 0 0 706193. 2443.58 0.28 0.03 0.13 -1 -1 0.28 0.00921927 0.00797992 28 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 4.45 vpr 63.96 MiB -1 -1 0.10 19648 1 0.02 -1 -1 33388 -1 -1 5 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65492 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 25.4 MiB 0.11 236 3520 1361 2099 60 64.0 MiB 0.02 0.00 1.2814 -38.667 -1.2814 1.2814 0.89 0.000149202 0.000134542 0.00725264 0.00656705 34 730 25 6.87369e+06 69869.2 618332. 2139.56 1.39 0.0460937 0.0393538 25762 151098 -1 615 21 502 502 44505 11732 1.21997 1.21997 -40.5695 -1.21997 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.00836721 0.00727042 31 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 3.97 vpr 63.81 MiB -1 -1 0.09 19612 1 0.02 -1 -1 33904 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65340 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 25.5 MiB 0.13 290 5290 2175 3012 103 63.8 MiB 0.03 0.00 1.65273 -43.1654 -1.65273 1.65273 0.93 0.000198503 0.000180089 0.0113469 0.0102984 32 776 19 6.87369e+06 69869.2 586450. 2029.24 0.88 0.0352439 0.0306308 25474 144626 -1 583 14 385 385 27680 7509 1.16767 1.16767 -42.6023 -1.16767 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00699794 0.00619573 33 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 3.92 vpr 64.01 MiB -1 -1 0.10 19532 1 0.02 -1 -1 33768 -1 -1 5 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65544 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 25.6 MiB 0.10 305 5567 2291 3184 92 64.0 MiB 0.03 0.00 1.66373 -46.4834 -1.66373 1.66373 0.91 0.000209934 0.000191255 0.0118194 0.0107714 32 774 15 6.87369e+06 69869.2 586450. 2029.24 0.87 0.0360923 0.0314616 25474 144626 -1 630 14 407 407 29937 8167 1.21167 1.21167 -46.2762 -1.21167 0 0 744469. 2576.02 0.31 0.02 0.14 -1 -1 0.31 0.00753949 0.00667571 34 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 4.91 vpr 64.06 MiB -1 -1 0.10 19940 1 0.02 -1 -1 33956 -1 -1 5 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65600 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 25.7 MiB 0.09 337 7021 2897 4010 114 64.1 MiB 0.04 0.00 1.68573 -53.53 -1.68573 1.68573 0.91 0.000193062 0.000173541 0.0124667 0.0112683 30 981 24 6.87369e+06 69869.2 556674. 1926.21 1.95 0.0670545 0.0573018 25186 138497 -1 754 16 530 530 45610 11200 1.26197 1.26197 -52.3618 -1.26197 0 0 706193. 2443.58 0.29 0.02 0.12 -1 -1 0.29 0.00805086 0.007064 38 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 6.77 vpr 64.10 MiB -1 -1 0.10 19844 1 0.02 -1 -1 33696 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65640 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 25.6 MiB 0.10 385 8348 3442 4769 137 64.1 MiB 0.04 0.00 1.70773 -60.4248 -1.70773 1.70773 0.91 0.000223932 0.000203085 0.014876 0.0134896 36 1033 17 6.87369e+06 83843 648988. 2245.63 3.66 0.0822498 0.0708545 26050 158493 -1 846 15 579 579 50011 12770 1.26667 1.26667 -58.1453 -1.26667 0 0 828058. 2865.25 0.33 0.03 0.15 -1 -1 0.33 0.00876429 0.00776542 42 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 4.52 vpr 63.98 MiB -1 -1 0.11 19940 1 0.03 -1 -1 33788 -1 -1 7 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65516 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 25.5 MiB 0.14 501 8923 3695 5118 110 64.0 MiB 0.05 0.00 1.72973 -68.4498 -1.72973 1.72973 0.90 0.000268753 0.00024423 0.0162564 0.0147927 34 1221 21 6.87369e+06 97816.9 618332. 2139.56 1.39 0.0578064 0.050434 25762 151098 -1 988 13 571 571 55564 13641 1.28867 1.28867 -66.3007 -1.28867 0 0 787024. 2723.27 0.30 0.03 0.15 -1 -1 0.30 0.00862801 0.0076329 47 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 4.56 vpr 64.21 MiB -1 -1 0.11 19868 1 0.02 -1 -1 34076 -1 -1 7 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65752 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 25.7 MiB 0.11 546 8481 1841 6167 473 64.2 MiB 0.05 0.00 2.11206 -76.8106 -2.11206 2.11206 0.92 0.000296195 0.000270375 0.0153586 0.0140334 34 1531 40 6.87369e+06 97816.9 618332. 2139.56 1.41 0.08196 0.0710359 25762 151098 -1 1247 14 657 657 55953 14632 1.58127 1.58127 -81.892 -1.58127 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0100515 0.00893572 50 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 4.58 vpr 64.33 MiB -1 -1 0.11 19828 1 0.03 -1 -1 33708 -1 -1 8 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 25.8 MiB 0.11 715 11383 2391 8777 215 64.3 MiB 0.06 0.00 2.15606 -94.3707 -2.15606 2.15606 0.90 0.000350147 0.000320594 0.0192279 0.0175966 34 1698 24 6.87369e+06 111791 618332. 2139.56 1.43 0.0879992 0.0767721 25762 151098 -1 1370 14 646 646 57732 13725 1.62057 1.62057 -91.7087 -1.62057 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0111689 0.00994371 58 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 4.70 vpr 64.47 MiB -1 -1 0.10 19924 1 0.03 -1 -1 33720 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 26.1 MiB 0.11 934 14022 3954 9126 942 64.5 MiB 0.08 0.00 2.56039 -113.242 -2.56039 2.56039 0.92 0.000391008 0.000358162 0.0233364 0.0213644 34 2070 17 6.87369e+06 125765 618332. 2139.56 1.48 0.101638 0.0891837 25762 151098 -1 1856 13 819 819 85633 18584 1.40567 1.40567 -105.24 -1.40567 0 0 787024. 2723.27 0.33 0.04 0.15 -1 -1 0.33 0.0124219 0.0110862 66 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 5.37 vpr 65.35 MiB -1 -1 0.13 20340 1 0.04 -1 -1 33992 -1 -1 13 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 26.7 MiB 0.12 1452 25529 6578 17249 1702 65.4 MiB 0.12 0.00 3.45705 -194.211 -3.45705 3.45705 0.92 0.000513155 0.000474579 0.0328017 0.030051 34 3474 26 6.87369e+06 181660 618332. 2139.56 2.01 0.158747 0.140694 25762 151098 -1 2775 15 1192 1192 134811 28940 1.78627 1.78627 -171.767 -1.78627 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0189172 0.0169545 98 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 6.22 vpr 65.66 MiB -1 -1 0.12 20244 1 0.03 -1 -1 34084 -1 -1 17 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67236 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 26.9 MiB 0.15 1980 44728 13702 26774 4252 65.7 MiB 0.21 0.01 4.35372 -288.703 -4.35372 4.35372 0.92 0.000750644 0.000692142 0.0549054 0.0503572 34 4900 26 6.87369e+06 237555 618332. 2139.56 2.72 0.228392 0.204737 25762 151098 -1 3906 18 1579 1579 197183 43754 1.89427 1.89427 -232.752 -1.89427 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.0281938 0.0253869 130 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 4.16 vpr 63.13 MiB -1 -1 0.10 19744 1 0.02 -1 -1 33216 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64648 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 24.7 MiB 0.02 25 155 63 90 2 63.1 MiB 0.00 0.00 0.605992 -7.06722 -0.605992 0.605992 0.92 5.3145e-05 4.6197e-05 0.000888622 0.000787897 22 62 10 6.89349e+06 14093.8 443629. 1535.05 1.42 0.0171152 0.0138878 23458 102101 -1 59 3 19 19 1002 355 0.74674 0.74674 -6.60182 -0.74674 0 0 531479. 1839.03 0.23 0.00 0.10 -1 -1 0.23 0.00176303 0.00164262 8 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 5.20 vpr 63.38 MiB -1 -1 0.09 19724 1 0.02 -1 -1 33548 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64904 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 25.0 MiB 0.04 48 336 89 227 20 63.4 MiB 0.01 0.00 0.789073 -10.0695 -0.789073 0.789073 0.92 6.7325e-05 6.0477e-05 0.00140968 0.00126596 30 123 12 6.89349e+06 28187.7 556674. 1926.21 2.32 0.0197218 0.0161901 25186 138497 -1 81 10 44 44 1439 513 0.74674 0.74674 -9.21032 -0.74674 0 0 706193. 2443.58 0.29 0.01 0.13 -1 -1 0.29 0.00281583 0.00252041 10 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 4.34 vpr 63.45 MiB -1 -1 0.10 19632 1 0.03 -1 -1 33584 -1 -1 3 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64968 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 25.0 MiB 0.04 113 641 164 461 16 63.4 MiB 0.01 0.00 0.817273 -13.5684 -0.817273 0.817273 0.91 8.3529e-05 7.4174e-05 0.00218951 0.00196934 22 290 15 6.89349e+06 42281.5 443629. 1535.05 1.58 0.0221689 0.0182716 23458 102101 -1 234 6 63 63 3586 1010 0.87204 0.87204 -14.3201 -0.87204 0 0 531479. 1839.03 0.22 0.01 0.10 -1 -1 0.22 0.00249607 0.00227505 13 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 3.65 vpr 63.21 MiB -1 -1 0.10 19428 1 0.02 -1 -1 33664 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64732 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 24.8 MiB 0.05 78 887 222 492 173 63.2 MiB 0.01 0.00 0.833073 -15.4163 -0.833073 0.833073 0.90 8.5116e-05 7.6344e-05 0.00284359 0.00256025 28 304 28 6.89349e+06 42281.5 531479. 1839.03 0.80 0.0158877 0.0133945 24610 126494 -1 248 22 256 256 16432 5246 1.20897 1.20897 -17.9728 -1.20897 0 0 648988. 2245.63 0.28 0.02 0.12 -1 -1 0.28 0.00495498 0.00425298 15 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 4.30 vpr 63.41 MiB -1 -1 0.09 19560 1 0.02 -1 -1 33680 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64932 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 24.9 MiB 0.08 111 1774 737 1001 36 63.4 MiB 0.01 0.00 1.38906 -18.6829 -1.38906 1.38906 0.90 0.000104185 9.4131e-05 0.00514718 0.00464855 24 366 20 6.89349e+06 42281.5 470940. 1629.55 1.43 0.0209749 0.0178328 24034 113901 -1 237 12 150 150 7579 2301 0.923426 0.923426 -18.2337 -0.923426 0 0 586450. 2029.24 0.24 0.01 0.11 -1 -1 0.24 0.00387951 0.00343979 17 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 5.32 vpr 63.64 MiB -1 -1 0.09 19484 1 0.02 -1 -1 33748 -1 -1 3 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65168 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 25.2 MiB 0.05 120 2009 782 1060 167 63.6 MiB 0.01 0.00 1.2154 -21.1249 -1.2154 1.2154 0.89 9.2165e-05 8.2122e-05 0.00475816 0.00427089 32 281 14 6.89349e+06 42281.5 586450. 2029.24 2.49 0.0334315 0.0277621 25474 144626 -1 269 13 167 167 10511 3132 0.99132 0.99132 -22.0414 -0.99132 0 0 744469. 2576.02 0.30 0.01 0.13 -1 -1 0.30 0.00419014 0.00368843 18 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 4.60 vpr 63.57 MiB -1 -1 0.08 19840 1 0.02 -1 -1 33672 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65100 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 25.1 MiB 0.06 134 2432 901 1105 426 63.6 MiB 0.02 0.00 1.2264 -24.0836 -1.2264 1.2264 0.93 0.000117469 0.000107117 0.00653766 0.00591977 26 431 21 6.89349e+06 42281.5 503264. 1741.40 1.72 0.0388004 0.0326268 24322 120374 -1 338 13 204 204 16938 4634 1.10367 1.10367 -26.2508 -1.10367 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00445217 0.00389855 20 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 5.57 vpr 63.54 MiB -1 -1 0.09 19600 1 0.02 -1 -1 33420 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65060 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 25.0 MiB 0.06 144 2942 987 1222 733 63.5 MiB 0.02 0.00 1.2374 -27.2687 -1.2374 1.2374 0.91 0.000136251 0.0001235 0.00745995 0.00678206 32 420 12 6.89349e+06 42281.5 586450. 2029.24 2.64 0.0430958 0.0363634 25474 144626 -1 344 13 206 206 15588 4094 1.25097 1.25097 -29.5198 -1.25097 0 0 744469. 2576.02 0.29 0.01 0.15 -1 -1 0.29 0.00493239 0.00434142 22 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 5.75 vpr 63.38 MiB -1 -1 0.10 19492 1 0.02 -1 -1 33544 -1 -1 4 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64904 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 24.9 MiB 0.05 161 3207 1115 1384 708 63.4 MiB 0.02 0.00 1.2484 -30.0612 -1.2484 1.2484 0.93 0.000144331 0.000130469 0.00701254 0.00633424 32 508 12 6.89349e+06 56375.4 586450. 2029.24 2.78 0.036998 0.0314579 25474 144626 -1 434 11 243 243 18298 4845 1.13667 1.13667 -32.4321 -1.13667 0 0 744469. 2576.02 0.30 0.01 0.14 -1 -1 0.30 0.00494775 0.00439489 24 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 3.82 vpr 63.57 MiB -1 -1 0.10 19788 1 0.02 -1 -1 33388 -1 -1 4 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65100 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 25.1 MiB 0.06 202 2994 1191 1765 38 63.6 MiB 0.02 0.00 1.2594 -33.7803 -1.2594 1.2594 0.91 0.000152824 0.000138521 0.00720379 0.00654131 32 630 19 6.89349e+06 56375.4 586450. 2029.24 0.88 0.0270469 0.0233112 25474 144626 -1 515 9 278 278 21227 5838 1.15867 1.15867 -34.9584 -1.15867 0 0 744469. 2576.02 0.30 0.01 0.14 -1 -1 0.30 0.00470209 0.00421388 26 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 3.84 vpr 63.39 MiB -1 -1 0.10 19412 1 0.02 -1 -1 33744 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64912 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 24.9 MiB 0.06 209 4445 1740 2185 520 63.4 MiB 0.03 0.00 1.2704 -36.1806 -1.2704 1.2704 0.91 0.000168025 0.000152193 0.0100623 0.00912672 32 679 19 6.89349e+06 56375.4 586450. 2029.24 0.90 0.0314333 0.0272632 25474 144626 -1 560 16 381 381 31679 8445 1.28397 1.28397 -39.6564 -1.28397 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00633018 0.0055559 28 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 6.87 vpr 63.78 MiB -1 -1 0.09 19544 1 0.02 -1 -1 33416 -1 -1 5 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65308 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 25.2 MiB 0.08 236 3431 1335 2039 57 63.8 MiB 0.02 0.00 1.2814 -39.5467 -1.2814 1.2814 0.93 0.000177345 0.000160553 0.00767113 0.00697287 38 684 20 6.89349e+06 70469.2 678818. 2348.85 3.78 0.0624804 0.0530206 26626 170182 -1 519 32 480 480 33921 8812 1.09467 1.09467 -37.7139 -1.09467 0 0 902133. 3121.57 0.33 0.03 0.17 -1 -1 0.33 0.0111958 0.0096547 31 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 5.86 vpr 63.76 MiB -1 -1 0.10 19880 1 0.02 -1 -1 33872 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65292 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 25.4 MiB 0.12 290 5290 2177 3014 99 63.8 MiB 0.03 0.00 1.65273 -42.9944 -1.65273 1.65273 0.91 0.000190076 0.000172928 0.011164 0.0101661 32 765 18 6.89349e+06 70469.2 586450. 2029.24 2.84 0.0546816 0.0467959 25474 144626 -1 630 12 359 359 28757 7774 1.33697 1.33697 -45.2996 -1.33697 0 0 744469. 2576.02 0.29 0.02 0.14 -1 -1 0.29 0.00632754 0.00561699 33 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 5.85 vpr 63.97 MiB -1 -1 0.10 19476 1 0.02 -1 -1 33916 -1 -1 5 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65508 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 25.6 MiB 0.10 305 5567 2266 3212 89 64.0 MiB 0.03 0.00 1.66373 -46.9867 -1.66373 1.66373 0.92 0.00020972 0.000191028 0.0114211 0.0103987 32 748 30 6.89349e+06 70469.2 586450. 2029.24 2.83 0.0608268 0.0519723 25474 144626 -1 657 18 431 431 37995 9892 1.21167 1.21167 -46.5307 -1.21167 0 0 744469. 2576.02 0.31 0.03 0.14 -1 -1 0.31 0.00870949 0.00763038 34 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 5.95 vpr 63.95 MiB -1 -1 0.10 20024 1 0.02 -1 -1 34000 -1 -1 5 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65488 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 25.5 MiB 0.09 342 7021 2879 4035 107 64.0 MiB 0.04 0.00 1.68573 -54.0175 -1.68573 1.68573 0.92 0.000235835 0.000214611 0.0130289 0.0118656 32 990 25 6.89349e+06 70469.2 586450. 2029.24 2.91 0.0648107 0.0557 25474 144626 -1 789 12 433 433 39042 9870 1.34797 1.34797 -55.979 -1.34797 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00730887 0.0065009 38 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 6.82 vpr 63.90 MiB -1 -1 0.11 19792 1 0.02 -1 -1 33984 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65432 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 25.4 MiB 0.09 445 8348 3515 4709 124 63.9 MiB 0.04 0.00 1.70773 -61.5625 -1.70773 1.70773 0.93 0.000243315 0.000220798 0.0148361 0.0134773 36 916 29 6.89349e+06 84563 648988. 2245.63 3.76 0.0853494 0.0733436 26050 158493 -1 772 13 458 458 34453 8657 1.06157 1.06157 -53.1205 -1.06157 0 0 828058. 2865.25 0.33 0.02 0.15 -1 -1 0.33 0.00814568 0.00719922 42 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 4.98 vpr 63.97 MiB -1 -1 0.10 19716 1 0.02 -1 -1 34024 -1 -1 7 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65504 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 25.5 MiB 0.10 455 8923 3808 5002 113 64.0 MiB 0.04 0.00 1.72973 -68.2155 -1.72973 1.72973 0.88 0.000241568 0.000217641 0.0146372 0.0132391 36 1441 24 6.89349e+06 98656.9 648988. 2245.63 1.96 0.0716287 0.0618242 26050 158493 -1 1076 24 762 762 121599 43810 1.33622 1.33622 -66.4892 -1.33622 0 0 828058. 2865.25 0.33 0.05 0.14 -1 -1 0.33 0.0128474 0.0111777 47 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 4.57 vpr 63.84 MiB -1 -1 0.11 19756 1 0.02 -1 -1 33852 -1 -1 7 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65368 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 25.4 MiB 0.11 551 7431 1680 5324 427 63.8 MiB 0.04 0.00 2.11206 -77.2602 -2.11206 2.11206 0.90 0.000296734 0.000271252 0.0135828 0.0124281 34 1555 27 6.89349e+06 98656.9 618332. 2139.56 1.48 0.0748475 0.0649331 25762 151098 -1 1235 23 716 716 70993 17901 1.33262 1.33262 -76.3022 -1.33262 0 0 787024. 2723.27 0.30 0.04 0.15 -1 -1 0.30 0.0129998 0.0113955 50 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 4.78 vpr 64.25 MiB -1 -1 0.10 20036 1 0.02 -1 -1 33684 -1 -1 8 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65788 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 25.7 MiB 0.09 650 12022 2723 8727 572 64.2 MiB 0.06 0.00 2.15606 -92.9813 -2.15606 2.15606 0.89 0.000332198 0.00030306 0.0198835 0.018144 34 1756 23 6.89349e+06 112751 618332. 2139.56 1.72 0.0904969 0.0788711 25762 151098 -1 1397 15 687 687 59439 15006 1.38087 1.38087 -88.2523 -1.38087 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.0115014 0.0101854 58 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 4.81 vpr 64.11 MiB -1 -1 0.10 19856 1 0.03 -1 -1 33984 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65644 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 25.7 MiB 0.12 1002 14022 4194 8891 937 64.1 MiB 0.07 0.00 2.56039 -114.689 -2.56039 2.56039 0.92 0.000386293 0.000352331 0.022705 0.0207329 34 2078 20 6.89349e+06 126845 618332. 2139.56 1.66 0.1026 0.0898113 25762 151098 -1 1851 14 728 728 71201 15386 1.43867 1.43867 -107.068 -1.43867 0 0 787024. 2723.27 0.31 0.04 0.14 -1 -1 0.31 0.0127523 0.0113565 66 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 5.09 vpr 65.10 MiB -1 -1 0.12 20300 1 0.03 -1 -1 33664 -1 -1 13 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 26.4 MiB 0.13 1473 25959 7791 16267 1901 65.1 MiB 0.14 0.00 3.45705 -194.328 -3.45705 3.45705 0.90 0.0005713 0.000524576 0.0359987 0.0330366 34 3283 31 6.89349e+06 183220 618332. 2139.56 1.78 0.162954 0.144195 25762 151098 -1 2757 14 1079 1079 125848 27590 1.78147 1.78147 -171.309 -1.78147 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0182303 0.0163496 98 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 5.75 vpr 65.76 MiB -1 -1 0.13 20324 1 0.03 -1 -1 33984 -1 -1 17 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67340 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 27.1 MiB 0.14 1995 44728 13697 26621 4410 65.8 MiB 0.20 0.00 4.35372 -288.217 -4.35372 4.35372 0.90 0.00062966 0.000578193 0.0549268 0.0504146 34 4888 26 6.89349e+06 239595 618332. 2139.56 2.33 0.222533 0.199279 25762 151098 -1 3930 20 1610 1610 183481 42153 1.98497 1.98497 -237.146 -1.98497 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0296116 0.0265307 130 -1 -1 -1 -1 -1 +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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.65 vpr 60.46 MiB -1 -1 0.08 16720 1 0.06 -1 -1 31876 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61908 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 21.9 MiB 0.01 66 238 53 181 4 60.5 MiB 0.00 0.00 0.701249 -7.34893 -0.701249 0.701249 0.63 6.5623e-05 5.859e-05 0.00125898 0.00112383 20 136 6 6.55708e+06 24110 394039. 1363.46 0.44 0.00390366 0.0035344 19870 87366 -1 145 9 54 54 4038 1145 0.83871 0.83871 -8.27133 -0.83871 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00239767 0.00215084 10 4 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.71 vpr 60.25 MiB -1 -1 0.12 16484 2 0.05 -1 -1 32124 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61692 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 21.7 MiB 0.01 138 156 48 106 2 60.2 MiB 0.00 0.00 0.900447 -11.3379 -0.900447 0.900447 0.63 8.5423e-05 7.7213e-05 0.000917628 0.000834798 20 231 9 6.55708e+06 24110 394039. 1363.46 0.46 0.00423497 0.0037552 19870 87366 -1 228 10 89 92 5407 1535 0.819447 0.819447 -11.9992 -0.819447 0 0 477104. 1650.88 0.13 0.01 0.08 -1 -1 0.13 0.0029281 0.00259062 13 6 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.91 vpr 60.39 MiB -1 -1 0.07 16680 2 0.05 -1 -1 31860 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61844 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 21.8 MiB 0.01 61 544 113 372 59 60.4 MiB 0.01 0.00 0.900447 -11.5662 -0.900447 0.900447 0.68 0.000104033 9.4899e-05 0.00263029 0.00239838 26 179 14 6.55708e+06 24110 477104. 1650.88 0.59 0.018432 0.015572 21022 109990 -1 178 11 118 123 6517 2261 0.83871 0.83871 -12.751 -0.83871 0 0 585099. 2024.56 0.16 0.01 0.10 -1 -1 0.16 0.00351429 0.00308676 16 7 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.68 vpr 60.53 MiB -1 -1 0.14 16652 3 0.05 -1 -1 31992 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61984 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 21.9 MiB 0.01 79 663 125 500 38 60.5 MiB 0.01 0.00 1.58811 -15.8163 -1.58811 1.58811 0.63 0.000123989 0.000113555 0.00298674 0.00273135 20 277 11 6.55708e+06 36165 394039. 1363.46 0.44 0.00757243 0.00674859 19870 87366 -1 256 11 102 126 6957 2244 1.58811 1.58811 -17.5334 -1.58811 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00405288 0.00356653 19 9 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.92 vpr 60.49 MiB -1 -1 0.08 16492 3 0.06 -1 -1 31876 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61940 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 21.9 MiB 0.02 92 976 219 613 144 60.5 MiB 0.01 0.00 1.23151 -17.401 -1.23151 1.23151 0.63 0.000143142 0.000131669 0.00409759 0.0037682 26 376 22 6.55708e+06 36165 477104. 1650.88 0.59 0.0244375 0.0206112 21022 109990 -1 314 15 197 220 10340 3670 1.26105 1.26105 -19.5706 -1.26105 0 0 585099. 2024.56 0.16 0.01 0.10 -1 -1 0.16 0.0052823 0.00456806 23 10 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.06 vpr 60.46 MiB -1 -1 0.10 16716 3 0.06 -1 -1 31884 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61912 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 21.8 MiB 0.07 118 2468 742 1169 557 60.5 MiB 0.02 0.00 1.70831 -21.0444 -1.70831 1.70831 0.63 0.000172724 0.000158947 0.00982995 0.00905969 24 451 20 6.55708e+06 48220 448715. 1552.65 0.63 0.0318886 0.0273412 20734 103517 -1 362 17 214 239 13095 4014 1.82851 1.82851 -23.755 -1.82851 0 0 554710. 1919.41 0.15 0.02 0.10 -1 -1 0.15 0.0068379 0.00584841 25 14 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.98 vpr 60.75 MiB -1 -1 0.12 16604 4 0.05 -1 -1 31880 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62208 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 22.3 MiB 0.02 141 2165 594 1180 391 60.8 MiB 0.02 0.00 1.58811 -24.792 -1.58811 1.58811 0.66 0.000183191 0.00016922 0.00825336 0.00761989 26 489 18 6.55708e+06 48220 477104. 1650.88 0.61 0.0301964 0.025817 21022 109990 -1 408 16 272 322 16154 5204 1.58811 1.58811 -26.7618 -1.58811 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00680944 0.00585398 29 13 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.25 vpr 60.78 MiB -1 -1 0.13 16820 4 0.06 -1 -1 31672 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62236 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 22.4 MiB 0.03 284 1928 664 976 288 60.8 MiB 0.02 0.00 1.68077 -30.4899 -1.68077 1.68077 0.63 0.00020797 0.000192157 0.00740403 0.00685018 26 602 17 6.55708e+06 60275 477104. 1650.88 0.60 0.0320105 0.0273466 21022 109990 -1 563 10 204 258 19069 4698 1.46791 1.46791 -31.4334 -1.46791 0 0 585099. 2024.56 0.16 0.02 0.10 -1 -1 0.16 0.00560317 0.0049047 33 17 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.94 vpr 60.66 MiB -1 -1 0.13 16660 5 0.06 -1 -1 32020 -1 -1 6 23 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62112 23 12 76 88 1 61 41 17 17 289 -1 unnamed_device 22.2 MiB 0.02 228 3471 1214 1851 406 60.7 MiB 0.01 0.00 2.07857 -32.6138 -2.07857 2.07857 0.68 0.000102676 9.2732e-05 0.00567095 0.00514026 26 592 14 6.55708e+06 72330 477104. 1650.88 0.54 0.032643 0.0276682 21022 109990 -1 499 12 253 322 18656 5176 1.83817 1.83817 -32.8906 -1.83817 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00678081 0.0059276 37 19 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.14 vpr 60.70 MiB -1 -1 0.14 16780 5 0.06 -1 -1 31996 -1 -1 6 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62156 25 13 83 96 1 66 44 17 17 289 -1 unnamed_device 22.2 MiB 0.02 230 1661 271 1364 26 60.7 MiB 0.02 0.00 1.80097 -35.7252 -1.80097 1.80097 0.64 0.000284494 0.000263031 0.00650923 0.00602471 28 736 26 6.55708e+06 72330 500653. 1732.36 0.67 0.0407289 0.0347151 21310 115450 -1 592 14 285 416 23910 6562 1.65685 1.65685 -36.7426 -1.65685 0 0 612192. 2118.31 0.19 0.02 0.12 -1 -1 0.19 0.00788404 0.00686082 40 21 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.83 vpr 60.83 MiB -1 -1 0.12 16492 5 0.07 -1 -1 31712 -1 -1 7 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62288 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 22.3 MiB 0.02 298 2223 446 1605 172 60.8 MiB 0.02 0.00 1.82851 -37.5 -1.82851 1.82851 0.63 0.000272125 0.000252336 0.0078292 0.00726507 26 738 11 6.55708e+06 84385 477104. 1650.88 0.59 0.0363304 0.0312697 21022 109990 -1 693 13 272 401 26652 6685 1.73584 1.73584 -41.0215 -1.73584 0 0 585099. 2024.56 0.20 0.03 0.10 -1 -1 0.20 0.00960711 0.00846654 42 24 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.09 vpr 60.79 MiB -1 -1 0.14 16796 6 0.07 -1 -1 32004 -1 -1 7 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62248 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 22.2 MiB 0.04 329 2401 440 1903 58 60.8 MiB 0.02 0.00 2.39596 -45.5411 -2.39596 2.39596 0.63 0.000281775 0.000261263 0.00803435 0.00745009 28 774 10 6.55708e+06 84385 500653. 1732.36 0.62 0.0375269 0.0323234 21310 115450 -1 702 10 245 346 19196 5024 2.15556 2.15556 -45.0938 -2.15556 0 0 612192. 2118.31 0.21 0.02 0.11 -1 -1 0.21 0.00728969 0.00640713 45 23 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.07 vpr 60.84 MiB -1 -1 0.13 16868 6 0.06 -1 -1 31888 -1 -1 10 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62304 31 16 104 120 1 81 57 17 17 289 -1 unnamed_device 22.3 MiB 0.04 463 3000 671 1855 474 60.8 MiB 0.03 0.00 1.9467 -49.1372 -1.9467 1.9467 0.64 0.000309138 0.00028615 0.00960573 0.00892098 28 998 15 6.55708e+06 120550 500653. 1732.36 0.66 0.0438761 0.0377256 21310 115450 -1 941 12 326 505 37081 8826 1.85404 1.85404 -50.5621 -1.85404 0 0 612192. 2118.31 0.17 0.03 0.11 -1 -1 0.17 0.00883191 0.00770253 50 27 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.20 vpr 60.82 MiB -1 -1 0.14 16756 7 0.07 -1 -1 31936 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62284 33 17 112 129 1 86 57 17 17 289 -1 unnamed_device 22.2 MiB 0.05 322 6597 2323 2891 1383 60.8 MiB 0.05 0.00 2.57253 -53.1074 -2.57253 2.57253 0.63 0.000328617 0.000304953 0.020892 0.0193774 28 1092 19 6.55708e+06 84385 500653. 1732.36 0.77 0.0591956 0.0515879 21310 115450 -1 816 16 378 498 30624 8568 2.3425 2.3425 -55.6072 -2.3425 0 0 612192. 2118.31 0.17 0.03 0.10 -1 -1 0.17 0.0112833 0.00976052 52 30 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.19 vpr 61.02 MiB -1 -1 0.13 16908 7 0.07 -1 -1 31964 -1 -1 10 37 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62480 37 19 127 146 1 99 66 17 17 289 -1 unnamed_device 22.6 MiB 0.03 517 7514 3058 4421 35 61.0 MiB 0.05 0.00 3.08562 -69.1539 -3.08562 3.08562 0.63 0.000370744 0.000344252 0.0221054 0.0205089 32 1148 10 6.55708e+06 120550 554710. 1919.41 0.68 0.0594607 0.0522452 22174 131602 -1 983 9 353 478 32011 8084 2.87276 2.87276 -68.1383 -2.87276 0 0 701300. 2426.64 0.19 0.02 0.12 -1 -1 0.19 0.00858866 0.00759768 59 35 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.37 vpr 61.13 MiB -1 -1 0.15 16908 8 0.07 -1 -1 31932 -1 -1 11 41 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62596 41 21 139 160 1 110 73 17 17 289 -1 unnamed_device 22.6 MiB 0.06 423 10105 3105 5166 1834 61.1 MiB 0.06 0.00 2.75456 -69.4691 -2.75456 2.75456 0.63 0.00039922 0.000370431 0.0277219 0.0256995 28 1250 21 6.55708e+06 132605 500653. 1732.36 0.83 0.0755643 0.0665154 21310 115450 -1 992 16 441 573 36905 10105 2.5417 2.5417 -70.7443 -2.5417 0 0 612192. 2118.31 0.18 0.03 0.10 -1 -1 0.18 0.0134827 0.0117817 67 37 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.38 vpr 61.22 MiB -1 -1 0.14 16736 9 0.07 -1 -1 31880 -1 -1 13 45 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62688 45 23 153 176 1 123 81 17 17 289 -1 unnamed_device 22.8 MiB 0.21 454 9181 2871 4452 1858 61.2 MiB 0.06 0.00 3.20898 -80.9842 -3.20898 3.20898 0.63 0.00043289 0.000401842 0.0241711 0.0224244 30 1168 19 6.55708e+06 156715 526063. 1820.29 0.71 0.0752235 0.0662982 21886 126133 -1 889 14 415 520 24296 7325 3.02956 3.02956 -79.7163 -3.02956 0 0 666494. 2306.21 0.18 0.03 0.11 -1 -1 0.18 0.013182 0.011579 74 41 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.40 vpr 61.21 MiB -1 -1 0.14 16756 10 0.07 -1 -1 32164 -1 -1 12 49 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62684 49 25 166 191 1 129 86 17 17 289 -1 unnamed_device 22.7 MiB 0.07 677 9725 2981 5215 1529 61.2 MiB 0.07 0.00 3.75902 -99.1822 -3.75902 3.75902 0.63 0.000557411 0.000517701 0.0295043 0.0274031 32 1394 11 6.55708e+06 144660 554710. 1919.41 0.73 0.0786949 0.0697744 22174 131602 -1 1254 11 431 592 33718 8880 3.63882 3.63882 -98.0078 -3.63882 0 0 701300. 2426.64 0.19 0.03 0.12 -1 -1 0.19 0.0121919 0.0108187 79 44 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 5.14 vpr 61.37 MiB -1 -1 0.12 16944 11 0.07 -1 -1 32080 -1 -1 14 57 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62840 57 29 198 227 1 159 100 17 17 289 -1 unnamed_device 22.7 MiB 0.18 710 9844 2338 6831 675 61.4 MiB 0.06 0.00 4.36968 -119.507 -4.36968 4.36968 0.63 0.000571738 0.000532336 0.0262142 0.024434 28 1705 16 6.55708e+06 168770 500653. 1732.36 2.39 0.140714 0.122605 21310 115450 -1 1511 17 608 811 55320 13520 3.88888 3.88888 -117.48 -3.88888 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0197156 0.0173305 93 56 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.74 vpr 61.82 MiB -1 -1 0.17 17232 13 0.08 -1 -1 32264 -1 -1 16 65 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63300 65 33 224 257 1 180 114 17 17 289 -1 unnamed_device 23.3 MiB 0.24 986 13638 3602 8892 1144 61.8 MiB 0.08 0.00 4.63562 -152.464 -4.63562 4.63562 0.64 0.000646181 0.000602189 0.0340583 0.031737 30 1917 16 6.55708e+06 192880 526063. 1820.29 0.83 0.106919 0.0950129 21886 126133 -1 1709 11 608 831 48719 12016 4.18236 4.18236 -146.723 -4.18236 0 0 666494. 2306.21 0.21 0.04 0.11 -1 -1 0.21 0.0168737 0.0151215 107 62 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.02 vpr 62.53 MiB -1 -1 0.17 17192 19 0.10 -1 -1 32280 -1 -1 24 97 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 97 49 340 389 1 266 170 17 17 289 -1 unnamed_device 23.7 MiB 0.22 1351 35890 10935 20783 4172 62.5 MiB 0.18 0.00 7.54965 -280.539 -7.54965 7.54965 0.64 0.000983322 0.000917572 0.0787329 0.073413 30 2881 23 6.55708e+06 289320 526063. 1820.29 0.90 0.20617 0.185836 21886 126133 -1 2382 13 864 1200 64716 17253 6.85599 6.85599 -267.096 -6.85599 0 0 666494. 2306.21 0.20 0.06 0.12 -1 -1 0.20 0.0278331 0.0250099 161 98 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.63 vpr 63.22 MiB -1 -1 0.19 17672 26 0.11 -1 -1 32356 -1 -1 35 129 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 129 65 453 518 1 353 229 17 17 289 -1 unnamed_device 24.5 MiB 0.20 1861 50629 13453 32595 4581 63.2 MiB 0.24 0.00 10.1317 -478.148 -10.1317 10.1317 0.63 0.00132531 0.00123998 0.0995224 0.0930643 30 4170 22 6.55708e+06 421925 526063. 1820.29 1.26 0.263864 0.239621 21886 126133 -1 3376 12 1195 1629 98642 24697 9.39576 9.39576 -452.566 -9.39576 0 0 666494. 2306.21 0.26 0.08 0.13 -1 -1 0.26 0.0352153 0.0319146 213 131 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.54 abc 29.30 MiB -1 -1 0.11 16792 1 0.02 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22632 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.52 abc 29.20 MiB -1 -1 0.11 16688 1 0.02 -1 -1 29900 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22692 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.56 abc 29.35 MiB -1 -1 0.13 16700 1 0.02 -1 -1 30056 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22780 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.51 abc 29.25 MiB -1 -1 0.12 16660 1 0.02 -1 -1 29952 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22772 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.56 abc 29.25 MiB -1 -1 0.11 16752 1 0.02 -1 -1 29956 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22704 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.61 abc 29.29 MiB -1 -1 0.13 16492 1 0.02 -1 -1 29996 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22676 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.57 abc 29.26 MiB -1 -1 0.09 16716 1 0.02 -1 -1 29964 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22788 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.56 abc 29.28 MiB -1 -1 0.10 16716 1 0.02 -1 -1 29980 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22732 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.52 abc 29.41 MiB -1 -1 0.11 16448 1 0.02 -1 -1 30116 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22756 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.49 abc 29.36 MiB -1 -1 0.10 16556 1 0.02 -1 -1 30068 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22732 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.46 abc 29.44 MiB -1 -1 0.10 16476 1 0.02 -1 -1 30144 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22912 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.56 abc 29.30 MiB -1 -1 0.12 16656 1 0.02 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22760 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.48 abc 29.27 MiB -1 -1 0.11 16660 1 0.02 -1 -1 29972 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22844 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.53 abc 29.43 MiB -1 -1 0.10 16780 1 0.02 -1 -1 30132 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22852 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.51 abc 29.21 MiB -1 -1 0.11 16512 1 0.03 -1 -1 29916 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22932 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.46 abc 29.36 MiB -1 -1 0.10 16980 1 0.02 -1 -1 30064 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22832 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.57 abc 29.37 MiB -1 -1 0.13 16792 1 0.03 -1 -1 30072 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22840 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.54 abc 29.29 MiB -1 -1 0.14 16952 1 0.04 -1 -1 29992 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23076 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.67 abc 29.38 MiB -1 -1 0.14 16964 1 0.02 -1 -1 30084 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23100 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.61 abc 29.29 MiB -1 -1 0.15 16760 1 0.03 -1 -1 29996 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23036 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.58 abc 29.35 MiB -1 -1 0.15 17172 1 0.03 -1 -1 30056 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23384 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.59 abc 29.61 MiB -1 -1 0.15 17132 1 0.03 -1 -1 30324 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23736 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.49 abc 29.25 MiB -1 -1 0.11 16472 1 0.02 -1 -1 29956 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22512 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.43 abc 29.26 MiB -1 -1 0.08 16604 1 0.02 -1 -1 29964 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22396 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.51 abc 29.30 MiB -1 -1 0.13 16596 1 0.02 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22332 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.45 abc 29.34 MiB -1 -1 0.11 16544 1 0.02 -1 -1 30048 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22672 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.51 abc 29.46 MiB -1 -1 0.09 16488 1 0.02 -1 -1 30164 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22476 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.51 abc 29.35 MiB -1 -1 0.13 16644 1 0.02 -1 -1 30052 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22436 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.51 abc 29.45 MiB -1 -1 0.10 16700 1 0.02 -1 -1 30152 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22696 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.50 abc 29.37 MiB -1 -1 0.13 16644 1 0.02 -1 -1 30072 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22424 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.45 abc 29.31 MiB -1 -1 0.11 16492 1 0.02 -1 -1 30012 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22388 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.52 abc 29.31 MiB -1 -1 0.12 16604 1 0.02 -1 -1 30012 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22572 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.53 abc 29.34 MiB -1 -1 0.13 16700 1 0.02 -1 -1 30048 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22604 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.51 abc 29.41 MiB -1 -1 0.14 16780 1 0.02 -1 -1 30112 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22504 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.52 abc 29.16 MiB -1 -1 0.13 16700 1 0.03 -1 -1 29856 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22568 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.51 abc 29.22 MiB -1 -1 0.10 16492 1 0.03 -1 -1 29924 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22588 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.48 abc 29.42 MiB -1 -1 0.10 16512 1 0.02 -1 -1 30124 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22548 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.53 abc 29.27 MiB -1 -1 0.13 16812 1 0.02 -1 -1 29968 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22644 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.48 abc 29.26 MiB -1 -1 0.10 16948 1 0.02 -1 -1 29960 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22652 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.47 abc 29.39 MiB -1 -1 0.10 17044 1 0.02 -1 -1 30096 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22776 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.52 abc 29.34 MiB -1 -1 0.13 16924 1 0.03 -1 -1 30040 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22872 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.52 abc 29.31 MiB -1 -1 0.14 16764 1 0.02 -1 -1 30016 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22876 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.56 abc 29.46 MiB -1 -1 0.13 17000 1 0.03 -1 -1 30172 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23084 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.64 abc 29.70 MiB -1 -1 0.16 17348 1 0.03 -1 -1 30412 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23348 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.31 vpr 60.80 MiB -1 -1 0.09 16544 1 0.02 -1 -1 29892 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62256 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.2 MiB 0.01 45 88 36 48 4 60.8 MiB 0.00 0.00 0.824016 -7.40657 -0.824016 0.824016 0.61 7.1861e-05 6.4481e-05 0.000645561 0.000582389 12 109 9 6.64007e+06 25116 231691. 801.699 0.32 0.00369487 0.00331247 19090 58805 -1 116 7 43 43 3050 941 0.770048 0.770048 -8.25533 -0.770048 0 0 318358. 1101.58 0.13 0.01 0.06 -1 -1 0.13 0.002533 0.00233422 10 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.70 vpr 60.77 MiB -1 -1 0.11 16636 1 0.02 -1 -1 29992 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62232 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.2 MiB 0.01 43 476 113 309 54 60.8 MiB 0.01 0.00 0.792048 -9.40096 -0.792048 0.792048 0.63 8.9668e-05 8.138e-05 0.00237289 0.00215164 18 145 16 6.64007e+06 25116 355633. 1230.56 0.47 0.0132706 0.0111796 20242 81429 -1 133 12 122 122 4774 1730 0.901248 0.901248 -10.0628 -0.901248 0 0 448715. 1552.65 0.18 0.01 0.08 -1 -1 0.18 0.0032743 0.00288588 13 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.86 vpr 60.89 MiB -1 -1 0.09 16544 1 0.02 -1 -1 29960 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62348 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.3 MiB 0.02 57 869 279 533 57 60.9 MiB 0.01 0.00 0.803048 -11.5224 -0.803048 0.803048 0.64 0.000104496 9.5389e-05 0.00400225 0.00365417 26 195 28 6.64007e+06 25116 477104. 1650.88 0.58 0.0184162 0.015531 21682 110474 -1 179 34 222 222 11617 3507 0.923248 0.923248 -13.188 -0.923248 0 0 585099. 2024.56 0.16 0.02 0.12 -1 -1 0.16 0.00717393 0.00603806 16 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.95 vpr 60.98 MiB -1 -1 0.13 16700 1 0.02 -1 -1 29936 -1 -1 4 13 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62444 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 22.3 MiB 0.02 139 840 239 448 153 61.0 MiB 0.01 0.00 0.825048 -15.1967 -0.825048 0.825048 0.65 0.000144712 0.000132473 0.00406375 0.00372378 26 312 14 6.64007e+06 50232 477104. 1650.88 0.59 0.0215838 0.0183325 21682 110474 -1 274 8 126 126 6936 1958 0.945248 0.945248 -16.8085 -0.945248 0 0 585099. 2024.56 0.20 0.01 0.11 -1 -1 0.20 0.00356814 0.00324351 20 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.02 vpr 60.86 MiB -1 -1 0.12 16684 1 0.02 -1 -1 29944 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62316 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.2 MiB 0.02 109 1242 363 655 224 60.9 MiB 0.01 0.00 1.18536 -16.9279 -1.18536 1.18536 0.67 0.000140069 0.000128731 0.00507204 0.00466481 32 257 8 6.64007e+06 37674 554710. 1919.41 0.69 0.0199951 0.0171014 22834 132086 -1 233 12 141 141 7600 2273 1.08545 1.08545 -18.3302 -1.08545 0 0 701300. 2426.64 0.19 0.01 0.12 -1 -1 0.19 0.00456305 0.00399182 22 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.15 vpr 61.09 MiB -1 -1 0.09 16700 1 0.02 -1 -1 30016 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62556 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.7 MiB 0.03 121 1870 575 914 381 61.1 MiB 0.02 0.00 1.19636 -19.6512 -1.19636 1.19636 0.63 0.000156917 0.000144325 0.00700165 0.00644272 32 290 10 6.64007e+06 50232 554710. 1919.41 0.66 0.024347 0.0209001 22834 132086 -1 249 11 159 159 7628 2242 0.976248 0.976248 -19.6804 -0.976248 0 0 701300. 2426.64 0.20 0.01 0.14 -1 -1 0.20 0.00486641 0.00436093 25 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.00 vpr 61.04 MiB -1 -1 0.10 16808 1 0.02 -1 -1 30104 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62504 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.6 MiB 0.03 130 1749 486 940 323 61.0 MiB 0.02 0.00 1.20736 -22.2432 -1.20736 1.20736 0.66 0.000175738 0.000162453 0.00653357 0.00604036 26 355 9 6.64007e+06 50232 477104. 1650.88 0.61 0.0256081 0.0220285 21682 110474 -1 329 9 164 164 10033 2816 1.10745 1.10745 -24.287 -1.10745 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00506426 0.00448325 28 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.17 vpr 60.99 MiB -1 -1 0.12 16700 1 0.02 -1 -1 30052 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62456 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.5 MiB 0.03 173 2599 639 1402 558 61.0 MiB 0.02 0.00 1.21836 -24.9885 -1.21836 1.21836 0.55 0.000200513 0.000185947 0.00894621 0.0082799 26 463 13 6.64007e+06 62790 477104. 1650.88 0.62 0.0306974 0.0264201 21682 110474 -1 398 13 189 189 14144 3858 1.09645 1.09645 -26.9476 -1.09645 0 0 585099. 2024.56 0.23 0.02 0.11 -1 -1 0.23 0.00563182 0.00497228 31 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.24 vpr 61.14 MiB -1 -1 0.13 16680 1 0.02 -1 -1 30000 -1 -1 5 23 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62612 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.7 MiB 0.03 164 2964 931 1425 608 61.1 MiB 0.02 0.00 1.22936 -27.3898 -1.22936 1.22936 0.71 0.000206251 0.000190541 0.00963184 0.00889713 28 517 23 6.64007e+06 62790 500653. 1732.36 0.61 0.0317241 0.0272701 21970 115934 -1 442 20 303 303 26861 7031 1.12945 1.12945 -29.4465 -1.12945 0 0 612192. 2118.31 0.17 0.02 0.10 -1 -1 0.17 0.00878731 0.00750444 34 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.22 vpr 61.13 MiB -1 -1 0.11 16532 1 0.02 -1 -1 30024 -1 -1 5 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62600 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.7 MiB 0.03 184 3793 1189 1796 808 61.1 MiB 0.03 0.00 1.24036 -30.1907 -1.24036 1.24036 0.81 0.000234728 0.000212555 0.0117985 0.0107414 28 547 21 6.64007e+06 62790 500653. 1732.36 0.67 0.0365875 0.0314951 21970 115934 -1 457 15 336 336 22420 6117 1.15145 1.15145 -31.9263 -1.15145 0 0 612192. 2118.31 0.19 0.02 0.10 -1 -1 0.19 0.00780256 0.00676725 37 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.96 vpr 61.04 MiB -1 -1 0.10 16660 1 0.03 -1 -1 30020 -1 -1 6 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62500 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.5 MiB 0.03 211 3827 1497 2158 172 61.0 MiB 0.03 0.00 1.25136 -33.107 -1.25136 1.25136 0.63 0.000240191 0.000221993 0.0116847 0.0108247 30 630 22 6.64007e+06 75348 526063. 1820.29 0.67 0.0419168 0.0362549 22546 126617 -1 502 16 371 371 19340 5571 1.13065 1.13065 -33.3987 -1.13065 0 0 666494. 2306.21 0.18 0.02 0.11 -1 -1 0.18 0.00849324 0.0073704 40 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.10 vpr 61.07 MiB -1 -1 0.09 16820 1 0.02 -1 -1 29904 -1 -1 7 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62540 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 22.6 MiB 0.02 224 4187 1190 2032 965 61.1 MiB 0.03 0.00 1.26236 -35.4106 -1.26236 1.26236 0.64 0.000191842 0.000174379 0.00948282 0.00864468 28 767 24 6.64007e+06 87906 500653. 1732.36 0.78 0.0371463 0.0318996 21970 115934 -1 562 22 473 473 32624 8956 1.16245 1.16245 -35.8258 -1.16245 0 0 612192. 2118.31 0.17 0.03 0.10 -1 -1 0.17 0.0110433 0.00947793 44 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.19 vpr 61.17 MiB -1 -1 0.13 16472 1 0.03 -1 -1 30332 -1 -1 7 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62640 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.6 MiB 0.03 288 4950 1971 2770 209 61.2 MiB 0.04 0.00 1.62267 -39.7496 -1.62267 1.62267 0.64 0.000273136 0.000252828 0.0141066 0.01308 30 673 18 6.64007e+06 87906 526063. 1820.29 0.68 0.046775 0.0407575 22546 126617 -1 522 15 299 299 16763 4558 1.05125 1.05125 -38.0908 -1.05125 0 0 666494. 2306.21 0.18 0.03 0.11 -1 -1 0.18 0.00950889 0.00826898 46 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.23 vpr 61.34 MiB -1 -1 0.10 16756 1 0.02 -1 -1 30108 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62808 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.8 MiB 0.03 307 5834 1940 2742 1152 61.3 MiB 0.04 0.00 1.63367 -42.0204 -1.63367 1.63367 0.64 0.000309775 0.000288281 0.0163676 0.015193 32 745 14 6.64007e+06 87906 554710. 1919.41 0.77 0.0474426 0.0415042 22834 132086 -1 626 15 398 398 30740 8144 1.05245 1.05245 -41.309 -1.05245 0 0 701300. 2426.64 0.29 0.02 0.12 -1 -1 0.29 0.0087433 0.00772429 49 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.16 vpr 61.51 MiB -1 -1 0.13 16924 1 0.02 -1 -1 30096 -1 -1 8 37 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62988 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.9 MiB 0.04 341 7938 3219 4414 305 61.5 MiB 0.06 0.00 1.65567 -48.7751 -1.65567 1.65567 0.64 0.000375025 0.000343894 0.0240677 0.0221515 30 827 19 6.64007e+06 100464 526063. 1820.29 0.70 0.0619723 0.0541748 22546 126617 -1 666 16 413 413 26469 6911 1.08425 1.08425 -46.5193 -1.08425 0 0 666494. 2306.21 0.20 0.03 0.13 -1 -1 0.20 0.0104982 0.00920944 55 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.35 vpr 61.34 MiB -1 -1 0.12 16964 1 0.03 -1 -1 30268 -1 -1 8 41 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62812 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.9 MiB 0.04 384 7846 3210 4515 121 61.3 MiB 0.06 0.00 1.67767 -55.4572 -1.67767 1.67767 0.71 0.000372911 0.000340499 0.019576 0.0179302 32 1081 20 6.64007e+06 100464 554710. 1919.41 0.76 0.0640442 0.0556817 22834 132086 -1 897 14 538 538 45146 11476 1.19345 1.19345 -54.3768 -1.19345 0 0 701300. 2426.64 0.22 0.03 0.13 -1 -1 0.22 0.0109347 0.0095655 61 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.40 vpr 61.44 MiB -1 -1 0.12 16796 1 0.02 -1 -1 30376 -1 -1 10 45 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62912 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 23.0 MiB 0.04 432 8876 3599 5116 161 61.4 MiB 0.06 0.00 1.69967 -61.7455 -1.69967 1.69967 0.66 0.000389559 0.000362152 0.0220002 0.0204503 32 1352 32 6.64007e+06 125580 554710. 1919.41 0.83 0.075997 0.0665848 22834 132086 -1 963 14 609 609 48826 12639 1.22645 1.22645 -60.6664 -1.22645 0 0 701300. 2426.64 0.20 0.03 0.12 -1 -1 0.20 0.0100134 0.00882417 68 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.55 vpr 61.59 MiB -1 -1 0.14 16908 1 0.02 -1 -1 30284 -1 -1 10 49 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63068 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 23.1 MiB 0.04 558 5025 968 3800 257 61.6 MiB 0.04 0.00 2.07098 -71.2143 -2.07098 2.07098 0.84 0.000425139 0.000396498 0.0128448 0.0119737 28 1421 23 6.64007e+06 125580 500653. 1732.36 0.77 0.064188 0.0560199 21970 115934 -1 1169 12 565 565 48093 12624 1.41065 1.41065 -72.8345 -1.41065 0 0 612192. 2118.31 0.17 0.03 0.10 -1 -1 0.17 0.0113809 0.0100226 73 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.72 vpr 61.61 MiB -1 -1 0.15 16808 1 0.02 -1 -1 29924 -1 -1 11 57 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63088 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 23.1 MiB 0.04 667 10531 2201 7783 547 61.6 MiB 0.07 0.00 2.11498 -86.1894 -2.11498 2.11498 0.77 0.000491136 0.000457618 0.0245838 0.0229161 30 1522 22 6.64007e+06 138138 526063. 1820.29 0.91 0.086643 0.0767132 22546 126617 -1 1274 15 667 667 47564 12306 1.36745 1.36745 -82.8702 -1.36745 0 0 666494. 2306.21 0.29 0.04 0.13 -1 -1 0.29 0.0151487 0.0133522 85 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.49 vpr 61.94 MiB -1 -1 0.15 16860 1 0.02 -1 -1 30168 -1 -1 13 65 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63424 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.3 MiB 0.06 868 13145 3010 9693 442 61.9 MiB 0.09 0.00 2.50829 -103.421 -2.50829 2.50829 0.64 0.000570883 0.000533702 0.0296851 0.0277135 30 1790 25 6.64007e+06 163254 526063. 1820.29 0.82 0.10217 0.0907429 22546 126617 -1 1552 18 664 664 47432 11648 1.28925 1.28925 -92.3169 -1.28925 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0198114 0.0174165 97 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.53 vpr 62.65 MiB -1 -1 0.10 17192 1 0.03 -1 -1 30252 -1 -1 19 97 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 23.9 MiB 0.06 1568 34065 14169 19781 115 62.7 MiB 0.20 0.00 3.38291 -182.49 -3.38291 3.38291 0.65 0.00087162 0.000816927 0.0678489 0.0635614 32 2880 15 6.64007e+06 238602 554710. 1919.41 0.82 0.162904 0.147991 22834 132086 -1 2659 17 1121 1121 110787 24043 1.50525 1.50525 -149.272 -1.50525 0 0 701300. 2426.64 0.19 0.07 0.08 -1 -1 0.19 0.0290638 0.0260129 145 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.15 vpr 63.34 MiB -1 -1 0.16 17336 1 0.03 -1 -1 30516 -1 -1 25 129 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.5 MiB 0.08 2005 50303 16107 29492 4704 63.3 MiB 0.28 0.01 4.25753 -269.889 -4.25753 4.25753 0.63 0.00119166 0.00112036 0.0936853 0.0880086 30 4093 39 6.64007e+06 313950 526063. 1820.29 1.12 0.270887 0.246716 22546 126617 -1 3365 16 1268 1268 109386 27629 1.79745 1.79745 -209.019 -1.79745 0 0 666494. 2306.21 0.18 0.10 0.12 -1 -1 0.18 0.0375427 0.0339136 193 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.39 vpr 60.54 MiB -1 -1 0.09 16652 1 0.02 -1 -1 29908 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61992 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 21.9 MiB 0.01 45 88 36 48 4 60.5 MiB 0.00 0.00 0.824016 -7.37037 -0.824016 0.824016 0.63 7.2216e-05 6.4634e-05 0.000659497 0.000594791 12 108 7 6.65987e+06 25356 231691. 801.699 0.31 0.0035037 0.00316559 19090 58805 -1 106 5 36 36 2491 792 0.770048 0.770048 -7.85853 -0.770048 0 0 318358. 1101.58 0.09 0.01 0.06 -1 -1 0.09 0.00209331 0.00192134 10 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.80 vpr 60.77 MiB -1 -1 0.09 16820 1 0.02 -1 -1 30040 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62228 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.1 MiB 0.01 41 456 116 304 36 60.8 MiB 0.01 0.00 0.781048 -9.22036 -0.781048 0.781048 0.68 9.5142e-05 8.4304e-05 0.00257641 0.00228466 26 152 18 6.65987e+06 25356 477104. 1650.88 0.55 0.00918979 0.00778672 21682 110474 -1 116 7 74 74 3007 1013 0.779989 0.779989 -9.21718 -0.779989 0 0 585099. 2024.56 0.16 0.01 0.10 -1 -1 0.16 0.0026344 0.00237773 13 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.85 vpr 60.78 MiB -1 -1 0.09 16808 1 0.02 -1 -1 30116 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62236 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.1 MiB 0.01 72 1094 334 508 252 60.8 MiB 0.01 0.00 0.803048 -11.753 -0.803048 0.803048 0.63 0.000106068 9.6643e-05 0.00499134 0.00455456 26 224 15 6.65987e+06 25356 477104. 1650.88 0.58 0.0174645 0.014836 21682 110474 -1 167 11 125 125 5716 1772 1.02145 1.02145 -12.529 -1.02145 0 0 585099. 2024.56 0.21 0.03 0.10 -1 -1 0.21 0.00847052 0.00746355 16 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.04 vpr 60.73 MiB -1 -1 0.09 16700 1 0.03 -1 -1 30044 -1 -1 4 13 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62192 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 22.1 MiB 0.01 116 976 287 524 165 60.7 MiB 0.01 0.00 0.825048 -14.7932 -0.825048 0.825048 0.68 0.000123237 0.000112748 0.00395645 0.00362361 32 258 13 6.65987e+06 50712 554710. 1919.41 0.64 0.0181149 0.0154004 22834 132086 -1 233 15 168 168 9348 2946 0.912248 0.912248 -15.665 -0.912248 0 0 701300. 2426.64 0.28 0.01 0.13 -1 -1 0.28 0.00464616 0.00410451 20 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.06 vpr 60.61 MiB -1 -1 0.13 16700 1 0.02 -1 -1 30016 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62060 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.0 MiB 0.01 108 1090 278 634 178 60.6 MiB 0.03 0.00 1.18536 -17.031 -1.18536 1.18536 0.71 0.00030521 0.000280018 0.0108311 0.00993712 26 321 15 6.65987e+06 38034 477104. 1650.88 0.58 0.0271715 0.0234877 21682 110474 -1 266 15 195 195 15675 4276 1.07445 1.07445 -18.5126 -1.07445 0 0 585099. 2024.56 0.21 0.02 0.11 -1 -1 0.21 0.00539231 0.0046838 22 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.94 vpr 60.71 MiB -1 -1 0.13 16548 1 0.02 -1 -1 30000 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62172 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.3 MiB 0.02 121 1870 577 901 392 60.7 MiB 0.02 0.00 1.19636 -19.7591 -1.19636 1.19636 0.65 0.000156655 0.000144065 0.00690437 0.00635479 26 301 14 6.65987e+06 50712 477104. 1650.88 0.58 0.0247911 0.0211864 21682 110474 -1 307 14 174 174 14296 3814 1.10745 1.10745 -21.924 -1.10745 0 0 585099. 2024.56 0.16 0.02 0.10 -1 -1 0.16 0.00551437 0.00476794 25 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.24 vpr 60.75 MiB -1 -1 0.12 16476 1 0.04 -1 -1 30012 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62212 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.3 MiB 0.02 130 1489 379 854 256 60.8 MiB 0.02 0.00 1.20736 -22.2972 -1.20736 1.20736 0.66 0.000179202 0.000164099 0.00558311 0.00516194 28 383 14 6.65987e+06 50712 500653. 1732.36 0.76 0.0226792 0.0193651 21970 115934 -1 314 13 189 189 13693 3682 1.07445 1.07445 -23.2798 -1.07445 0 0 612192. 2118.31 0.17 0.02 0.10 -1 -1 0.17 0.00572719 0.00499125 28 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.96 vpr 60.96 MiB -1 -1 0.10 16604 1 0.02 -1 -1 30016 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62424 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.5 MiB 0.02 174 2721 690 1411 620 61.0 MiB 0.02 0.00 1.21836 -25.1455 -1.21836 1.21836 0.64 0.000195028 0.000180362 0.00932152 0.00862531 26 459 11 6.65987e+06 63390 477104. 1650.88 0.60 0.0301707 0.0259866 21682 110474 -1 429 17 252 252 26655 6869 1.11845 1.11845 -27.7026 -1.11845 0 0 585099. 2024.56 0.21 0.02 0.11 -1 -1 0.21 0.00742205 0.0063806 31 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.08 vpr 60.95 MiB -1 -1 0.13 16516 1 0.02 -1 -1 29992 -1 -1 5 23 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62408 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.5 MiB 0.02 167 2964 885 1525 554 60.9 MiB 0.02 0.00 1.22936 -27.524 -1.22936 1.22936 0.64 0.000208731 0.000193017 0.00971386 0.00897663 32 479 16 6.65987e+06 63390 554710. 1919.41 0.67 0.0338142 0.0291387 22834 132086 -1 395 21 324 324 25600 6914 1.12945 1.12945 -28.8455 -1.12945 0 0 701300. 2426.64 0.19 0.03 0.11 -1 -1 0.19 0.00918646 0.00786476 34 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.99 vpr 60.94 MiB -1 -1 0.07 16688 1 0.02 -1 -1 30032 -1 -1 5 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62404 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.4 MiB 0.02 182 3793 1277 1774 742 60.9 MiB 0.03 0.00 1.24036 -30.1073 -1.24036 1.24036 0.62 0.000226158 0.000209534 0.0120714 0.0111803 30 533 22 6.65987e+06 63390 526063. 1820.29 0.65 0.0396974 0.0343319 22546 126617 -1 415 15 303 303 18773 5450 1.11845 1.11845 -31.306 -1.11845 0 0 666494. 2306.21 0.19 0.02 0.12 -1 -1 0.19 0.00764893 0.00662829 37 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.22 vpr 61.12 MiB -1 -1 0.12 16596 1 0.02 -1 -1 29992 -1 -1 6 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62584 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.6 MiB 0.02 242 3827 1191 1808 828 61.1 MiB 0.03 0.00 1.25136 -33.3667 -1.25136 1.25136 0.68 0.00023863 0.000220928 0.0116184 0.0107621 32 602 23 6.65987e+06 76068 554710. 1919.41 0.71 0.0412691 0.0356594 22834 132086 -1 551 15 329 329 25798 6746 1.16245 1.16245 -36.4677 -1.16245 0 0 701300. 2426.64 0.24 0.02 0.13 -1 -1 0.24 0.00849487 0.00737783 40 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.06 vpr 60.93 MiB -1 -1 0.08 16484 1 0.02 -1 -1 29904 -1 -1 7 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62388 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 22.4 MiB 0.02 232 4187 1348 1837 1002 60.9 MiB 0.03 0.00 1.26236 -35.7901 -1.26236 1.26236 0.66 0.000251011 0.000232275 0.012034 0.0111472 32 784 18 6.65987e+06 88746 554710. 1919.41 0.72 0.0415616 0.0360182 22834 132086 -1 649 20 448 448 37391 10296 1.18565 1.18565 -38.5204 -1.18565 0 0 701300. 2426.64 0.19 0.03 0.12 -1 -1 0.19 0.0111503 0.00958348 44 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.09 vpr 61.03 MiB -1 -1 0.13 16576 1 0.02 -1 -1 30296 -1 -1 7 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62492 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.5 MiB 0.02 288 4950 1999 2838 113 61.0 MiB 0.04 0.00 1.62267 -39.6644 -1.62267 1.62267 0.65 0.000270503 0.000250606 0.0142365 0.0131715 32 720 13 6.65987e+06 88746 554710. 1919.41 0.71 0.0439331 0.0382457 22834 132086 -1 581 15 323 323 23790 6339 1.11139 1.11139 -39.4077 -1.11139 0 0 701300. 2426.64 0.19 0.02 0.12 -1 -1 0.19 0.00898417 0.00782433 46 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.06 vpr 61.00 MiB -1 -1 0.13 16944 1 0.03 -1 -1 30068 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62468 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.4 MiB 0.02 303 5834 2357 3389 88 61.0 MiB 0.04 0.00 1.63367 -43.2049 -1.63367 1.63367 0.65 0.000289613 0.000268407 0.0164896 0.0153003 30 736 23 6.65987e+06 88746 526063. 1820.29 0.71 0.0527476 0.0460293 22546 126617 -1 585 11 314 314 16980 4853 1.09525 1.09525 -41.4234 -1.09525 0 0 666494. 2306.21 0.18 0.02 0.07 -1 -1 0.18 0.00770111 0.00676809 49 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.16 vpr 61.24 MiB -1 -1 0.12 16868 1 0.02 -1 -1 30020 -1 -1 8 37 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62708 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.6 MiB 0.03 345 7938 3016 3746 1176 61.2 MiB 0.05 0.00 1.65567 -49.0688 -1.65567 1.65567 0.64 0.000328603 0.000305597 0.0214596 0.0199392 32 864 23 6.65987e+06 101424 554710. 1919.41 0.73 0.0612624 0.0535617 22834 132086 -1 714 17 458 458 35870 9202 1.21545 1.21545 -48.6316 -1.21545 0 0 701300. 2426.64 0.19 0.03 0.12 -1 -1 0.19 0.0116204 0.0100606 55 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 4.67 vpr 61.14 MiB -1 -1 0.11 16756 1 0.02 -1 -1 30288 -1 -1 8 41 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62608 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.7 MiB 0.03 384 7846 3176 4532 138 61.1 MiB 0.05 0.00 1.67767 -55.9313 -1.67767 1.67767 0.64 0.000359787 0.000334507 0.0207435 0.0192742 32 1100 37 6.65987e+06 101424 554710. 1919.41 2.16 0.138143 0.118286 22834 132086 -1 834 15 513 513 50895 14061 1.35765 1.35765 -56.977 -1.35765 0 0 701300. 2426.64 0.20 0.03 0.11 -1 -1 0.20 0.0113818 0.00996538 61 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.30 vpr 61.33 MiB -1 -1 0.14 16792 1 0.03 -1 -1 30240 -1 -1 10 45 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62804 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 22.9 MiB 0.03 501 8876 3644 5119 113 61.3 MiB 0.06 0.00 1.69967 -63.1909 -1.69967 1.69967 0.66 0.000296671 0.000272461 0.0219232 0.0203732 32 1229 21 6.65987e+06 126780 554710. 1919.41 0.79 0.0681071 0.0598606 22834 132086 -1 983 14 503 503 41044 10497 1.35765 1.35765 -63.3446 -1.35765 0 0 701300. 2426.64 0.19 0.03 0.12 -1 -1 0.19 0.0117639 0.0103107 68 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.48 vpr 61.43 MiB -1 -1 0.10 16964 1 0.02 -1 -1 30280 -1 -1 10 49 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62908 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 22.9 MiB 0.03 511 5574 1066 4247 261 61.4 MiB 0.04 0.00 2.07098 -69.2626 -2.07098 2.07098 0.86 0.000334543 0.000306134 0.0132025 0.0122392 30 1160 19 6.65987e+06 126780 526063. 1820.29 0.77 0.0619854 0.0540699 22546 126617 -1 994 17 530 530 32427 9110 1.23039 1.23039 -65.5714 -1.23039 0 0 666494. 2306.21 0.18 0.04 0.11 -1 -1 0.18 0.0144555 0.0126318 73 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.79 vpr 61.57 MiB -1 -1 0.14 17036 1 0.03 -1 -1 29956 -1 -1 11 57 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63052 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 23.0 MiB 0.03 651 8311 1647 6236 428 61.6 MiB 0.06 0.00 2.11498 -86.6461 -2.11498 2.11498 0.69 0.000488037 0.00045472 0.0196026 0.0182552 32 1634 45 6.65987e+06 139458 554710. 1919.41 1.15 0.105909 0.0928275 22834 132086 -1 1319 25 699 699 115082 47232 1.51479 1.51479 -86.6431 -1.51479 0 0 701300. 2426.64 0.21 0.07 0.13 -1 -1 0.21 0.0242339 0.0212661 85 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 5.21 vpr 61.84 MiB -1 -1 0.14 16944 1 0.03 -1 -1 30112 -1 -1 13 65 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63324 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.1 MiB 0.04 868 11549 2508 8660 381 61.8 MiB 0.08 0.00 2.50829 -103.583 -2.50829 2.50829 0.64 0.000565266 0.000527895 0.0262663 0.0245342 36 1671 12 6.65987e+06 164814 612192. 2118.31 2.53 0.175483 0.153476 23410 145293 -1 1494 16 639 639 51471 12603 1.31639 1.31639 -91.5905 -1.31639 0 0 782063. 2706.10 0.23 0.05 0.13 -1 -1 0.23 0.0187444 0.0165488 97 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 5.55 vpr 62.43 MiB -1 -1 0.14 17244 1 0.04 -1 -1 30256 -1 -1 19 97 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 23.7 MiB 0.06 1535 34065 11310 19970 2785 62.4 MiB 0.20 0.00 3.38291 -182.175 -3.38291 3.38291 0.65 0.000871086 0.000815999 0.0682818 0.0639526 34 2861 18 6.65987e+06 240882 585099. 2024.56 2.60 0.262571 0.235683 23122 138558 -1 2590 14 1010 1010 95313 21795 1.76765 1.76765 -159.313 -1.76765 0 0 742403. 2568.87 0.21 0.07 0.12 -1 -1 0.21 0.0246844 0.0221704 145 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.77 vpr 63.03 MiB -1 -1 0.13 17572 1 0.03 -1 -1 30524 -1 -1 25 129 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.3 MiB 0.08 1995 50303 15701 29972 4630 63.0 MiB 0.29 0.01 4.25753 -271.034 -4.25753 4.25753 0.63 0.00120181 0.0011316 0.0944409 0.0888144 34 3946 34 6.65987e+06 316950 585099. 2024.56 1.66 0.365082 0.331036 23122 138558 -1 3373 19 1322 1322 123702 29938 1.87959 1.87959 -212.925 -1.87959 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0433375 0.0391393 193 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 2.83 vpr 61.50 MiB -1 -1 0.12 16660 1 0.02 -1 -1 29900 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62972 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.9 MiB 0.02 35 142 65 72 5 61.5 MiB 0.00 0.00 0.712895 -7.85699 -0.712895 0.712895 0.69 7.0776e-05 6.351e-05 0.00102225 0.000917552 18 101 12 6.95648e+06 14475.7 376052. 1301.22 0.48 0.0094283 0.00787663 22882 88689 -1 85 6 30 30 1665 579 0.74674 0.74674 -8.48094 -0.74674 0 0 470940. 1629.55 0.15 0.01 0.08 -1 -1 0.15 0.00232772 0.00217204 5 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 2.66 vpr 61.48 MiB -1 -1 0.13 16596 1 0.03 -1 -1 29952 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62960 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 22.9 MiB 0.03 31 339 89 221 29 61.5 MiB 0.01 0.00 0.583992 -8.96727 -0.583992 0.583992 0.68 8.7789e-05 7.9566e-05 0.00197013 0.00178682 18 107 11 6.95648e+06 14475.7 376052. 1301.22 0.47 0.0122517 0.0103568 22882 88689 -1 104 15 80 80 5143 1701 0.74674 0.74674 -9.62957 -0.74674 0 0 470940. 1629.55 0.12 0.01 0.05 -1 -1 0.12 0.0025915 0.00232026 7 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 2.80 vpr 61.79 MiB -1 -1 0.13 16828 1 0.02 -1 -1 29968 -1 -1 1 11 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63276 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 23.2 MiB 0.03 45 386 75 296 15 61.8 MiB 0.01 0.00 0.701895 -11.7042 -0.701895 0.701895 0.65 0.000105744 9.659e-05 0.00212845 0.00194235 20 170 7 6.95648e+06 14475.7 414966. 1435.87 0.48 0.00547974 0.00492535 23170 95770 -1 132 10 67 67 3716 1135 0.709292 0.709292 -12.5375 -0.709292 0 0 503264. 1741.40 0.19 0.01 0.07 -1 -1 0.19 0.00362899 0.0031977 8 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 2.80 vpr 61.50 MiB -1 -1 0.08 16680 1 0.02 -1 -1 29884 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62972 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 23.1 MiB 0.03 102 442 97 336 9 61.5 MiB 0.01 0.00 0.834592 -15.6382 -0.834592 0.834592 0.69 0.000122547 0.000112206 0.0022557 0.00206458 14 266 10 6.95648e+06 28951.4 292583. 1012.40 0.43 0.0160055 0.0134776 22018 70521 -1 244 10 94 94 5449 1761 0.955932 0.955932 -17.8072 -0.955932 0 0 376052. 1301.22 0.11 0.01 0.09 -1 -1 0.11 0.00504022 0.00450224 10 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 2.94 vpr 61.49 MiB -1 -1 0.12 16604 1 0.03 -1 -1 29960 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62964 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 23.1 MiB 0.04 130 961 301 532 128 61.5 MiB 0.01 0.00 0.881906 -18.7043 -0.881906 0.881906 0.65 0.000141523 0.000129909 0.00425537 0.00390416 26 280 16 6.95648e+06 28951.4 503264. 1741.40 0.60 0.0204775 0.0173691 24322 120374 -1 256 17 144 144 10809 2941 0.841632 0.841632 -19.3755 -0.841632 0 0 618332. 2139.56 0.16 0.02 0.11 -1 -1 0.16 0.00567022 0.004882 11 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 3.01 vpr 61.67 MiB -1 -1 0.12 16484 1 0.02 -1 -1 30028 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63148 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 23.2 MiB 0.04 257 910 229 586 95 61.7 MiB 0.01 0.00 0.852632 -22.7137 -0.852632 0.852632 0.66 0.000157647 0.000145299 0.00390956 0.00361113 26 472 15 6.95648e+06 28951.4 503264. 1741.40 0.61 0.0225391 0.0191026 24322 120374 -1 448 12 147 147 11564 2660 0.977932 0.977932 -25.1573 -0.977932 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00506492 0.00442416 13 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 3.14 vpr 61.76 MiB -1 -1 0.12 16488 1 0.02 -1 -1 29968 -1 -1 2 19 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63240 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 23.2 MiB 0.04 130 1471 299 1132 40 61.8 MiB 0.02 0.00 1.04807 -22.9622 -1.04807 1.04807 0.67 0.000114512 0.000102238 0.00573301 0.0052562 32 406 10 6.95648e+06 28951.4 586450. 2029.24 0.69 0.0242401 0.0207271 25474 144626 -1 382 17 207 207 16113 4728 1.08603 1.08603 -26.1011 -1.08603 0 0 744469. 2576.02 0.19 0.02 0.13 -1 -1 0.19 0.00671449 0.00587308 14 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 3.20 vpr 61.65 MiB -1 -1 0.12 16700 1 0.02 -1 -1 30076 -1 -1 2 21 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63132 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 23.2 MiB 0.04 132 1464 547 909 8 61.7 MiB 0.02 0.00 0.896632 -24.9691 -0.896632 0.896632 0.67 0.000156235 0.000140751 0.00515574 0.00467451 32 454 39 6.95648e+06 28951.4 586450. 2029.24 0.75 0.0349468 0.029311 25474 144626 -1 328 12 265 265 19156 5537 1.27253 1.27253 -26.7182 -1.27253 0 0 744469. 2576.02 0.19 0.02 0.13 -1 -1 0.19 0.0060207 0.0052458 16 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 3.20 vpr 61.82 MiB -1 -1 0.14 16684 1 0.02 -1 -1 30072 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63304 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 23.3 MiB 0.04 156 1235 276 946 13 61.8 MiB 0.01 0.00 0.879432 -27.3624 -0.879432 0.879432 0.66 0.000209239 0.000193793 0.00482751 0.00446882 30 531 15 6.95648e+06 43427 556674. 1926.21 0.67 0.0282997 0.0240598 25186 138497 -1 468 15 324 324 23093 6634 1.10803 1.10803 -32.2256 -1.10803 0 0 706193. 2443.58 0.18 0.02 0.12 -1 -1 0.18 0.00735433 0.00636356 17 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 3.03 vpr 61.90 MiB -1 -1 0.08 16488 1 0.02 -1 -1 30144 -1 -1 3 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63384 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.4 MiB 0.03 171 1581 310 1236 35 61.9 MiB 0.02 0.00 0.918632 -29.9024 -0.918632 0.918632 0.67 0.00027692 0.000254471 0.00593109 0.00549007 26 698 24 6.95648e+06 43427 503264. 1741.40 0.66 0.0340083 0.0289382 24322 120374 -1 532 13 316 316 22025 6538 1.13623 1.13623 -35.6567 -1.13623 0 0 618332. 2139.56 0.16 0.02 0.11 -1 -1 0.16 0.00705053 0.00614595 19 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 3.53 vpr 61.76 MiB -1 -1 0.09 16580 1 0.02 -1 -1 30004 -1 -1 3 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63244 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.3 MiB 0.04 436 1584 370 1078 136 61.8 MiB 0.02 0.00 0.951632 -37.9619 -0.951632 0.951632 0.65 0.000238862 0.000221183 0.00566183 0.00526353 34 905 24 6.95648e+06 43427 618332. 2139.56 1.11 0.0539096 0.0455303 25762 151098 -1 792 15 361 361 37468 7937 1.15203 1.15203 -42.7802 -1.15203 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.00814154 0.00706011 20 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 3.62 vpr 61.91 MiB -1 -1 0.13 16700 1 0.02 -1 -1 29896 -1 -1 4 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63400 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 23.4 MiB 0.03 474 4050 1146 2192 712 61.9 MiB 0.03 0.00 0.951632 -40.2713 -0.951632 0.951632 0.65 0.000251101 0.000232369 0.0125422 0.0116254 34 943 22 6.95648e+06 57902.7 618332. 2139.56 1.15 0.0626903 0.053615 25762 151098 -1 922 18 415 415 43226 9012 1.29933 1.29933 -49.2834 -1.29933 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.00989338 0.00859038 23 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 3.67 vpr 61.82 MiB -1 -1 0.13 16512 1 0.03 -1 -1 30292 -1 -1 3 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63308 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.3 MiB 0.05 265 3730 1483 2213 34 61.8 MiB 0.03 0.00 1.33396 -40.6409 -1.33396 1.33396 0.65 0.000272213 0.000252371 0.0119379 0.0110919 34 823 28 6.95648e+06 43427 618332. 2139.56 1.18 0.0679833 0.0579851 25762 151098 -1 676 21 494 494 46660 10924 1.28633 1.28633 -44.7499 -1.28633 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.0115361 0.0099394 24 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 3.70 vpr 61.91 MiB -1 -1 0.11 16880 1 0.03 -1 -1 30196 -1 -1 4 33 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63400 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.4 MiB 0.07 279 4848 1968 2843 37 61.9 MiB 0.04 0.00 1.34496 -43.5864 -1.34496 1.34496 0.65 0.000288172 0.000267143 0.0146798 0.0136281 34 870 27 6.95648e+06 57902.7 618332. 2139.56 1.16 0.0742228 0.0635983 25762 151098 -1 676 14 421 421 37243 9470 1.31933 1.31933 -48.683 -1.31933 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.00932695 0.00815116 25 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 3.85 vpr 62.06 MiB -1 -1 0.12 16736 1 0.02 -1 -1 29960 -1 -1 4 37 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.5 MiB 0.09 365 6144 2547 3561 36 62.1 MiB 0.04 0.00 1.36696 -50.3211 -1.36696 1.36696 0.65 0.000329126 0.000306193 0.0183696 0.0171043 34 942 18 6.95648e+06 57902.7 618332. 2139.56 1.18 0.0815789 0.0703098 25762 151098 -1 813 19 472 472 73579 19568 1.29733 1.29733 -54.787 -1.29733 0 0 787024. 2723.27 0.20 0.04 0.14 -1 -1 0.20 0.012772 0.0110386 28 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 5.74 vpr 62.12 MiB -1 -1 0.12 16964 1 0.03 -1 -1 30336 -1 -1 4 41 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63608 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 23.4 MiB 0.08 353 6716 2777 3889 50 62.1 MiB 0.05 0.00 1.38896 -56.1965 -1.38896 1.38896 0.65 0.000349698 0.000323715 0.0190772 0.0177341 38 940 27 6.95648e+06 57902.7 678818. 2348.85 3.03 0.114823 0.0983948 26626 170182 -1 742 15 504 504 41784 10379 1.37433 1.37433 -58.3371 -1.37433 0 0 902133. 3121.57 0.22 0.03 0.15 -1 -1 0.22 0.0118042 0.0103205 31 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 4.13 vpr 62.17 MiB -1 -1 0.13 16756 1 0.03 -1 -1 30356 -1 -1 5 45 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 45 23 160 161 1 108 73 17 17 289 -1 unnamed_device 23.8 MiB 0.10 426 8889 3770 5070 49 62.2 MiB 0.06 0.00 1.41096 -62.769 -1.41096 1.41096 0.66 0.000389812 0.000362211 0.023998 0.0223317 36 1166 26 6.95648e+06 72378.4 648988. 2245.63 1.46 0.103193 0.0898077 26050 158493 -1 889 16 551 551 50529 11993 1.44653 1.44653 -67.6272 -1.44653 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.0132009 0.0115874 34 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 4.22 vpr 62.21 MiB -1 -1 0.09 16924 1 0.02 -1 -1 30264 -1 -1 5 49 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 23.8 MiB 0.10 449 10895 4547 6264 84 62.2 MiB 0.07 0.00 1.43296 -68.3754 -1.43296 1.43296 0.65 0.000421261 0.000391889 0.0284063 0.0264314 36 1396 29 6.95648e+06 72378.4 648988. 2245.63 1.53 0.0989952 0.0867809 26050 158493 -1 1000 18 676 676 76588 19780 1.38533 1.38533 -71.9222 -1.38533 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0157871 0.0138535 37 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 9.51 vpr 62.32 MiB -1 -1 0.13 16776 1 0.02 -1 -1 29988 -1 -1 6 57 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 23.9 MiB 0.07 552 14789 6414 8303 72 62.3 MiB 0.09 0.00 1.47696 -82.0834 -1.47696 1.47696 0.65 0.000490966 0.000457108 0.0367542 0.0342433 42 1675 42 6.95648e+06 86854.1 744469. 2576.02 6.60 0.244458 0.212913 27202 183097 -1 1251 18 786 786 91448 22161 1.48433 1.48433 -89.0015 -1.48433 0 0 949917. 3286.91 0.36 0.07 0.18 -1 -1 0.36 0.0247827 0.0216797 43 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 4.44 vpr 62.48 MiB -1 -1 0.13 16860 1 0.02 -1 -1 30132 -1 -1 7 65 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.8 MiB 0.10 753 15419 6653 8659 107 62.5 MiB 0.09 0.00 1.88129 -97.4586 -1.88129 1.88129 0.66 0.000565936 0.000527952 0.0370862 0.0346024 38 1989 34 6.95648e+06 101330 678818. 2348.85 1.60 0.136718 0.120733 26626 170182 -1 1418 19 907 907 90327 20161 1.42303 1.42303 -98.2916 -1.42303 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0212693 0.0187488 49 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 7.08 vpr 63.27 MiB -1 -1 0.10 17132 1 0.03 -1 -1 30244 -1 -1 10 97 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.6 MiB 0.13 1496 27810 8354 17704 1752 63.3 MiB 0.16 0.00 2.41762 -167.817 -2.41762 2.41762 0.67 0.000905487 0.000849404 0.0627705 0.0589219 54 2784 19 6.95648e+06 144757 949917. 3286.91 4.01 0.306953 0.275715 29506 232905 -1 2526 21 1230 1230 208732 42172 1.53733 1.53733 -155.57 -1.53733 0 0 1.17392e+06 4061.99 0.29 0.10 0.20 -1 -1 0.29 0.0350739 0.031404 73 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 8.79 vpr 63.96 MiB -1 -1 0.14 17572 1 0.03 -1 -1 30588 -1 -1 13 129 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65496 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 25.2 MiB 0.12 2187 38763 11991 23991 2781 64.0 MiB 0.22 0.01 2.95395 -243.557 -2.95395 2.95395 0.66 0.0011966 0.00112513 0.0792 0.0744865 64 3675 27 6.95648e+06 188184 1.08113e+06 3740.92 5.29 0.418586 0.378286 31522 276338 -1 3357 19 1447 1447 179272 34330 1.79303 1.79303 -218.422 -1.79303 0 0 1.36325e+06 4717.13 0.36 0.12 0.24 -1 -1 0.36 0.0450743 0.0407772 97 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 2.78 vpr 61.39 MiB -1 -1 0.09 16716 1 0.02 -1 -1 30036 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62860 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.8 MiB 0.01 38 142 63 74 5 61.4 MiB 0.00 0.00 0.815432 -8.51669 -0.815432 0.815432 0.65 7.1123e-05 6.3854e-05 0.00102174 0.000917314 14 104 9 6.99608e+06 14715.7 292583. 1012.40 0.38 0.00387953 0.00345788 22018 70521 -1 88 6 29 29 1510 531 0.87204 0.87204 -8.99744 -0.87204 0 0 376052. 1301.22 0.11 0.01 0.07 -1 -1 0.11 0.00230051 0.00210342 5 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 2.86 vpr 61.37 MiB -1 -1 0.12 16488 1 0.02 -1 -1 29976 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62844 9 5 34 35 1 17 15 17 17 289 -1 unnamed_device 22.7 MiB 0.01 35 375 107 237 31 61.4 MiB 0.01 0.00 0.712895 -9.56286 -0.712895 0.712895 0.66 8.788e-05 7.9712e-05 0.00214886 0.00194984 22 122 13 6.99608e+06 14715.7 443629. 1535.05 0.54 0.0123324 0.0103769 23458 102101 -1 89 8 41 41 2009 718 0.74674 0.74674 -9.34806 -0.74674 0 0 531479. 1839.03 0.14 0.01 0.09 -1 -1 0.14 0.00278337 0.00250644 7 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 2.95 vpr 61.28 MiB -1 -1 0.13 16484 1 0.02 -1 -1 29904 -1 -1 1 11 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62752 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 22.6 MiB 0.01 44 409 94 303 12 61.3 MiB 0.01 0.00 0.837432 -12.9697 -0.837432 0.837432 0.65 0.000104917 9.5715e-05 0.00223046 0.00203322 26 147 10 6.99608e+06 14715.7 503264. 1741.40 0.59 0.0153447 0.0127561 24322 120374 -1 143 5 52 52 3813 1146 0.837432 0.837432 -14.2048 -0.837432 0 0 618332. 2139.56 0.16 0.01 0.11 -1 -1 0.16 0.00272616 0.00248653 8 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 2.93 vpr 61.42 MiB -1 -1 0.11 16484 1 0.02 -1 -1 29972 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62896 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 22.8 MiB 0.01 105 502 118 371 13 61.4 MiB 0.01 0.00 0.87204 -15.6049 -0.87204 0.87204 0.69 0.00012322 0.000111238 0.00244103 0.00221641 26 223 10 6.99608e+06 29431.4 503264. 1741.40 0.59 0.0157128 0.01323 24322 120374 -1 213 6 56 56 3881 1075 0.99734 0.99734 -16.2101 -0.99734 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00304025 0.00274327 10 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 2.96 vpr 61.58 MiB -1 -1 0.12 16780 1 0.02 -1 -1 30076 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63060 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 22.8 MiB 0.02 221 889 226 585 78 61.6 MiB 0.01 0.00 0.859432 -20.3506 -0.859432 0.859432 0.66 0.00013897 0.00012775 0.00402186 0.00369369 26 389 16 6.99608e+06 29431.4 503264. 1741.40 0.61 0.0200751 0.0169654 24322 120374 -1 367 12 122 122 11818 2681 0.859432 0.859432 -22.0875 -0.859432 0 0 618332. 2139.56 0.17 0.02 0.11 -1 -1 0.17 0.00541542 0.00469116 11 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 3.03 vpr 61.52 MiB -1 -1 0.13 16492 1 0.02 -1 -1 29980 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62996 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 23.1 MiB 0.02 254 910 227 603 80 61.5 MiB 0.01 0.00 0.835432 -22.1941 -0.835432 0.835432 0.65 0.000157329 0.000144997 0.00390305 0.0036061 26 490 15 6.99608e+06 29431.4 503264. 1741.40 0.61 0.0219863 0.0185664 24322 120374 -1 458 14 164 164 15885 3660 1.07503 1.07503 -25.7095 -1.07503 0 0 618332. 2139.56 0.21 0.02 0.14 -1 -1 0.21 0.00565055 0.00488757 13 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 3.32 vpr 61.55 MiB -1 -1 0.13 16716 1 0.02 -1 -1 30040 -1 -1 2 19 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63032 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 23.1 MiB 0.02 127 1327 280 1001 46 61.6 MiB 0.01 0.00 0.99734 -22.7448 -0.99734 0.99734 0.65 0.000176733 0.000161683 0.00550299 0.00507595 30 399 12 6.99608e+06 29431.4 556674. 1926.21 0.83 0.0215413 0.0185478 25186 138497 -1 336 15 222 222 12475 3709 1.08603 1.08603 -25.228 -1.08603 0 0 706193. 2443.58 0.22 0.02 0.13 -1 -1 0.22 0.00633735 0.00548246 14 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 3.15 vpr 61.49 MiB -1 -1 0.12 16448 1 0.02 -1 -1 30116 -1 -1 2 21 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62964 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 23.0 MiB 0.01 126 1574 441 793 340 61.5 MiB 0.02 0.00 0.857432 -24.0154 -0.857432 0.857432 0.65 0.00019227 0.000177874 0.00614309 0.00567934 30 436 46 6.99608e+06 29431.4 556674. 1926.21 0.72 0.0369604 0.0311169 25186 138497 -1 332 25 393 393 15591 5216 0.971732 0.971732 -25.2759 -0.971732 0 0 706193. 2443.58 0.19 0.04 0.12 -1 -1 0.19 0.0158904 0.0133578 16 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 3.14 vpr 61.55 MiB -1 -1 0.13 16644 1 0.02 -1 -1 30040 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63024 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 23.0 MiB 0.02 183 1550 351 1152 47 61.5 MiB 0.02 0.00 0.99734 -28.2495 -0.99734 0.99734 0.67 0.000213818 0.000195374 0.00587824 0.00542983 30 517 14 6.99608e+06 44147 556674. 1926.21 0.67 0.0290247 0.0247712 25186 138497 -1 445 14 233 233 14190 4203 1.16733 1.16733 -31.0675 -1.16733 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.0069568 0.00605039 17 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 3.12 vpr 61.70 MiB -1 -1 0.12 16700 1 0.02 -1 -1 30152 -1 -1 3 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63176 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.2 MiB 0.02 204 1721 329 1376 16 61.7 MiB 0.02 0.00 0.890432 -30.9922 -0.890432 0.890432 0.65 0.000228172 0.000211523 0.00632011 0.00584971 30 557 16 6.99608e+06 44147 556674. 1926.21 0.69 0.0320261 0.0274407 25186 138497 -1 448 14 266 266 16876 4505 0.837379 0.837379 -31.2383 -0.837379 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00735214 0.00637679 19 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 3.50 vpr 61.51 MiB -1 -1 0.13 16604 1 0.02 -1 -1 30076 -1 -1 3 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62984 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.0 MiB 0.01 436 1892 450 1259 183 61.5 MiB 0.02 0.00 0.912432 -36.8018 -0.912432 0.912432 0.65 0.000238944 0.000221266 0.00658638 0.00611595 34 852 14 6.99608e+06 44147 618332. 2139.56 1.07 0.0507025 0.0429024 25762 151098 -1 831 16 373 373 47234 9494 1.12098 1.12098 -42.5216 -1.12098 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.00853822 0.0074069 20 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 3.59 vpr 61.64 MiB -1 -1 0.13 16484 1 0.02 -1 -1 29896 -1 -1 4 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63120 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 23.2 MiB 0.02 450 1875 444 1300 131 61.6 MiB 0.02 0.00 0.923432 -40.3253 -0.923432 0.923432 0.65 0.000252351 0.000233727 0.0062455 0.00579773 34 937 24 6.99608e+06 58862.7 618332. 2139.56 1.16 0.0574865 0.0487798 25762 151098 -1 859 15 415 415 55847 10881 1.28833 1.28833 -47.6517 -1.28833 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.00868378 0.00756049 23 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 3.67 vpr 61.77 MiB -1 -1 0.09 16680 1 0.03 -1 -1 30252 -1 -1 3 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63252 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.2 MiB 0.02 264 3730 1488 2207 35 61.8 MiB 0.03 0.00 1.29476 -39.8553 -1.29476 1.29476 0.65 0.000271507 0.000251476 0.0118482 0.0109749 34 802 16 6.99608e+06 44147 618332. 2139.56 1.16 0.062788 0.0536938 25762 151098 -1 623 13 400 400 34400 8741 1.18303 1.18303 -43.1955 -1.18303 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.00824872 0.00718958 24 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 5.34 vpr 61.82 MiB -1 -1 0.14 16944 1 0.02 -1 -1 30044 -1 -1 4 33 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63304 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.2 MiB 0.02 281 4848 2013 2797 38 61.8 MiB 0.04 0.00 1.30576 -42.5699 -1.30576 1.30576 0.66 0.000296525 0.000275307 0.0148284 0.0137512 36 724 20 6.99608e+06 58862.7 648988. 2245.63 2.88 0.0872153 0.0744722 26050 158493 -1 674 16 435 435 45126 11427 1.29733 1.29733 -47.6316 -1.29733 0 0 828058. 2865.25 0.21 0.03 0.14 -1 -1 0.21 0.00997458 0.00865755 25 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 3.75 vpr 61.75 MiB -1 -1 0.10 16924 1 0.02 -1 -1 30016 -1 -1 4 37 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63232 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.2 MiB 0.03 364 6027 2460 3523 44 61.8 MiB 0.04 0.00 1.33876 -49.9999 -1.33876 1.33876 0.66 0.000326431 0.000303358 0.017935 0.0166852 34 968 18 6.99608e+06 58862.7 618332. 2139.56 1.23 0.0805506 0.0692926 25762 151098 -1 814 16 444 444 47586 10641 1.37863 1.37863 -54.0309 -1.37863 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.0112702 0.00981872 28 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 5.52 vpr 61.92 MiB -1 -1 0.13 16980 1 0.02 -1 -1 30468 -1 -1 4 41 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 23.3 MiB 0.03 346 6716 2738 3934 44 61.9 MiB 0.05 0.00 1.34976 -55.1748 -1.34976 1.34976 0.66 0.000356876 0.000331631 0.0191613 0.0178231 36 977 32 6.99608e+06 58862.7 648988. 2245.63 2.93 0.111936 0.0959844 26050 158493 -1 819 20 558 558 54416 12290 1.18303 1.18303 -57.3377 -1.18303 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.0144039 0.0124659 31 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 3.99 vpr 62.00 MiB -1 -1 0.10 16756 1 0.02 -1 -1 30332 -1 -1 5 45 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 23.4 MiB 0.03 396 8889 3651 5188 50 62.0 MiB 0.06 0.00 1.37176 -60.7615 -1.37176 1.37176 0.66 0.000388235 0.000361 0.0239717 0.0222944 36 1214 26 6.99608e+06 73578.4 648988. 2245.63 1.40 0.10303 0.0895374 26050 158493 -1 923 12 508 508 48485 11691 1.40733 1.40733 -67.273 -1.40733 0 0 828058. 2865.25 0.21 0.03 0.14 -1 -1 0.21 0.0110055 0.00972414 34 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 4.16 vpr 62.04 MiB -1 -1 0.11 17084 1 0.03 -1 -1 30316 -1 -1 5 49 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 23.6 MiB 0.03 445 10895 4568 6256 71 62.0 MiB 0.07 0.00 1.39376 -67.8862 -1.39376 1.39376 0.66 0.000422059 0.0003925 0.0285416 0.0265669 36 1491 44 6.99608e+06 73578.4 648988. 2245.63 1.55 0.114775 0.100192 26050 158493 -1 1093 19 698 698 70768 16760 1.25718 1.25718 -70.7449 -1.25718 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0159008 0.0138803 37 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 4.40 vpr 62.13 MiB -1 -1 0.14 16792 1 0.03 -1 -1 29992 -1 -1 6 57 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 23.7 MiB 0.04 635 14168 6072 8041 55 62.1 MiB 0.08 0.00 1.43776 -80.6872 -1.43776 1.43776 0.67 0.000486414 0.000452369 0.0349287 0.0325012 38 1434 38 6.99608e+06 88294.1 678818. 2348.85 1.65 0.145281 0.127954 26626 170182 -1 1217 19 722 722 62833 15192 1.34803 1.34803 -84.4465 -1.34803 0 0 902133. 3121.57 0.22 0.05 0.15 -1 -1 0.22 0.0184863 0.016281 43 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 4.59 vpr 62.31 MiB -1 -1 0.14 16748 1 0.04 -1 -1 30068 -1 -1 7 65 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.6 MiB 0.04 752 15419 6606 8671 142 62.3 MiB 0.09 0.00 1.85309 -96.2187 -1.85309 1.85309 0.70 0.000564296 0.000525848 0.0371154 0.0346018 40 1684 44 6.99608e+06 103010 706193. 2443.58 1.71 0.167999 0.147773 26914 176310 -1 1421 17 802 802 88938 19909 1.41203 1.41203 -97.9476 -1.41203 0 0 926341. 3205.33 0.25 0.06 0.15 -1 -1 0.25 0.0195178 0.0172037 49 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 7.34 vpr 63.32 MiB -1 -1 0.12 17188 1 0.03 -1 -1 30264 -1 -1 10 97 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.4 MiB 0.07 1468 27810 8060 18307 1443 63.3 MiB 0.16 0.00 2.38942 -165.278 -2.38942 2.38942 0.65 0.00086764 0.000813103 0.0613794 0.0575197 50 2828 42 6.99608e+06 147157 902133. 3121.57 4.39 0.360706 0.321992 28642 213929 -1 2491 18 1092 1092 117761 25302 1.46503 1.46503 -152.372 -1.46503 0 0 1.08113e+06 3740.92 0.26 0.08 0.18 -1 -1 0.26 0.0310629 0.0278503 73 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 8.09 vpr 63.76 MiB -1 -1 0.15 17284 1 0.03 -1 -1 30504 -1 -1 13 129 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65288 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 24.7 MiB 0.08 2210 38763 12390 23782 2591 63.8 MiB 0.23 0.00 2.92575 -242.6 -2.92575 2.92575 0.68 0.00121 0.00113872 0.0798398 0.0750301 56 3706 17 6.99608e+06 191304 973134. 3367.25 4.79 0.440156 0.39732 29794 239141 -1 3635 18 1462 1462 199910 38062 1.72703 1.72703 -216.431 -1.72703 0 0 1.19926e+06 4149.71 0.29 0.11 0.21 -1 -1 0.29 0.0423199 0.0382353 97 2 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_003bits.v common 2.66 vpr 60.90 MiB -1 -1 0.10 16556 1 0.05 -1 -1 31892 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62364 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 22.3 MiB 0.01 84 103 37 64 2 60.9 MiB 0.00 0.00 0.77095 -8.74779 -0.77095 0.77095 0.66 5.5192e-05 4.7641e-05 0.000734592 0.000656877 18 138 7 6.79088e+06 13472 376052. 1301.22 0.44 0.00360227 0.00324839 22222 88205 -1 139 7 36 36 3391 861 0.834592 0.834592 -9.43991 -0.834592 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.00224456 0.00203448 6 4 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_004bits.v common 2.74 vpr 60.98 MiB -1 -1 0.12 16484 2 0.05 -1 -1 32328 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62444 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 22.3 MiB 0.01 35 357 92 226 39 61.0 MiB 0.01 0.00 0.883748 -9.933 -0.883748 0.883748 0.66 8.5825e-05 7.7586e-05 0.0019415 0.00175195 18 138 22 6.79088e+06 13472 376052. 1301.22 0.46 0.00675937 0.00585571 22222 88205 -1 111 7 46 46 2348 827 0.883748 0.883748 -10.8459 -0.883748 0 0 470940. 1629.55 0.13 0.01 0.10 -1 -1 0.13 0.0026264 0.00237285 8 6 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_005bits.v common 2.71 vpr 60.73 MiB -1 -1 0.13 16688 2 0.05 -1 -1 31964 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62188 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 22.1 MiB 0.01 64 419 103 298 18 60.7 MiB 0.01 0.00 1.02368 -13.4613 -1.02368 1.02368 0.65 0.000104593 9.508e-05 0.00210186 0.00191806 18 187 7 6.79088e+06 26944 376052. 1301.22 0.44 0.00568217 0.00513414 22222 88205 -1 173 6 63 71 3124 1095 1.02368 1.02368 -14.8017 -1.02368 0 0 470940. 1629.55 0.12 0.01 0.08 -1 -1 0.12 0.00279368 0.00252626 10 7 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_006bits.v common 3.08 vpr 60.84 MiB -1 -1 0.13 16484 3 0.05 -1 -1 32004 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62304 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 22.2 MiB 0.01 76 532 100 418 14 60.8 MiB 0.01 0.00 1.14898 -15.9034 -1.14898 1.14898 0.65 0.00012456 0.000113894 0.00262057 0.00240249 30 233 9 6.79088e+06 26944 556674. 1926.21 0.65 0.0160016 0.0134701 24526 138013 -1 186 7 73 77 3376 1079 1.05944 1.05944 -16.4549 -1.05944 0 0 706193. 2443.58 0.19 0.01 0.12 -1 -1 0.19 0.00347721 0.003123 11 9 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_007bits.v common 3.06 vpr 60.83 MiB -1 -1 0.12 16644 3 0.06 -1 -1 31840 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62292 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 22.2 MiB 0.01 104 1285 405 745 135 60.8 MiB 0.01 0.00 1.18818 -18.8265 -1.18818 1.18818 0.72 0.000143767 0.000131958 0.00565365 0.00519494 26 349 21 6.79088e+06 26944 503264. 1741.40 0.61 0.0238229 0.0201815 23662 119890 -1 251 11 123 138 5744 1961 1.13784 1.13784 -19.4351 -1.13784 0 0 618332. 2139.56 0.19 0.01 0.11 -1 -1 0.19 0.00448969 0.00394274 13 10 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_008bits.v common 2.89 vpr 61.00 MiB -1 -1 0.10 16528 3 0.06 -1 -1 32040 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62468 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 22.6 MiB 0.04 140 1036 259 742 35 61.0 MiB 0.01 0.00 1.52493 -22.992 -1.52493 1.52493 0.65 0.000174357 0.000160435 0.0048709 0.00449761 22 536 11 6.79088e+06 26944 443629. 1535.05 0.57 0.0252634 0.0215593 22798 101617 -1 395 10 193 217 10692 3258 1.27433 1.27433 -24.9429 -1.27433 0 0 531479. 1839.03 0.15 0.01 0.07 -1 -1 0.15 0.00502365 0.00440425 16 14 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_009bits.v common 3.03 vpr 61.12 MiB -1 -1 0.11 16596 4 0.05 -1 -1 31712 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62588 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 22.7 MiB 0.05 146 1882 579 931 372 61.1 MiB 0.02 0.00 1.31348 -24.6536 -1.31348 1.31348 0.65 0.00018408 0.000169754 0.00747374 0.00690617 28 465 16 6.79088e+06 40416 531479. 1839.03 0.64 0.0288565 0.0246526 23950 126010 -1 383 14 216 222 15370 4447 1.34919 1.34919 -26.4299 -1.34919 0 0 648988. 2245.63 0.17 0.02 0.11 -1 -1 0.17 0.00636295 0.00552181 17 13 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_010bits.v common 3.21 vpr 60.99 MiB -1 -1 0.10 16820 4 0.06 -1 -1 31676 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62452 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 22.5 MiB 0.19 300 2030 503 1451 76 61.0 MiB 0.02 0.00 1.85398 -35.071 -1.85398 1.85398 0.65 0.00020711 0.000191259 0.00804925 0.00742778 28 666 20 6.79088e+06 40416 531479. 1839.03 0.68 0.0340282 0.0291159 23950 126010 -1 606 9 223 263 19980 4923 1.60338 1.60338 -35.3659 -1.60338 0 0 648988. 2245.63 0.18 0.02 0.12 -1 -1 0.18 0.00551482 0.00486956 21 17 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_011bits.v common 3.21 vpr 60.96 MiB -1 -1 0.09 16596 5 0.05 -1 -1 32088 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62420 23 12 76 88 1 61 38 17 17 289 -1 unnamed_device 22.5 MiB 0.09 166 1865 679 1174 12 61.0 MiB 0.02 0.00 1.90432 -33.8065 -1.90432 1.90432 0.65 0.000223507 0.000206491 0.00744149 0.0068789 30 555 40 6.79088e+06 40416 556674. 1926.21 0.73 0.0412619 0.0350577 24526 138013 -1 449 15 314 367 14797 4946 1.81478 1.81478 -33.5534 -1.81478 0 0 706193. 2443.58 0.18 0.02 0.12 -1 -1 0.18 0.00789845 0.00687332 22 19 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_012bits.v common 3.31 vpr 61.25 MiB -1 -1 0.14 16528 5 0.07 -1 -1 32116 -1 -1 3 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62716 25 13 83 96 1 66 41 17 17 289 -1 unnamed_device 22.7 MiB 0.20 220 1581 312 1246 23 61.2 MiB 0.02 0.00 1.86512 -39.3139 -1.86512 1.86512 0.68 0.000241721 0.000223195 0.00624293 0.00577214 30 659 13 6.79088e+06 40416 556674. 1926.21 0.66 0.0326847 0.0280371 24526 138013 -1 547 13 277 332 18060 5236 1.67834 1.67834 -38.4235 -1.67834 0 0 706193. 2443.58 0.18 0.02 0.12 -1 -1 0.18 0.00771635 0.0067491 23 21 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_013bits.v common 3.72 vpr 61.15 MiB -1 -1 0.11 16688 5 0.08 -1 -1 31748 -1 -1 4 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62616 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 22.7 MiB 0.23 364 3005 1063 1662 280 61.1 MiB 0.03 0.00 2.15497 -46.6453 -2.15497 2.15497 0.65 0.000272669 0.000252666 0.0110862 0.0102761 34 783 11 6.79088e+06 53888 618332. 2139.56 1.04 0.0599517 0.0511089 25102 150614 -1 725 11 221 294 21162 5045 1.90093 1.90093 -44.7961 -1.90093 0 0 787024. 2723.27 0.20 0.02 0.13 -1 -1 0.20 0.00772697 0.00678686 27 24 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_014bits.v common 4.69 vpr 61.16 MiB -1 -1 0.14 16900 6 0.07 -1 -1 32040 -1 -1 4 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62624 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 22.6 MiB 0.25 255 3963 1479 2060 424 61.2 MiB 0.03 0.00 2.36642 -47.9969 -2.36642 2.36642 0.65 0.000281701 0.000260882 0.0139122 0.0128997 30 775 48 6.79088e+06 53888 556674. 1926.21 1.92 0.0945044 0.0802124 24526 138013 -1 568 12 263 300 19966 5335 2.06549 2.06549 -45.4295 -2.06549 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00843371 0.00739498 28 23 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_015bits.v common 4.09 vpr 61.43 MiB -1 -1 0.14 16868 6 0.07 -1 -1 31896 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62908 31 16 104 120 1 82 52 17 17 289 -1 unnamed_device 22.9 MiB 0.35 458 5484 1992 2787 705 61.4 MiB 0.04 0.00 2.44482 -57.1239 -2.44482 2.44482 0.65 0.00031351 0.000291059 0.018788 0.0174459 34 914 12 6.79088e+06 67360 618332. 2139.56 1.08 0.0756281 0.0649461 25102 150614 -1 817 11 288 403 28924 6607 2.14389 2.14389 -55.4209 -2.14389 0 0 787024. 2723.27 0.21 0.02 0.14 -1 -1 0.21 0.00860813 0.00754855 31 27 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_016bits.v common 3.92 vpr 61.24 MiB -1 -1 0.13 16736 7 0.07 -1 -1 31900 -1 -1 5 33 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62712 33 17 112 129 1 88 55 17 17 289 -1 unnamed_device 22.7 MiB 0.60 550 4423 1218 2590 615 61.2 MiB 0.03 0.00 2.73468 -63.1333 -2.73468 2.73468 0.65 0.000328071 0.000304346 0.0150588 0.0139903 28 1257 34 6.79088e+06 67360 531479. 1839.03 0.75 0.0607391 0.0523896 23950 126010 -1 1059 11 370 464 42792 9109 2.51984 2.51984 -64.8834 -2.51984 0 0 648988. 2245.63 0.17 0.03 0.11 -1 -1 0.17 0.00900819 0.0079129 32 30 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_018bits.v common 4.58 vpr 61.25 MiB -1 -1 0.13 16796 7 0.06 -1 -1 32036 -1 -1 6 37 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62716 37 19 127 146 1 99 62 17 17 289 -1 unnamed_device 22.7 MiB 1.11 427 3600 772 2818 10 61.2 MiB 0.03 0.00 3.37591 -73.3749 -3.37591 3.37591 0.67 0.000368212 0.000342127 0.0120643 0.0112241 30 1098 27 6.79088e+06 80832 556674. 1926.21 0.77 0.0594558 0.0513483 24526 138013 -1 907 9 338 418 28742 7172 3.00001 3.00001 -71.4677 -3.00001 0 0 706193. 2443.58 0.18 0.02 0.12 -1 -1 0.18 0.00884598 0.00785095 37 35 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_020bits.v common 4.58 vpr 61.75 MiB -1 -1 0.13 17084 8 0.05 -1 -1 32144 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63232 41 21 139 160 1 106 68 17 17 289 -1 unnamed_device 23.1 MiB 0.40 538 6140 1482 4552 106 61.8 MiB 0.04 0.00 2.83873 -76.6247 -2.83873 2.83873 0.65 0.000398531 0.000369935 0.0191164 0.017759 34 1322 18 6.79088e+06 80832 618332. 2139.56 1.31 0.0960504 0.0830003 25102 150614 -1 1113 11 435 551 44365 10307 2.78163 2.78163 -79.0631 -2.78163 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.0110265 0.00978163 41 37 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_022bits.v common 4.53 vpr 61.50 MiB -1 -1 0.19 16952 9 0.07 -1 -1 31776 -1 -1 6 45 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62976 45 23 153 176 1 119 74 17 17 289 -1 unnamed_device 23.1 MiB 0.43 495 8909 2437 5871 601 61.5 MiB 0.06 0.00 3.32208 -88.8928 -3.32208 3.32208 0.67 0.00043339 0.000402141 0.0265572 0.0246633 34 1107 11 6.79088e+06 80832 618332. 2139.56 1.11 0.105704 0.0923173 25102 150614 -1 1007 16 459 554 37622 9513 2.98195 2.98195 -84.8302 -2.98195 0 0 787024. 2723.27 0.27 0.04 0.15 -1 -1 0.27 0.0150468 0.0132725 43 41 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_024bits.v common 4.62 vpr 61.55 MiB -1 -1 0.17 17044 10 0.09 -1 -1 32020 -1 -1 8 49 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63028 49 25 166 191 1 133 82 17 17 289 -1 unnamed_device 23.0 MiB 0.82 443 10406 3257 5328 1821 61.6 MiB 0.07 0.00 3.69804 -97.8019 -3.69804 3.69804 0.68 0.000472991 0.00043807 0.0295683 0.0274989 30 1213 22 6.79088e+06 107776 556674. 1926.21 0.82 0.0864163 0.076293 24526 138013 -1 917 14 568 651 31674 9707 3.4363 3.4363 -92.7641 -3.4363 0 0 706193. 2443.58 0.18 0.04 0.12 -1 -1 0.18 0.0146178 0.0129197 48 44 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_028bits.v common 5.66 vpr 61.81 MiB -1 -1 0.19 16984 11 0.07 -1 -1 32124 -1 -1 8 57 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63292 57 29 198 227 1 158 94 17 17 289 -1 unnamed_device 23.2 MiB 1.25 693 10744 2889 6912 943 61.8 MiB 0.07 0.00 4.24198 -129.885 -4.24198 4.24198 0.65 0.000576583 0.000535281 0.0311901 0.029007 34 1779 15 6.79088e+06 107776 618332. 2139.56 1.43 0.11488 0.10096 25102 150614 -1 1549 13 640 920 62246 15307 3.77654 3.77654 -125.083 -3.77654 0 0 787024. 2723.27 0.20 0.04 0.13 -1 -1 0.20 0.015537 0.0138954 59 56 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_032bits.v common 5.84 vpr 61.95 MiB -1 -1 0.13 17192 13 0.08 -1 -1 32116 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63440 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 23.3 MiB 1.37 926 16805 6949 9813 43 62.0 MiB 0.10 0.00 5.07578 -160.683 -5.07578 5.07578 0.65 0.000641319 0.000596741 0.045013 0.0419028 36 1839 17 6.79088e+06 121248 648988. 2245.63 1.30 0.167233 0.147435 25390 158009 -1 1677 15 677 874 52182 13074 4.57458 4.57458 -152.855 -4.57458 0 0 828058. 2865.25 0.21 0.05 0.13 -1 -1 0.21 0.0205336 0.0182109 66 62 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_048bits.v common 7.78 vpr 62.90 MiB -1 -1 0.15 17324 19 0.44 -1 -1 32272 -1 -1 13 97 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 97 49 340 389 1 267 159 17 17 289 -1 unnamed_device 24.1 MiB 2.80 1392 28109 7029 18915 2165 62.9 MiB 0.15 0.00 7.59683 -301.558 -7.59683 7.59683 0.65 0.00098897 0.000924113 0.0681109 0.0636246 38 2979 20 6.79088e+06 175136 678818. 2348.85 1.83 0.257004 0.229672 25966 169698 -1 2669 16 1063 1447 107709 25005 6.84503 6.84503 -284.795 -6.84503 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0329526 0.0295648 100 98 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_064bits.v common 11.28 vpr 63.71 MiB -1 -1 0.22 17712 26 0.43 -1 -1 32352 -1 -1 18 129 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 129 65 453 518 1 350 212 17 17 289 -1 unnamed_device 24.8 MiB 3.41 1833 46906 17001 25907 3998 63.7 MiB 0.26 0.00 10.4862 -509.792 -10.4862 10.4862 0.65 0.00133317 0.00124682 0.104301 0.0970424 44 3836 35 6.79088e+06 242496 787024. 2723.27 4.30 0.618033 0.554495 27118 194962 -1 3133 32 1156 1558 223883 106445 9.82387 9.82387 -480.907 -9.82387 0 0 997811. 3452.63 0.25 0.16 0.16 -1 -1 0.25 0.0779388 0.0699852 129 131 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 2.85 vpr 61.21 MiB -1 -1 0.09 16688 1 0.02 -1 -1 30076 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62680 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.6 MiB 0.02 25 155 63 90 2 61.2 MiB 0.00 0.00 0.605992 -7.06722 -0.605992 0.605992 0.67 7.1981e-05 6.3403e-05 0.00106693 0.000954724 22 62 10 6.87369e+06 13973.8 443629. 1535.05 0.55 0.00914781 0.00763673 23458 102101 -1 59 3 19 19 950 335 0.74674 0.74674 -6.60182 -0.74674 0 0 531479. 1839.03 0.14 0.00 0.09 -1 -1 0.14 0.00191096 0.0017818 8 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 2.75 vpr 61.19 MiB -1 -1 0.10 16476 1 0.02 -1 -1 29980 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62656 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.6 MiB 0.05 44 336 94 221 21 61.2 MiB 0.01 0.00 0.789073 -9.95572 -0.789073 0.789073 0.66 8.8933e-05 8.068e-05 0.00179568 0.00162538 18 134 9 6.87369e+06 27947.7 376052. 1301.22 0.46 0.0119303 0.0100351 22882 88689 -1 122 8 64 64 3692 1164 0.914373 0.914373 -10.4211 -0.914373 0 0 470940. 1629.55 0.12 0.01 0.08 -1 -1 0.12 0.00278078 0.00249434 10 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 3.04 vpr 61.22 MiB -1 -1 0.13 16648 1 0.02 -1 -1 29984 -1 -1 3 11 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62692 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 22.5 MiB 0.06 61 695 189 478 28 61.2 MiB 0.01 0.00 0.811073 -12.6848 -0.811073 0.811073 0.66 0.000104777 9.5766e-05 0.00309753 0.00282283 26 206 9 6.87369e+06 41921.5 503264. 1741.40 0.59 0.0168385 0.0145444 24322 120374 -1 190 10 104 104 5604 1825 0.936373 0.936373 -14.3495 -0.936373 0 0 618332. 2139.56 0.20 0.01 0.12 -1 -1 0.20 0.00337871 0.00298031 13 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 3.08 vpr 61.31 MiB -1 -1 0.12 16460 1 0.02 -1 -1 29888 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62784 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 22.7 MiB 0.05 79 823 189 488 146 61.3 MiB 0.01 0.00 0.833073 -15.431 -0.833073 0.833073 0.65 0.000125874 0.000115138 0.00353866 0.00323347 28 275 22 6.87369e+06 41921.5 531479. 1839.03 0.63 0.0191272 0.0160803 24610 126494 -1 248 29 339 339 21178 6570 1.32327 1.32327 -18.416 -1.32327 0 0 648988. 2245.63 0.17 0.02 0.11 -1 -1 0.17 0.00730647 0.00617873 15 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 3.28 vpr 61.32 MiB -1 -1 0.13 16480 1 0.02 -1 -1 30036 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62788 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.7 MiB 0.07 110 1774 718 1009 47 61.3 MiB 0.02 0.00 1.38906 -18.7903 -1.38906 1.38906 0.66 0.000164381 0.000150906 0.00820035 0.00753496 26 271 18 6.87369e+06 41921.5 503264. 1741.40 0.63 0.0253726 0.0217446 24322 120374 -1 229 11 141 141 6134 1985 0.945373 0.945373 -17.851 -0.945373 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00437944 0.00383468 17 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 3.35 vpr 61.29 MiB -1 -1 0.12 16492 1 0.02 -1 -1 30136 -1 -1 3 17 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62764 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.6 MiB 0.05 121 1965 774 1136 55 61.3 MiB 0.02 0.00 1.2154 -21.6367 -1.2154 1.2154 0.66 0.000157532 0.000145046 0.00750314 0.00691083 26 314 12 6.87369e+06 41921.5 503264. 1741.40 0.60 0.0246582 0.0211194 24322 120374 -1 279 15 162 162 11128 3289 0.978373 0.978373 -21.9378 -0.978373 0 0 618332. 2139.56 0.16 0.02 0.11 -1 -1 0.16 0.00586222 0.00508173 18 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 3.83 vpr 61.45 MiB -1 -1 0.10 16468 1 0.03 -1 -1 29984 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62920 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 23.0 MiB 0.05 132 2382 822 1143 417 61.4 MiB 0.02 0.00 1.2264 -24.2078 -1.2264 1.2264 0.66 0.000174666 0.000161137 0.00883153 0.00814252 34 333 14 6.87369e+06 41921.5 618332. 2139.56 1.03 0.0435855 0.0367511 25762 151098 -1 294 11 171 171 10024 3007 1.01137 1.01137 -24.8669 -1.01137 0 0 787024. 2723.27 0.22 0.01 0.13 -1 -1 0.22 0.00500173 0.00437819 20 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 3.57 vpr 61.50 MiB -1 -1 0.12 16768 1 0.02 -1 -1 30036 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62972 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 23.1 MiB 0.05 144 2942 1070 1287 585 61.5 MiB 0.03 0.00 1.2374 -27.3029 -1.2374 1.2374 0.66 0.000228953 0.000211759 0.0121339 0.0112283 32 404 11 6.87369e+06 41921.5 586450. 2029.24 0.71 0.0327598 0.0283801 25474 144626 -1 344 18 232 232 17547 4520 1.14767 1.14767 -28.4348 -1.14767 0 0 744469. 2576.02 0.19 0.02 0.16 -1 -1 0.19 0.00755288 0.00646504 22 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 3.50 vpr 61.41 MiB -1 -1 0.10 16524 1 0.03 -1 -1 29996 -1 -1 4 23 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62888 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 23.0 MiB 0.06 162 3207 1137 1446 624 61.4 MiB 0.03 0.00 1.2484 -29.9497 -1.2484 1.2484 0.67 0.000209777 0.000193926 0.010744 0.00992409 32 466 13 6.87369e+06 55895.4 586450. 2029.24 0.71 0.0335961 0.0289767 25474 144626 -1 381 10 227 227 16721 4459 1.13667 1.13667 -31.4038 -1.13667 0 0 744469. 2576.02 0.19 0.02 0.13 -1 -1 0.19 0.00561323 0.00491219 24 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 3.78 vpr 61.50 MiB -1 -1 0.15 16688 1 0.03 -1 -1 30076 -1 -1 4 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62972 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 23.0 MiB 0.06 186 2994 1117 1328 549 61.5 MiB 0.02 0.00 1.2594 -33.2136 -1.2594 1.2594 0.68 0.000221356 0.000204235 0.00986052 0.00910649 32 655 21 6.87369e+06 55895.4 586450. 2029.24 0.76 0.0372797 0.0320428 25474 144626 -1 502 14 345 345 26892 7071 1.27297 1.27297 -35.3227 -1.27297 0 0 744469. 2576.02 0.20 0.02 0.14 -1 -1 0.20 0.00643415 0.00559893 26 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 3.32 vpr 61.67 MiB -1 -1 0.10 16676 1 0.02 -1 -1 30000 -1 -1 4 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63148 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 23.2 MiB 0.07 207 4445 1357 2117 971 61.7 MiB 0.05 0.00 1.2704 -35.3786 -1.2704 1.2704 0.71 0.000774831 0.000716686 0.019367 0.0177904 30 663 27 6.87369e+06 55895.4 556674. 1926.21 0.74 0.0509034 0.0442536 25186 138497 -1 483 24 507 507 28642 7986 1.06167 1.06167 -33.9181 -1.06167 0 0 706193. 2443.58 0.21 0.03 0.13 -1 -1 0.21 0.0113634 0.00966199 28 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 3.89 vpr 61.53 MiB -1 -1 0.12 16672 1 0.03 -1 -1 29852 -1 -1 5 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63004 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 23.1 MiB 0.09 236 3520 1361 2099 60 61.5 MiB 0.03 0.00 1.2814 -38.667 -1.2814 1.2814 0.65 0.000250384 0.000231023 0.0105768 0.00976776 34 720 29 6.87369e+06 69869.2 618332. 2139.56 1.24 0.0576053 0.0490166 25762 151098 -1 587 33 592 592 54027 13510 1.18697 1.18697 -39.0629 -1.18697 0 0 787024. 2723.27 0.20 0.05 0.14 -1 -1 0.20 0.0166257 0.0141299 31 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 3.29 vpr 61.61 MiB -1 -1 0.13 16632 1 0.02 -1 -1 30168 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63088 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 23.1 MiB 0.10 290 5290 2175 3012 103 61.6 MiB 0.04 0.00 1.65273 -43.1654 -1.65273 1.65273 0.65 0.000271141 0.000251301 0.015609 0.0144668 32 796 21 6.87369e+06 69869.2 586450. 2029.24 0.72 0.0477628 0.0415656 25474 144626 -1 595 14 348 348 23916 6708 1.18967 1.18967 -42.5277 -1.18967 0 0 744469. 2576.02 0.19 0.02 0.13 -1 -1 0.19 0.00846663 0.007356 33 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 3.26 vpr 61.60 MiB -1 -1 0.09 16916 1 0.03 -1 -1 30148 -1 -1 5 33 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63076 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.0 MiB 0.11 305 5567 2291 3184 92 61.6 MiB 0.04 0.00 1.66373 -46.4834 -1.66373 1.66373 0.66 0.000292722 0.000271304 0.0162602 0.0150865 32 846 12 6.87369e+06 69869.2 586450. 2029.24 0.72 0.0468873 0.0410302 25474 144626 -1 624 13 397 397 28097 7660 1.18967 1.18967 -45.6334 -1.18967 0 0 744469. 2576.02 0.20 0.03 0.12 -1 -1 0.20 0.00864672 0.0075447 34 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 3.30 vpr 61.58 MiB -1 -1 0.10 17072 1 0.03 -1 -1 30056 -1 -1 5 37 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63056 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 23.0 MiB 0.10 337 7021 2897 4010 114 61.6 MiB 0.05 0.00 1.68573 -53.53 -1.68573 1.68573 0.65 0.000329513 0.000306542 0.0201083 0.0187056 30 948 30 6.87369e+06 69869.2 556674. 1926.21 0.79 0.0637635 0.055543 25186 138497 -1 761 15 505 505 47600 13595 1.15867 1.15867 -52.1566 -1.15867 0 0 706193. 2443.58 0.19 0.03 0.12 -1 -1 0.19 0.0105987 0.00918697 38 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 3.86 vpr 61.79 MiB -1 -1 0.12 17036 1 0.02 -1 -1 30184 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63272 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 23.2 MiB 0.08 385 8348 3442 4769 137 61.8 MiB 0.05 0.00 1.70773 -60.4248 -1.70773 1.70773 0.66 0.00036076 0.000335487 0.0225047 0.0209068 36 1028 14 6.87369e+06 83843 648988. 2245.63 1.22 0.0886879 0.0767738 26050 158493 -1 867 17 566 566 52806 13360 1.29497 1.29497 -58.8375 -1.29497 0 0 828058. 2865.25 0.23 0.04 0.14 -1 -1 0.23 0.0125856 0.0109143 42 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 4.62 vpr 61.82 MiB -1 -1 0.10 16764 1 0.02 -1 -1 30308 -1 -1 7 45 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63308 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 23.2 MiB 0.12 501 8923 3695 5118 110 61.8 MiB 0.06 0.00 1.72973 -68.4498 -1.72973 1.72973 0.65 0.000392855 0.00036483 0.0228853 0.0212498 30 1320 27 6.87369e+06 97816.9 556674. 1926.21 1.93 0.11678 0.101005 25186 138497 -1 1004 19 683 683 58196 13765 1.24467 1.24467 -66.3045 -1.24467 0 0 706193. 2443.58 0.20 0.04 0.13 -1 -1 0.20 0.0155085 0.0134455 47 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 3.90 vpr 61.85 MiB -1 -1 0.14 16896 1 0.02 -1 -1 30244 -1 -1 7 49 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63336 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.4 MiB 0.12 546 8481 1841 6167 473 61.9 MiB 0.06 0.00 2.11206 -76.8106 -2.11206 2.11206 0.66 0.000426808 0.000397371 0.021658 0.0201678 34 1528 39 6.87369e+06 97816.9 618332. 2139.56 1.23 0.115496 0.100314 25762 151098 -1 1253 15 644 644 53348 13861 1.45597 1.45597 -79.0101 -1.45597 0 0 787024. 2723.27 0.20 0.04 0.10 -1 -1 0.20 0.0125784 0.0110664 50 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 3.78 vpr 62.04 MiB -1 -1 0.12 17072 1 0.03 -1 -1 29924 -1 -1 8 57 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63524 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 23.6 MiB 0.07 715 11383 2391 8777 215 62.0 MiB 0.07 0.00 2.15606 -94.3707 -2.15606 2.15606 0.65 0.000486228 0.000453006 0.0273479 0.0254997 34 1673 19 6.87369e+06 111791 618332. 2139.56 1.22 0.120191 0.105441 25762 151098 -1 1369 12 654 654 61233 14395 1.26667 1.26667 -86.12 -1.26667 0 0 787024. 2723.27 0.20 0.04 0.13 -1 -1 0.20 0.0127482 0.011293 58 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 3.92 vpr 62.34 MiB -1 -1 0.14 16780 1 0.03 -1 -1 30008 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.7 MiB 0.13 934 14022 3954 9126 942 62.3 MiB 0.09 0.00 2.56039 -113.242 -2.56039 2.56039 0.65 0.000572291 0.000534807 0.0329071 0.0306727 34 2070 14 6.87369e+06 125765 618332. 2139.56 1.20 0.137947 0.121526 25762 151098 -1 1863 15 839 839 90840 19446 1.46697 1.46697 -107.907 -1.46697 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0173579 0.0153092 66 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 4.82 vpr 63.05 MiB -1 -1 0.13 17016 1 0.04 -1 -1 30280 -1 -1 13 97 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1452 25529 6578 17249 1702 63.0 MiB 0.16 0.00 3.45705 -194.211 -3.45705 3.45705 0.65 0.000869358 0.000815276 0.0537895 0.0504466 34 3437 23 6.87369e+06 181660 618332. 2139.56 1.76 0.228641 0.204901 25762 151098 -1 2791 18 1243 1243 137552 30003 1.76427 1.76427 -170.62 -1.76427 0 0 787024. 2723.27 0.29 0.08 0.15 -1 -1 0.29 0.0301318 0.0269146 98 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 5.80 vpr 63.61 MiB -1 -1 0.16 17324 1 0.03 -1 -1 30540 -1 -1 17 129 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.7 MiB 0.15 1980 44728 13702 26774 4252 63.6 MiB 0.25 0.01 4.35372 -288.703 -4.35372 4.35372 0.67 0.00119795 0.00112735 0.0877406 0.0825363 34 4970 29 6.87369e+06 237555 618332. 2139.56 2.49 0.331433 0.300404 25762 151098 -1 3877 15 1517 1517 184252 40796 1.96297 1.96297 -237.316 -1.96297 0 0 787024. 2723.27 0.21 0.13 0.14 -1 -1 0.21 0.0416698 0.0376132 130 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 2.83 vpr 61.01 MiB -1 -1 0.14 16708 1 0.02 -1 -1 29992 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62476 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.5 MiB 0.02 25 155 63 90 2 61.0 MiB 0.00 0.00 0.605992 -7.06722 -0.605992 0.605992 0.65 7.2065e-05 6.3415e-05 0.00106937 0.000955439 22 62 10 6.89349e+06 14093.8 443629. 1535.05 0.52 0.00901743 0.00750333 23458 102101 -1 59 3 19 19 950 335 0.74674 0.74674 -6.60182 -0.74674 0 0 531479. 1839.03 0.15 0.01 0.10 -1 -1 0.15 0.00212086 0.00197865 8 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 3.04 vpr 61.03 MiB -1 -1 0.09 16472 1 0.02 -1 -1 29900 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62496 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.4 MiB 0.03 48 336 89 227 20 61.0 MiB 0.01 0.00 0.789073 -10.0695 -0.789073 0.789073 0.69 8.8146e-05 8.0003e-05 0.00176694 0.00160244 30 124 15 6.89349e+06 28187.7 556674. 1926.21 0.68 0.0123629 0.010355 25186 138497 -1 83 10 44 44 1245 475 0.74674 0.74674 -9.21032 -0.74674 0 0 706193. 2443.58 0.18 0.01 0.12 -1 -1 0.18 0.00306247 0.00272181 10 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 2.88 vpr 61.09 MiB -1 -1 0.09 16532 1 0.02 -1 -1 29896 -1 -1 3 11 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62552 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 22.5 MiB 0.04 113 641 164 461 16 61.1 MiB 0.01 0.00 0.817273 -13.5684 -0.817273 0.817273 0.69 8.9142e-05 7.8024e-05 0.00241105 0.00214513 22 279 13 6.89349e+06 42281.5 443629. 1535.05 0.56 0.0145198 0.0121324 23458 102101 -1 234 8 72 72 4015 1125 0.87204 0.87204 -14.1973 -0.87204 0 0 531479. 1839.03 0.15 0.01 0.09 -1 -1 0.15 0.00307644 0.00275412 13 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 3.02 vpr 61.24 MiB -1 -1 0.08 16588 1 0.02 -1 -1 29916 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62708 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 22.6 MiB 0.04 78 887 222 492 173 61.2 MiB 0.01 0.00 0.833073 -15.4163 -0.833073 0.833073 0.66 0.00012213 0.000111849 0.00377039 0.00344581 28 314 32 6.89349e+06 42281.5 531479. 1839.03 0.67 0.0261137 0.0217306 24610 126494 -1 251 27 283 283 18623 5790 1.18697 1.18697 -17.118 -1.18697 0 0 648988. 2245.63 0.23 0.01 0.12 -1 -1 0.23 0.00437604 0.00375571 15 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 3.01 vpr 61.25 MiB -1 -1 0.09 16684 1 0.02 -1 -1 30068 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62724 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.5 MiB 0.06 111 1774 737 1001 36 61.3 MiB 0.02 0.00 1.38906 -18.6829 -1.38906 1.38906 0.71 0.000164162 0.000150858 0.00800867 0.00735697 24 336 24 6.89349e+06 42281.5 470940. 1629.55 0.58 0.0260497 0.0222353 24034 113901 -1 233 11 129 129 6343 1856 0.95832 0.95832 -18.2336 -0.95832 0 0 586450. 2029.24 0.16 0.01 0.10 -1 -1 0.16 0.00429926 0.00377497 17 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 3.18 vpr 61.25 MiB -1 -1 0.09 16768 1 0.02 -1 -1 29916 -1 -1 3 17 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62720 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.6 MiB 0.06 120 2009 782 1060 167 61.2 MiB 0.02 0.00 1.2154 -21.1249 -1.2154 1.2154 0.66 0.000156617 0.000144195 0.0076333 0.00703189 32 281 13 6.89349e+06 42281.5 586450. 2029.24 0.72 0.0253939 0.0217983 25474 144626 -1 258 14 176 176 11590 3344 0.96932 0.96932 -21.1815 -0.96932 0 0 744469. 2576.02 0.19 0.02 0.15 -1 -1 0.19 0.00531779 0.00460024 18 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 3.06 vpr 61.29 MiB -1 -1 0.10 16504 1 0.02 -1 -1 29996 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62756 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 22.6 MiB 0.05 134 2432 901 1105 426 61.3 MiB 0.02 0.00 1.2264 -24.0836 -1.2264 1.2264 0.69 0.000175311 0.000161682 0.00908264 0.00838126 26 423 15 6.89349e+06 42281.5 503264. 1741.40 0.64 0.0290985 0.0249782 24322 120374 -1 337 10 191 191 15998 4389 0.989373 0.989373 -25.3023 -0.989373 0 0 618332. 2139.56 0.20 0.02 0.11 -1 -1 0.20 0.00592084 0.00526675 20 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 3.18 vpr 61.41 MiB -1 -1 0.10 16484 1 0.02 -1 -1 30224 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62880 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 22.9 MiB 0.05 144 2942 987 1222 733 61.4 MiB 0.02 0.00 1.2374 -27.2687 -1.2374 1.2374 0.66 0.000193553 0.000178744 0.010517 0.00972136 32 414 12 6.89349e+06 42281.5 586450. 2029.24 0.69 0.0314625 0.0271354 25474 144626 -1 341 13 213 213 15856 4170 1.26197 1.26197 -29.6078 -1.26197 0 0 744469. 2576.02 0.20 0.02 0.13 -1 -1 0.20 0.00614113 0.0053038 22 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 3.27 vpr 61.41 MiB -1 -1 0.09 16500 1 0.02 -1 -1 29984 -1 -1 4 23 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62884 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 23.0 MiB 0.05 161 3207 1115 1384 708 61.4 MiB 0.03 0.00 1.2484 -30.0612 -1.2484 1.2484 0.68 0.000209517 0.000193428 0.0107961 0.00998722 32 509 14 6.89349e+06 56375.4 586450. 2029.24 0.70 0.0341872 0.0294845 25474 144626 -1 468 12 263 263 20243 5386 1.14767 1.14767 -32.7798 -1.14767 0 0 744469. 2576.02 0.23 0.02 0.13 -1 -1 0.23 0.00618993 0.00537483 24 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 3.22 vpr 61.44 MiB -1 -1 0.12 16808 1 0.02 -1 -1 29936 -1 -1 4 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62912 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 22.9 MiB 0.06 202 2994 1191 1765 38 61.4 MiB 0.03 0.00 1.2594 -33.7803 -1.2594 1.2594 0.66 0.000223987 0.000206964 0.0104078 0.00963942 32 646 19 6.89349e+06 56375.4 586450. 2029.24 0.72 0.037422 0.0322816 25474 144626 -1 511 14 312 312 25642 6859 1.28397 1.28397 -36.2114 -1.28397 0 0 744469. 2576.02 0.19 0.03 0.13 -1 -1 0.19 0.00865048 0.00752349 26 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 3.51 vpr 61.65 MiB -1 -1 0.15 16472 1 0.02 -1 -1 29928 -1 -1 4 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63128 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 23.2 MiB 0.05 209 4445 1740 2185 520 61.6 MiB 0.03 0.00 1.2704 -36.1806 -1.2704 1.2704 0.66 0.000238222 0.00022001 0.0139354 0.0128725 32 702 20 6.89349e+06 56375.4 586450. 2029.24 0.71 0.0420044 0.0364154 25474 144626 -1 587 16 372 372 30438 8155 1.30127 1.30127 -38.873 -1.30127 0 0 744469. 2576.02 0.19 0.02 0.13 -1 -1 0.19 0.00825027 0.00712649 28 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 5.84 vpr 61.44 MiB -1 -1 0.10 16604 1 0.02 -1 -1 30004 -1 -1 5 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62916 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 23.0 MiB 0.07 236 3431 1335 2039 57 61.4 MiB 0.05 0.00 1.2814 -39.5467 -1.2814 1.2814 0.65 0.000293934 0.000268322 0.0132802 0.0121633 34 788 40 6.89349e+06 70469.2 618332. 2139.56 3.02 0.119057 0.100027 25762 151098 -1 644 19 438 438 39082 11795 1.21092 1.21092 -41.8688 -1.21092 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.00979634 0.00843881 31 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 3.80 vpr 61.42 MiB -1 -1 0.16 16600 1 0.02 -1 -1 30200 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62896 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 22.9 MiB 0.10 290 5290 2177 3014 99 61.4 MiB 0.04 0.00 1.65273 -42.9944 -1.65273 1.65273 0.71 0.000321624 0.000298254 0.0185513 0.0171867 32 754 15 6.89349e+06 70469.2 586450. 2029.24 0.75 0.0520618 0.04542 25474 144626 -1 652 12 358 358 30036 8004 1.22267 1.22267 -44.327 -1.22267 0 0 744469. 2576.02 0.26 0.02 0.13 -1 -1 0.26 0.00756037 0.00658613 33 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 3.57 vpr 61.56 MiB -1 -1 0.15 16512 1 0.02 -1 -1 29996 -1 -1 5 33 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63036 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.0 MiB 0.09 305 5567 2266 3212 89 61.6 MiB 0.04 0.00 1.66373 -46.9867 -1.66373 1.66373 0.65 0.000288954 0.000267917 0.0163323 0.0151642 32 772 28 6.89349e+06 70469.2 586450. 2029.24 0.74 0.054002 0.0469278 25474 144626 -1 651 17 393 393 33429 8671 1.22267 1.22267 -46.5575 -1.22267 0 0 744469. 2576.02 0.19 0.03 0.13 -1 -1 0.19 0.0101812 0.00877998 34 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 3.57 vpr 61.42 MiB -1 -1 0.12 16900 1 0.03 -1 -1 30140 -1 -1 5 37 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62892 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 22.9 MiB 0.09 342 7021 2879 4035 107 61.4 MiB 0.05 0.00 1.68573 -54.0175 -1.68573 1.68573 0.65 0.000328475 0.000305303 0.0202021 0.0187965 32 1038 24 6.89349e+06 70469.2 586450. 2029.24 0.74 0.0607916 0.0531097 25474 144626 -1 790 12 409 409 37211 9347 1.25762 1.25762 -54.418 -1.25762 0 0 744469. 2576.02 0.19 0.03 0.13 -1 -1 0.19 0.00900894 0.00785376 38 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 4.16 vpr 61.68 MiB -1 -1 0.14 16960 1 0.02 -1 -1 30208 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63164 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 23.0 MiB 0.06 445 8348 3515 4709 124 61.7 MiB 0.06 0.00 1.70773 -61.5625 -1.70773 1.70773 0.65 0.000359436 0.000333995 0.0227573 0.0211642 34 1072 38 6.89349e+06 84563 618332. 2139.56 1.27 0.0884418 0.0765159 25762 151098 -1 848 13 477 477 40087 9860 1.30597 1.30597 -58.4273 -1.30597 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.0103176 0.00901222 42 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 6.07 vpr 61.57 MiB -1 -1 0.15 16756 1 0.02 -1 -1 30324 -1 -1 7 45 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63048 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 22.9 MiB 0.11 455 8923 3808 5002 113 61.6 MiB 0.06 0.00 1.72973 -68.2155 -1.72973 1.72973 0.65 0.000387675 0.000360028 0.0229866 0.0213649 38 1248 26 6.89349e+06 98656.9 678818. 2348.85 3.14 0.13918 0.120001 26626 170182 -1 982 17 612 612 52147 13240 1.47057 1.47057 -67.1359 -1.47057 0 0 902133. 3121.57 0.22 0.04 0.14 -1 -1 0.22 0.0133983 0.0116589 47 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 4.28 vpr 61.82 MiB -1 -1 0.16 16964 1 0.03 -1 -1 30244 -1 -1 7 49 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63304 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.1 MiB 0.10 551 7431 1680 5324 427 61.8 MiB 0.05 0.00 2.11206 -77.2602 -2.11206 2.11206 0.65 0.000420992 0.000392372 0.0190073 0.0177119 34 1526 30 6.89349e+06 98656.9 618332. 2139.56 1.36 0.10589 0.0917478 25762 151098 -1 1247 13 610 610 53381 13866 1.55927 1.55927 -81.2966 -1.55927 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0104588 0.00923158 50 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 4.47 vpr 61.94 MiB -1 -1 0.17 16756 1 0.04 -1 -1 30016 -1 -1 8 57 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63428 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 23.5 MiB 0.09 650 12022 2723 8727 572 61.9 MiB 0.07 0.00 2.15606 -92.9813 -2.15606 2.15606 0.66 0.000485491 0.000452399 0.0287371 0.0267766 34 1768 42 6.89349e+06 112751 618332. 2139.56 1.52 0.138504 0.12126 25762 151098 -1 1440 26 780 780 113009 43077 1.45792 1.45792 -89.3873 -1.45792 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0230578 0.0201182 58 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 4.18 vpr 62.07 MiB -1 -1 0.15 16784 1 0.03 -1 -1 30012 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.4 MiB 0.08 1002 14022 4194 8891 937 62.1 MiB 0.10 0.00 2.56039 -114.689 -2.56039 2.56039 0.66 0.000567925 0.000530486 0.034558 0.0322645 34 2113 22 6.89349e+06 126845 618332. 2139.56 1.18 0.134159 0.118184 25762 151098 -1 1850 17 747 747 77723 16422 1.44497 1.44497 -106.052 -1.44497 0 0 787024. 2723.27 0.25 0.05 0.13 -1 -1 0.25 0.018985 0.0166954 66 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 4.73 vpr 62.94 MiB -1 -1 0.16 17320 1 0.03 -1 -1 30220 -1 -1 13 97 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.1 MiB 0.12 1473 25959 7791 16267 1901 62.9 MiB 0.16 0.00 3.45705 -194.328 -3.45705 3.45705 0.66 0.000865978 0.000812199 0.0545854 0.0511764 34 3279 29 6.89349e+06 183220 618332. 2139.56 1.54 0.239136 0.212773 25762 151098 -1 2746 17 1077 1077 128114 28725 1.64092 1.64092 -165.883 -1.64092 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0290197 0.0257057 98 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 5.62 vpr 63.70 MiB -1 -1 0.16 17152 1 0.03 -1 -1 30532 -1 -1 17 129 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65224 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.8 MiB 0.14 1995 44728 13697 26621 4410 63.7 MiB 0.25 0.01 4.35372 -288.217 -4.35372 4.35372 0.66 0.00119031 0.00111846 0.0879428 0.0826944 34 4749 24 6.89349e+06 239595 618332. 2139.56 2.23 0.338744 0.307021 25762 151098 -1 3879 16 1532 1532 168494 37924 1.91627 1.91627 -230.63 -1.91627 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0371324 0.0335078 130 2 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt index 78cba1d6b86..eb63dd05026 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,1025 +1,1025 @@ 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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 12.25 vpr 64.91 MiB -1 -1 0.22 20668 14 0.31 -1 -1 36916 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 26.3 MiB 0.49 1279 6823 1440 4905 478 64.9 MiB 0.07 0.00 7.95704 -163.811 -7.95704 7.95704 0.90 0.000644466 0.000584951 0.0261223 0.0237692 36 3193 16 6.55708e+06 325485 612192. 2118.31 8.17 0.299451 0.263742 22750 144809 -1 2849 34 1240 3807 386059 168230 6.88996 6.88996 -155.56 -6.88996 0 0 782063. 2706.10 0.32 0.16 0.14 -1 -1 0.32 0.0491233 0.0437711 183 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 6.18 vpr 64.90 MiB -1 -1 0.24 20520 14 0.37 -1 -1 36508 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 26.3 MiB 0.62 1272 10173 2471 6545 1157 64.9 MiB 0.08 0.00 8.16064 -158.468 -8.16064 8.16064 0.88 0.000639138 0.000583373 0.0333726 0.0303216 36 3251 22 6.55708e+06 373705 612192. 2118.31 1.88 0.149984 0.131988 22750 144809 -1 2871 28 1569 4797 434858 167668 7.27044 7.27044 -149.639 -7.27044 0 0 782063. 2706.10 0.32 0.16 0.14 -1 -1 0.32 0.0419223 0.0374642 184 181 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.06 vpr 64.44 MiB -1 -1 0.19 20480 11 0.28 -1 -1 36192 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 25.9 MiB 0.40 1375 11748 3042 6701 2005 64.4 MiB 0.10 0.00 6.90223 -139.699 -6.90223 6.90223 0.89 0.000623937 0.000563213 0.0404364 0.0366665 28 4030 31 6.55708e+06 313430 500653. 1732.36 3.22 0.155824 0.138594 21310 115450 -1 3257 20 1688 5676 395500 88119 6.50178 6.50178 -144.577 -6.50178 0 0 612192. 2118.31 0.27 0.12 0.11 -1 -1 0.27 0.0343819 0.0310306 186 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 7.08 vpr 64.93 MiB -1 -1 0.22 20396 12 0.41 -1 -1 36396 -1 -1 30 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 26.6 MiB 0.67 1263 4783 870 3608 305 64.9 MiB 0.05 0.00 7.83974 -145.087 -7.83974 7.83974 0.88 0.000641588 0.000583353 0.0189679 0.0173138 36 3198 28 6.55708e+06 361650 612192. 2118.31 2.82 0.185627 0.163594 22750 144809 -1 2762 18 1264 4136 214917 50074 7.0397 7.0397 -139.752 -7.0397 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0296392 0.026597 190 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 6.80 vpr 64.71 MiB -1 -1 0.23 20728 13 0.35 -1 -1 36700 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 26.3 MiB 0.57 1445 11111 2879 6967 1265 64.7 MiB 0.10 0.00 7.83935 -165.421 -7.83935 7.83935 0.89 0.000704739 0.000637192 0.039125 0.0354417 28 4394 44 6.55708e+06 373705 500653. 1732.36 2.67 0.16882 0.148914 21310 115450 -1 3682 20 1754 5020 353252 92662 6.8405 6.8405 -162.584 -6.8405 0 0 612192. 2118.31 0.27 0.12 0.11 -1 -1 0.27 0.0349563 0.0312854 210 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 8.48 vpr 64.61 MiB -1 -1 0.23 20876 13 0.30 -1 -1 36540 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 26.2 MiB 0.42 1337 11046 2900 6780 1366 64.6 MiB 0.10 0.00 7.78297 -154.862 -7.78297 7.78297 0.89 0.000662512 0.000599304 0.0373972 0.0338582 36 3405 22 6.55708e+06 385760 612192. 2118.31 4.52 0.291738 0.255592 22750 144809 -1 2807 15 1168 3766 204246 48163 6.8411 6.8411 -146.675 -6.8411 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0287825 0.026157 198 197 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 6.88 vpr 64.32 MiB -1 -1 0.19 20392 12 0.24 -1 -1 36376 -1 -1 27 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65864 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 26.0 MiB 0.33 1022 8969 2278 5945 746 64.3 MiB 0.07 0.00 7.21391 -130.754 -7.21391 7.21391 0.87 0.000551298 0.000503406 0.0287552 0.0262008 30 2436 17 6.55708e+06 325485 526063. 1820.29 3.29 0.172506 0.151142 21886 126133 -1 2080 16 937 2522 114156 28302 6.43104 6.43104 -125.386 -6.43104 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0230929 0.0208209 152 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 7.16 vpr 64.28 MiB -1 -1 0.20 20500 12 0.24 -1 -1 36320 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65824 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 25.9 MiB 0.28 1233 12733 3609 7498 1626 64.3 MiB 0.10 0.00 6.32286 -134.975 -6.32286 6.32286 0.89 0.000551316 0.000496822 0.0395188 0.0358134 36 3149 24 6.55708e+06 265210 612192. 2118.31 3.47 0.167718 0.147153 22750 144809 -1 2676 17 1207 3768 201034 45387 5.53052 5.53052 -132.576 -5.53052 0 0 782063. 2706.10 0.32 0.07 0.14 -1 -1 0.32 0.0237697 0.0213872 140 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 7.78 vpr 64.46 MiB -1 -1 0.20 21124 12 0.20 -1 -1 36472 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66008 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 26.1 MiB 0.29 1203 13157 3412 7574 2171 64.5 MiB 0.10 0.00 6.35469 -136.224 -6.35469 6.35469 0.89 0.000577583 0.000525054 0.0397524 0.036129 36 2772 21 6.55708e+06 313430 612192. 2118.31 4.13 0.2804 0.246039 22750 144809 -1 2370 14 985 2568 141811 32387 5.67826 5.67826 -129.27 -5.67826 0 0 782063. 2706.10 0.32 0.06 0.14 -1 -1 0.32 0.0214843 0.0193815 150 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 5.71 vpr 64.44 MiB -1 -1 0.20 20576 13 0.24 -1 -1 36396 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 26.0 MiB 0.36 1164 8207 1986 5229 992 64.4 MiB 0.07 0.00 7.79043 -163.222 -7.79043 7.79043 0.89 0.00060297 0.000549364 0.0275702 0.0251544 28 3341 23 6.55708e+06 301375 500653. 1732.36 2.01 0.116153 0.103085 21310 115450 -1 2943 16 1280 3583 227960 53199 6.58844 6.58844 -160.003 -6.58844 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0255869 0.0230857 157 155 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 9.68 vpr 64.00 MiB -1 -1 0.19 20328 12 0.22 -1 -1 36340 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65540 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 25.4 MiB 0.30 1043 7646 1812 5284 550 64.0 MiB 0.06 0.00 6.98257 -137.016 -6.98257 6.98257 0.88 0.000521162 0.000471955 0.0223587 0.0201975 28 2870 17 6.55708e+06 289320 500653. 1732.36 6.13 0.159058 0.138799 21310 115450 -1 2423 29 956 2599 287403 124368 5.86158 5.86158 -130.373 -5.86158 0 0 612192. 2118.31 0.26 0.12 0.10 -1 -1 0.26 0.0320021 0.0283341 132 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 12.92 vpr 64.37 MiB -1 -1 0.20 20444 12 0.19 -1 -1 36192 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65912 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 25.8 MiB 0.30 1210 6701 1475 4829 397 64.4 MiB 0.06 0.00 6.74278 -155.388 -6.74278 6.74278 0.89 0.000479134 0.000431229 0.0213102 0.0193087 28 3180 36 6.55708e+06 265210 500653. 1732.36 9.36 0.206601 0.179932 21310 115450 -1 2743 23 1051 2953 280355 102696 5.95786 5.95786 -150.76 -5.95786 0 0 612192. 2118.31 0.25 0.10 0.11 -1 -1 0.25 0.0282883 0.0251581 146 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 11.19 vpr 64.79 MiB -1 -1 0.24 20628 13 0.30 -1 -1 36444 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 26.2 MiB 0.30 1329 9892 2541 6359 992 64.8 MiB 0.09 0.00 8.09466 -168.958 -8.09466 8.09466 0.90 0.000650341 0.000591084 0.0341279 0.0309589 28 3841 47 6.55708e+06 361650 500653. 1732.36 7.40 0.249207 0.219725 21310 115450 -1 3125 14 1275 3654 217111 49344 6.96836 6.96836 -162.422 -6.96836 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0272073 0.0247744 191 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 14.84 vpr 65.14 MiB -1 -1 0.24 20976 14 0.38 -1 -1 36596 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 26.7 MiB 0.50 1640 11170 2650 7415 1105 65.1 MiB 0.09 0.00 9.0039 -186.596 -9.0039 9.0039 0.90 0.000628638 0.000571533 0.0382222 0.0345794 30 4087 23 6.55708e+06 361650 526063. 1820.29 10.76 0.307692 0.269717 21886 126133 -1 3325 19 1537 4514 224801 51116 7.64835 7.64835 -171.324 -7.64835 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0327013 0.0292665 210 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.99 vpr 64.56 MiB -1 -1 0.19 20340 11 0.21 -1 -1 36368 -1 -1 27 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66112 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 26.2 MiB 0.29 878 5158 949 3601 608 64.6 MiB 0.05 0.00 6.71354 -123.992 -6.71354 6.71354 0.87 0.000524094 0.000476057 0.0168837 0.015385 28 3083 35 6.55708e+06 325485 500653. 1732.36 1.48 0.109797 0.0966377 21310 115450 -1 2258 18 1080 2942 164903 40606 6.13918 6.13918 -124.562 -6.13918 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.023759 0.0213037 147 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 18.58 vpr 64.97 MiB -1 -1 0.23 20840 12 0.35 -1 -1 36780 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 26.5 MiB 0.46 1420 10309 2435 6528 1346 65.0 MiB 0.09 0.00 7.45763 -153.823 -7.45763 7.45763 0.89 0.000685575 0.000620359 0.0369141 0.0334064 34 4188 46 6.55708e+06 397815 585099. 2024.56 14.43 0.43819 0.383266 22462 138074 -1 3417 30 1712 6122 483902 135469 6.58278 6.58278 -149.989 -6.58278 0 0 742403. 2568.87 0.31 0.17 0.14 -1 -1 0.31 0.0469367 0.0418013 209 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 8.40 vpr 64.93 MiB -1 -1 0.23 20564 14 0.31 -1 -1 36492 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 26.4 MiB 0.35 1436 5553 1081 4073 399 64.9 MiB 0.06 0.00 7.42808 -156.41 -7.42808 7.42808 0.90 0.000628103 0.000568937 0.0203437 0.0184807 38 3267 17 6.55708e+06 349595 638502. 2209.35 4.49 0.234867 0.20453 23326 155178 -1 2853 17 1235 3687 188502 42656 6.46824 6.46824 -148.294 -6.46824 0 0 851065. 2944.86 0.35 0.08 0.15 -1 -1 0.35 0.0284457 0.0255955 184 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.64 vpr 64.25 MiB -1 -1 0.20 20320 12 0.20 -1 -1 36060 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65792 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 25.7 MiB 0.40 1097 11991 2937 7207 1847 64.2 MiB 0.09 0.00 7.19884 -160.926 -7.19884 7.19884 0.91 0.000529656 0.00047873 0.03635 0.0329696 28 3171 46 6.55708e+06 277265 500653. 1732.36 1.92 0.139267 0.122785 21310 115450 -1 2530 17 1028 2794 175881 40837 6.01958 6.01958 -151.671 -6.01958 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0242703 0.0218063 140 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.07 vpr 63.71 MiB -1 -1 0.16 20312 10 0.11 -1 -1 36512 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65236 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 25.2 MiB 0.18 733 7548 1614 5464 470 63.7 MiB 0.05 0.00 5.36346 -120.328 -5.36346 5.36346 0.87 0.000399711 0.000360163 0.0188934 0.0171138 28 1940 22 6.55708e+06 192880 500653. 1732.36 0.89 0.0694643 0.0607831 21310 115450 -1 1721 16 679 1685 92341 23056 4.61634 4.61634 -115.41 -4.61634 0 0 612192. 2118.31 0.27 0.04 0.10 -1 -1 0.27 0.0157421 0.0140605 91 84 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 5.52 vpr 64.34 MiB -1 -1 0.21 20512 13 0.23 -1 -1 36020 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65888 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 26.0 MiB 0.47 1075 12951 3421 7713 1817 64.3 MiB 0.09 0.00 6.90774 -144.707 -6.90774 6.90774 0.87 0.000518921 0.000470492 0.0383893 0.0348581 28 3088 32 6.55708e+06 289320 500653. 1732.36 1.75 0.127841 0.112804 21310 115450 -1 2418 21 1210 3242 183150 43715 6.49978 6.49978 -146.691 -6.49978 0 0 612192. 2118.31 0.28 0.08 0.12 -1 -1 0.28 0.0288292 0.025754 144 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 7.79 vpr 65.11 MiB -1 -1 0.21 20644 13 0.34 -1 -1 36364 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 26.7 MiB 0.50 1429 6575 1166 5105 304 65.1 MiB 0.07 0.00 8.01121 -157.98 -8.01121 8.01121 0.88 0.000682184 0.000620156 0.0251293 0.0228848 34 3477 22 6.55708e+06 373705 585099. 2024.56 3.77 0.259269 0.227576 22462 138074 -1 3110 20 1424 4228 228234 53308 7.2403 7.2403 -154.176 -7.2403 0 0 742403. 2568.87 0.31 0.09 0.13 -1 -1 0.31 0.0356212 0.0321156 211 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 6.66 vpr 64.86 MiB -1 -1 0.23 20728 13 0.35 -1 -1 36668 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 26.5 MiB 0.53 1433 6823 1289 5315 219 64.9 MiB 0.07 0.00 7.886 -165.604 -7.886 7.886 0.88 0.000678421 0.000615822 0.0262773 0.0238461 44 3574 22 6.55708e+06 325485 742403. 2568.87 2.46 0.154591 0.137323 24478 177802 -1 2942 14 1252 4194 212048 48398 7.0397 7.0397 -155.854 -7.0397 0 0 937218. 3242.97 0.38 0.08 0.18 -1 -1 0.38 0.0289466 0.026386 194 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.41 vpr 63.80 MiB -1 -1 0.17 20096 9 0.11 -1 -1 35676 -1 -1 24 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65336 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 25.3 MiB 0.21 744 10762 3120 6243 1399 63.8 MiB 0.06 0.00 5.06374 -98.4324 -5.06374 5.06374 0.86 0.000348834 0.000318644 0.0229421 0.0208564 26 1898 20 6.55708e+06 289320 477104. 1650.88 1.23 0.0725384 0.0638617 21022 109990 -1 1641 15 634 1522 95057 22191 4.8332 4.8332 -99.6652 -4.8332 0 0 585099. 2024.56 0.24 0.04 0.11 -1 -1 0.24 0.0138234 0.0123184 87 69 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.92 vpr 64.78 MiB -1 -1 0.20 20480 13 0.36 -1 -1 36596 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66332 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 26.4 MiB 0.30 1381 10781 2930 5957 1894 64.8 MiB 0.10 0.00 7.83519 -151.249 -7.83519 7.83519 0.89 0.000681693 0.000616765 0.0401308 0.0364445 30 4083 42 6.55708e+06 301375 526063. 1820.29 3.11 0.162937 0.143911 21886 126133 -1 3116 19 1424 4288 219011 50426 6.9633 6.9633 -149.742 -6.9633 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0305639 0.0274023 193 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.07 vpr 63.58 MiB -1 -1 0.15 19852 8 0.10 -1 -1 36192 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65108 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 25.2 MiB 0.14 553 7648 2806 3716 1126 63.6 MiB 0.04 0.00 4.12642 -89.8462 -4.12642 4.12642 0.87 0.000355901 0.000319822 0.016355 0.0147544 30 1616 22 6.55708e+06 192880 526063. 1820.29 0.98 0.0627594 0.0545273 21886 126133 -1 1260 14 548 1189 58527 16069 3.73148 3.73148 -90.4104 -3.73148 0 0 666494. 2306.21 0.29 0.03 0.11 -1 -1 0.29 0.0129312 0.0115289 77 59 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 6.20 vpr 64.61 MiB -1 -1 0.21 20724 15 0.29 -1 -1 36332 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 26.1 MiB 0.41 1321 6923 1475 4903 545 64.6 MiB 0.06 0.00 8.32249 -162.146 -8.32249 8.32249 0.88 0.000588242 0.00053421 0.0235334 0.0214168 36 3269 25 6.55708e+06 337540 612192. 2118.31 2.35 0.168579 0.148055 22750 144809 -1 2787 16 1252 3638 203897 46010 7.4009 7.4009 -155.503 -7.4009 0 0 782063. 2706.10 0.32 0.07 0.14 -1 -1 0.32 0.0259566 0.023414 165 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.98 vpr 64.78 MiB -1 -1 0.20 20332 13 0.28 -1 -1 36484 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 26.3 MiB 0.33 1319 5919 1133 4327 459 64.8 MiB 0.06 0.00 7.07675 -156.6 -7.07675 7.07675 0.87 0.000593392 0.00054541 0.0210358 0.0191126 36 3055 23 6.55708e+06 313430 612192. 2118.31 4.24 0.204978 0.179175 22750 144809 -1 2665 15 1110 3141 165339 38965 6.29918 6.29918 -149.671 -6.29918 0 0 782063. 2706.10 0.32 0.07 0.14 -1 -1 0.32 0.0248313 0.0224318 168 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 5.15 vpr 64.64 MiB -1 -1 0.19 20712 13 0.33 -1 -1 36652 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 26.1 MiB 0.28 1276 11223 2538 6825 1860 64.6 MiB 0.09 0.00 7.85647 -160.581 -7.85647 7.85647 0.88 0.000660788 0.000601001 0.038465 0.0349657 30 3320 24 6.55708e+06 349595 526063. 1820.29 1.40 0.141788 0.126165 21886 126133 -1 2648 15 1237 3758 172498 41897 6.7183 6.7183 -150.821 -6.7183 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0273409 0.0247965 187 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 6.04 vpr 64.06 MiB -1 -1 0.20 20384 12 0.19 -1 -1 36208 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65596 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 25.7 MiB 0.40 1153 7191 1558 5291 342 64.1 MiB 0.07 0.00 6.57592 -147.41 -6.57592 6.57592 0.90 0.000558458 0.000508672 0.0236861 0.021517 36 3148 35 6.55708e+06 277265 612192. 2118.31 2.30 0.156682 0.136833 22750 144809 -1 2589 16 1117 3275 186852 43337 5.60692 5.60692 -136.412 -5.60692 0 0 782063. 2706.10 0.31 0.07 0.14 -1 -1 0.31 0.0226543 0.020286 147 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.71 vpr 64.31 MiB -1 -1 0.19 20700 11 0.19 -1 -1 36264 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 25.8 MiB 0.22 963 12919 3847 7319 1753 64.3 MiB 0.09 0.00 6.46503 -135.82 -6.46503 6.46503 0.91 0.000490911 0.000447319 0.0367836 0.0333483 28 2611 19 6.55708e+06 277265 500653. 1732.36 1.25 0.106111 0.0938547 21310 115450 -1 2181 15 892 2397 136411 32401 5.86158 5.86158 -133.481 -5.86158 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0198488 0.0178761 131 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 6.21 vpr 64.55 MiB -1 -1 0.20 20744 11 0.21 -1 -1 36208 -1 -1 28 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 26.2 MiB 0.49 1010 6913 1544 4325 1044 64.5 MiB 0.06 0.00 6.38158 -126.573 -6.38158 6.38158 0.88 0.000520869 0.000472366 0.0217731 0.0198163 26 3323 50 6.55708e+06 337540 477104. 1650.88 2.51 0.136235 0.120153 21022 109990 -1 2605 19 1204 3141 191966 45003 5.47906 5.47906 -126.663 -5.47906 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0253699 0.0226094 150 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 9.42 vpr 64.79 MiB -1 -1 0.18 20448 12 0.25 -1 -1 36596 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 26.3 MiB 0.31 1304 6321 1255 4617 449 64.8 MiB 0.06 0.00 7.16635 -157.812 -7.16635 7.16635 0.89 0.000588914 0.000539791 0.0223338 0.0202531 26 3817 49 6.55708e+06 313430 477104. 1650.88 5.81 0.238264 0.208701 21022 109990 -1 3145 19 1545 4159 251819 59845 6.4035 6.4035 -162.091 -6.4035 0 0 585099. 2024.56 0.25 0.09 0.10 -1 -1 0.25 0.0296307 0.026522 181 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 11.10 vpr 64.38 MiB -1 -1 0.20 20440 12 0.20 -1 -1 36452 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 26.0 MiB 0.70 980 5567 1150 4291 126 64.4 MiB 0.05 0.00 7.18658 -144.693 -7.18658 7.18658 0.90 0.000565952 0.000514525 0.0191329 0.0174352 28 3147 34 6.55708e+06 277265 500653. 1732.36 7.12 0.182722 0.15927 21310 115450 -1 2468 29 1178 3073 296477 117738 6.07044 6.07044 -141.421 -6.07044 0 0 612192. 2118.31 0.26 0.12 0.11 -1 -1 0.26 0.0337425 0.0297443 149 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 6.72 vpr 64.24 MiB -1 -1 0.20 20320 10 0.17 -1 -1 36372 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65780 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 25.7 MiB 0.21 1013 6563 1489 4557 517 64.2 MiB 0.05 0.00 5.76546 -121.445 -5.76546 5.76546 0.89 0.000517195 0.000469475 0.0214517 0.0195286 30 2358 16 6.55708e+06 265210 526063. 1820.29 3.28 0.175898 0.153605 21886 126133 -1 2081 16 885 2605 122669 28892 5.20346 5.20346 -117.311 -5.20346 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0220691 0.0199107 137 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 7.97 vpr 64.75 MiB -1 -1 0.24 21132 13 0.37 -1 -1 36728 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66304 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 26.2 MiB 0.30 1488 10247 2366 6979 902 64.8 MiB 0.10 0.00 7.78037 -164.973 -7.78037 7.78037 0.90 0.000704721 0.000635979 0.0385778 0.034882 32 4128 46 6.55708e+06 373705 554710. 1919.41 3.99 0.266158 0.233 22174 131602 -1 3512 16 1530 4876 330660 74130 6.86804 6.86804 -154.58 -6.86804 0 0 701300. 2426.64 0.30 0.11 0.13 -1 -1 0.30 0.0330441 0.0299616 221 220 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.02 vpr 64.72 MiB -1 -1 0.24 20924 14 0.40 -1 -1 36620 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 26.4 MiB 0.60 1341 7544 1708 5122 714 64.7 MiB 0.07 0.00 7.48711 -165.315 -7.48711 7.48711 0.90 0.000654151 0.000592667 0.0280969 0.0255674 30 3756 44 6.55708e+06 337540 526063. 1820.29 1.81 0.153203 0.135554 21886 126133 -1 2987 18 1338 3927 186931 44346 6.65518 6.65518 -156.797 -6.65518 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0303871 0.0273993 191 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 7.69 vpr 64.30 MiB -1 -1 0.19 20572 12 0.18 -1 -1 36224 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65848 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 26.0 MiB 0.27 1061 14582 3956 8171 2455 64.3 MiB 0.10 0.00 7.55424 -147.694 -7.55424 7.55424 0.89 0.000486045 0.000440463 0.0403416 0.0362602 36 2670 17 6.55708e+06 349595 612192. 2118.31 4.14 0.199519 0.173264 22750 144809 -1 2298 15 923 2506 139164 32090 6.4819 6.4819 -138 -6.4819 0 0 782063. 2706.10 0.32 0.06 0.13 -1 -1 0.32 0.0214999 0.0193023 156 148 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.77 vpr 65.11 MiB -1 -1 0.24 20636 12 0.33 -1 -1 36568 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 26.6 MiB 0.51 1440 9951 2153 6171 1627 65.1 MiB 0.09 0.00 7.66392 -155.521 -7.66392 7.66392 0.89 0.000721143 0.00065522 0.0362656 0.0329955 30 3843 35 6.55708e+06 397815 526063. 1820.29 1.72 0.1679 0.14982 21886 126133 -1 3200 21 1554 4521 218190 52222 6.67144 6.67144 -150.22 -6.67144 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0377392 0.033975 218 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.80 vpr 64.82 MiB -1 -1 0.23 21104 14 0.42 -1 -1 36852 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 26.4 MiB 0.36 1368 10442 2445 6848 1149 64.8 MiB 0.10 0.00 8.27333 -162.102 -8.27333 8.27333 0.89 0.00067557 0.000606444 0.0386856 0.035136 30 3476 48 6.55708e+06 349595 526063. 1820.29 1.79 0.179927 0.159918 21886 126133 -1 2944 17 1606 5087 230104 55320 7.34122 7.34122 -156.976 -7.34122 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0318529 0.0287799 202 200 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.89 vpr 64.52 MiB -1 -1 0.24 20924 13 0.32 -1 -1 36276 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66068 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 26.2 MiB 0.43 1406 11311 2955 7221 1135 64.5 MiB 0.10 0.00 7.94497 -159.991 -7.94497 7.94497 0.90 0.000663263 0.00060372 0.0399077 0.0361858 36 3512 22 6.55708e+06 337540 612192. 2118.31 1.85 0.156316 0.137839 22750 144809 -1 3203 18 1469 4134 234682 53499 6.8411 6.8411 -151.707 -6.8411 0 0 782063. 2706.10 0.31 0.08 0.15 -1 -1 0.31 0.0297135 0.0265942 185 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 8.78 vpr 64.52 MiB -1 -1 0.23 20920 13 0.32 -1 -1 36608 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66064 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 26.0 MiB 0.45 1345 7613 1868 4862 883 64.5 MiB 0.07 0.00 7.08841 -141.492 -7.08841 7.08841 0.90 0.000603212 0.000539013 0.0269313 0.0243664 34 3664 49 6.55708e+06 313430 585099. 2024.56 4.81 0.278093 0.243934 22462 138074 -1 3164 17 1313 4163 244724 55552 5.97978 5.97978 -133.201 -5.97978 0 0 742403. 2568.87 0.29 0.08 0.14 -1 -1 0.29 0.0275263 0.0247646 179 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 5.23 vpr 64.62 MiB -1 -1 0.19 20560 12 0.23 -1 -1 36560 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 26.2 MiB 0.26 1315 5548 1167 3981 400 64.6 MiB 0.05 0.00 7.00741 -145.329 -7.00741 7.00741 0.90 0.00060048 0.000544707 0.0212606 0.0193414 28 3273 27 6.55708e+06 289320 500653. 1732.36 1.66 0.114027 0.100764 21310 115450 -1 2880 18 1362 4073 243587 55099 6.10198 6.10198 -140.629 -6.10198 0 0 612192. 2118.31 0.27 0.09 0.11 -1 -1 0.27 0.0279141 0.0250507 171 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.58 vpr 65.35 MiB -1 -1 0.28 21808 14 0.49 -1 -1 36804 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66916 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 26.7 MiB 0.48 1670 9383 2100 6642 641 65.3 MiB 0.09 0.00 8.23218 -176.173 -8.23218 8.23218 0.91 0.000733629 0.000664825 0.0372289 0.0337247 34 4632 43 6.55708e+06 373705 585099. 2024.56 4.23 0.24471 0.216033 22462 138074 -1 3783 16 1514 4948 301263 67057 7.28976 7.28976 -169.641 -7.28976 0 0 742403. 2568.87 0.30 0.10 0.14 -1 -1 0.30 0.0324296 0.0294075 230 229 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 5.22 vpr 64.46 MiB -1 -1 0.19 20600 11 0.24 -1 -1 36388 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 26.0 MiB 0.43 1051 8603 2089 5379 1135 64.5 MiB 0.08 0.00 6.74223 -137.589 -6.74223 6.74223 0.90 0.000593589 0.0005206 0.0286127 0.0260557 30 3212 35 6.55708e+06 313430 526063. 1820.29 1.44 0.129113 0.114281 21886 126133 -1 2521 17 1168 3379 157721 38187 6.06278 6.06278 -136.796 -6.06278 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0249024 0.0223452 163 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.15 vpr 65.02 MiB -1 -1 0.23 20840 13 0.34 -1 -1 36156 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 26.6 MiB 0.42 1315 7435 1572 5156 707 65.0 MiB 0.07 0.00 8.06447 -154.642 -8.06447 8.06447 0.90 0.000601988 0.00053796 0.0271764 0.0245834 28 3730 45 6.55708e+06 337540 500653. 1732.36 2.20 0.155149 0.13724 21310 115450 -1 2993 18 1246 4009 311549 83022 7.29176 7.29176 -151.859 -7.29176 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.0314071 0.0283091 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 21.81 vpr 65.11 MiB -1 -1 0.22 20824 12 0.32 -1 -1 36476 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 26.6 MiB 0.54 1532 15213 4154 8657 2402 65.1 MiB 0.13 0.00 7.13712 -150.826 -7.13712 7.13712 0.90 0.000704138 0.000629131 0.0546584 0.0493196 36 3865 38 6.55708e+06 349595 612192. 2118.31 17.61 0.334816 0.292518 22750 144809 -1 3379 23 1418 5004 458665 164388 6.19264 6.19264 -141.127 -6.19264 0 0 782063. 2706.10 0.31 0.15 0.15 -1 -1 0.31 0.0378792 0.033838 210 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 4.90 vpr 64.79 MiB -1 -1 0.20 20340 13 0.31 -1 -1 36492 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 26.2 MiB 0.31 1350 5133 911 3808 414 64.8 MiB 0.05 0.00 7.54057 -158.305 -7.54057 7.54057 0.88 0.000662323 0.00060256 0.019492 0.0177701 30 3259 22 6.55708e+06 349595 526063. 1820.29 1.20 0.118645 0.105355 21886 126133 -1 2779 18 1243 3580 170868 40631 6.90724 6.90724 -155.01 -6.90724 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0302657 0.0272399 183 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 8.22 vpr 64.73 MiB -1 -1 0.22 20844 13 0.25 -1 -1 37192 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 26.2 MiB 0.35 1371 12351 2891 7373 2087 64.7 MiB 0.10 0.00 7.1188 -155.865 -7.1188 7.1188 0.86 0.000556928 0.000501843 0.0398034 0.0359327 36 3355 27 6.55708e+06 313430 612192. 2118.31 4.48 0.239177 0.208844 22750 144809 -1 2803 15 1125 3397 194744 43752 6.17898 6.17898 -146.024 -6.17898 0 0 782063. 2706.10 0.32 0.07 0.13 -1 -1 0.32 0.0250818 0.0226275 178 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 8.52 vpr 64.99 MiB -1 -1 0.23 20716 12 0.30 -1 -1 36540 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 26.6 MiB 0.53 1446 11170 2757 7067 1346 65.0 MiB 0.10 0.00 7.31654 -157.818 -7.31654 7.31654 0.89 0.000667995 0.00060712 0.0386894 0.0350251 38 3284 17 6.55708e+06 361650 638502. 2209.35 4.43 0.250369 0.22001 23326 155178 -1 2853 15 1250 4137 194632 45234 6.26904 6.26904 -147.068 -6.26904 0 0 851065. 2944.86 0.34 0.08 0.15 -1 -1 0.34 0.0289959 0.0263013 197 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.97 vpr 65.16 MiB -1 -1 0.23 20960 13 0.36 -1 -1 37064 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 26.6 MiB 0.51 1513 7223 1461 5178 584 65.2 MiB 0.07 0.00 7.58438 -161.714 -7.58438 7.58438 0.91 0.000720195 0.000653342 0.0279684 0.0254265 36 3945 19 6.55708e+06 373705 612192. 2118.31 2.81 0.197032 0.174062 22750 144809 -1 3296 18 1573 4871 256506 58577 6.70864 6.70864 -153.326 -6.70864 0 0 782063. 2706.10 0.31 0.09 0.15 -1 -1 0.31 0.0332142 0.0298137 212 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.70 vpr 64.63 MiB -1 -1 0.21 20352 14 0.35 -1 -1 36584 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 26.1 MiB 0.30 1215 10813 2361 6891 1561 64.6 MiB 0.09 0.00 8.31609 -163.248 -8.31609 8.31609 0.89 0.000603849 0.000548601 0.0368174 0.0333693 30 3273 27 6.55708e+06 289320 526063. 1820.29 1.91 0.137581 0.122306 21886 126133 -1 2720 18 1271 3852 181225 42639 7.1187 7.1187 -154.864 -7.1187 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.028264 0.0253764 168 167 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.93 vpr 64.77 MiB -1 -1 0.21 20828 13 0.33 -1 -1 36716 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 26.4 MiB 0.42 1503 5206 957 3956 293 64.8 MiB 0.05 0.00 8.07478 -162.365 -8.07478 8.07478 0.90 0.00067534 0.000612461 0.0204251 0.0186498 28 4195 32 6.55708e+06 361650 500653. 1732.36 3.06 0.134601 0.118935 21310 115450 -1 3466 19 1840 5622 342639 75414 7.0005 7.0005 -158.548 -7.0005 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.0326711 0.0293118 198 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 6.85 vpr 64.70 MiB -1 -1 0.24 20804 13 0.34 -1 -1 36624 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 26.2 MiB 0.32 1405 8401 1949 5780 672 64.7 MiB 0.08 0.00 7.80415 -160.841 -7.80415 7.80415 0.91 0.000680924 0.000608364 0.0310077 0.0280246 34 3777 50 6.55708e+06 373705 585099. 2024.56 2.93 0.2301 0.201938 22462 138074 -1 3251 15 1437 4206 244223 55741 6.8411 6.8411 -155.997 -6.8411 0 0 742403. 2568.87 0.29 0.08 0.14 -1 -1 0.29 0.027592 0.0249137 213 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 7.56 vpr 65.00 MiB -1 -1 0.24 20848 12 0.37 -1 -1 36556 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 26.6 MiB 0.33 1438 11641 3058 7283 1300 65.0 MiB 0.10 0.00 7.70272 -159.771 -7.70272 7.70272 0.90 0.000686949 0.000621653 0.0411524 0.0372667 30 3780 27 6.55708e+06 397815 526063. 1820.29 3.62 0.263933 0.231008 21886 126133 -1 2888 18 1519 4182 184934 45916 6.6419 6.6419 -150.702 -6.6419 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0314899 0.0282856 216 213 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 5.03 vpr 64.02 MiB -1 -1 0.17 20348 11 0.16 -1 -1 36512 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65552 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 25.5 MiB 0.29 1054 3998 719 2985 294 64.0 MiB 0.04 0.00 6.14869 -128.86 -6.14869 6.14869 0.90 0.000490114 0.000444983 0.0137398 0.0125478 26 2734 30 6.55708e+06 216990 477104. 1650.88 1.61 0.0995431 0.0877328 21022 109990 -1 2325 17 931 2444 150962 34991 5.41032 5.41032 -130.798 -5.41032 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0228773 0.0205964 125 121 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 12.28 vpr 64.75 MiB -1 -1 0.22 20892 13 0.26 -1 -1 36600 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 26.3 MiB 0.42 1266 7888 1808 5375 705 64.7 MiB 0.07 0.00 7.4424 -157.565 -7.4424 7.4424 0.88 0.00059955 0.000544654 0.0277904 0.0252534 28 3615 32 6.55708e+06 289320 500653. 1732.36 8.52 0.224821 0.196889 21310 115450 -1 2988 19 1194 3381 209369 47676 6.62764 6.62764 -152.575 -6.62764 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0282636 0.0253491 161 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 8.46 vpr 65.47 MiB -1 -1 0.25 21508 14 0.55 -1 -1 36756 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 27.0 MiB 0.32 1601 9199 2042 6426 731 65.5 MiB 0.09 0.00 8.66873 -176.87 -8.66873 8.66873 0.89 0.000795907 0.000713031 0.0375875 0.0340391 30 4285 34 6.55708e+06 397815 526063. 1820.29 4.33 0.286844 0.252184 21886 126133 -1 3448 17 1855 5819 263765 63459 7.36876 7.36876 -164.684 -7.36876 0 0 666494. 2306.21 0.28 0.09 0.13 -1 -1 0.28 0.0348567 0.0314849 245 243 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 8.50 vpr 64.78 MiB -1 -1 0.20 20652 13 0.34 -1 -1 36508 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 26.5 MiB 0.44 1376 4579 799 3553 227 64.8 MiB 0.05 0.00 8.02278 -172.696 -8.02278 8.02278 0.85 0.000586579 0.000519278 0.0175959 0.0159623 36 3334 17 6.55708e+06 325485 612192. 2118.31 4.69 0.264884 0.231753 22750 144809 -1 2862 16 1170 3389 185657 42603 7.0769 7.0769 -164.702 -7.0769 0 0 782063. 2706.10 0.32 0.07 0.13 -1 -1 0.32 0.0274889 0.0247842 178 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 5.90 vpr 64.37 MiB -1 -1 0.19 20580 11 0.20 -1 -1 36292 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 25.8 MiB 0.20 1035 10687 2518 6679 1490 64.4 MiB 0.08 0.00 6.59735 -138.464 -6.59735 6.59735 0.88 0.000532214 0.000482862 0.0333559 0.0302268 34 2502 23 6.55708e+06 277265 585099. 2024.56 2.42 0.167549 0.147705 22462 138074 -1 2257 17 992 2850 154109 36061 5.97918 5.97918 -135.235 -5.97918 0 0 742403. 2568.87 0.31 0.06 0.14 -1 -1 0.31 0.0230548 0.020677 139 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 9.44 vpr 65.16 MiB -1 -1 0.25 21688 15 0.65 -1 -1 36536 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 27.0 MiB 0.38 1771 9773 2274 6549 950 65.2 MiB 0.10 0.00 9.55013 -184.943 -9.55013 9.55013 0.89 0.000819065 0.000741389 0.040598 0.0367505 36 4458 20 6.55708e+06 409870 612192. 2118.31 5.06 0.326523 0.288033 22750 144809 -1 3874 20 2194 7275 428147 94060 8.24735 8.24735 -174.541 -8.24735 0 0 782063. 2706.10 0.32 0.14 0.14 -1 -1 0.32 0.0446404 0.0403799 257 256 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 7.94 vpr 64.76 MiB -1 -1 0.22 20680 13 0.40 -1 -1 36572 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 26.3 MiB 0.36 1402 7958 1933 5289 736 64.8 MiB 0.08 0.00 7.87358 -164.462 -7.87358 7.87358 0.89 0.000674942 0.00061703 0.0310284 0.0281464 34 3536 42 6.55708e+06 337540 585099. 2024.56 3.98 0.279889 0.246112 22462 138074 -1 3048 17 1244 3818 219356 50613 6.73256 6.73256 -154.05 -6.73256 0 0 742403. 2568.87 0.30 0.08 0.14 -1 -1 0.30 0.0312375 0.0282696 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 6.96 vpr 64.42 MiB -1 -1 0.17 20228 11 0.16 -1 -1 36392 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65968 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 25.9 MiB 0.36 1082 11804 3066 7108 1630 64.4 MiB 0.09 0.00 6.28346 -137.062 -6.28346 6.28346 0.88 0.000530045 0.000484201 0.0361037 0.032783 30 2616 26 6.55708e+06 265210 526063. 1820.29 3.38 0.194818 0.169838 21886 126133 -1 2211 13 935 2761 132039 31269 5.40772 5.40772 -129.072 -5.40772 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.018729 0.0168721 141 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 8.44 vpr 65.21 MiB -1 -1 0.23 20724 12 0.38 -1 -1 36780 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 26.6 MiB 0.51 1459 6058 1136 4425 497 65.2 MiB 0.06 0.00 7.4882 -153.189 -7.4882 7.4882 0.90 0.000692912 0.000627857 0.0235177 0.0213591 44 3435 19 6.55708e+06 361650 742403. 2568.87 4.23 0.245664 0.214052 24478 177802 -1 2847 19 1287 4255 217902 48692 6.55124 6.55124 -144.192 -6.55124 0 0 937218. 3242.97 0.37 0.08 0.18 -1 -1 0.37 0.0317108 0.0284772 213 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 5.39 vpr 64.33 MiB -1 -1 0.18 20140 12 0.24 -1 -1 36176 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 25.9 MiB 0.47 1183 11346 2851 6780 1715 64.3 MiB 0.09 0.00 7.37351 -152.427 -7.37351 7.37351 0.89 0.000572281 0.000520883 0.0354258 0.0322593 28 3250 31 6.55708e+06 313430 500653. 1732.36 1.58 0.129092 0.114524 21310 115450 -1 2869 17 1175 3234 203994 49738 6.78964 6.78964 -153.099 -6.78964 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0253731 0.0228536 153 148 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 7.98 vpr 63.87 MiB -1 -1 0.20 20440 12 0.23 -1 -1 36296 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65404 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 25.3 MiB 0.25 948 9803 2338 5714 1751 63.9 MiB 0.08 0.00 7.00946 -139.977 -7.00946 7.00946 0.88 0.000531295 0.000485113 0.0322534 0.0293289 26 3038 22 6.55708e+06 253155 477104. 1650.88 4.46 0.196373 0.171774 21022 109990 -1 2430 18 989 2837 210876 49947 6.39124 6.39124 -138.781 -6.39124 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0244738 0.0218619 140 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 8.94 vpr 64.84 MiB -1 -1 0.23 20780 12 0.33 -1 -1 36540 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 26.3 MiB 0.29 1279 5474 1033 4128 313 64.8 MiB 0.06 0.00 6.7577 -128.343 -6.7577 6.7577 0.90 0.000675239 0.000612161 0.0213375 0.0194145 34 3454 42 6.55708e+06 373705 585099. 2024.56 5.08 0.277847 0.24313 22462 138074 -1 2959 27 1314 4327 392996 137208 5.94258 5.94258 -127.097 -5.94258 0 0 742403. 2568.87 0.29 0.14 0.14 -1 -1 0.29 0.0395799 0.0352434 191 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 11.31 vpr 65.31 MiB -1 -1 0.23 20992 13 0.43 -1 -1 36252 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66876 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 26.6 MiB 0.70 1641 6757 1409 4886 462 65.3 MiB 0.07 0.00 8.4108 -177.204 -8.4108 8.4108 0.87 0.000731729 0.000662817 0.0267029 0.0242478 30 4203 45 6.55708e+06 397815 526063. 1820.29 7.00 0.327448 0.286893 21886 126133 -1 3490 18 1679 4703 234223 54847 7.40996 7.40996 -168.236 -7.40996 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0338894 0.0305529 238 235 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 15.11 vpr 64.98 MiB -1 -1 0.23 20892 12 0.29 -1 -1 36480 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 26.6 MiB 0.51 1388 15645 4295 9025 2325 65.0 MiB 0.13 0.00 7.61066 -152.509 -7.61066 7.61066 0.87 0.000703439 0.000633325 0.0511261 0.0460452 30 3749 42 6.55708e+06 385760 526063. 1820.29 11.12 0.287018 0.251428 21886 126133 -1 3031 21 1582 4727 228631 54061 6.4819 6.4819 -145.643 -6.4819 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0335513 0.0299628 200 195 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 7.05 vpr 64.16 MiB -1 -1 0.17 20456 12 0.17 -1 -1 36632 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65704 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 25.7 MiB 0.60 1058 4842 1062 3260 520 64.2 MiB 0.04 0.00 6.82123 -141.643 -6.82123 6.82123 0.85 0.000454885 0.000409615 0.0146888 0.0133098 30 2539 19 6.55708e+06 241100 526063. 1820.29 3.33 0.169663 0.146878 21886 126133 -1 2201 25 907 2587 263239 114464 6.06078 6.06078 -140.148 -6.06078 0 0 666494. 2306.21 0.28 0.11 0.11 -1 -1 0.28 0.0276922 0.024575 126 119 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.64 vpr 64.61 MiB -1 -1 0.20 20868 12 0.26 -1 -1 36384 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 26.2 MiB 0.33 1176 10455 2348 6392 1715 64.6 MiB 0.08 0.00 7.13387 -142.33 -7.13387 7.13387 0.85 0.000571878 0.000510984 0.0338456 0.0307943 28 3265 32 6.55708e+06 289320 500653. 1732.36 2.00 0.124967 0.110127 21310 115450 -1 2812 19 1179 3692 201624 47628 6.25938 6.25938 -140.101 -6.25938 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0271755 0.0243034 154 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 7.74 vpr 64.62 MiB -1 -1 0.21 20836 11 0.23 -1 -1 36576 -1 -1 30 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 26.2 MiB 0.18 1196 13547 4241 6931 2375 64.6 MiB 0.11 0.00 6.85121 -131.802 -6.85121 6.85121 0.88 0.000613965 0.000556345 0.0441365 0.0399539 36 3385 32 6.55708e+06 361650 612192. 2118.31 4.14 0.220811 0.195408 22750 144809 -1 2593 14 1189 3659 196963 46529 6.03324 6.03324 -126.201 -6.03324 0 0 782063. 2706.10 0.32 0.07 0.14 -1 -1 0.32 0.0250634 0.0226917 190 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.99 vpr 64.23 MiB -1 -1 0.20 20352 11 0.25 -1 -1 36284 -1 -1 27 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65768 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 25.8 MiB 0.18 1080 10647 2769 6876 1002 64.2 MiB 0.09 0.00 6.62889 -122.091 -6.62889 6.62889 0.89 0.000590882 0.000535785 0.0360437 0.0326779 36 2842 24 6.55708e+06 325485 612192. 2118.31 2.36 0.179362 0.157639 22750 144809 -1 2368 21 1131 4148 217048 49040 6.02298 6.02298 -119.498 -6.02298 0 0 782063. 2706.10 0.31 0.08 0.14 -1 -1 0.31 0.0297093 0.0265353 172 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 7.80 vpr 64.60 MiB -1 -1 0.22 20460 13 0.27 -1 -1 36400 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66152 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 26.3 MiB 0.35 1040 5271 1036 3997 238 64.6 MiB 0.05 0.00 7.2482 -136.339 -7.2482 7.2482 0.89 0.000550571 0.000502178 0.0184784 0.0168762 36 2751 18 6.55708e+06 301375 612192. 2118.31 4.05 0.177877 0.155228 22750 144809 -1 2327 21 1020 3176 169142 39267 6.6027 6.6027 -137.49 -6.6027 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.0276517 0.024674 148 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 5.97 vpr 64.56 MiB -1 -1 0.22 20628 12 0.24 -1 -1 36652 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 26.0 MiB 0.36 1203 11270 2888 6672 1710 64.6 MiB 0.09 0.00 7.39203 -156.297 -7.39203 7.39203 0.88 0.000607091 0.000551832 0.0365191 0.033186 30 3360 45 6.55708e+06 337540 526063. 1820.29 2.23 0.15391 0.136024 21886 126133 -1 2532 16 1227 3301 151329 37939 6.0821 6.0821 -146.499 -6.0821 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0257768 0.0232 174 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 7.71 vpr 64.74 MiB -1 -1 0.21 20424 13 0.36 -1 -1 36368 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 26.1 MiB 0.35 1314 8130 1959 5459 712 64.7 MiB 0.07 0.00 8.02027 -155.447 -8.02027 8.02027 0.89 0.000662798 0.000603373 0.0301476 0.0274205 30 3005 23 6.55708e+06 325485 526063. 1820.29 3.88 0.278645 0.2444 21886 126133 -1 2567 14 1027 3072 143954 34065 6.97036 6.97036 -146.48 -6.97036 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0259419 0.0235992 187 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 10.87 vpr 64.92 MiB -1 -1 0.23 20748 14 0.33 -1 -1 36804 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 26.6 MiB 0.30 1224 14168 3595 8187 2386 64.9 MiB 0.12 0.00 8.42547 -164.88 -8.42547 8.42547 0.88 0.000673266 0.000607418 0.0496133 0.0448462 26 3972 40 6.55708e+06 337540 477104. 1650.88 7.06 0.28826 0.254177 21022 109990 -1 3159 21 1474 4041 259266 58930 7.73136 7.73136 -172.194 -7.73136 0 0 585099. 2024.56 0.25 0.10 0.10 -1 -1 0.25 0.0348857 0.0313158 196 195 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 5.83 vpr 64.70 MiB -1 -1 0.23 20936 14 0.31 -1 -1 36296 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 26.2 MiB 0.35 1263 9791 2392 5641 1758 64.7 MiB 0.08 0.00 7.61341 -152.493 -7.61341 7.61341 0.90 0.000596296 0.000538833 0.0341936 0.0310308 30 3316 50 6.55708e+06 301375 526063. 1820.29 1.98 0.171834 0.152397 21886 126133 -1 2650 20 1165 3477 179637 41318 6.66744 6.66744 -146.271 -6.66744 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0319179 0.0286267 175 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 12.09 vpr 65.13 MiB -1 -1 0.23 21252 13 0.41 -1 -1 36712 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 26.6 MiB 0.36 1335 6813 1455 4737 621 65.1 MiB 0.07 0.00 7.97606 -158.638 -7.97606 7.97606 0.88 0.000699026 0.000635543 0.0262269 0.0238332 28 4023 34 6.55708e+06 349595 500653. 1732.36 8.07 0.293842 0.256097 21310 115450 -1 3244 31 2269 6914 508020 168235 6.97036 6.97036 -153.104 -6.97036 0 0 612192. 2118.31 0.27 0.17 0.11 -1 -1 0.27 0.0467883 0.041642 205 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 5.08 vpr 64.37 MiB -1 -1 0.20 20448 13 0.23 -1 -1 36276 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 26.0 MiB 0.49 1181 4811 970 3437 404 64.4 MiB 0.05 0.00 7.32681 -149.503 -7.32681 7.32681 0.88 0.000541752 0.000488129 0.0171345 0.0156217 28 2943 24 6.55708e+06 289320 500653. 1732.36 1.34 0.103243 0.091222 21310 115450 -1 2632 17 1167 3120 186389 43637 6.26704 6.26704 -144.792 -6.26704 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0249451 0.022457 147 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 8.78 vpr 64.86 MiB -1 -1 0.24 20968 13 0.54 -1 -1 36720 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 26.3 MiB 0.41 1409 6058 1135 4495 428 64.9 MiB 0.06 0.00 8.2444 -163.721 -8.2444 8.2444 0.86 0.000643769 0.000571785 0.0238253 0.0215878 36 3519 23 6.55708e+06 385760 612192. 2118.31 4.68 0.24173 0.211929 22750 144809 -1 2977 16 1390 3881 195015 46713 7.28976 7.28976 -154.111 -7.28976 0 0 782063. 2706.10 0.32 0.08 0.13 -1 -1 0.32 0.0293793 0.0265618 203 200 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 13.91 vpr 64.62 MiB -1 -1 0.22 20892 14 0.39 -1 -1 36772 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 26.3 MiB 0.57 1264 7231 1520 5560 151 64.6 MiB 0.07 0.00 8.00109 -166.402 -8.00109 8.00109 0.87 0.000648539 0.00058136 0.0272971 0.0247064 30 3743 50 6.55708e+06 325485 526063. 1820.29 9.78 0.25463 0.222225 21886 126133 -1 2880 14 1293 4196 210862 49523 7.0815 7.0815 -162.389 -7.0815 0 0 666494. 2306.21 0.29 0.08 0.13 -1 -1 0.29 0.0268147 0.0243459 181 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 6.90 vpr 64.56 MiB -1 -1 0.23 20564 13 0.28 -1 -1 36484 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 26.1 MiB 0.35 1305 14323 3915 8229 2179 64.6 MiB 0.11 0.00 7.86768 -158.537 -7.86768 7.86768 0.88 0.000617052 0.000556 0.0487478 0.0440956 38 3237 35 6.55708e+06 301375 638502. 2209.35 3.01 0.213148 0.18743 23326 155178 -1 2664 18 1430 4466 220129 49519 7.0795 7.0795 -153.488 -7.0795 0 0 851065. 2944.86 0.34 0.08 0.15 -1 -1 0.34 0.0287927 0.0257633 175 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 15.14 vpr 64.73 MiB -1 -1 0.23 20824 13 0.27 -1 -1 36644 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 26.2 MiB 0.45 1164 9989 2471 5804 1714 64.7 MiB 0.09 0.00 7.4808 -136.781 -7.4808 7.4808 0.87 0.000625085 0.000567985 0.0348346 0.0315585 28 4049 33 6.55708e+06 325485 500653. 1732.36 11.31 0.267688 0.233402 21310 115450 -1 3203 18 1480 4256 294335 66993 6.8039 6.8039 -143.727 -6.8039 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0277694 0.0248462 178 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.60 vpr 64.98 MiB -1 -1 0.23 20680 14 0.44 -1 -1 36432 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 26.4 MiB 0.43 1476 8091 1866 5495 730 65.0 MiB 0.08 0.00 7.88885 -165.953 -7.88885 7.88885 0.88 0.000707654 0.000641316 0.0291757 0.0265574 34 3883 49 6.55708e+06 446035 585099. 2024.56 2.52 0.221417 0.196212 22462 138074 -1 3199 21 1614 4710 258048 60818 7.2781 7.2781 -163.429 -7.2781 0 0 742403. 2568.87 0.31 0.10 0.13 -1 -1 0.31 0.0377464 0.0338046 218 215 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 6.68 vpr 64.68 MiB -1 -1 0.23 20812 11 0.35 -1 -1 36772 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66228 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 26.2 MiB 0.52 1160 8130 1856 5819 455 64.7 MiB 0.07 0.00 6.86478 -134.007 -6.86478 6.86478 0.90 0.000674793 0.000609406 0.0289909 0.0261793 28 3852 30 6.55708e+06 349595 500653. 1732.36 2.62 0.145692 0.129314 21310 115450 -1 3008 20 1623 4773 300015 69057 6.13918 6.13918 -134.59 -6.13918 0 0 612192. 2118.31 0.28 0.10 0.11 -1 -1 0.28 0.032177 0.0288577 177 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 6.37 vpr 64.12 MiB -1 -1 0.19 20208 13 0.19 -1 -1 36276 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65660 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 25.6 MiB 0.35 1142 8083 2034 5178 871 64.1 MiB 0.06 0.00 7.01052 -158.499 -7.01052 7.01052 0.86 0.000475187 0.000426805 0.0233434 0.0211142 28 3461 48 6.55708e+06 289320 500653. 1732.36 2.84 0.126486 0.111242 21310 115450 -1 2810 19 1169 3029 212550 49762 6.13978 6.13978 -158.3 -6.13978 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0239182 0.0213348 138 127 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 8.50 vpr 64.63 MiB -1 -1 0.22 20716 14 0.30 -1 -1 36564 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 26.1 MiB 0.49 1316 5267 941 3849 477 64.6 MiB 0.05 0.00 8.08175 -166.146 -8.08175 8.08175 0.89 0.000629175 0.000568539 0.0184496 0.0167256 36 3344 49 6.55708e+06 337540 612192. 2118.31 4.49 0.196686 0.172242 22750 144809 -1 2858 19 1239 3732 213441 48577 7.1997 7.1997 -158.608 -7.1997 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0296124 0.0266451 179 172 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 7.61 vpr 65.22 MiB -1 -1 0.23 21348 15 0.53 -1 -1 36620 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 26.8 MiB 0.34 1738 9421 2028 6135 1258 65.2 MiB 0.09 0.00 9.11118 -191.695 -9.11118 9.11118 0.88 0.0007798 0.000705332 0.0371173 0.0337509 34 4874 38 6.55708e+06 397815 585099. 2024.56 3.47 0.215211 0.190773 22462 138074 -1 4018 16 1790 5405 326327 73180 7.89901 7.89901 -181.681 -7.89901 0 0 742403. 2568.87 0.30 0.10 0.14 -1 -1 0.30 0.033626 0.0305228 241 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 5.67 vpr 64.43 MiB -1 -1 0.17 20512 11 0.20 -1 -1 36704 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65980 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 25.9 MiB 0.43 1015 8213 1831 5887 495 64.4 MiB 0.06 0.00 6.43354 -132.345 -6.43354 6.43354 0.88 0.000551808 0.000491864 0.0251582 0.0227642 26 2795 26 6.55708e+06 265210 477104. 1650.88 2.12 0.112344 0.099665 21022 109990 -1 2458 18 1052 3068 207681 46574 5.66498 5.66498 -136.662 -5.66498 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0231173 0.0206386 129 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.31 vpr 64.39 MiB -1 -1 0.18 20132 12 0.23 -1 -1 36456 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65936 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 26.0 MiB 0.31 1181 9395 2257 5715 1423 64.4 MiB 0.07 0.00 7.12111 -149.72 -7.12111 7.12111 0.86 0.000567724 0.000523284 0.0300842 0.0272998 34 3103 20 6.55708e+06 313430 585099. 2024.56 3.68 0.215581 0.187804 22462 138074 -1 2552 15 1140 3181 168184 39239 6.25678 6.25678 -144.527 -6.25678 0 0 742403. 2568.87 0.31 0.07 0.14 -1 -1 0.31 0.0234883 0.0212082 156 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.00 vpr 65.13 MiB -1 -1 0.22 20596 12 0.37 -1 -1 36680 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 26.7 MiB 0.37 1374 9732 2347 6008 1377 65.1 MiB 0.09 0.00 7.22518 -156.32 -7.22518 7.22518 0.86 0.000666203 0.000602886 0.0339281 0.0306793 30 3769 28 6.55708e+06 385760 526063. 1820.29 2.11 0.14269 0.125728 21886 126133 -1 2987 18 1457 4433 208409 50290 6.39384 6.39384 -155.293 -6.39384 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0331844 0.0299012 213 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 7.94 vpr 64.51 MiB -1 -1 0.23 20860 12 0.29 -1 -1 36244 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 26.0 MiB 0.38 1295 7929 1664 5456 809 64.5 MiB 0.07 0.00 7.52995 -159.234 -7.52995 7.52995 0.87 0.000625373 0.000568114 0.0285355 0.0259745 36 3430 23 6.55708e+06 313430 612192. 2118.31 4.10 0.222351 0.194431 22750 144809 -1 2916 14 1211 3646 201814 45483 6.7621 6.7621 -152.293 -6.7621 0 0 782063. 2706.10 0.31 0.07 0.14 -1 -1 0.31 0.0260086 0.0235668 181 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 9.64 vpr 65.47 MiB -1 -1 0.22 21192 14 0.57 -1 -1 36460 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 27.1 MiB 0.64 1613 7655 1578 5578 499 65.5 MiB 0.08 0.00 9.00229 -179.771 -9.00229 9.00229 0.88 0.000786157 0.000714409 0.0323257 0.0293521 36 4565 44 6.55708e+06 373705 612192. 2118.31 5.20 0.259284 0.229414 22750 144809 -1 3729 18 1683 5449 299007 67961 7.89841 7.89841 -172.649 -7.89841 0 0 782063. 2706.10 0.32 0.11 0.14 -1 -1 0.32 0.0378147 0.0342861 234 232 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 5.97 vpr 64.61 MiB -1 -1 0.21 20300 12 0.24 -1 -1 36296 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 26.1 MiB 0.50 1246 9687 2384 6348 955 64.6 MiB 0.08 0.00 7.02918 -135.408 -7.02918 7.02918 0.87 0.000557891 0.000502267 0.0313914 0.0282469 28 3571 33 6.55708e+06 301375 500653. 1732.36 2.22 0.13402 0.118177 21310 115450 -1 2944 17 1197 3745 226727 51186 6.13918 6.13918 -131.372 -6.13918 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0256871 0.0230025 160 155 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 6.53 vpr 64.25 MiB -1 -1 0.20 20308 11 0.23 -1 -1 36300 -1 -1 26 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65792 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 25.7 MiB 0.35 833 9013 2082 5123 1808 64.2 MiB 0.07 0.00 7.08055 -122.398 -7.08055 7.08055 0.88 0.000516373 0.000469852 0.0277834 0.0252529 28 2481 16 6.55708e+06 313430 500653. 1732.36 2.91 0.159677 0.138726 21310 115450 -1 2181 16 937 2681 144182 35896 6.27104 6.27104 -119.514 -6.27104 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0223589 0.0201219 140 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 18.54 vpr 65.28 MiB -1 -1 0.26 21652 13 0.54 -1 -1 36892 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 27.0 MiB 0.53 1984 9864 2435 6697 732 65.3 MiB 0.10 0.00 7.66038 -164.562 -7.66038 7.66038 0.90 0.000839307 0.00075485 0.0398955 0.036085 36 4924 33 6.55708e+06 482200 612192. 2118.31 14.08 0.423856 0.373157 22750 144809 -1 4244 19 2022 6356 418528 101830 6.62764 6.62764 -158.176 -6.62764 0 0 782063. 2706.10 0.32 0.14 0.14 -1 -1 0.32 0.0442411 0.0400932 286 285 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 10.97 vpr 64.71 MiB -1 -1 0.24 20864 14 0.31 -1 -1 36368 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 26.2 MiB 0.26 1315 7027 1431 4957 639 64.7 MiB 0.07 0.00 8.27869 -161.961 -8.27869 8.27869 0.88 0.000641513 0.000584088 0.0257003 0.023399 28 3660 24 6.55708e+06 337540 500653. 1732.36 7.26 0.22373 0.196669 21310 115450 -1 3016 20 1268 3590 214832 51623 7.16956 7.16956 -155.951 -7.16956 0 0 612192. 2118.31 0.27 0.09 0.11 -1 -1 0.27 0.0319534 0.0286827 188 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 6.87 vpr 64.23 MiB -1 -1 0.21 20428 12 0.21 -1 -1 36032 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 25.7 MiB 0.39 1196 5395 963 4230 202 64.2 MiB 0.05 0.00 7.24055 -154.388 -7.24055 7.24055 0.89 0.000548882 0.000499386 0.0175923 0.0161316 30 2856 20 6.55708e+06 325485 526063. 1820.29 3.21 0.172941 0.150421 21886 126133 -1 2294 15 868 2452 121146 28103 6.19064 6.19064 -145.709 -6.19064 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0213219 0.01919 145 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 7.82 vpr 64.66 MiB -1 -1 0.22 20704 13 0.34 -1 -1 36604 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 26.1 MiB 0.52 1201 6321 1371 4614 336 64.7 MiB 0.06 0.00 7.64034 -157.02 -7.64034 7.64034 0.88 0.00061788 0.000561579 0.0242599 0.0220229 30 3256 40 6.55708e+06 313430 526063. 1820.29 3.84 0.248953 0.217347 21886 126133 -1 2579 15 1081 3185 144508 34487 6.6419 6.6419 -144.865 -6.6419 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0254233 0.0229933 169 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 7.04 vpr 65.14 MiB -1 -1 0.23 20996 13 0.40 -1 -1 37084 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 26.5 MiB 0.33 1537 8423 1899 6115 409 65.1 MiB 0.09 0.00 7.71709 -159.898 -7.71709 7.71709 0.89 0.000780462 0.000708611 0.0320929 0.0290867 36 3879 25 6.55708e+06 421925 612192. 2118.31 2.96 0.212038 0.186587 22750 144809 -1 3339 18 1652 4918 259156 61816 6.7601 6.7601 -150.909 -6.7601 0 0 782063. 2706.10 0.32 0.10 0.14 -1 -1 0.32 0.0348514 0.0314958 233 228 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 6.41 vpr 64.75 MiB -1 -1 0.21 20684 11 0.31 -1 -1 36628 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 26.4 MiB 0.30 1421 8703 2291 5674 738 64.7 MiB 0.08 0.00 6.43018 -129.379 -6.43018 6.43018 0.87 0.000630248 0.000565102 0.0295938 0.0268328 38 3311 27 6.55708e+06 373705 638502. 2209.35 2.61 0.19607 0.172494 23326 155178 -1 2799 17 1264 4462 204067 47300 5.62318 5.62318 -122.284 -5.62318 0 0 851065. 2944.86 0.33 0.08 0.15 -1 -1 0.33 0.0292549 0.0264049 199 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 9.04 vpr 64.94 MiB -1 -1 0.24 20664 15 0.44 -1 -1 36216 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 26.5 MiB 0.62 1495 8283 1832 5858 593 64.9 MiB 0.08 0.00 9.21891 -185.491 -9.21891 9.21891 0.89 0.000712139 0.00063041 0.0315166 0.0286131 38 3387 17 6.55708e+06 349595 638502. 2209.35 4.70 0.290882 0.254204 23326 155178 -1 2848 14 1200 3863 181857 42467 7.93561 7.93561 -171.681 -7.93561 0 0 851065. 2944.86 0.34 0.07 0.15 -1 -1 0.34 0.0283439 0.0258316 202 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 9.02 vpr 64.99 MiB -1 -1 0.23 21208 13 0.41 -1 -1 36584 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 26.7 MiB 0.54 1391 6271 1140 4757 374 65.0 MiB 0.06 0.00 8.07023 -173.04 -8.07023 8.07023 0.88 0.000664685 0.000603269 0.0238016 0.0216985 34 3859 36 6.55708e+06 361650 585099. 2024.56 4.87 0.289486 0.255271 22462 138074 -1 3109 17 1469 4457 256820 58431 7.2409 7.2409 -163.193 -7.2409 0 0 742403. 2568.87 0.30 0.09 0.13 -1 -1 0.30 0.031796 0.0287315 194 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.74 vpr 64.69 MiB -1 -1 0.18 20348 12 0.24 -1 -1 36424 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 26.2 MiB 0.50 1116 9738 2558 6406 774 64.7 MiB 0.07 0.00 7.61081 -154.169 -7.61081 7.61081 0.88 0.000524099 0.000475224 0.0287786 0.0260053 34 2924 23 6.55708e+06 349595 585099. 2024.56 3.93 0.225774 0.196444 22462 138074 -1 2524 19 1266 3488 189442 44375 6.7621 6.7621 -146.16 -6.7621 0 0 742403. 2568.87 0.31 0.07 0.13 -1 -1 0.31 0.0260064 0.0231503 157 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 5.30 vpr 64.45 MiB -1 -1 0.20 20512 11 0.19 -1 -1 36116 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66000 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 25.9 MiB 0.25 1023 14221 4533 7413 2275 64.5 MiB 0.10 0.00 6.85492 -138.928 -6.85492 6.85492 0.88 0.000518837 0.000469596 0.0436947 0.0396557 36 2737 18 6.55708e+06 253155 612192. 2118.31 1.70 0.134167 0.118493 22750 144809 -1 2246 16 942 2470 135554 32757 6.07244 6.07244 -134.807 -6.07244 0 0 782063. 2706.10 0.32 0.06 0.14 -1 -1 0.32 0.0226429 0.0203836 145 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 7.90 vpr 64.71 MiB -1 -1 0.22 20692 13 0.40 -1 -1 36424 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 26.3 MiB 0.59 1413 7544 1727 4833 984 64.7 MiB 0.07 0.00 7.87899 -160.785 -7.87899 7.87899 0.89 0.000670414 0.000606904 0.0284216 0.0258362 36 4021 32 6.55708e+06 349595 612192. 2118.31 3.63 0.202252 0.177573 22750 144809 -1 3157 19 1672 5284 291593 66424 7.0005 7.0005 -155.01 -7.0005 0 0 782063. 2706.10 0.33 0.10 0.14 -1 -1 0.33 0.0346543 0.0311375 203 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 7.89 vpr 64.19 MiB -1 -1 0.20 20500 10 0.21 -1 -1 36728 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65728 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 25.7 MiB 0.22 868 12919 4781 6181 1957 64.2 MiB 0.09 0.00 5.78714 -114.742 -5.78714 5.78714 0.87 0.000519616 0.0004712 0.0383124 0.0346578 36 2361 20 6.55708e+06 289320 612192. 2118.31 4.38 0.230938 0.201012 22750 144809 -1 1801 14 878 2572 124831 31192 5.29412 5.29412 -108.344 -5.29412 0 0 782063. 2706.10 0.31 0.05 0.14 -1 -1 0.31 0.0197202 0.0177025 137 130 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 5.70 vpr 64.54 MiB -1 -1 0.19 20572 14 0.24 -1 -1 36136 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 26.0 MiB 0.60 1127 8083 1934 5578 571 64.5 MiB 0.07 0.00 7.89252 -162.804 -7.89252 7.89252 0.89 0.000559199 0.000505552 0.0267051 0.0242996 30 2792 49 6.55708e+06 289320 526063. 1820.29 1.75 0.13497 0.118866 21886 126133 -1 2526 20 1154 3443 174242 40924 7.06583 7.06583 -157.357 -7.06583 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0276382 0.0247606 146 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 5.75 vpr 64.56 MiB -1 -1 0.24 20680 13 0.34 -1 -1 36544 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 26.0 MiB 0.39 1259 5343 1011 3807 525 64.6 MiB 0.05 0.00 7.51815 -158.387 -7.51815 7.51815 0.88 0.000609419 0.000553325 0.0192791 0.0176231 30 3403 50 6.55708e+06 361650 526063. 1820.29 1.89 0.145432 0.128613 21886 126133 -1 2708 19 1247 3492 163913 39290 6.63024 6.63024 -152.491 -6.63024 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.029387 0.0264145 180 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 6.84 vpr 64.36 MiB -1 -1 0.19 20456 12 0.18 -1 -1 36460 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 25.8 MiB 0.39 1126 6425 1245 4721 459 64.4 MiB 0.05 0.00 6.61153 -138.873 -6.61153 6.61153 0.88 0.000460151 0.000420192 0.017673 0.0160925 26 3323 44 6.55708e+06 313430 477104. 1650.88 3.30 0.123648 0.109192 21022 109990 -1 2679 18 1132 2915 195041 44469 6.17132 6.17132 -140.754 -6.17132 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0250363 0.0224875 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 17.03 vpr 64.28 MiB -1 -1 0.21 20976 12 0.24 -1 -1 36712 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65824 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 25.9 MiB 0.36 1378 9336 2424 5781 1131 64.3 MiB 0.08 0.00 6.98257 -148.375 -6.98257 6.98257 0.88 0.000662498 0.000601482 0.0341615 0.0308915 28 3883 35 6.55708e+06 313430 500653. 1732.36 13.23 0.28231 0.24878 21310 115450 -1 3415 24 1639 5314 510743 142015 6.18298 6.18298 -150.989 -6.18298 0 0 612192. 2118.31 0.26 0.16 0.11 -1 -1 0.26 0.039139 0.0348699 195 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 12.64 vpr 65.06 MiB -1 -1 0.25 21116 13 0.37 -1 -1 36608 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 26.6 MiB 0.58 1315 8372 1899 5332 1141 65.1 MiB 0.08 0.00 7.89081 -157.415 -7.89081 7.89081 0.87 0.000655562 0.000597549 0.0303572 0.0275189 30 3625 30 6.55708e+06 349595 526063. 1820.29 8.51 0.221631 0.194217 21886 126133 -1 3073 17 1352 4093 205925 47312 6.8797 6.8797 -151.217 -6.8797 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0298142 0.0267069 193 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 6.92 vpr 64.56 MiB -1 -1 0.20 20384 11 0.21 -1 -1 36224 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 26.2 MiB 0.29 1172 8405 1842 5723 840 64.6 MiB 0.07 0.00 6.25963 -142.54 -6.25963 6.25963 0.90 0.000554286 0.000492277 0.0260056 0.0236444 28 3065 24 6.55708e+06 301375 500653. 1732.36 3.33 0.173213 0.151039 21310 115450 -1 2690 15 1100 2962 178308 40669 5.57032 5.57032 -138.049 -5.57032 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0224431 0.0202409 148 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 6.86 vpr 64.68 MiB -1 -1 0.20 20516 13 0.27 -1 -1 36304 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 26.2 MiB 0.36 1201 7888 1972 5242 674 64.7 MiB 0.07 0.00 7.53481 -156.077 -7.53481 7.53481 0.92 0.000608824 0.000551261 0.0263359 0.0239625 36 3071 27 6.55708e+06 289320 612192. 2118.31 3.01 0.176339 0.155061 22750 144809 -1 2681 15 1095 3271 177755 41392 6.66944 6.66944 -146.621 -6.66944 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.023585 0.0211864 164 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 9.77 vpr 64.77 MiB -1 -1 0.21 20604 13 0.32 -1 -1 36376 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 26.4 MiB 0.84 1318 8165 2007 5452 706 64.8 MiB 0.07 0.00 7.90343 -168.183 -7.90343 7.90343 0.88 0.000637856 0.000585242 0.0289079 0.0260736 30 3226 19 6.55708e+06 337540 526063. 1820.29 5.46 0.241408 0.211327 21886 126133 -1 2814 20 1363 3853 181964 43791 6.9979 6.9979 -160.968 -6.9979 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0310855 0.0278507 193 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 7.77 vpr 64.46 MiB -1 -1 0.22 20748 11 0.23 -1 -1 36264 -1 -1 27 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66008 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 26.1 MiB 0.22 1119 12568 3466 6955 2147 64.5 MiB 0.09 0.00 6.27069 -123.259 -6.27069 6.27069 0.85 0.000576092 0.000507729 0.0384626 0.0348084 44 2576 19 6.55708e+06 325485 742403. 2568.87 4.06 0.21394 0.186071 24478 177802 -1 2190 12 775 2429 119567 27751 5.50298 5.50298 -115.238 -5.50298 0 0 937218. 3242.97 0.38 0.05 0.18 -1 -1 0.38 0.0207771 0.0188964 160 154 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 7.12 vpr 65.16 MiB -1 -1 0.24 21472 14 0.40 -1 -1 36452 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 26.5 MiB 0.42 1606 6711 1323 5111 277 65.2 MiB 0.07 0.00 8.36721 -183.374 -8.36721 8.36721 0.93 0.00074168 0.00066739 0.0262745 0.0238192 34 4307 28 6.55708e+06 421925 585099. 2024.56 3.00 0.206876 0.182711 22462 138074 -1 3744 20 1814 5595 320360 73228 7.48896 7.48896 -175.746 -7.48896 0 0 742403. 2568.87 0.31 0.11 0.14 -1 -1 0.31 0.0378817 0.0341325 224 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 6.00 vpr 64.50 MiB -1 -1 0.18 20176 12 0.19 -1 -1 36600 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 25.9 MiB 0.34 1117 4987 873 3940 174 64.5 MiB 0.04 0.00 6.95154 -148.876 -6.95154 6.95154 0.89 0.000515315 0.000466629 0.0155203 0.014147 36 2672 44 6.55708e+06 337540 612192. 2118.31 2.32 0.16006 0.140162 22750 144809 -1 2387 13 875 2354 137817 31246 5.97978 5.97978 -139.331 -5.97978 0 0 782063. 2706.10 0.32 0.05 0.14 -1 -1 0.32 0.0199705 0.0180949 138 129 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 18.00 vpr 64.77 MiB -1 -1 0.25 21392 13 0.37 -1 -1 36832 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 26.2 MiB 0.51 1370 8603 2025 5470 1108 64.8 MiB 0.08 0.00 7.91043 -160.998 -7.91043 7.91043 0.89 0.000650229 0.000590415 0.0323159 0.0293442 28 4265 49 6.55708e+06 301375 500653. 1732.36 13.96 0.264358 0.231947 21310 115450 -1 3442 17 1520 4590 286136 64967 6.7575 6.7575 -154.136 -6.7575 0 0 612192. 2118.31 0.25 0.10 0.12 -1 -1 0.25 0.0306259 0.0276559 189 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 6.83 vpr 64.54 MiB -1 -1 0.21 20532 13 0.22 -1 -1 36300 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 26.1 MiB 0.40 1056 8130 1788 5768 574 64.5 MiB 0.07 0.00 7.50778 -157.173 -7.50778 7.50778 0.88 0.000568758 0.000512209 0.0255766 0.0231733 30 2704 18 6.55708e+06 313430 526063. 1820.29 3.13 0.187592 0.163891 21886 126133 -1 2313 16 1098 2983 138610 33886 6.4407 6.4407 -148.047 -6.4407 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0231486 0.0208359 151 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 6.34 vpr 64.82 MiB -1 -1 0.23 20672 12 0.27 -1 -1 36784 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 26.3 MiB 0.31 1163 6723 1513 4783 427 64.8 MiB 0.06 0.00 6.89912 -149.425 -6.89912 6.89912 0.89 0.00063084 0.00056957 0.0246121 0.0222993 28 3528 41 6.55708e+06 313430 500653. 1732.36 2.65 0.141599 0.124861 21310 115450 -1 2778 17 1161 3524 204815 47103 6.14118 6.14118 -144.817 -6.14118 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0300304 0.0271226 176 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.28 vpr 65.18 MiB -1 -1 0.25 21416 15 0.61 -1 -1 37108 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 27.0 MiB 0.32 1744 7060 1356 4899 805 65.2 MiB 0.08 0.00 8.47263 -171.112 -8.47263 8.47263 0.91 0.000836552 0.000754199 0.0300136 0.0272017 34 5706 47 6.55708e+06 433980 585099. 2024.56 4.99 0.244609 0.215009 22462 138074 -1 4214 21 2110 6945 423302 93623 7.49096 7.49096 -169.064 -7.49096 0 0 742403. 2568.87 0.32 0.14 0.14 -1 -1 0.32 0.0457901 0.0412921 256 255 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 4.94 vpr 63.49 MiB -1 -1 0.18 20332 10 0.12 -1 -1 36040 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65016 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 25.0 MiB 0.13 585 9368 2413 5125 1830 63.5 MiB 0.06 0.00 5.46394 -116.249 -5.46394 5.46394 0.89 0.000480365 0.000437018 0.0220217 0.0199058 34 2054 46 6.55708e+06 216990 585099. 2024.56 1.69 0.103112 0.0896721 22462 138074 -1 1479 14 714 1708 96959 25712 5.08126 5.08126 -118.595 -5.08126 0 0 742403. 2568.87 0.31 0.04 0.13 -1 -1 0.31 0.0147178 0.0132184 90 81 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 7.48 vpr 64.24 MiB -1 -1 0.20 20416 13 0.23 -1 -1 36020 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65784 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 25.7 MiB 0.21 1072 8919 2278 5395 1246 64.2 MiB 0.07 0.00 7.24406 -148.604 -7.24406 7.24406 0.89 0.000545054 0.000494827 0.0285666 0.0260537 36 2670 24 6.55708e+06 301375 612192. 2118.31 3.93 0.183933 0.161071 22750 144809 -1 2343 16 922 2630 141884 33368 6.41738 6.41738 -142.598 -6.41738 0 0 782063. 2706.10 0.29 0.06 0.14 -1 -1 0.29 0.0237505 0.0214143 143 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 5.23 vpr 64.78 MiB -1 -1 0.20 20352 12 0.24 -1 -1 36416 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 26.3 MiB 0.33 1142 5938 1144 4647 147 64.8 MiB 0.06 0.00 7.66077 -153.727 -7.66077 7.66077 0.89 0.000609029 0.000552189 0.0217998 0.0198391 28 3544 30 6.55708e+06 289320 500653. 1732.36 1.58 0.125859 0.11158 21310 115450 -1 2828 19 1483 4043 231278 55286 6.90984 6.90984 -156.407 -6.90984 0 0 612192. 2118.31 0.27 0.09 0.11 -1 -1 0.27 0.0304137 0.0273699 171 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 6.55 vpr 63.76 MiB -1 -1 0.17 20276 9 0.16 -1 -1 36324 -1 -1 22 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65288 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 25.4 MiB 0.20 820 8191 2009 5395 787 63.8 MiB 0.06 0.00 5.29417 -99.0147 -5.29417 5.29417 0.89 0.000429395 0.000389589 0.0232809 0.0211338 28 2275 34 6.55708e+06 265210 500653. 1732.36 3.21 0.146959 0.12734 21310 115450 -1 1826 18 849 2459 131345 31144 4.7914 4.7914 -98.7253 -4.7914 0 0 612192. 2118.31 0.25 0.05 0.11 -1 -1 0.25 0.0193268 0.0172128 111 102 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 17.94 vpr 64.75 MiB -1 -1 0.23 20692 12 0.33 -1 -1 36524 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 26.3 MiB 0.38 1501 7867 1766 5013 1088 64.7 MiB 0.07 0.00 7.24465 -156.602 -7.24465 7.24465 0.87 0.000647194 0.000584524 0.0272576 0.0247367 36 4232 25 6.55708e+06 397815 612192. 2118.31 13.99 0.319319 0.280068 22750 144809 -1 3544 18 1721 4955 296703 67997 6.47224 6.47224 -152.633 -6.47224 0 0 782063. 2706.10 0.32 0.10 0.14 -1 -1 0.32 0.0336025 0.0304515 212 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 5.71 vpr 64.91 MiB -1 -1 0.25 21524 13 0.39 -1 -1 36376 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 26.5 MiB 0.36 1408 5343 959 3971 413 64.9 MiB 0.05 0.00 8.27458 -166.489 -8.27458 8.27458 0.90 0.000629898 0.00057368 0.0208921 0.0190079 30 3772 34 6.55708e+06 361650 526063. 1820.29 1.73 0.138158 0.122358 21886 126133 -1 3080 17 1417 4341 206664 49561 7.2801 7.2801 -159.365 -7.2801 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0306908 0.0276673 200 197 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.29 vpr 65.09 MiB -1 -1 0.17 20564 1 0.03 -1 -1 33948 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 26.5 MiB 0.26 1124 13017 3784 8461 772 65.1 MiB 0.11 0.00 5.44269 -161.211 -5.44269 5.44269 0.84 0.000485938 0.000436895 0.0325906 0.0297322 32 2442 21 6.64007e+06 401856 554710. 1919.41 0.94 0.0968539 0.0854191 22834 132086 -1 2197 22 1375 2183 153641 35574 4.17168 4.17168 -144.286 -4.17168 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0232293 0.0204671 154 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.40 vpr 65.08 MiB -1 -1 0.18 20484 1 0.03 -1 -1 33820 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 26.3 MiB 0.22 1017 14639 5117 7505 2017 65.1 MiB 0.13 0.00 4.98742 -150.865 -4.98742 4.98742 0.88 0.000511902 0.000465459 0.0417982 0.0381293 32 2368 24 6.64007e+06 301392 554710. 1919.41 1.00 0.108828 0.09607 22834 132086 -1 2072 21 1726 2597 175792 40973 4.22388 4.22388 -142.728 -4.22388 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0242675 0.0214544 139 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.65 vpr 64.73 MiB -1 -1 0.15 20132 1 0.03 -1 -1 33968 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 26.3 MiB 0.25 982 7575 1808 5319 448 64.7 MiB 0.07 0.00 4.35696 -123.732 -4.35696 4.35696 0.89 0.000478407 0.0004272 0.0202582 0.0185333 26 2567 31 6.64007e+06 288834 477104. 1650.88 1.40 0.0948574 0.0837349 21682 110474 -1 2183 21 1344 1867 149309 34880 3.78583 3.78583 -126.34 -3.78583 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0216394 0.0192231 126 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.13 vpr 64.73 MiB -1 -1 0.16 20108 1 0.03 -1 -1 33796 -1 -1 27 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 26.4 MiB 0.06 985 10228 2796 6251 1181 64.7 MiB 0.09 0.00 4.65835 -126.219 -4.65835 4.65835 0.89 0.000458981 0.000418632 0.0263532 0.0240692 32 2212 23 6.64007e+06 339066 554710. 1919.41 0.98 0.0868776 0.0764994 22834 132086 -1 1983 21 1477 2736 183594 40068 3.57863 3.57863 -119.515 -3.57863 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0215601 0.0190947 126 25 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.13 vpr 64.70 MiB -1 -1 0.14 20276 1 0.03 -1 -1 33612 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 26.3 MiB 0.07 1007 9687 2297 6508 882 64.7 MiB 0.09 0.00 4.57112 -133.029 -4.57112 4.57112 0.88 0.000504793 0.000453154 0.0279566 0.0255594 30 2231 22 6.64007e+06 288834 526063. 1820.29 1.00 0.0946938 0.0835274 22546 126617 -1 2005 18 1146 2272 118837 28404 3.55723 3.55723 -127.325 -3.55723 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0208788 0.0185571 130 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.71 vpr 65.14 MiB -1 -1 0.14 20424 1 0.03 -1 -1 33644 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1031 10673 2804 7227 642 65.1 MiB 0.09 0.00 3.47522 -121.603 -3.47522 3.47522 0.89 0.000490954 0.000449366 0.0257828 0.0233939 26 2825 19 6.64007e+06 426972 477104. 1650.88 1.57 0.0990001 0.0872567 21682 110474 -1 2327 20 1354 2211 164800 38038 3.00717 3.00717 -119.334 -3.00717 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.022964 0.0203201 142 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.07 vpr 64.32 MiB -1 -1 0.15 20108 1 0.03 -1 -1 34012 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65864 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 25.9 MiB 0.09 589 11532 3345 7374 813 64.3 MiB 0.08 0.00 4.00878 -100.807 -4.00878 4.00878 0.90 0.000399371 0.000364347 0.0299262 0.027308 32 1498 22 6.64007e+06 238602 554710. 1919.41 0.93 0.0811583 0.0714212 22834 132086 -1 1201 19 858 1449 89869 22288 2.83977 2.83977 -92.5512 -2.83977 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0172864 0.015312 93 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.08 vpr 64.57 MiB -1 -1 0.15 20216 1 0.03 -1 -1 33544 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66116 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 26.0 MiB 0.07 892 10318 2381 7361 576 64.6 MiB 0.09 0.00 3.4251 -99.9264 -3.4251 3.4251 0.90 0.000442638 0.000404854 0.0230449 0.0209374 28 2086 21 6.64007e+06 389298 500653. 1732.36 0.97 0.0807499 0.0710863 21970 115934 -1 1808 19 967 1802 110205 25769 2.73877 2.73877 -95.7999 -2.73877 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0185954 0.0165029 115 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.19 vpr 64.75 MiB -1 -1 0.16 20716 1 0.03 -1 -1 33964 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 26.4 MiB 0.21 960 9623 2754 6116 753 64.7 MiB 0.08 0.00 3.62801 -120.96 -3.62801 3.62801 0.91 0.000474116 0.000432052 0.0269613 0.024659 28 2163 20 6.64007e+06 251160 500653. 1732.36 0.92 0.0843278 0.0741694 21970 115934 -1 1910 18 1014 1444 99492 23284 3.14783 3.14783 -117.396 -3.14783 0 0 612192. 2118.31 0.25 0.05 0.12 -1 -1 0.25 0.0192463 0.0170868 111 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.22 vpr 64.48 MiB -1 -1 0.15 20416 1 0.03 -1 -1 33608 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.9 MiB 0.15 841 12506 4273 6237 1996 64.5 MiB 0.10 0.00 3.87558 -126.558 -3.87558 3.87558 0.90 0.000455409 0.000413221 0.034838 0.0317699 28 1979 19 6.64007e+06 213486 500653. 1732.36 0.97 0.0910656 0.0804561 21970 115934 -1 1831 18 1137 1856 132799 29714 2.85977 2.85977 -117.521 -2.85977 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0189201 0.016782 112 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.15 vpr 64.51 MiB -1 -1 0.15 20240 1 0.03 -1 -1 33444 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 26.0 MiB 0.12 796 12078 3517 6936 1625 64.5 MiB 0.09 0.00 4.09995 -113.228 -4.09995 4.09995 0.92 0.00044763 0.000407704 0.0339461 0.031026 32 1650 18 6.64007e+06 213486 554710. 1919.41 0.92 0.0873572 0.0770956 22834 132086 -1 1526 18 834 1316 89472 20060 2.80076 2.80076 -103.785 -2.80076 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.018787 0.0166804 98 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.25 vpr 64.58 MiB -1 -1 0.14 20252 1 0.03 -1 -1 33744 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 26.0 MiB 0.25 811 8448 2011 5971 466 64.6 MiB 0.07 0.00 3.76138 -119.223 -3.76138 3.76138 0.90 0.000432217 0.000396398 0.0224878 0.0205316 32 2052 21 6.64007e+06 226044 554710. 1919.41 0.95 0.0780662 0.0685083 22834 132086 -1 1782 17 1005 1343 92897 22236 2.94117 2.94117 -111.84 -2.94117 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0177974 0.0158612 109 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.41 vpr 64.91 MiB -1 -1 0.16 20792 1 0.03 -1 -1 33988 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 26.4 MiB 0.25 1094 10228 2675 6918 635 64.9 MiB 0.10 0.00 4.45106 -144.281 -4.45106 4.45106 0.89 0.000526938 0.00047914 0.0290399 0.0265763 28 2647 19 6.64007e+06 301392 500653. 1732.36 1.06 0.0970592 0.0858121 21970 115934 -1 2302 21 1517 2276 157265 35537 3.39957 3.39957 -130.65 -3.39957 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0249662 0.0221948 139 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.63 vpr 65.08 MiB -1 -1 0.15 20452 1 0.03 -1 -1 33752 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 26.6 MiB 0.15 940 8735 2013 6355 367 65.1 MiB 0.09 0.00 5.05578 -142.31 -5.05578 5.05578 0.90 0.000519762 0.000473852 0.0236687 0.0216606 26 2673 31 6.64007e+06 389298 477104. 1650.88 1.43 0.112784 0.0999837 21682 110474 -1 2369 24 1700 2809 252365 57579 4.10303 4.10303 -143.708 -4.10303 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0274942 0.0242351 134 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.97 vpr 64.23 MiB -1 -1 0.14 20212 1 0.03 -1 -1 33732 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 25.8 MiB 0.09 637 6668 1590 4651 427 64.2 MiB 0.05 0.00 3.28519 -90.5035 -3.28519 3.28519 0.92 0.000410293 0.000373504 0.0166108 0.0151957 28 1662 22 6.64007e+06 263718 500653. 1732.36 0.91 0.0671077 0.0587603 21970 115934 -1 1542 18 837 1409 97266 22395 2.87917 2.87917 -91.5222 -2.87917 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0164128 0.0145382 98 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.05 vpr 64.77 MiB -1 -1 0.14 20536 1 0.03 -1 -1 34008 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 26.3 MiB 0.13 961 6890 1523 4904 463 64.8 MiB 0.07 0.00 4.06512 -124.686 -4.06512 4.06512 0.86 0.000487713 0.000440968 0.0208235 0.0189791 32 2268 21 6.64007e+06 276276 554710. 1919.41 0.93 0.0850328 0.0743124 22834 132086 -1 2137 19 1378 2491 165441 37726 3.26157 3.26157 -120.084 -3.26157 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0230284 0.0203988 133 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.40 vpr 64.68 MiB -1 -1 0.14 20392 1 0.03 -1 -1 33936 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 26.2 MiB 0.24 1114 15447 4373 9239 1835 64.7 MiB 0.14 0.00 4.49004 -144.522 -4.49004 4.49004 0.88 0.000508988 0.000458954 0.0432068 0.0394891 30 2367 22 6.64007e+06 288834 526063. 1820.29 1.04 0.113121 0.100561 22546 126617 -1 2082 22 1283 1774 106684 24449 3.52743 3.52743 -132.363 -3.52743 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0246663 0.0218447 138 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.17 vpr 64.77 MiB -1 -1 0.15 20328 1 0.03 -1 -1 33632 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 26.2 MiB 0.11 723 8493 1892 6266 335 64.8 MiB 0.08 0.00 2.85064 -99.9956 -2.85064 2.85064 0.87 0.00049609 0.000450993 0.0213282 0.0194464 26 1971 23 6.64007e+06 364182 477104. 1650.88 1.07 0.0887986 0.0782333 21682 110474 -1 1682 23 1157 1829 133991 31802 2.16631 2.16631 -95.695 -2.16631 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0238253 0.0210597 110 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.93 vpr 63.73 MiB -1 -1 0.15 20620 1 0.03 -1 -1 33852 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65264 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 25.3 MiB 0.06 681 12139 4399 6260 1480 63.7 MiB 0.08 0.00 2.38033 -81.64 -2.38033 2.38033 0.88 0.000354102 0.000323468 0.0281724 0.0257314 32 1405 20 6.64007e+06 188370 554710. 1919.41 0.88 0.0717183 0.0630653 22834 132086 -1 1332 19 687 974 77488 17623 2.11131 2.11131 -84.6627 -2.11131 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0153282 0.0135058 81 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 5.24 vpr 64.62 MiB -1 -1 0.15 20568 1 0.03 -1 -1 33960 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 26.2 MiB 0.22 706 14123 4873 6572 2678 64.6 MiB 0.10 0.00 4.95769 -142.332 -4.95769 4.95769 0.89 0.00043877 0.000398568 0.0372408 0.0339624 36 1838 20 6.64007e+06 251160 612192. 2118.31 1.90 0.134987 0.118448 23410 145293 -1 1478 17 801 1099 85912 22741 3.70143 3.70143 -127.634 -3.70143 0 0 782063. 2706.10 0.31 0.05 0.14 -1 -1 0.31 0.0184859 0.0164687 128 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.11 vpr 64.59 MiB -1 -1 0.16 20560 1 0.03 -1 -1 34064 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 26.1 MiB 0.06 905 8735 1899 5951 885 64.6 MiB 0.08 0.00 4.18572 -129.145 -4.18572 4.18572 0.89 0.000512718 0.000469161 0.0232024 0.0212275 30 2116 22 6.64007e+06 389298 526063. 1820.29 0.99 0.0879887 0.0773103 22546 126617 -1 1860 21 1144 1874 106775 25052 3.51643 3.51643 -123.572 -3.51643 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0228636 0.0202427 135 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.47 vpr 65.14 MiB -1 -1 0.16 20520 1 0.03 -1 -1 33912 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 26.4 MiB 0.27 1203 12167 3358 7515 1294 65.1 MiB 0.12 0.00 4.64616 -143.706 -4.64616 4.64616 0.88 0.000548139 0.000500918 0.0360826 0.0329529 26 3212 23 6.64007e+06 313950 477104. 1650.88 2.10 0.114111 0.100968 21682 110474 -1 2759 22 1650 2668 239641 52048 4.42528 4.42528 -144.001 -4.42528 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0265663 0.0235179 144 59 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.95 vpr 63.82 MiB -1 -1 0.13 20052 1 0.02 -1 -1 34124 -1 -1 18 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65352 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 25.4 MiB 0.15 410 10636 4183 5187 1266 63.8 MiB 0.06 0.00 2.43955 -66.7065 -2.43955 2.43955 0.88 0.000342124 0.000314802 0.0220671 0.0201461 26 1192 25 6.64007e+06 226044 477104. 1650.88 0.92 0.064298 0.056493 21682 110474 -1 933 19 592 836 60371 15069 1.93811 1.93811 -66.8476 -1.93811 0 0 585099. 2024.56 0.25 0.04 0.11 -1 -1 0.25 0.0137048 0.0121143 77 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.99 vpr 64.33 MiB -1 -1 0.15 20204 1 0.03 -1 -1 33844 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 26.0 MiB 0.05 995 7897 1725 4978 1194 64.3 MiB 0.07 0.00 5.05066 -128.356 -5.05066 5.05066 0.90 0.000437717 0.000399808 0.0209425 0.0191592 28 2296 20 6.64007e+06 263718 500653. 1732.36 0.93 0.0769377 0.0676926 21970 115934 -1 2002 19 1149 2144 141277 31796 3.76362 3.76362 -124.406 -3.76362 0 0 612192. 2118.31 0.25 0.06 0.11 -1 -1 0.25 0.0194558 0.0172148 118 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.82 vpr 63.99 MiB -1 -1 0.14 19840 1 0.03 -1 -1 33240 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65524 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 25.6 MiB 0.05 661 11200 3826 5626 1748 64.0 MiB 0.06 0.00 2.56853 -79.0193 -2.56853 2.56853 0.89 0.000299883 0.000274295 0.0216434 0.0197133 28 1267 14 6.64007e+06 175812 500653. 1732.36 0.86 0.0568021 0.0501349 21970 115934 -1 1189 14 407 458 37605 8621 2.02211 2.02211 -77.5953 -2.02211 0 0 612192. 2118.31 0.25 0.03 0.12 -1 -1 0.25 0.00996251 0.00889143 79 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.92 vpr 64.54 MiB -1 -1 0.13 20428 1 0.03 -1 -1 33856 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 26.2 MiB 0.05 831 10318 2723 6880 715 64.5 MiB 0.08 0.00 4.58015 -125.342 -4.58015 4.58015 0.87 0.000419215 0.000382022 0.0231821 0.0210537 28 2131 21 6.64007e+06 376740 500653. 1732.36 0.94 0.0795435 0.0696537 21970 115934 -1 1845 18 1048 1710 106719 26161 3.57362 3.57362 -117.035 -3.57362 0 0 612192. 2118.31 0.26 0.05 0.10 -1 -1 0.26 0.0184269 0.0162798 123 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.07 vpr 64.54 MiB -1 -1 0.15 20116 1 0.03 -1 -1 33796 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.2 MiB 0.05 850 7439 1494 5462 483 64.5 MiB 0.07 0.00 3.82887 -106.637 -3.82887 3.82887 0.89 0.000470159 0.000429446 0.0183052 0.016727 28 2324 24 6.64007e+06 389298 500653. 1732.36 0.98 0.080586 0.0707612 21970 115934 -1 1818 19 1113 2008 106218 27824 2.96817 2.96817 -107.142 -2.96817 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0208819 0.0186408 128 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.89 vpr 64.82 MiB -1 -1 0.15 20660 1 0.03 -1 -1 33840 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 26.4 MiB 0.12 906 17635 6157 8662 2816 64.8 MiB 0.15 0.00 4.78135 -133.838 -4.78135 4.78135 0.89 0.000516909 0.000470984 0.0460085 0.0419768 28 2693 30 6.64007e+06 339066 500653. 1732.36 1.66 0.129582 0.115266 21970 115934 -1 2068 18 1181 2011 163906 36763 3.79863 3.79863 -128.222 -3.79863 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0215354 0.0191616 126 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.94 vpr 64.02 MiB -1 -1 0.15 20180 1 0.03 -1 -1 33696 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65552 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 25.5 MiB 0.07 735 5928 1206 4471 251 64.0 MiB 0.05 0.00 3.02179 -99.7239 -3.02179 3.02179 0.87 0.000440606 0.000401448 0.0170288 0.0155812 26 2048 22 6.64007e+06 200928 477104. 1650.88 0.94 0.0760971 0.0667886 21682 110474 -1 1729 20 1095 1740 122619 28865 3.06837 3.06837 -113.451 -3.06837 0 0 585099. 2024.56 0.24 0.05 0.11 -1 -1 0.24 0.0191608 0.0169927 101 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.10 vpr 64.09 MiB -1 -1 0.14 20244 1 0.03 -1 -1 33748 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65624 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 25.7 MiB 0.07 661 11617 2521 8405 691 64.1 MiB 0.08 0.00 3.24119 -97.0143 -3.24119 3.24119 0.89 0.000393135 0.000359162 0.0277408 0.025326 28 1701 20 6.64007e+06 288834 500653. 1732.36 1.01 0.0799748 0.0704787 21970 115934 -1 1547 17 853 1296 94316 21406 2.79497 2.79497 -96.8 -2.79497 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0167073 0.0148046 97 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.22 vpr 64.28 MiB -1 -1 0.15 20292 1 0.03 -1 -1 33832 -1 -1 23 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65824 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 25.8 MiB 0.05 583 14123 3845 8834 1444 64.3 MiB 0.09 0.00 3.43604 -94.4648 -3.43604 3.43604 0.88 0.000369679 0.000335897 0.0315777 0.0287068 28 1800 26 6.64007e+06 288834 500653. 1732.36 1.08 0.0896892 0.0789453 21970 115934 -1 1566 20 916 1539 109893 29879 2.74177 2.74177 -95.1293 -2.74177 0 0 612192. 2118.31 0.25 0.05 0.11 -1 -1 0.25 0.0182793 0.0161632 98 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.89 vpr 64.34 MiB -1 -1 0.13 20096 1 0.03 -1 -1 33732 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65880 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 25.9 MiB 0.05 702 4763 881 3747 135 64.3 MiB 0.04 0.00 3.98575 -113.461 -3.98575 3.98575 0.87 0.000390365 0.00035526 0.0120982 0.0110781 26 2390 34 6.64007e+06 238602 477104. 1650.88 2.92 0.132224 0.114964 21682 110474 -1 1814 22 1363 2192 166936 41393 3.11217 3.11217 -116.399 -3.11217 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0203613 0.0180514 110 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.17 vpr 64.58 MiB -1 -1 0.16 20560 1 0.03 -1 -1 33384 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66128 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 26.1 MiB 0.05 705 6924 1381 5320 223 64.6 MiB 0.06 0.00 3.56847 -102.973 -3.56847 3.56847 0.89 0.000423852 0.000387018 0.0164957 0.0150612 26 2212 43 6.64007e+06 339066 477104. 1650.88 1.15 0.0887873 0.0774617 21682 110474 -1 1683 19 1008 1700 120423 28387 2.97797 2.97797 -105.892 -2.97797 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0181919 0.0160751 103 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.04 vpr 64.61 MiB -1 -1 0.16 20544 1 0.03 -1 -1 33604 -1 -1 26 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66156 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 26.1 MiB 0.13 800 11799 3784 6073 1942 64.6 MiB 0.05 0.00 3.4791 -109.298 -3.4791 3.4791 0.87 0.00025032 0.000227888 0.0175455 0.0160331 28 1940 18 6.64007e+06 326508 500653. 1732.36 0.91 0.0701812 0.0615429 21970 115934 -1 1709 19 961 1369 109961 25852 2.36297 2.36297 -96.7073 -2.36297 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0191146 0.0169247 105 48 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.27 vpr 65.17 MiB -1 -1 0.16 20556 1 0.03 -1 -1 33372 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 26.8 MiB 0.14 1109 16524 4269 9768 2487 65.2 MiB 0.13 0.00 4.35696 -124.032 -4.35696 4.35696 0.88 0.000548371 0.000493613 0.0397782 0.0362302 32 2645 21 6.64007e+06 477204 554710. 1919.41 0.97 0.108211 0.0954535 22834 132086 -1 2264 17 1243 2131 135685 30613 3.93102 3.93102 -119.547 -3.93102 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0206939 0.0184588 151 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.16 vpr 65.14 MiB -1 -1 0.14 20544 1 0.03 -1 -1 33920 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 26.6 MiB 0.13 1062 10676 2654 7216 806 65.1 MiB 0.10 0.00 3.87558 -130.413 -3.87558 3.87558 0.87 0.000558197 0.000503877 0.026619 0.0240739 26 2503 24 6.64007e+06 464646 477104. 1650.88 1.07 0.103457 0.0909526 21682 110474 -1 2074 19 1563 2519 178447 39029 2.95717 2.95717 -121.371 -2.95717 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0233644 0.0206916 147 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.21 vpr 64.45 MiB -1 -1 0.14 20312 1 0.03 -1 -1 33400 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65996 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 25.9 MiB 0.23 894 10228 3268 4917 2043 64.4 MiB 0.08 0.00 4.39381 -127.308 -4.39381 4.39381 0.88 0.000455098 0.000418388 0.0274214 0.0251687 32 2018 21 6.64007e+06 238602 554710. 1919.41 0.94 0.082651 0.0730412 22834 132086 -1 1748 19 1015 1433 93274 21875 3.15083 3.15083 -111.221 -3.15083 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0189528 0.0168678 112 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.25 vpr 65.09 MiB -1 -1 0.17 20520 1 0.03 -1 -1 33716 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1026 15298 5172 7552 2574 65.1 MiB 0.13 0.00 4.30797 -133.38 -4.30797 4.30797 0.89 0.0004931 0.000447439 0.0424328 0.0385686 32 2288 22 6.64007e+06 313950 554710. 1919.41 0.96 0.109709 0.0967233 22834 132086 -1 1951 22 1450 2591 173643 38508 2.89797 2.89797 -112.425 -2.89797 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0241763 0.021301 138 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.61 vpr 65.03 MiB -1 -1 0.17 20492 1 0.03 -1 -1 33540 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 26.8 MiB 0.40 1296 14996 4340 8343 2313 65.0 MiB 0.14 0.00 5.87616 -177.472 -5.87616 5.87616 0.89 0.00054626 0.000496363 0.0409653 0.0373834 32 3094 21 6.64007e+06 364182 554710. 1919.41 1.02 0.110007 0.0972575 22834 132086 -1 2524 19 1742 2613 176076 40477 4.74615 4.74615 -163.707 -4.74615 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0241597 0.0215074 172 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.58 vpr 65.02 MiB -1 -1 0.15 20604 1 0.03 -1 -1 33752 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 26.5 MiB 0.38 1150 16974 4810 10660 1504 65.0 MiB 0.15 0.00 5.08852 -153.875 -5.08852 5.08852 0.88 0.00047263 0.000431891 0.0485684 0.044197 28 3077 19 6.64007e+06 339066 500653. 1732.36 1.04 0.118163 0.104639 21970 115934 -1 2547 20 1680 2607 189567 42842 4.56048 4.56048 -155.741 -4.56048 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0253092 0.0224673 164 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.18 vpr 65.04 MiB -1 -1 0.16 20508 1 0.03 -1 -1 33848 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1075 13513 3858 8482 1173 65.0 MiB 0.12 0.00 4.68524 -137.744 -4.68524 4.68524 0.89 0.000526159 0.000485053 0.0345771 0.0314989 30 2366 21 6.64007e+06 389298 526063. 1820.29 0.93 0.0989639 0.0872754 22546 126617 -1 1961 15 884 1464 71687 17433 3.23063 3.23063 -121.351 -3.23063 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0196416 0.0176696 135 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.53 vpr 64.73 MiB -1 -1 0.15 20272 1 0.03 -1 -1 33920 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 26.4 MiB 0.22 975 7767 1720 5470 577 64.7 MiB 0.07 0.00 4.38513 -117.551 -4.38513 4.38513 0.88 0.000429156 0.000390203 0.0202506 0.0184913 26 2701 24 6.64007e+06 288834 477104. 1650.88 1.32 0.0842826 0.0740391 21682 110474 -1 2166 19 1317 1939 167610 36546 3.68463 3.68463 -121.244 -3.68463 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0198718 0.0176958 119 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.56 vpr 65.29 MiB -1 -1 0.17 20868 1 0.03 -1 -1 34004 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66860 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 26.9 MiB 0.19 1225 15720 4488 9844 1388 65.3 MiB 0.14 0.00 5.18355 -167.471 -5.18355 5.18355 0.88 0.000600229 0.000545501 0.0419975 0.0382061 26 3193 18 6.64007e+06 502320 477104. 1650.88 1.21 0.123926 0.109557 21682 110474 -1 2728 17 1590 2477 169182 38780 4.27989 4.27989 -152.775 -4.27989 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0257696 0.0229756 174 84 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.10 vpr 64.18 MiB -1 -1 0.15 20228 1 0.03 -1 -1 33420 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65720 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 25.8 MiB 0.08 755 11064 4559 5783 722 64.2 MiB 0.07 0.00 3.8227 -103.618 -3.8227 3.8227 0.88 0.000417739 0.000380753 0.026839 0.0244642 30 1736 20 6.64007e+06 263718 526063. 1820.29 1.01 0.0797708 0.0703244 22546 126617 -1 1480 21 908 1504 89570 21574 2.79977 2.79977 -98.5206 -2.79977 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0192969 0.0170289 101 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.57 vpr 64.71 MiB -1 -1 0.16 20352 1 0.03 -1 -1 33820 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 26.0 MiB 0.25 1189 14518 4594 8025 1899 64.7 MiB 0.14 0.00 5.24081 -156.256 -5.24081 5.24081 0.89 0.000507393 0.00046225 0.0395191 0.036089 28 3102 25 6.64007e+06 313950 500653. 1732.36 1.19 0.109945 0.0971693 21970 115934 -1 2470 20 1224 1701 126371 27807 4.70968 4.70968 -150.995 -4.70968 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0217173 0.0193231 144 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 9.53 vpr 64.92 MiB -1 -1 0.15 20856 1 0.03 -1 -1 33884 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 26.4 MiB 0.13 1030 10531 2414 7661 456 64.9 MiB 0.11 0.00 4.0171 -121.213 -4.0171 4.0171 0.89 0.000535276 0.000489907 0.0266968 0.0243479 26 3025 43 6.64007e+06 414414 477104. 1650.88 6.35 0.213801 0.186711 21682 110474 -1 2292 14 1163 2099 151082 34983 3.08816 3.08816 -118 -3.08816 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0191523 0.0171419 131 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.09 vpr 64.31 MiB -1 -1 0.14 20300 1 0.03 -1 -1 33956 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 26.0 MiB 0.05 891 13153 4464 6066 2623 64.3 MiB 0.10 0.00 4.20356 -126.138 -4.20356 4.20356 0.89 0.000435639 0.000398581 0.0325848 0.0297661 32 2178 21 6.64007e+06 301392 554710. 1919.41 0.97 0.0917992 0.0811164 22834 132086 -1 1719 21 1074 2024 133293 30707 3.82482 3.82482 -119.413 -3.82482 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0216249 0.0191769 123 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.05 vpr 64.98 MiB -1 -1 0.15 20708 1 0.03 -1 -1 33628 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 26.5 MiB 0.28 1089 13933 3596 8128 2209 65.0 MiB 0.11 0.00 4.81394 -142.313 -4.81394 4.81394 0.88 0.000464398 0.000421499 0.0368163 0.033428 26 2775 32 6.64007e+06 301392 477104. 1650.88 1.74 0.118046 0.104012 21682 110474 -1 2352 18 1152 1596 116971 26606 3.51742 3.51742 -126.978 -3.51742 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.0211326 0.0187946 138 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.21 vpr 64.83 MiB -1 -1 0.16 20508 1 0.03 -1 -1 33904 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 26.3 MiB 0.14 935 7980 1596 5688 696 64.8 MiB 0.07 0.00 3.76946 -120.7 -3.76946 3.76946 0.89 0.000495061 0.000451828 0.0210958 0.019222 30 2198 19 6.64007e+06 401856 526063. 1820.29 1.00 0.0885233 0.0776243 22546 126617 -1 1948 17 1065 1931 93576 23283 3.10117 3.10117 -113.819 -3.10117 0 0 666494. 2306.21 0.27 0.05 0.13 -1 -1 0.27 0.0214559 0.0190837 133 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.24 vpr 65.04 MiB -1 -1 0.16 20476 1 0.03 -1 -1 33880 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 26.5 MiB 0.14 901 8796 1803 6364 629 65.0 MiB 0.09 0.00 4.787 -140.677 -4.787 4.787 0.89 0.000525948 0.000478637 0.02249 0.0205062 32 2513 22 6.64007e+06 464646 554710. 1919.41 0.95 0.09006 0.0789917 22834 132086 -1 1954 18 1106 1629 93353 23736 3.48203 3.48203 -125.684 -3.48203 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0225167 0.0199919 145 59 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.10 vpr 64.77 MiB -1 -1 0.14 20140 1 0.03 -1 -1 33504 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 26.4 MiB 0.06 902 12903 3419 8175 1309 64.8 MiB 0.10 0.00 4.24273 -122.494 -4.24273 4.24273 0.89 0.000453487 0.000415183 0.0305077 0.0278021 32 1909 19 6.64007e+06 364182 554710. 1919.41 0.93 0.0887278 0.0781368 22834 132086 -1 1739 19 1143 1869 117063 27589 3.64463 3.64463 -118.883 -3.64463 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0206899 0.0184067 122 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.29 vpr 64.88 MiB -1 -1 0.16 20740 1 0.03 -1 -1 33716 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 26.5 MiB 0.25 983 6913 1568 4936 409 64.9 MiB 0.07 0.00 5.07997 -139.694 -5.07997 5.07997 0.89 0.000480504 0.000436415 0.0195429 0.0178759 32 2406 21 6.64007e+06 301392 554710. 1919.41 0.96 0.0801799 0.0703931 22834 132086 -1 2179 20 1491 2098 133320 32792 3.85003 3.85003 -128.971 -3.85003 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.022478 0.0199478 133 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.98 vpr 65.16 MiB -1 -1 0.17 20472 1 0.03 -1 -1 33852 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 26.7 MiB 0.29 1148 9058 2364 5808 886 65.2 MiB 0.09 0.00 5.0113 -149.211 -5.0113 5.0113 0.90 0.00053096 0.000482227 0.0265604 0.0242384 26 3407 45 6.64007e+06 313950 477104. 1650.88 2.54 0.125049 0.109973 21682 110474 -1 2639 24 1898 3099 233977 51589 4.31263 4.31263 -142.786 -4.31263 0 0 585099. 2024.56 0.26 0.09 0.11 -1 -1 0.26 0.0288628 0.0255103 148 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.38 vpr 64.72 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33896 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 26.2 MiB 0.16 977 15962 5144 8098 2720 64.7 MiB 0.14 0.00 4.21776 -130.397 -4.21776 4.21776 0.89 0.000549674 0.000501539 0.047722 0.0433563 32 2870 23 6.64007e+06 276276 554710. 1919.41 1.04 0.122245 0.107868 22834 132086 -1 2220 15 1299 2324 157370 35871 3.78082 3.78082 -127.954 -3.78082 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0213396 0.0191242 136 74 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.06 vpr 64.36 MiB -1 -1 0.14 20472 1 0.03 -1 -1 33732 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65904 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 25.9 MiB 0.05 763 11398 3223 7297 878 64.4 MiB 0.08 0.00 3.46744 -102.907 -3.46744 3.46744 0.89 0.000418139 0.000382862 0.024185 0.0220491 26 1977 28 6.64007e+06 301392 477104. 1650.88 1.03 0.084143 0.074091 21682 110474 -1 1674 20 804 1237 85402 19533 2.71977 2.71977 -98.3296 -2.71977 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0184654 0.0163905 97 20 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.31 vpr 65.02 MiB -1 -1 0.15 20636 1 0.03 -1 -1 33696 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 26.6 MiB 0.24 982 8969 2347 6212 410 65.0 MiB 0.09 0.00 4.05536 -139.886 -4.05536 4.05536 0.93 0.000473643 0.000428377 0.0258267 0.0235492 30 2184 22 6.64007e+06 276276 526063. 1820.29 0.97 0.0896666 0.0787377 22546 126617 -1 1875 19 1272 1814 105981 24118 3.03143 3.03143 -122.855 -3.03143 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0212781 0.0188808 127 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.93 vpr 64.83 MiB -1 -1 0.15 20676 1 0.03 -1 -1 34068 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 26.6 MiB 0.25 1389 7443 1662 5262 519 64.8 MiB 0.09 0.00 5.61123 -170.011 -5.61123 5.61123 0.90 0.000563899 0.000513939 0.0227089 0.0207808 28 3624 25 6.64007e+06 364182 500653. 1732.36 1.55 0.112985 0.100228 21970 115934 -1 2961 21 1866 2993 218466 47396 4.65768 4.65768 -159.09 -4.65768 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0280755 0.025097 169 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.10 vpr 64.86 MiB -1 -1 0.15 20736 1 0.03 -1 -1 33660 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 26.5 MiB 0.11 962 14988 4939 7718 2331 64.9 MiB 0.12 0.00 4.60549 -136.553 -4.60549 4.60549 0.88 0.000521117 0.000472987 0.0356532 0.0324121 30 2140 21 6.64007e+06 401856 526063. 1820.29 0.94 0.0981381 0.0864743 22546 126617 -1 1783 17 1010 1711 104239 23066 2.88497 2.88497 -112.713 -2.88497 0 0 666494. 2306.21 0.29 0.05 0.11 -1 -1 0.29 0.019318 0.0172411 133 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.98 vpr 64.47 MiB -1 -1 0.16 20180 1 0.03 -1 -1 33556 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 26.0 MiB 0.05 702 10423 3012 6489 922 64.5 MiB 0.08 0.00 3.51327 -104.848 -3.51327 3.51327 0.89 0.000419685 0.000380459 0.0241922 0.0220516 28 1807 22 6.64007e+06 326508 500653. 1732.36 0.90 0.0788565 0.0692779 21970 115934 -1 1568 22 1108 1754 103440 24891 2.72357 2.72357 -100.219 -2.72357 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0208774 0.0184844 104 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.71 vpr 65.13 MiB -1 -1 0.18 20940 1 0.03 -1 -1 34056 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 27.0 MiB 0.33 1216 15187 4686 7965 2536 65.1 MiB 0.15 0.00 6.49087 -185.665 -6.49087 6.49087 0.89 0.000628297 0.000576265 0.0484064 0.0441669 30 3247 27 6.64007e+06 339066 526063. 1820.29 1.14 0.137346 0.121677 22546 126617 -1 2515 22 1992 2989 190825 42741 4.92734 4.92734 -165.423 -4.92734 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0309693 0.0274765 170 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.45 vpr 64.69 MiB -1 -1 0.16 20448 1 0.03 -1 -1 33980 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 26.2 MiB 0.14 903 6979 1333 5401 245 64.7 MiB 0.07 0.00 4.64606 -138.337 -4.64606 4.64606 0.90 0.000493516 0.000450105 0.0182104 0.0166845 26 2639 42 6.64007e+06 414414 477104. 1650.88 1.27 0.103007 0.090034 21682 110474 -1 2098 19 1524 2359 164433 38859 3.75183 3.75183 -134.746 -3.75183 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0217608 0.0192677 130 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.98 vpr 64.26 MiB -1 -1 0.14 20048 1 0.03 -1 -1 33552 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 25.9 MiB 0.07 832 12375 4208 6622 1545 64.3 MiB 0.09 0.00 3.58247 -103.673 -3.58247 3.58247 0.88 0.000400032 0.000365973 0.0269492 0.0246163 28 2023 24 6.64007e+06 288834 500653. 1732.36 0.92 0.0783567 0.0689434 21970 115934 -1 1729 19 808 1414 115942 25349 2.89797 2.89797 -102.799 -2.89797 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0168365 0.0149259 100 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 6.36 vpr 65.07 MiB -1 -1 0.16 20372 1 0.03 -1 -1 33692 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 26.4 MiB 0.10 993 9098 1971 6187 940 65.1 MiB 0.08 0.00 5.56744 -134.001 -5.56744 5.56744 0.89 0.000500265 0.000455166 0.023119 0.021127 28 2715 23 6.64007e+06 426972 500653. 1732.36 3.22 0.173965 0.151975 21970 115934 -1 2155 22 1488 2892 193907 44774 4.78768 4.78768 -137.22 -4.78768 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0256112 0.022697 139 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.95 vpr 64.31 MiB -1 -1 0.14 20296 1 0.03 -1 -1 33864 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 25.9 MiB 0.05 822 7770 1860 5212 698 64.3 MiB 0.06 0.00 3.4291 -106.218 -3.4291 3.4291 0.89 0.000402357 0.000366948 0.0189894 0.0173358 26 1966 20 6.64007e+06 251160 477104. 1650.88 0.91 0.0717967 0.0630973 21682 110474 -1 1794 20 1189 2015 145791 32533 2.96717 2.96717 -110.105 -2.96717 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.018745 0.0166169 104 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.22 vpr 64.26 MiB -1 -1 0.14 20188 1 0.03 -1 -1 33732 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65800 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 25.7 MiB 0.11 857 12839 3557 7998 1284 64.3 MiB 0.10 0.00 4.12483 -113.809 -4.12483 4.12483 0.90 0.000387975 0.000348945 0.0276919 0.025242 26 1933 22 6.64007e+06 414414 477104. 1650.88 1.06 0.0853952 0.0751953 21682 110474 -1 1626 17 791 1503 98783 21815 2.81177 2.81177 -102.96 -2.81177 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0166491 0.0147267 105 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.40 vpr 65.09 MiB -1 -1 0.17 20620 1 0.03 -1 -1 33976 -1 -1 26 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 26.4 MiB 0.30 1104 17175 4885 10433 1857 65.1 MiB 0.15 0.00 4.60024 -135.427 -4.60024 4.60024 0.86 0.000496929 0.000455283 0.0479374 0.0437754 28 2667 21 6.64007e+06 326508 500653. 1732.36 0.97 0.114975 0.10179 21970 115934 -1 2393 25 1500 2282 138739 32634 4.10842 4.10842 -132.907 -4.10842 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0278142 0.0246166 139 56 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.22 vpr 64.73 MiB -1 -1 0.15 20548 1 0.03 -1 -1 33952 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 26.3 MiB 0.12 772 4768 876 3724 168 64.7 MiB 0.05 0.00 4.51224 -132.005 -4.51224 4.51224 0.92 0.000520133 0.000472466 0.015224 0.0139356 32 2190 25 6.64007e+06 301392 554710. 1919.41 1.01 0.0856509 0.0748587 22834 132086 -1 1821 22 1657 2534 173073 42172 3.74782 3.74782 -128.311 -3.74782 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0254961 0.022607 130 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.15 vpr 64.51 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33860 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66056 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 26.0 MiB 0.12 1030 11891 3350 7362 1179 64.5 MiB 0.10 0.00 4.72138 -141.993 -4.72138 4.72138 0.90 0.000479495 0.000437429 0.0300112 0.0272721 32 2311 18 6.64007e+06 351624 554710. 1919.41 0.93 0.0901741 0.0791367 22834 132086 -1 2022 18 1159 1995 135404 30180 3.52623 3.52623 -131.325 -3.52623 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0210134 0.0186497 133 48 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.30 vpr 64.33 MiB -1 -1 0.15 20108 1 0.03 -1 -1 33480 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65876 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 25.8 MiB 0.26 799 9356 2375 6010 971 64.3 MiB 0.08 0.00 4.79432 -131.982 -4.79432 4.79432 0.88 0.000401927 0.000368659 0.0244077 0.0223246 26 2160 21 6.64007e+06 213486 477104. 1650.88 1.08 0.0854385 0.0755299 21682 110474 -1 1917 20 1110 1536 115013 27360 3.25803 3.25803 -118.562 -3.25803 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0202233 0.0179562 105 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.28 vpr 64.81 MiB -1 -1 0.17 20520 1 0.03 -1 -1 33996 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 26.4 MiB 0.24 899 12898 4205 6789 1904 64.8 MiB 0.10 0.00 3.96736 -127.03 -3.96736 3.96736 0.88 0.00045545 0.000413823 0.035729 0.0326002 32 2035 18 6.64007e+06 238602 554710. 1919.41 0.92 0.0923315 0.081596 22834 132086 -1 1836 19 1223 1799 123742 27820 3.01863 3.01863 -117.895 -3.01863 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0211877 0.0187883 113 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.81 vpr 64.64 MiB -1 -1 0.16 20164 1 0.03 -1 -1 33688 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66196 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 26.3 MiB 0.12 857 8087 1703 5875 509 64.6 MiB 0.07 0.00 3.59243 -98.9543 -3.59243 3.59243 0.91 0.000480078 0.000438295 0.0201024 0.0183717 26 2500 27 6.64007e+06 414414 477104. 1650.88 1.64 0.0917369 0.0805631 21682 110474 -1 1945 19 1161 2050 166589 39629 2.76177 2.76177 -99.6151 -2.76177 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.021541 0.0191671 123 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.06 vpr 64.72 MiB -1 -1 0.15 20276 1 0.03 -1 -1 33712 -1 -1 35 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 26.1 MiB 0.09 873 14567 3705 9538 1324 64.7 MiB 0.10 0.00 4.33724 -105.319 -4.33724 4.33724 0.90 0.000412129 0.000374095 0.0309832 0.0282679 26 2165 27 6.64007e+06 439530 477104. 1650.88 0.94 0.0914894 0.0805545 21682 110474 -1 1828 19 946 1883 134782 28404 3.80183 3.80183 -107.35 -3.80183 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.018869 0.0167584 115 20 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.21 vpr 64.62 MiB -1 -1 0.16 20428 1 0.03 -1 -1 33676 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 26.1 MiB 0.13 857 12980 4441 6366 2173 64.6 MiB 0.10 0.00 4.19523 -120.389 -4.19523 4.19523 0.89 0.000471815 0.000428917 0.0351458 0.0320921 32 1926 20 6.64007e+06 226044 554710. 1919.41 0.98 0.0924843 0.0816125 22834 132086 -1 1769 19 1175 1932 148827 32317 3.06217 3.06217 -111.242 -3.06217 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0201697 0.0178706 108 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.27 vpr 64.87 MiB -1 -1 0.16 20768 1 0.03 -1 -1 33760 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 26.4 MiB 0.23 1011 9385 2419 5667 1299 64.9 MiB 0.09 0.00 4.0237 -135.679 -4.0237 4.0237 0.89 0.000481476 0.000438389 0.026587 0.0242964 32 2261 23 6.64007e+06 263718 554710. 1919.41 0.95 0.0894937 0.0786613 22834 132086 -1 2018 18 1093 1588 111076 24869 3.32603 3.32603 -130.745 -3.32603 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0203445 0.0180598 121 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 6.29 vpr 64.73 MiB -1 -1 0.16 20244 1 0.03 -1 -1 34000 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 26.3 MiB 0.05 926 9383 1965 6366 1052 64.7 MiB 0.07 0.00 4.61041 -129.144 -4.61041 4.61041 0.90 0.000469823 0.000428997 0.0220688 0.0201389 28 2322 28 6.64007e+06 401856 500653. 1732.36 3.17 0.157453 0.137079 21970 115934 -1 1918 20 1309 2325 142579 33944 3.84183 3.84183 -122.709 -3.84183 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0215806 0.0192019 127 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.47 vpr 64.98 MiB -1 -1 0.15 20600 1 0.03 -1 -1 33984 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 26.2 MiB 0.28 1230 14128 4435 7821 1872 65.0 MiB 0.14 0.00 5.3267 -167.408 -5.3267 5.3267 0.90 0.000509993 0.000463533 0.0401436 0.036664 32 3153 21 6.64007e+06 301392 554710. 1919.41 1.02 0.106686 0.0942991 22834 132086 -1 2670 20 1471 2127 203069 40274 4.46509 4.46509 -159.817 -4.46509 0 0 701300. 2426.64 0.30 0.07 0.12 -1 -1 0.30 0.0238807 0.0212647 146 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.46 vpr 64.88 MiB -1 -1 0.16 20688 1 0.03 -1 -1 33744 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 26.3 MiB 0.19 846 12473 3077 8180 1216 64.9 MiB 0.11 0.00 5.24026 -142.21 -5.24026 5.24026 0.89 0.000541091 0.000490878 0.0333525 0.0304373 30 2493 25 6.64007e+06 426972 526063. 1820.29 1.14 0.115402 0.102309 22546 126617 -1 1863 20 1088 2106 109487 27680 3.81508 3.81508 -134.95 -3.81508 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.024756 0.021999 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.42 vpr 64.89 MiB -1 -1 0.15 20396 1 0.03 -1 -1 33716 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 26.3 MiB 0.12 1088 19136 5971 10565 2600 64.9 MiB 0.15 0.00 4.47484 -142.459 -4.47484 4.47484 0.88 0.000541063 0.000490969 0.0446296 0.0403409 28 2720 22 6.64007e+06 464646 500653. 1732.36 1.23 0.121668 0.107413 21970 115934 -1 2387 19 1473 2617 177636 39843 3.70543 3.70543 -136.956 -3.70543 0 0 612192. 2118.31 0.27 0.07 0.10 -1 -1 0.27 0.0229289 0.0203061 140 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.05 vpr 64.27 MiB -1 -1 0.16 20472 1 0.03 -1 -1 33548 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65808 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 25.8 MiB 0.10 810 10756 3573 5296 1887 64.3 MiB 0.08 0.00 3.86158 -115.559 -3.86158 3.86158 0.88 0.000416137 0.000378282 0.027428 0.0249951 28 2024 20 6.64007e+06 238602 500653. 1732.36 0.92 0.0796977 0.0701591 21970 115934 -1 1812 24 1223 2130 161484 35053 2.85977 2.85977 -104.747 -2.85977 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0219755 0.0193389 104 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.30 vpr 65.10 MiB -1 -1 0.16 20616 1 0.03 -1 -1 33904 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 26.6 MiB 0.15 996 11989 3165 6999 1825 65.1 MiB 0.11 0.00 4.82523 -141.177 -4.82523 4.82523 0.89 0.00053894 0.000494687 0.0365319 0.0333474 32 2408 19 6.64007e+06 288834 554710. 1919.41 1.00 0.103819 0.0917681 22834 132086 -1 1994 21 1700 2635 168605 39469 3.73163 3.73163 -133.479 -3.73163 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0255579 0.0227132 138 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.75 vpr 65.07 MiB -1 -1 0.16 20796 1 0.03 -1 -1 33792 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 26.5 MiB 0.25 1103 10743 2816 7025 902 65.1 MiB 0.10 0.00 5.45357 -158.764 -5.45357 5.45357 0.90 0.0005092 0.000464202 0.0296747 0.0271066 26 2972 34 6.64007e+06 326508 477104. 1650.88 1.37 0.110625 0.0974396 21682 110474 -1 2568 22 1724 2771 237679 51373 4.19368 4.19368 -144.555 -4.19368 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0243351 0.0215715 140 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.53 vpr 64.72 MiB -1 -1 0.17 20436 1 0.03 -1 -1 33656 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 26.3 MiB 0.28 1102 15423 4945 8075 2403 64.7 MiB 0.13 0.00 5.30601 -154.372 -5.30601 5.30601 0.89 0.000509603 0.000464963 0.0394947 0.0360395 28 3024 19 6.64007e+06 376740 500653. 1732.36 1.13 0.108238 0.0960729 21970 115934 -1 2450 20 1449 2163 173727 36410 4.47448 4.47448 -149.944 -4.47448 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0230322 0.020483 148 43 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.31 vpr 64.83 MiB -1 -1 0.17 20864 1 0.03 -1 -1 33576 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 26.3 MiB 0.22 960 11975 3127 7423 1425 64.8 MiB 0.11 0.00 4.52304 -132.575 -4.52304 4.52304 0.89 0.000530984 0.000485274 0.0323188 0.0295126 32 2201 21 6.64007e+06 414414 554710. 1919.41 0.96 0.100228 0.0883685 22834 132086 -1 1847 18 942 1594 100135 23271 3.03543 3.03543 -114.645 -3.03543 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0226851 0.0201809 135 78 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.29 vpr 64.98 MiB -1 -1 0.16 20528 1 0.03 -1 -1 33928 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 26.5 MiB 0.12 891 9571 2183 6911 477 65.0 MiB 0.10 0.00 5.02278 -140.291 -5.02278 5.02278 0.91 0.000530078 0.000482029 0.0300516 0.0274311 30 2581 25 6.64007e+06 263718 526063. 1820.29 1.06 0.10466 0.0921333 22546 126617 -1 2011 22 1227 2238 124501 30320 3.82963 3.82963 -134.319 -3.82963 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0254835 0.0225891 134 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.25 vpr 64.83 MiB -1 -1 0.17 20536 1 0.03 -1 -1 33960 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 26.3 MiB 0.15 875 11270 2503 8088 679 64.8 MiB 0.10 0.00 4.91881 -136.338 -4.91881 4.91881 0.89 0.00053174 0.000484901 0.031223 0.0284502 32 2070 20 6.64007e+06 389298 554710. 1919.41 0.94 0.0970308 0.0852794 22834 132086 -1 1833 21 1140 1867 115580 27353 3.65943 3.65943 -125.768 -3.65943 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0253765 0.0224447 132 79 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.91 vpr 64.36 MiB -1 -1 0.13 20220 1 0.03 -1 -1 34024 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 26.0 MiB 0.04 680 10219 2541 6421 1257 64.4 MiB 0.08 0.00 3.88758 -112.502 -3.88758 3.88758 0.89 0.00039476 0.000355168 0.0258355 0.0236554 28 1667 19 6.64007e+06 188370 500653. 1732.36 0.88 0.0751647 0.0664184 21970 115934 -1 1566 19 853 1297 89732 21195 2.92697 2.92697 -106.606 -2.92697 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0179086 0.0159463 96 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.61 vpr 64.99 MiB -1 -1 0.16 20444 1 0.03 -1 -1 33876 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 26.5 MiB 0.22 1003 15426 4168 9105 2153 65.0 MiB 0.13 0.00 4.65236 -140.168 -4.65236 4.65236 0.90 0.000532856 0.000486504 0.0401894 0.0366914 28 2185 20 6.64007e+06 401856 500653. 1732.36 1.27 0.116898 0.104025 21970 115934 -1 1998 20 1322 2197 140567 32453 3.84903 3.84903 -133.976 -3.84903 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0242349 0.0215153 132 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.41 vpr 65.11 MiB -1 -1 0.17 20384 1 0.03 -1 -1 33920 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 26.6 MiB 0.15 1074 11237 2615 7354 1268 65.1 MiB 0.11 0.00 4.84723 -152.835 -4.84723 4.84723 0.91 0.000585534 0.000533424 0.0366865 0.0334925 32 2517 24 6.64007e+06 276276 554710. 1919.41 1.07 0.114333 0.10094 22834 132086 -1 2165 24 1914 3076 222092 49372 3.86183 3.86183 -143.393 -3.86183 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0301433 0.0267128 148 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.31 vpr 64.43 MiB -1 -1 0.14 20204 1 0.03 -1 -1 33872 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65976 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 25.9 MiB 0.24 745 8136 1743 5584 809 64.4 MiB 0.06 0.00 4.31784 -119.848 -4.31784 4.31784 0.88 0.000404661 0.000373878 0.0190128 0.017294 28 2436 31 6.64007e+06 251160 500653. 1732.36 1.16 0.082231 0.0719421 21970 115934 -1 1890 21 1141 1486 118566 29283 3.66597 3.66597 -125.385 -3.66597 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0192044 0.0170028 109 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.97 vpr 64.47 MiB -1 -1 0.14 20312 1 0.03 -1 -1 33688 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66016 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 26.0 MiB 0.05 720 11430 2918 7192 1320 64.5 MiB 0.09 0.00 3.81035 -108.914 -3.81035 3.81035 0.89 0.000415854 0.000371977 0.0269856 0.0246309 26 2000 23 6.64007e+06 263718 477104. 1650.88 0.94 0.0813124 0.0716699 21682 110474 -1 1806 19 1161 1910 131605 30533 2.89397 2.89397 -108.713 -2.89397 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0173909 0.0154067 106 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.95 vpr 64.99 MiB -1 -1 0.16 20516 1 0.03 -1 -1 33716 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 26.5 MiB 0.23 1132 12753 3748 7734 1271 65.0 MiB 0.11 0.00 5.06147 -160.912 -5.06147 5.06147 0.87 0.000502682 0.000458073 0.0348079 0.0317668 26 3087 40 6.64007e+06 326508 477104. 1650.88 1.65 0.122632 0.107896 21682 110474 -1 2355 20 1868 2497 190002 41388 3.92229 3.92229 -146.247 -3.92229 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0240719 0.0214256 144 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.40 vpr 64.88 MiB -1 -1 0.16 20832 1 0.03 -1 -1 33656 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 26.1 MiB 0.23 1035 16893 5570 8364 2959 64.9 MiB 0.14 0.00 5.02458 -149.361 -5.02458 5.02458 0.89 0.000501523 0.0004589 0.0437494 0.0399435 32 2745 25 6.64007e+06 364182 554710. 1919.41 1.01 0.113701 0.100652 22834 132086 -1 2253 20 1492 2370 153128 36800 4.34809 4.34809 -142.117 -4.34809 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.023764 0.0211335 155 53 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.84 vpr 65.10 MiB -1 -1 0.17 20424 1 0.03 -1 -1 33488 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.8 MiB 0.08 1057 12164 2729 8794 641 65.1 MiB 0.11 0.00 5.48474 -146.154 -5.48474 5.48474 0.89 0.000530546 0.000480356 0.0308256 0.0280049 28 3239 24 6.64007e+06 452088 500653. 1732.36 1.62 0.107667 0.0951347 21970 115934 -1 2648 20 1616 2857 269688 60325 4.87389 4.87389 -152.412 -4.87389 0 0 612192. 2118.31 0.25 0.09 0.12 -1 -1 0.25 0.0237558 0.0210791 153 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.00 vpr 64.78 MiB -1 -1 0.15 20500 1 0.03 -1 -1 33784 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 26.4 MiB 0.12 890 11170 2805 7440 925 64.8 MiB 0.09 0.00 3.51924 -105.227 -3.51924 3.51924 0.85 0.000476787 0.000433992 0.0271153 0.0247181 26 2070 19 6.64007e+06 401856 477104. 1650.88 0.90 0.0864753 0.0758994 21682 110474 -1 1811 19 1221 2143 148491 33695 2.80477 2.80477 -101.447 -2.80477 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0192165 0.0169975 121 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.94 vpr 64.30 MiB -1 -1 0.15 20288 1 0.03 -1 -1 34184 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65840 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 25.9 MiB 0.05 645 11948 3714 6556 1678 64.3 MiB 0.08 0.00 3.4543 -94.7001 -3.4543 3.4543 0.89 0.00037526 0.00034237 0.0290315 0.0265073 26 1652 20 6.64007e+06 263718 477104. 1650.88 0.91 0.0807053 0.0712072 21682 110474 -1 1462 20 950 1369 109801 25165 2.92817 2.92817 -95.5092 -2.92817 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0180634 0.015933 97 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.51 vpr 64.95 MiB -1 -1 0.17 20504 1 0.03 -1 -1 33992 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 26.7 MiB 0.24 1270 10743 2480 7803 460 64.9 MiB 0.11 0.00 4.37195 -138.919 -4.37195 4.37195 0.89 0.00059496 0.000543531 0.0345427 0.0315779 32 3375 24 6.64007e+06 326508 554710. 1919.41 1.07 0.116423 0.102882 22834 132086 -1 2791 23 2060 3365 248010 55326 3.84783 3.84783 -138.713 -3.84783 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0310088 0.0274958 170 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.40 vpr 64.95 MiB -1 -1 0.17 20540 1 0.03 -1 -1 33896 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 26.5 MiB 0.31 989 14828 4611 8220 1997 65.0 MiB 0.12 0.00 5.41669 -159.225 -5.41669 5.41669 0.89 0.000497213 0.000452505 0.0420188 0.0383493 28 2481 23 6.64007e+06 288834 500653. 1732.36 0.97 0.11023 0.0974299 21970 115934 -1 2153 20 1535 2472 159921 37576 4.54748 4.54748 -151.702 -4.54748 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0248391 0.0221078 152 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.34 vpr 64.82 MiB -1 -1 0.17 20520 1 0.03 -1 -1 34008 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 26.5 MiB 0.30 825 13583 3778 7563 2242 64.8 MiB 0.12 0.00 4.65475 -131.833 -4.65475 4.65475 0.88 0.000490084 0.000445476 0.0388354 0.0354176 30 1948 20 6.64007e+06 238602 526063. 1820.29 0.95 0.0983101 0.0867608 22546 126617 -1 1626 18 802 1237 72373 16961 3.52843 3.52843 -124.473 -3.52843 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0205512 0.0182974 128 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.62 vpr 64.76 MiB -1 -1 0.16 20228 1 0.03 -1 -1 33980 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 26.3 MiB 0.06 911 16708 5166 8976 2566 64.8 MiB 0.12 0.00 5.41998 -135.015 -5.41998 5.41998 0.88 0.000490416 0.000445419 0.0392955 0.0357237 28 2820 28 6.64007e+06 376740 500653. 1732.36 1.46 0.114999 0.101752 21970 115934 -1 2215 20 1177 1920 157877 36958 3.85082 3.85082 -126.566 -3.85082 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0218738 0.01936 126 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.79 vpr 65.02 MiB -1 -1 0.18 20304 1 0.03 -1 -1 33872 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 26.5 MiB 0.14 1048 7423 1517 5297 609 65.0 MiB 0.08 0.00 5.01701 -136.816 -5.01701 5.01701 0.89 0.000522939 0.000472941 0.0192557 0.0174744 26 2859 33 6.64007e+06 426972 477104. 1650.88 1.60 0.106321 0.0932312 21682 110474 -1 2296 20 1422 2465 203490 44242 3.76082 3.76082 -129.287 -3.76082 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0235864 0.0208883 145 46 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.21 vpr 64.58 MiB -1 -1 0.15 20416 1 0.03 -1 -1 33968 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 26.2 MiB 0.13 829 7233 1598 5117 518 64.6 MiB 0.07 0.00 3.67989 -107.648 -3.67989 3.67989 0.88 0.000496119 0.000451257 0.0190422 0.0173614 30 2144 22 6.64007e+06 389298 526063. 1820.29 1.04 0.0845305 0.0741047 22546 126617 -1 1628 20 1009 1796 99734 24777 2.92597 2.92597 -101.5 -2.92597 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0219041 0.0193453 124 46 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 8.24 vpr 65.24 MiB -1 -1 0.16 20508 1 0.03 -1 -1 33768 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 26.7 MiB 0.27 1174 10979 2913 7012 1054 65.2 MiB 0.11 0.00 5.12747 -161.736 -5.12747 5.12747 0.91 0.000536086 0.000489276 0.0316273 0.0288983 26 3490 36 6.64007e+06 313950 477104. 1650.88 4.86 0.194304 0.169992 21682 110474 -1 2650 20 1925 2965 218244 49499 4.12068 4.12068 -148.064 -4.12068 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0243836 0.0217119 148 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.38 vpr 64.94 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33936 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 26.4 MiB 0.19 1093 17036 4934 9564 2538 64.9 MiB 0.14 0.00 4.75546 -148.188 -4.75546 4.75546 0.88 0.000516193 0.000468845 0.0426129 0.0388278 28 2591 20 6.64007e+06 452088 500653. 1732.36 1.06 0.11748 0.104123 21970 115934 -1 2227 17 1227 1962 128843 29850 3.51922 3.51922 -129.458 -3.51922 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.022904 0.0204555 144 59 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.95 vpr 64.24 MiB -1 -1 0.15 20620 1 0.03 -1 -1 33984 -1 -1 17 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65780 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 25.8 MiB 0.08 731 10536 4018 5581 937 64.2 MiB 0.07 0.00 3.74538 -111.28 -3.74538 3.74538 0.89 0.000397225 0.000361252 0.0278234 0.0254163 30 1443 17 6.64007e+06 213486 526063. 1820.29 0.87 0.0745341 0.0658323 22546 126617 -1 1262 17 750 1088 62961 14826 2.68977 2.68977 -98.4877 -2.68977 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0168795 0.0150115 91 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.38 vpr 64.72 MiB -1 -1 0.16 20492 1 0.03 -1 -1 33840 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 26.3 MiB 0.20 882 13849 5109 6856 1884 64.7 MiB 0.10 0.00 4.03956 -127.808 -4.03956 4.03956 0.90 0.000469064 0.000426126 0.0354675 0.032334 28 2218 24 6.64007e+06 263718 500653. 1732.36 1.03 0.0972248 0.0857064 21970 115934 -1 1895 23 1297 1769 147915 33084 3.22483 3.22483 -120.552 -3.22483 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0226422 0.0199606 117 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.10 vpr 64.94 MiB -1 -1 0.16 20324 1 0.03 -1 -1 33392 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 26.5 MiB 0.07 954 14020 3601 8035 2384 64.9 MiB 0.11 0.00 4.80044 -128.284 -4.80044 4.80044 0.88 0.000482616 0.000438462 0.0318425 0.028967 32 2139 23 6.64007e+06 464646 554710. 1919.41 0.96 0.0903567 0.0793056 22834 132086 -1 2014 21 1419 2451 173087 38123 3.85382 3.85382 -125.331 -3.85382 0 0 701300. 2426.64 0.28 0.06 0.12 -1 -1 0.28 0.0210214 0.0185965 129 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.37 vpr 64.21 MiB -1 -1 0.15 20284 1 0.03 -1 -1 33696 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65748 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 25.7 MiB 0.25 763 7103 1547 5010 546 64.2 MiB 0.06 0.00 4.32884 -114.709 -4.32884 4.32884 0.90 0.000399024 0.000365751 0.0178774 0.0163699 26 2139 24 6.64007e+06 276276 477104. 1650.88 1.13 0.0786062 0.0692697 21682 110474 -1 1766 20 1098 1421 93712 22469 3.56143 3.56143 -115.197 -3.56143 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0188171 0.0166968 109 25 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.14 vpr 64.50 MiB -1 -1 0.14 20296 1 0.03 -1 -1 33804 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 26.0 MiB 0.13 634 12856 3328 7254 2274 64.5 MiB 0.10 0.00 3.90075 -115.478 -3.90075 3.90075 0.88 0.000429466 0.000392232 0.0335093 0.0305491 28 2041 24 6.64007e+06 213486 500653. 1732.36 0.95 0.0899676 0.079157 21970 115934 -1 1792 22 1362 2294 161189 38138 3.12337 3.12337 -112.776 -3.12337 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.0214895 0.0189637 108 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.25 vpr 65.02 MiB -1 -1 0.17 20684 1 0.03 -1 -1 33884 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 26.5 MiB 0.12 1014 15147 3968 9710 1469 65.0 MiB 0.12 0.00 4.15695 -125.813 -4.15695 4.15695 0.92 0.000535621 0.000487907 0.0384199 0.0348758 32 1987 18 6.64007e+06 452088 554710. 1919.41 0.98 0.103657 0.0913404 22834 132086 -1 1806 17 1104 1789 117607 26569 2.98336 2.98336 -111.526 -2.98336 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0214164 0.0191208 136 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.17 vpr 64.40 MiB -1 -1 0.16 20236 1 0.03 -1 -1 34004 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65944 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 25.8 MiB 0.21 920 10163 2724 6503 936 64.4 MiB 0.08 0.00 4.05252 -124.711 -4.05252 4.05252 0.89 0.000422718 0.000388545 0.0257611 0.0235774 30 1979 19 6.64007e+06 251160 526063. 1820.29 0.92 0.0772277 0.0680608 22546 126617 -1 1733 20 812 1183 75670 17017 2.96343 2.96343 -112.059 -2.96343 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0186859 0.0165918 107 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.33 vpr 64.86 MiB -1 -1 0.15 20648 1 0.03 -1 -1 33944 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 26.3 MiB 0.12 987 10827 2770 6959 1098 64.9 MiB 0.09 0.00 3.75038 -118.864 -3.75038 3.75038 0.88 0.000511331 0.00046486 0.0269971 0.0246087 26 2424 21 6.64007e+06 401856 477104. 1650.88 1.15 0.0981164 0.0866138 21682 110474 -1 2057 21 1289 2282 165102 37170 2.73977 2.73977 -108.013 -2.73977 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0243696 0.0216412 127 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.45 vpr 64.80 MiB -1 -1 0.17 20548 1 0.03 -1 -1 33704 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 26.3 MiB 0.28 927 10247 2394 7169 684 64.8 MiB 0.10 0.00 4.34696 -134.379 -4.34696 4.34696 0.90 0.000564886 0.000516479 0.0294089 0.0268335 32 2248 20 6.64007e+06 401856 554710. 1919.41 0.95 0.0995628 0.0877631 22834 132086 -1 1950 20 1313 1831 120295 29232 3.33903 3.33903 -128.306 -3.33903 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0253328 0.0224341 138 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.17 vpr 64.62 MiB -1 -1 0.15 20352 1 0.03 -1 -1 33412 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 26.1 MiB 0.16 835 12681 3362 7951 1368 64.6 MiB 0.09 0.00 3.3851 -106.107 -3.3851 3.3851 0.90 0.00045576 0.000417227 0.0343093 0.0312464 26 2103 18 6.64007e+06 213486 477104. 1650.88 0.97 0.0918568 0.0812154 21682 110474 -1 1822 21 1002 1582 127645 28263 2.76677 2.76677 -106.335 -2.76677 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0205871 0.0181994 104 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.24 vpr 64.82 MiB -1 -1 0.14 20192 1 0.03 -1 -1 33660 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 26.4 MiB 0.23 876 14407 4775 7452 2180 64.8 MiB 0.11 0.00 4.41384 -136.056 -4.41384 4.41384 0.92 0.000392533 0.000355633 0.0339565 0.030795 30 2137 20 6.64007e+06 263718 526063. 1820.29 0.94 0.0867564 0.0762115 22546 126617 -1 1844 19 1079 1610 102910 23440 3.19163 3.19163 -119.952 -3.19163 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0191075 0.0169245 117 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.24 vpr 64.90 MiB -1 -1 0.16 20708 1 0.03 -1 -1 33720 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 26.4 MiB 0.21 1070 9111 2300 6161 650 64.9 MiB 0.08 0.00 4.68344 -140.114 -4.68344 4.68344 0.89 0.000485914 0.000446096 0.0253387 0.0231762 32 2486 17 6.64007e+06 288834 554710. 1919.41 0.95 0.0853762 0.0754192 22834 132086 -1 2124 20 1344 1810 132646 30744 3.78882 3.78882 -132.22 -3.78882 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.022406 0.019948 130 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.20 vpr 64.84 MiB -1 -1 0.16 20528 1 0.03 -1 -1 33924 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 26.4 MiB 0.19 969 13959 4223 8147 1589 64.8 MiB 0.11 0.00 4.71146 -123.714 -4.71146 4.71146 0.88 0.000492873 0.000451125 0.03498 0.0319118 32 1988 20 6.64007e+06 364182 554710. 1919.41 0.92 0.0933108 0.0824136 22834 132086 -1 1799 14 777 1319 84447 19201 3.07743 3.07743 -106.617 -3.07743 0 0 701300. 2426.64 0.29 0.04 0.14 -1 -1 0.29 0.0177797 0.0159802 122 49 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.53 vpr 65.32 MiB -1 -1 0.16 20820 1 0.03 -1 -1 33612 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66892 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 26.8 MiB 0.28 1164 12568 3311 8092 1165 65.3 MiB 0.13 0.00 5.44678 -170.492 -5.44678 5.44678 0.90 0.000577259 0.000527477 0.0385692 0.0352443 28 3017 24 6.64007e+06 301392 500653. 1732.36 1.10 0.116091 0.102523 21970 115934 -1 2587 19 1713 2544 209427 46081 4.52369 4.52369 -158.217 -4.52369 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0252171 0.0224224 154 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.99 vpr 64.49 MiB -1 -1 0.15 20352 1 0.03 -1 -1 33800 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66036 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 26.1 MiB 0.05 802 9356 2223 6300 833 64.5 MiB 0.07 0.00 3.65167 -102.287 -3.65167 3.65167 0.88 0.000384361 0.000344033 0.0229451 0.0210703 32 1738 16 6.64007e+06 226044 554710. 1919.41 0.90 0.0685178 0.0603631 22834 132086 -1 1550 18 717 1200 83961 19380 2.89017 2.89017 -97.9917 -2.89017 0 0 701300. 2426.64 0.31 0.04 0.13 -1 -1 0.31 0.0165378 0.0146879 96 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.42 vpr 65.07 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33536 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66628 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 26.4 MiB 0.14 1014 15173 4325 8191 2657 65.1 MiB 0.13 0.00 4.24115 -141.749 -4.24115 4.24115 0.90 0.000557445 0.000507325 0.041753 0.0381099 32 2563 27 6.64007e+06 426972 554710. 1919.41 1.05 0.122162 0.10811 22834 132086 -1 2184 19 1571 2371 170912 38410 3.72983 3.72983 -138.118 -3.72983 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0256507 0.0228303 145 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.16 vpr 64.60 MiB -1 -1 0.15 20664 1 0.03 -1 -1 33840 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 26.3 MiB 0.23 854 11456 4252 5499 1705 64.6 MiB 0.09 0.00 3.5233 -125.693 -3.5233 3.5233 0.86 0.00047995 0.000438768 0.0347494 0.0317081 32 1976 23 6.64007e+06 213486 554710. 1919.41 0.93 0.0988327 0.0869689 22834 132086 -1 1747 19 1250 1820 139253 29466 2.95177 2.95177 -122.552 -2.95177 0 0 701300. 2426.64 0.28 0.06 0.12 -1 -1 0.28 0.0220966 0.019502 114 93 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.39 vpr 65.00 MiB -1 -1 0.15 20428 1 0.03 -1 -1 33640 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 26.5 MiB 0.13 993 15864 4238 9461 2165 65.0 MiB 0.12 0.00 4.43584 -134.986 -4.43584 4.43584 0.88 0.000448359 0.000409184 0.0374467 0.0341228 26 2557 24 6.64007e+06 401856 477104. 1650.88 1.20 0.11343 0.100213 21682 110474 -1 2081 15 926 1423 96949 22387 3.21363 3.21363 -116.31 -3.21363 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0196742 0.0175592 131 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.80 vpr 64.91 MiB -1 -1 0.17 20580 1 0.03 -1 -1 34008 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 26.6 MiB 0.33 1309 17635 5897 9510 2228 64.9 MiB 0.18 0.00 6.39084 -191.431 -6.39084 6.39084 0.90 0.000534152 0.000488152 0.0532702 0.0485501 28 3357 19 6.64007e+06 339066 500653. 1732.36 1.23 0.13339 0.118662 21970 115934 -1 2809 20 1792 2549 197016 42830 5.36314 5.36314 -177.542 -5.36314 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0274252 0.0244253 170 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.07 vpr 64.43 MiB -1 -1 0.15 20360 1 0.03 -1 -1 33648 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65976 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 26.1 MiB 0.17 697 8680 1945 6222 513 64.4 MiB 0.06 0.00 3.31307 -102.387 -3.31307 3.31307 0.89 0.000373143 0.000341638 0.0197998 0.0181044 28 1666 19 6.64007e+06 226044 500653. 1732.36 0.93 0.0669346 0.0588789 21970 115934 -1 1432 14 605 760 77617 18525 2.39717 2.39717 -94.9129 -2.39717 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0134126 0.0119902 87 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.00 vpr 64.55 MiB -1 -1 0.14 20216 1 0.03 -1 -1 33696 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 26.1 MiB 0.10 791 11864 3247 7177 1440 64.6 MiB 0.08 0.00 4.38638 -124.628 -4.38638 4.38638 0.90 0.000397452 0.00036378 0.031206 0.0283761 32 1680 15 6.64007e+06 200928 554710. 1919.41 0.89 0.0799447 0.0703516 22834 132086 -1 1479 22 920 1506 118207 25985 3.18337 3.18337 -111.753 -3.18337 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0200545 0.0176547 92 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.04 vpr 64.39 MiB -1 -1 0.14 20152 1 0.03 -1 -1 33872 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65940 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 25.8 MiB 0.08 807 14407 3847 9113 1447 64.4 MiB 0.11 0.00 3.46104 -112.673 -3.46104 3.46104 0.89 0.000445835 0.000404834 0.0364534 0.0332512 28 2067 23 6.64007e+06 263718 500653. 1732.36 0.92 0.0954167 0.0841169 21970 115934 -1 1884 21 1265 2247 152707 35374 2.75777 2.75777 -107.934 -2.75777 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0210398 0.0186262 115 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.98 vpr 64.13 MiB -1 -1 0.14 20120 1 0.03 -1 -1 33736 -1 -1 27 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65668 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 25.7 MiB 0.05 469 9234 3273 3848 2113 64.1 MiB 0.05 0.00 3.37029 -77.6943 -3.37029 3.37029 0.88 0.000297241 0.000269513 0.0180186 0.0163648 30 1496 25 6.64007e+06 339066 526063. 1820.29 0.96 0.0647251 0.0563744 22546 126617 -1 1146 17 610 1009 61629 15763 2.92917 2.92917 -76.4452 -2.92917 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0141731 0.0125867 89 19 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.22 vpr 65.00 MiB -1 -1 0.15 20592 1 0.03 -1 -1 33632 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 26.5 MiB 0.16 937 9571 2534 6630 407 65.0 MiB 0.09 0.00 4.28889 -129.632 -4.28889 4.28889 0.90 0.00054113 0.000492869 0.0299642 0.0273839 30 2291 20 6.64007e+06 263718 526063. 1820.29 0.97 0.099106 0.0874281 22546 126617 -1 1909 19 1147 2018 101105 24783 3.56243 3.56243 -125.04 -3.56243 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0233231 0.0207226 136 69 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.31 vpr 65.38 MiB -1 -1 0.18 20428 1 0.03 -1 -1 33752 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66944 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 26.7 MiB 0.18 1018 17423 5293 9473 2657 65.4 MiB 0.15 0.00 4.47881 -144.552 -4.47881 4.47881 0.88 0.000583811 0.000530037 0.0465214 0.0423737 32 2355 20 6.64007e+06 439530 554710. 1919.41 0.97 0.116505 0.102795 22834 132086 -1 1953 21 1310 2040 144978 31263 3.34137 3.34137 -129.49 -3.34137 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.0261469 0.0230995 143 86 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.60 vpr 64.36 MiB -1 -1 0.15 20440 1 0.03 -1 -1 34032 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 26.0 MiB 0.38 962 17134 5020 8898 3216 64.4 MiB 0.13 0.00 5.27972 -153.369 -5.27972 5.27972 0.88 0.000513206 0.000467221 0.0428108 0.038965 32 2793 32 6.65987e+06 380340 554710. 1919.41 1.07 0.119854 0.105947 22834 132086 -1 2266 23 1794 2718 200976 48039 4.74857 4.74857 -148.259 -4.74857 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0267605 0.023777 152 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.47 vpr 64.67 MiB -1 -1 0.16 20496 1 0.03 -1 -1 33840 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 26.2 MiB 0.30 1040 12361 3404 6762 2195 64.7 MiB 0.11 0.00 4.63676 -143.523 -4.63676 4.63676 0.90 0.000519162 0.000473046 0.0377942 0.0345234 32 2391 26 6.65987e+06 291594 554710. 1919.41 1.01 0.109508 0.0966938 22834 132086 -1 2137 22 1808 2733 205071 46641 4.06963 4.06963 -142.287 -4.06963 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0252415 0.0223497 138 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.74 vpr 64.40 MiB -1 -1 0.15 20628 1 0.03 -1 -1 33924 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65948 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 25.9 MiB 0.11 1057 9111 2109 6460 542 64.4 MiB 0.08 0.00 4.05544 -117.725 -4.05544 4.05544 0.90 0.000455451 0.000407493 0.0236738 0.0216507 26 2909 26 6.65987e+06 291594 477104. 1650.88 1.60 0.0968882 0.0858659 21682 110474 -1 2304 21 1445 2010 175906 39220 3.52151 3.52151 -120.603 -3.52151 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0228223 0.0203394 126 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.22 vpr 64.55 MiB -1 -1 0.15 20360 1 0.03 -1 -1 33944 -1 -1 27 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 26.1 MiB 0.09 995 11593 2944 7290 1359 64.6 MiB 0.10 0.00 4.34155 -118.133 -4.34155 4.34155 0.89 0.000483718 0.000433673 0.0301451 0.0274365 32 2314 24 6.65987e+06 342306 554710. 1919.41 0.98 0.0920624 0.0809955 22834 132086 -1 2116 20 1335 2441 194474 43071 3.76777 3.76777 -117.12 -3.76777 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0220079 0.0195499 126 25 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 6.62 vpr 64.77 MiB -1 -1 0.15 20644 1 0.03 -1 -1 33764 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 26.3 MiB 0.11 1007 8919 2464 5628 827 64.8 MiB 0.09 0.00 4.36781 -127.596 -4.36781 4.36781 0.91 0.000502346 0.000459761 0.025551 0.0233173 34 2558 26 6.65987e+06 291594 585099. 2024.56 3.35 0.168716 0.146812 23122 138558 -1 2077 21 1475 2816 191677 44850 3.43891 3.43891 -123.186 -3.43891 0 0 742403. 2568.87 0.31 0.07 0.14 -1 -1 0.31 0.0228129 0.0201426 130 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.31 vpr 64.63 MiB -1 -1 0.17 20724 1 0.03 -1 -1 33916 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 26.0 MiB 0.15 1045 18079 5207 10774 2098 64.6 MiB 0.16 0.00 3.41904 -120.465 -3.41904 3.41904 0.91 0.000522474 0.000468502 0.0458245 0.0417646 30 2159 22 6.65987e+06 418374 526063. 1820.29 0.94 0.114674 0.101303 22546 126617 -1 1847 19 1124 1809 96785 23008 2.73771 2.73771 -111.043 -2.73771 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0232095 0.0206184 141 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.05 vpr 64.25 MiB -1 -1 0.15 20264 1 0.03 -1 -1 34032 -1 -1 18 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65792 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 25.8 MiB 0.17 496 10509 2613 7281 615 64.2 MiB 0.07 0.00 3.88752 -95.8054 -3.88752 3.88752 0.89 0.000362665 0.000327904 0.0262117 0.0238836 30 1262 24 6.65987e+06 228204 526063. 1820.29 0.88 0.0758851 0.0663742 22546 126617 -1 1045 21 680 1162 59254 15105 2.61651 2.61651 -82.9205 -2.61651 0 0 666494. 2306.21 0.29 0.04 0.11 -1 -1 0.29 0.0178613 0.015798 94 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.99 vpr 64.57 MiB -1 -1 0.15 20260 1 0.03 -1 -1 33740 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 26.2 MiB 0.05 903 9466 2130 6738 598 64.6 MiB 0.08 0.00 3.22661 -96.4595 -3.22661 3.22661 0.89 0.000429365 0.000388346 0.0211244 0.0192301 30 1887 19 6.65987e+06 393018 526063. 1820.29 0.90 0.0744419 0.0651676 22546 126617 -1 1660 17 761 1366 74007 17618 2.51331 2.51331 -91.8345 -2.51331 0 0 666494. 2306.21 0.28 0.04 0.13 -1 -1 0.28 0.0179516 0.0160126 115 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.21 vpr 64.70 MiB -1 -1 0.16 20612 1 0.03 -1 -1 33740 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66248 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 26.3 MiB 0.16 765 13788 3701 7917 2170 64.7 MiB 0.10 0.00 3.4209 -112.776 -3.4209 3.4209 0.90 0.000460016 0.000420772 0.0380082 0.0347321 32 2114 22 6.65987e+06 240882 554710. 1919.41 0.95 0.0990249 0.0876232 22834 132086 -1 1728 17 1058 1542 110918 26906 2.81811 2.81811 -106.836 -2.81811 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0196929 0.0176011 111 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.34 vpr 64.21 MiB -1 -1 0.15 20332 1 0.03 -1 -1 33572 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65748 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.6 MiB 0.27 876 13906 4295 8097 1514 64.2 MiB 0.11 0.00 3.72312 -122.883 -3.72312 3.72312 0.90 0.000453574 0.000414194 0.0380594 0.0347391 32 2018 21 6.65987e+06 215526 554710. 1919.41 0.96 0.0969898 0.0859123 22834 132086 -1 1742 20 1225 1923 138608 31820 2.76451 2.76451 -111.5 -2.76451 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0211088 0.0187818 113 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.19 vpr 64.52 MiB -1 -1 0.16 20632 1 0.03 -1 -1 33464 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 26.0 MiB 0.27 696 7008 1825 4747 436 64.5 MiB 0.06 0.00 4.00989 -109.174 -4.00989 4.00989 0.87 0.000454652 0.000414532 0.0209532 0.0191995 30 1525 18 6.65987e+06 215526 526063. 1820.29 0.92 0.0765163 0.0673374 22546 126617 -1 1365 17 574 884 51942 12389 2.68271 2.68271 -96.6812 -2.68271 0 0 666494. 2306.21 0.29 0.04 0.13 -1 -1 0.29 0.0184319 0.0164982 98 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.27 vpr 64.32 MiB -1 -1 0.14 20388 1 0.03 -1 -1 33548 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65864 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 26.0 MiB 0.25 721 6381 1297 4466 618 64.3 MiB 0.05 0.00 3.89466 -119.961 -3.89466 3.89466 0.91 0.000413054 0.000376173 0.0173536 0.0158444 32 2079 21 6.65987e+06 215526 554710. 1919.41 0.98 0.0744001 0.0652788 22834 132086 -1 1739 22 1249 1676 130638 32083 2.71505 2.71505 -108.626 -2.71505 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0210228 0.018583 106 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.42 vpr 64.66 MiB -1 -1 0.15 20512 1 0.03 -1 -1 33960 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 26.3 MiB 0.24 1056 16468 6105 8420 1943 64.7 MiB 0.15 0.00 4.37712 -140.294 -4.37712 4.37712 0.89 0.000519333 0.00047337 0.0462399 0.0421491 32 2620 22 6.65987e+06 304272 554710. 1919.41 1.01 0.115455 0.102327 22834 132086 -1 2184 21 1699 2549 188889 42181 3.20051 3.20051 -125.325 -3.20051 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0246912 0.0219578 139 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.30 vpr 64.91 MiB -1 -1 0.15 20420 1 0.03 -1 -1 33956 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 26.4 MiB 0.20 951 14365 3991 8802 1572 64.9 MiB 0.13 0.00 4.63803 -131.953 -4.63803 4.63803 0.89 0.000530724 0.000483331 0.0379137 0.0346529 28 2495 26 6.65987e+06 380340 500653. 1732.36 0.99 0.111182 0.0983072 21970 115934 -1 2246 23 1604 2513 195977 44240 3.75925 3.75925 -131.777 -3.75925 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0245653 0.0217243 133 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.99 vpr 64.37 MiB -1 -1 0.14 20532 1 0.03 -1 -1 33616 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 25.9 MiB 0.14 640 7914 1978 5337 599 64.4 MiB 0.06 0.00 3.16393 -88.5429 -3.16393 3.16393 0.91 0.000377546 0.000343413 0.0190271 0.0173631 28 1656 19 6.65987e+06 266238 500653. 1732.36 0.87 0.0653047 0.0572095 21970 115934 -1 1539 18 815 1389 99319 23560 2.82385 2.82385 -89.4422 -2.82385 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0161632 0.0142953 98 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.58 vpr 64.87 MiB -1 -1 0.15 20332 1 0.03 -1 -1 33824 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 26.3 MiB 0.43 1044 14035 4479 7571 1985 64.9 MiB 0.12 0.00 3.91387 -124.268 -3.91387 3.91387 0.89 0.000534047 0.000485047 0.0424307 0.0386412 32 2474 22 6.65987e+06 266238 554710. 1919.41 0.98 0.110813 0.0978306 22834 132086 -1 2152 20 1401 2504 176126 40482 3.25057 3.25057 -119.253 -3.25057 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0257132 0.0228624 132 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.57 vpr 64.75 MiB -1 -1 0.15 20600 1 0.03 -1 -1 34048 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66304 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 26.1 MiB 0.22 1069 12919 3925 6776 2218 64.8 MiB 0.11 0.00 4.31458 -139.268 -4.31458 4.31458 0.91 0.000512184 0.000460118 0.0378025 0.0344828 28 2604 25 6.65987e+06 266238 500653. 1732.36 1.21 0.109347 0.0966309 21970 115934 -1 2350 23 1620 2389 184014 41533 3.34617 3.34617 -124.198 -3.34617 0 0 612192. 2118.31 0.25 0.07 0.11 -1 -1 0.25 0.0252579 0.0223606 137 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.16 vpr 64.53 MiB -1 -1 0.15 20288 1 0.03 -1 -1 33696 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66080 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 26.2 MiB 0.22 695 9543 2025 7276 242 64.5 MiB 0.08 0.00 2.85064 -99.0938 -2.85064 2.85064 0.89 0.000472073 0.000430698 0.0239719 0.0218568 30 1712 20 6.65987e+06 367662 526063. 1820.29 0.92 0.0834493 0.0733254 22546 126617 -1 1441 15 777 1258 62201 16037 2.15051 2.15051 -92.0519 -2.15051 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0177321 0.0158835 110 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.81 vpr 63.86 MiB -1 -1 0.14 20248 1 0.03 -1 -1 33724 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65388 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 25.3 MiB 0.12 717 11976 4624 5984 1368 63.9 MiB 0.07 0.00 2.25907 -80.296 -2.25907 2.25907 0.88 0.000316513 0.000285981 0.0261614 0.0237841 26 1528 21 6.65987e+06 190170 477104. 1650.88 0.78 0.0692514 0.0607233 21682 110474 -1 1374 17 625 877 65267 15370 1.85605 1.85605 -80.6905 -1.85605 0 0 585099. 2024.56 0.25 0.04 0.10 -1 -1 0.25 0.0137921 0.0122085 81 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.43 vpr 64.33 MiB -1 -1 0.14 20328 1 0.03 -1 -1 34044 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65876 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 25.9 MiB 0.36 848 12008 3931 5654 2423 64.3 MiB 0.10 0.00 4.81535 -141.646 -4.81535 4.81535 0.90 0.000431036 0.000392403 0.0322118 0.0294667 32 2106 20 6.65987e+06 240882 554710. 1919.41 0.97 0.0898587 0.0795433 22834 132086 -1 1880 20 1338 1882 162953 37212 3.56017 3.56017 -127.18 -3.56017 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0207858 0.018518 127 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.14 vpr 64.68 MiB -1 -1 0.16 20448 1 0.03 -1 -1 33912 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 26.2 MiB 0.05 910 8087 1796 5473 818 64.7 MiB 0.07 0.00 4.13176 -127.852 -4.13176 4.13176 0.88 0.000523894 0.00047631 0.0207476 0.0189572 28 2425 21 6.65987e+06 393018 500653. 1732.36 1.04 0.0904762 0.079705 21970 115934 -1 2103 20 1357 2130 169483 37977 3.47643 3.47643 -125.531 -3.47643 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0241289 0.0214901 135 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.36 vpr 64.95 MiB -1 -1 0.16 20700 1 0.03 -1 -1 33848 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 26.4 MiB 0.24 1181 9303 2469 6067 767 64.9 MiB 0.09 0.00 4.32644 -135.633 -4.32644 4.32644 0.92 0.000554175 0.000505083 0.0281369 0.0256612 30 2631 22 6.65987e+06 291594 526063. 1820.29 1.00 0.0987668 0.0865017 22546 126617 -1 2153 23 1289 2094 130332 28525 3.28937 3.28937 -120.165 -3.28937 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.027021 0.0239546 142 59 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 6.00 vpr 63.65 MiB -1 -1 0.14 20000 1 0.03 -1 -1 34012 -1 -1 18 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65180 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 25.2 MiB 0.27 356 10636 3977 4816 1843 63.7 MiB 0.06 0.00 2.4343 -65.7683 -2.4343 2.4343 0.91 0.000287835 0.0002612 0.0220865 0.0201466 30 997 16 6.65987e+06 228204 526063. 1820.29 2.74 0.0951645 0.0826135 22546 126617 -1 741 16 447 580 26686 7955 2.19451 2.19451 -64.9642 -2.19451 0 0 666494. 2306.21 0.29 0.03 0.12 -1 -1 0.29 0.0120818 0.0107465 77 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.25 vpr 64.60 MiB -1 -1 0.14 20176 1 0.03 -1 -1 33736 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 26.2 MiB 0.10 978 9571 2391 5607 1573 64.6 MiB 0.08 0.00 4.9364 -125.004 -4.9364 4.9364 0.91 0.000443787 0.000404395 0.024645 0.0225166 32 2187 34 6.65987e+06 266238 554710. 1919.41 1.04 0.09275 0.0814807 22834 132086 -1 1928 19 1077 2024 137083 32628 3.70177 3.70177 -117.838 -3.70177 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0203388 0.0181079 118 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.90 vpr 63.62 MiB -1 -1 0.13 19824 1 0.03 -1 -1 33664 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65148 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 25.1 MiB 0.07 681 11200 3514 6177 1509 63.6 MiB 0.06 0.00 2.44727 -77.3331 -2.44727 2.44727 0.92 0.000300717 0.000274266 0.0218899 0.0199763 26 1411 15 6.65987e+06 177492 477104. 1650.88 0.86 0.0586952 0.0518058 21682 110474 -1 1284 15 508 576 57479 12943 1.93211 1.93211 -77.6137 -1.93211 0 0 585099. 2024.56 0.25 0.03 0.11 -1 -1 0.25 0.011732 0.0104938 79 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.20 vpr 64.54 MiB -1 -1 0.15 20264 1 0.03 -1 -1 33864 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 26.1 MiB 0.08 819 10531 2694 7192 645 64.5 MiB 0.09 0.00 4.34174 -119.601 -4.34174 4.34174 0.92 0.000448484 0.000408457 0.0253699 0.0231817 32 2048 22 6.65987e+06 380340 554710. 1919.41 0.96 0.0837697 0.0736803 22834 132086 -1 1821 18 1090 1817 127223 31545 3.42805 3.42805 -113.683 -3.42805 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0198513 0.0177402 123 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.40 vpr 64.66 MiB -1 -1 0.15 20144 1 0.03 -1 -1 34084 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.2 MiB 0.10 841 8087 1664 5850 573 64.7 MiB 0.07 0.00 3.58635 -102.903 -3.58635 3.58635 0.89 0.000459214 0.000420228 0.0194523 0.0177408 28 2267 21 6.65987e+06 393018 500653. 1732.36 1.29 0.0875723 0.0774438 21970 115934 -1 2021 19 1195 2217 144338 35484 2.86871 2.86871 -103.513 -2.86871 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0215595 0.0192402 128 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.23 vpr 64.53 MiB -1 -1 0.15 20544 1 0.03 -1 -1 33904 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66080 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 25.9 MiB 0.12 1047 15165 4413 8666 2086 64.5 MiB 0.12 0.00 4.3944 -130.237 -4.3944 4.3944 0.89 0.000447519 0.000408357 0.0376057 0.0341624 32 2492 25 6.65987e+06 329628 554710. 1919.41 0.98 0.101016 0.0888005 22834 132086 -1 2137 19 1363 2369 169359 39834 3.31885 3.31885 -121.57 -3.31885 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0226472 0.0201384 125 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.05 vpr 64.19 MiB -1 -1 0.13 20136 1 0.03 -1 -1 33552 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65732 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 25.7 MiB 0.05 780 6100 1392 4485 223 64.2 MiB 0.06 0.00 2.90053 -100.349 -2.90053 2.90053 0.91 0.000438569 0.000391864 0.0176367 0.0161768 32 1965 19 6.65987e+06 202848 554710. 1919.41 0.94 0.0721118 0.0634464 22834 132086 -1 1697 21 1091 1759 139787 33032 2.67165 2.67165 -101.934 -2.67165 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0205575 0.0181807 101 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.07 vpr 64.04 MiB -1 -1 0.15 20300 1 0.03 -1 -1 33572 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65576 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 25.6 MiB 0.09 630 9199 2049 6385 765 64.0 MiB 0.06 0.00 2.99867 -92.259 -2.99867 2.99867 0.90 0.000415388 0.000379384 0.022297 0.0204063 32 1813 20 6.65987e+06 291594 554710. 1919.41 0.93 0.0737735 0.0649683 22834 132086 -1 1461 21 1012 1572 113500 26995 2.90791 2.90791 -95.8313 -2.90791 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0191766 0.0169727 97 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.07 vpr 64.30 MiB -1 -1 0.15 20404 1 0.03 -1 -1 33332 -1 -1 23 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65848 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 25.8 MiB 0.04 575 14123 3775 8918 1430 64.3 MiB 0.09 0.00 3.31478 -91.535 -3.31478 3.31478 0.89 0.000407507 0.000372494 0.0332638 0.0302417 32 1755 23 6.65987e+06 291594 554710. 1919.41 0.94 0.0851337 0.0749232 22834 132086 -1 1402 21 1087 1837 130276 32833 2.67565 2.67565 -90.39 -2.67565 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0192401 0.0170005 98 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.19 vpr 64.30 MiB -1 -1 0.14 20224 1 0.03 -1 -1 33716 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65848 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 25.8 MiB 0.10 714 4763 885 3714 164 64.3 MiB 0.04 0.00 3.74323 -109.194 -3.74323 3.74323 0.91 0.000398567 0.000362658 0.0124216 0.0113878 30 1851 22 6.65987e+06 240882 526063. 1820.29 1.05 0.069857 0.0614172 22546 126617 -1 1562 20 1047 1749 98103 23919 2.62751 2.62751 -102.66 -2.62751 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0186633 0.0165819 110 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.09 vpr 64.52 MiB -1 -1 0.15 20444 1 0.03 -1 -1 33428 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 25.9 MiB 0.10 740 8130 1715 6151 264 64.5 MiB 0.07 0.00 3.32595 -98.9982 -3.32595 3.32595 0.89 0.000423031 0.000385436 0.0192537 0.0175834 32 1842 22 6.65987e+06 342306 554710. 1919.41 0.94 0.0742053 0.0650159 22834 132086 -1 1570 20 1022 1665 112884 27377 2.72051 2.72051 -99.0807 -2.72051 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0200849 0.017337 103 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.26 vpr 64.52 MiB -1 -1 0.17 20108 1 0.03 -1 -1 33632 -1 -1 25 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66064 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 26.2 MiB 0.24 874 10103 2597 6479 1027 64.5 MiB 0.08 0.00 3.27578 -104.365 -3.27578 3.27578 0.90 0.000444799 0.000406176 0.0253026 0.0231333 32 1837 16 6.65987e+06 316950 554710. 1919.41 0.92 0.0772704 0.0680926 22834 132086 -1 1643 19 1041 1556 109533 25783 2.40005 2.40005 -98.5579 -2.40005 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0194287 0.0172528 105 48 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.29 vpr 64.56 MiB -1 -1 0.15 20432 1 0.03 -1 -1 33700 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 26.0 MiB 0.27 1205 9971 2413 6766 792 64.6 MiB 0.09 0.00 4.35696 -124.779 -4.35696 4.35696 0.89 0.000574687 0.000529817 0.0259757 0.0237278 30 2470 20 6.65987e+06 469086 526063. 1820.29 0.91 0.0933104 0.0819482 22546 126617 -1 2143 21 987 1859 103605 23151 3.67963 3.67963 -120.47 -3.67963 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0257007 0.0229055 150 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.59 vpr 65.09 MiB -1 -1 0.16 20376 1 0.03 -1 -1 33932 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 26.7 MiB 0.27 1009 12860 3291 8398 1171 65.1 MiB 0.12 0.00 3.75432 -126.947 -3.75432 3.75432 0.90 0.000585413 0.000536026 0.0343654 0.0314004 26 2525 36 6.65987e+06 456408 477104. 1650.88 1.19 0.12982 0.115072 21682 110474 -1 2140 19 1553 2391 155367 36688 2.97837 2.97837 -123.475 -2.97837 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0254991 0.0227746 146 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 6.62 vpr 63.92 MiB -1 -1 0.16 20248 1 0.03 -1 -1 33764 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65456 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 25.6 MiB 0.27 731 8852 2206 5531 1115 63.9 MiB 0.08 0.00 4.21752 -119.384 -4.21752 4.21752 0.88 0.000436539 0.000397667 0.023835 0.0217745 28 2061 26 6.65987e+06 215526 500653. 1732.36 3.32 0.140315 0.122065 21970 115934 -1 1827 20 1090 1500 104657 25299 3.14271 3.14271 -113.213 -3.14271 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0198102 0.0175781 109 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.46 vpr 64.87 MiB -1 -1 0.16 20636 1 0.03 -1 -1 33864 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 26.3 MiB 0.26 838 9687 2447 6341 899 64.9 MiB 0.09 0.00 4.30117 -127.913 -4.30117 4.30117 0.89 0.000560435 0.00051195 0.0276231 0.0252748 28 2472 25 6.65987e+06 304272 500653. 1732.36 1.12 0.107815 0.0953649 21970 115934 -1 2020 21 1371 2445 169274 40806 3.06817 3.06817 -116.785 -3.06817 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0261627 0.0232785 137 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.62 vpr 64.66 MiB -1 -1 0.16 20348 1 0.03 -1 -1 33936 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 26.7 MiB 0.36 1313 13758 3781 7541 2436 64.7 MiB 0.13 0.00 5.77198 -171.36 -5.77198 5.77198 0.89 0.000549411 0.000502245 0.0401228 0.0366608 32 3132 21 6.65987e+06 342306 554710. 1919.41 1.04 0.113516 0.100579 22834 132086 -1 2551 22 2197 3203 211784 51203 4.70894 4.70894 -163.62 -4.70894 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0273722 0.0243277 170 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.18 vpr 65.10 MiB -1 -1 0.17 20512 1 0.03 -1 -1 33904 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 26.5 MiB 1.34 956 15103 4666 7688 2749 65.1 MiB 0.14 0.00 4.78629 -143.571 -4.78629 4.78629 0.90 0.000539324 0.000491425 0.0443975 0.0404311 32 2967 29 6.65987e+06 316950 554710. 1919.41 1.62 0.15017 0.132532 22834 132086 -1 2196 20 1644 2482 193336 43970 3.98337 3.98337 -138.614 -3.98337 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0259119 0.023074 162 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.63 vpr 64.68 MiB -1 -1 0.16 20736 1 0.03 -1 -1 33816 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 26.1 MiB 0.22 864 6095 1129 4612 354 64.7 MiB 0.07 0.00 4.47092 -130.094 -4.47092 4.47092 0.88 0.00050271 0.000458357 0.0181339 0.0166014 28 2546 32 6.65987e+06 367662 500653. 1732.36 1.36 0.0989388 0.0869937 21970 115934 -1 2020 21 1236 1940 117144 30484 3.23625 3.23625 -120.221 -3.23625 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0249655 0.0222158 133 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 6.21 vpr 64.60 MiB -1 -1 0.15 20256 1 0.03 -1 -1 33956 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66152 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 26.0 MiB 0.17 918 12371 3407 6390 2574 64.6 MiB 0.09 0.00 4.0455 -110.07 -4.0455 4.0455 0.89 0.000402307 0.000362768 0.0303272 0.0275857 28 2605 20 6.65987e+06 278916 500653. 1732.36 3.04 0.153001 0.13279 21970 115934 -1 2180 19 1317 1949 158383 36532 3.51625 3.51625 -115.535 -3.51625 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0200713 0.0178565 118 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.46 vpr 64.89 MiB -1 -1 0.16 20840 1 0.03 -1 -1 34000 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 26.8 MiB 0.29 1184 10336 2301 7496 539 64.9 MiB 0.11 0.00 5.18869 -164.242 -5.18869 5.18869 0.89 0.000645589 0.000590108 0.0305839 0.027916 26 3457 39 6.65987e+06 481764 477104. 1650.88 1.95 0.1363 0.119956 21682 110474 -1 2828 25 2036 3190 320818 89509 4.52437 4.52437 -157.469 -4.52437 0 0 585099. 2024.56 0.26 0.12 0.11 -1 -1 0.26 0.0359786 0.0320082 172 84 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.17 vpr 64.48 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33688 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 26.0 MiB 0.12 660 11064 4480 5786 798 64.5 MiB 0.07 0.00 3.61218 -99.209 -3.61218 3.61218 0.90 0.000405597 0.000368173 0.0268362 0.0244644 32 1891 29 6.65987e+06 266238 554710. 1919.41 0.98 0.0847252 0.0743362 22834 132086 -1 1581 22 1137 1828 142459 35231 2.90705 2.90705 -99.775 -2.90705 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0200184 0.0176742 101 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.97 vpr 64.88 MiB -1 -1 0.17 20544 1 0.03 -1 -1 33540 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 26.3 MiB 0.24 1031 5756 1118 4418 220 64.9 MiB 0.07 0.00 5.03726 -146.602 -5.03726 5.03726 0.90 0.000523476 0.000479934 0.0182111 0.0167354 28 2854 46 6.65987e+06 291594 500653. 1732.36 1.65 0.10905 0.0956002 21970 115934 -1 2278 23 1392 1970 136323 32335 4.47728 4.47728 -144.286 -4.47728 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0259381 0.0230267 142 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.69 vpr 64.69 MiB -1 -1 0.16 20672 1 0.03 -1 -1 33768 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 26.1 MiB 0.15 975 10087 2133 7508 446 64.7 MiB 0.10 0.00 3.91407 -118.639 -3.91407 3.91407 0.89 0.000500736 0.000457444 0.0258652 0.0236547 28 2750 43 6.65987e+06 418374 500653. 1732.36 1.43 0.119147 0.105115 21970 115934 -1 2171 17 1119 1988 146167 33613 3.02611 3.02611 -112.426 -3.02611 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0219896 0.0196816 131 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.45 vpr 64.52 MiB -1 -1 0.14 20080 1 0.03 -1 -1 33760 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 26.1 MiB 0.10 889 13153 5130 6680 1343 64.5 MiB 0.11 0.00 4.00941 -121.212 -4.00941 4.00941 0.88 0.000443302 0.000403657 0.0331071 0.0302394 32 2460 38 6.65987e+06 304272 554710. 1919.41 1.20 0.108577 0.0960193 22834 132086 -1 1936 29 1457 2672 381718 164248 3.53945 3.53945 -118.826 -3.53945 0 0 701300. 2426.64 0.29 0.14 0.13 -1 -1 0.29 0.0295228 0.0261526 123 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.62 vpr 64.65 MiB -1 -1 0.16 20712 1 0.03 -1 -1 33968 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 26.4 MiB 0.37 1135 8213 1899 5522 792 64.7 MiB 0.08 0.00 4.53182 -135.539 -4.53182 4.53182 0.91 0.000533613 0.000487489 0.0253982 0.0232906 26 2769 24 6.65987e+06 278916 477104. 1650.88 1.19 0.103169 0.0914738 21682 110474 -1 2364 24 1365 1922 145357 33034 3.40711 3.40711 -122.846 -3.40711 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.027353 0.0242018 136 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.77 vpr 65.00 MiB -1 -1 0.15 20440 1 0.03 -1 -1 33904 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 26.2 MiB 0.41 1054 11759 3077 7738 944 65.0 MiB 0.10 0.00 3.70469 -122.012 -3.70469 3.70469 0.89 0.000528201 0.000481455 0.030574 0.0278965 26 2570 22 6.65987e+06 393018 477104. 1650.88 1.25 0.102021 0.0901423 21682 110474 -1 2258 22 1408 2255 183580 40530 3.17031 3.17031 -120.881 -3.17031 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0254234 0.0224809 132 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.63 vpr 64.78 MiB -1 -1 0.16 20756 1 0.03 -1 -1 33672 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 26.4 MiB 0.36 1080 10772 2746 7404 622 64.8 MiB 0.11 0.00 4.49669 -137.938 -4.49669 4.49669 0.89 0.000553612 0.000507191 0.028252 0.0257699 26 2751 23 6.65987e+06 456408 477104. 1650.88 1.18 0.103415 0.090858 21682 110474 -1 2424 22 1401 2036 158685 36651 3.54111 3.54111 -130.601 -3.54111 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0274359 0.024338 144 59 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.17 vpr 64.63 MiB -1 -1 0.15 20260 1 0.03 -1 -1 33400 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 26.2 MiB 0.10 888 10593 2829 7083 681 64.6 MiB 0.09 0.00 3.98836 -118.206 -3.98836 3.98836 0.92 0.000483479 0.000440596 0.0260979 0.0237732 32 2021 22 6.65987e+06 367662 554710. 1919.41 0.95 0.0852225 0.0749632 22834 132086 -1 1760 21 1196 1953 123809 29858 3.27785 3.27785 -112.011 -3.27785 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.022454 0.019875 122 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.19 vpr 64.59 MiB -1 -1 0.14 20224 1 0.03 -1 -1 33764 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 26.1 MiB 0.12 1026 6999 1560 5055 384 64.6 MiB 0.07 0.00 4.76946 -136.875 -4.76946 4.76946 0.89 0.00043454 0.000394214 0.0192264 0.0175371 32 2525 24 6.65987e+06 291594 554710. 1919.41 0.95 0.0809449 0.0708995 22834 132086 -1 2194 21 1650 2343 161923 39181 3.74371 3.74371 -130.276 -3.74371 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0221563 0.0196403 133 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.62 vpr 65.22 MiB -1 -1 0.17 20436 1 0.03 -1 -1 33800 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 26.7 MiB 0.31 1149 15584 5177 7856 2551 65.2 MiB 0.15 0.00 4.99307 -147.134 -4.99307 4.99307 0.90 0.000527727 0.000480422 0.0467253 0.0425986 32 3017 27 6.65987e+06 291594 554710. 1919.41 1.08 0.122405 0.108323 22834 132086 -1 2440 19 1556 2391 183308 41041 3.88823 3.88823 -134.888 -3.88823 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0241244 0.0215369 146 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.39 vpr 64.91 MiB -1 -1 0.17 20620 1 0.03 -1 -1 33920 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 26.3 MiB 0.17 1089 11245 3394 6770 1081 64.9 MiB 0.11 0.00 3.85398 -125.73 -3.85398 3.85398 0.90 0.000560753 0.000512203 0.0364143 0.0333339 32 2804 22 6.65987e+06 266238 554710. 1919.41 1.03 0.111337 0.09849 22834 132086 -1 2365 24 1758 3197 231748 53117 3.42705 3.42705 -123.815 -3.42705 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0298583 0.0265108 135 74 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 6.04 vpr 64.14 MiB -1 -1 0.15 20428 1 0.03 -1 -1 33656 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65676 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 25.7 MiB 0.09 769 15493 4232 9363 1898 64.1 MiB 0.11 0.00 3.34618 -101.012 -3.34618 3.34618 0.91 0.000389925 0.000354505 0.0335736 0.0306351 30 1787 28 6.65987e+06 304272 526063. 1820.29 2.90 0.144643 0.126217 22546 126617 -1 1499 16 624 950 65432 14963 2.40711 2.40711 -90.0172 -2.40711 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0156825 0.0140277 97 20 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 6.18 vpr 64.82 MiB -1 -1 0.16 20396 1 0.03 -1 -1 33484 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 26.3 MiB 0.14 904 12345 3635 7531 1179 64.8 MiB 0.11 0.00 3.9733 -136.305 -3.9733 3.9733 0.89 0.000490244 0.000446661 0.0352752 0.0321901 28 2501 21 6.65987e+06 253560 500653. 1732.36 2.96 0.173278 0.151262 21970 115934 -1 2099 21 1493 2105 171768 38779 3.41097 3.41097 -132.539 -3.41097 0 0 612192. 2118.31 0.25 0.07 0.11 -1 -1 0.25 0.0219487 0.019375 125 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.49 vpr 64.76 MiB -1 -1 0.16 20352 1 0.03 -1 -1 33844 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 26.7 MiB 0.18 1234 10649 2580 7238 831 64.8 MiB 0.12 0.00 5.507 -161.149 -5.507 5.507 0.89 0.000599102 0.000547675 0.0328731 0.0301295 32 3101 24 6.65987e+06 354984 554710. 1919.41 1.10 0.110833 0.0980186 22834 132086 -1 2718 20 2087 3366 237751 56336 4.94897 4.94897 -152.371 -4.94897 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0272396 0.0243592 168 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.27 vpr 64.82 MiB -1 -1 0.16 20580 1 0.03 -1 -1 33604 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 26.3 MiB 0.26 868 6791 1309 5265 217 64.8 MiB 0.06 0.00 4.3812 -128.187 -4.3812 4.3812 0.92 0.000518168 0.000471447 0.0185 0.0169132 30 2033 20 6.65987e+06 393018 526063. 1820.29 0.93 0.0826533 0.0725574 22546 126617 -1 1762 20 952 1627 85645 20883 2.86291 2.86291 -109.937 -2.86291 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.0224426 0.019927 133 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.68 vpr 64.26 MiB -1 -1 0.14 20296 1 0.03 -1 -1 33636 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65800 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 25.7 MiB 0.05 691 10228 2870 6479 879 64.3 MiB 0.09 0.00 3.33678 -100.638 -3.33678 3.33678 0.90 0.000432615 0.000393507 0.0246924 0.0226163 26 1949 23 6.65987e+06 329628 477104. 1650.88 2.60 0.142358 0.124129 21682 110474 -1 1713 22 1236 2017 169711 40616 2.71771 2.71771 -101.15 -2.71771 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0212924 0.0187952 104 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.95 vpr 64.87 MiB -1 -1 0.16 20876 1 0.03 -1 -1 34008 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 26.7 MiB 0.36 1262 6623 1301 4680 642 64.9 MiB 0.08 0.00 6.41663 -184.149 -6.41663 6.41663 0.91 0.000567608 0.000518878 0.023864 0.0218601 30 3204 25 6.65987e+06 316950 526063. 1820.29 1.43 0.112521 0.0993179 22546 126617 -1 2549 21 1554 2249 144381 31759 4.98034 4.98034 -166.106 -4.98034 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0289696 0.0258286 168 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.40 vpr 64.38 MiB -1 -1 0.16 20456 1 0.03 -1 -1 33384 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 25.9 MiB 0.28 921 16959 4303 11211 1445 64.4 MiB 0.14 0.00 4.44175 -133.512 -4.44175 4.44175 0.90 0.000495156 0.000452781 0.0405047 0.0369281 26 2186 24 6.65987e+06 405696 477104. 1650.88 1.02 0.111172 0.098347 21682 110474 -1 1832 22 1113 1842 133668 30945 3.44211 3.44211 -120.204 -3.44211 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0247484 0.0219269 130 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.97 vpr 64.01 MiB -1 -1 0.14 20140 1 0.03 -1 -1 33508 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65544 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 25.6 MiB 0.04 793 12375 3802 6579 1994 64.0 MiB 0.09 0.00 3.21869 -96.935 -3.21869 3.21869 0.90 0.000371409 0.000340189 0.0268186 0.0245325 30 1766 15 6.65987e+06 291594 526063. 1820.29 0.93 0.0735292 0.0650973 22546 126617 -1 1544 16 659 1107 76228 16685 2.40211 2.40211 -91.256 -2.40211 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0152761 0.013632 100 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 6.30 vpr 64.64 MiB -1 -1 0.16 20564 1 0.03 -1 -1 33904 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 26.4 MiB 0.13 997 10448 2232 7093 1123 64.6 MiB 0.08 0.00 5.44618 -130.736 -5.44618 5.44618 0.87 0.000486278 0.000447008 0.0245751 0.0223083 30 2483 23 6.65987e+06 431052 526063. 1820.29 3.14 0.174467 0.151459 22546 126617 -1 1969 22 1092 2125 114624 28201 4.42602 4.42602 -126.911 -4.42602 0 0 666494. 2306.21 0.27 0.06 0.13 -1 -1 0.27 0.0235252 0.0208675 139 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.11 vpr 64.27 MiB -1 -1 0.14 20244 1 0.03 -1 -1 34008 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65812 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 25.8 MiB 0.09 805 9600 2394 6142 1064 64.3 MiB 0.08 0.00 3.39504 -104.25 -3.39504 3.39504 0.88 0.000396485 0.000359623 0.0232452 0.0212319 30 1773 21 6.65987e+06 253560 526063. 1820.29 1.01 0.0760957 0.067057 22546 126617 -1 1584 19 861 1470 82710 19276 2.61951 2.61951 -101.603 -2.61951 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0180862 0.0161127 104 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.26 vpr 64.56 MiB -1 -1 0.15 20216 1 0.03 -1 -1 33696 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66112 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 26.0 MiB 0.15 870 16295 4607 9720 1968 64.6 MiB 0.11 0.00 3.88231 -108.178 -3.88231 3.88231 0.89 0.000425114 0.000388714 0.0336782 0.0307451 26 1911 26 6.65987e+06 418374 477104. 1650.88 1.10 0.0972791 0.086103 21682 110474 -1 1673 16 662 1152 76214 17335 2.61725 2.61725 -99.6073 -2.61725 0 0 585099. 2024.56 0.25 0.04 0.11 -1 -1 0.25 0.0169821 0.0151888 105 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 6.49 vpr 65.14 MiB -1 -1 0.17 20556 1 0.03 -1 -1 33604 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 26.6 MiB 0.27 1186 15151 5050 8219 1882 65.1 MiB 0.14 0.00 4.37661 -129.138 -4.37661 4.37661 0.87 0.000513222 0.000466665 0.0438425 0.0400178 28 2757 20 6.65987e+06 304272 500653. 1732.36 3.12 0.180295 0.157349 21970 115934 -1 2326 20 1558 2342 169332 38302 3.29317 3.29317 -116.352 -3.29317 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0241406 0.0214446 138 56 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.22 vpr 64.90 MiB -1 -1 0.15 20640 1 0.03 -1 -1 33712 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 26.4 MiB 0.17 884 5548 1103 3958 487 64.9 MiB 0.06 0.00 4.37207 -129.772 -4.37207 4.37207 0.90 0.000521368 0.000475022 0.0174358 0.0159769 32 2141 21 6.65987e+06 304272 554710. 1919.41 0.94 0.0836828 0.0731978 22834 132086 -1 1854 20 1282 1951 132992 31888 3.70757 3.70757 -130.332 -3.70757 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0240226 0.021298 130 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.35 vpr 64.73 MiB -1 -1 0.16 20516 1 0.03 -1 -1 33860 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 26.2 MiB 0.21 1040 15391 4199 8930 2262 64.7 MiB 0.14 0.00 4.54089 -136.701 -4.54089 4.54089 0.90 0.000518634 0.000473431 0.0419063 0.0382912 32 2316 24 6.65987e+06 342306 554710. 1919.41 0.98 0.111378 0.0986247 22834 132086 -1 2093 18 1106 1900 131883 30619 3.67131 3.67131 -128.131 -3.67131 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0226257 0.0201913 132 48 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.19 vpr 64.54 MiB -1 -1 0.12 20072 1 0.03 -1 -1 33792 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 26.2 MiB 0.27 821 7476 1923 4958 595 64.5 MiB 0.07 0.00 4.66411 -131.468 -4.66411 4.66411 0.90 0.000444719 0.000407156 0.0206189 0.0189039 30 1841 19 6.65987e+06 202848 526063. 1820.29 0.88 0.0716597 0.0629998 22546 126617 -1 1650 18 685 936 56545 13237 3.08625 3.08625 -110.111 -3.08625 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.018296 0.0162905 103 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.19 vpr 64.28 MiB -1 -1 0.16 20636 1 0.03 -1 -1 33732 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65824 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 25.9 MiB 0.22 768 7736 1918 4969 849 64.3 MiB 0.08 0.00 3.69598 -115.422 -3.69598 3.69598 0.90 0.000456646 0.00041652 0.0226453 0.0207308 30 1988 17 6.65987e+06 240882 526063. 1820.29 0.92 0.0793065 0.0697842 22546 126617 -1 1656 20 991 1482 85033 20146 2.94771 2.94771 -106.549 -2.94771 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.021421 0.0190272 111 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.67 vpr 64.10 MiB -1 -1 0.16 20324 1 0.03 -1 -1 33720 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65640 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 25.7 MiB 0.22 822 9815 2052 6788 975 64.1 MiB 0.08 0.00 3.34001 -95.394 -3.34001 3.34001 0.88 0.000462003 0.00042156 0.0242751 0.0221528 28 2190 24 6.65987e+06 418374 500653. 1732.36 1.40 0.0925367 0.0814287 21970 115934 -1 1852 15 1072 1834 124485 30633 2.76159 2.76159 -95.2544 -2.76159 0 0 612192. 2118.31 0.28 0.05 0.12 -1 -1 0.28 0.0181479 0.0161788 123 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.69 vpr 64.36 MiB -1 -1 0.16 20512 1 0.03 -1 -1 34080 -1 -1 35 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 26.0 MiB 0.13 864 12623 3003 8699 921 64.4 MiB 0.08 0.00 4.17801 -101.983 -4.17801 4.17801 0.90 0.000385859 0.000346511 0.0260256 0.0237816 26 2268 22 6.65987e+06 443730 477104. 1650.88 1.54 0.0886628 0.0782281 21682 110474 -1 1937 20 1051 2141 185449 39228 3.47031 3.47031 -104.035 -3.47031 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0199441 0.0176419 115 20 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.31 vpr 64.36 MiB -1 -1 0.15 20128 1 0.03 -1 -1 33476 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 25.8 MiB 0.24 739 8360 2842 3913 1605 64.4 MiB 0.07 0.00 4.07397 -113.958 -4.07397 4.07397 0.89 0.000459131 0.000419515 0.0252193 0.0231006 32 2126 22 6.65987e+06 215526 554710. 1919.41 0.99 0.086649 0.0763908 22834 132086 -1 1845 20 1326 2233 191342 43480 3.06691 3.06691 -111.388 -3.06691 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0209474 0.0184727 108 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.36 vpr 64.62 MiB -1 -1 0.15 20788 1 0.03 -1 -1 33692 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 26.2 MiB 0.17 854 4110 634 3368 108 64.6 MiB 0.04 0.00 3.78604 -125.597 -3.78604 3.78604 0.84 0.00042341 0.000387235 0.0115685 0.0106187 26 2393 26 6.65987e+06 253560 477104. 1650.88 1.33 0.0774239 0.0674809 21682 110474 -1 1995 20 1275 1873 148398 35276 3.03351 3.03351 -122.493 -3.03351 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0222654 0.019744 120 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.15 vpr 64.33 MiB -1 -1 0.15 20264 1 0.03 -1 -1 33776 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65876 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 25.8 MiB 0.09 847 5711 1070 3973 668 64.3 MiB 0.05 0.00 4.49904 -123.598 -4.49904 4.49904 0.88 0.000445687 0.000405707 0.0140767 0.0128703 30 2337 22 6.65987e+06 405696 526063. 1820.29 1.06 0.0762809 0.0670238 22546 126617 -1 1888 24 1168 2212 131068 32744 3.69257 3.69257 -118.678 -3.69257 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0234009 0.0206924 127 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.47 vpr 65.13 MiB -1 -1 0.16 20484 1 0.03 -1 -1 33740 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 26.6 MiB 0.28 1096 14639 4278 7910 2451 65.1 MiB 0.14 0.00 5.13815 -159.632 -5.13815 5.13815 0.89 0.000514822 0.000470594 0.0426908 0.0389925 32 3087 25 6.65987e+06 278916 554710. 1919.41 1.03 0.11727 0.10407 22834 132086 -1 2460 21 1795 2659 205239 47320 4.22151 4.22151 -146.209 -4.22151 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0257404 0.0229204 144 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.60 vpr 64.86 MiB -1 -1 0.16 20428 1 0.03 -1 -1 33880 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 26.6 MiB 0.33 1097 14331 4044 8499 1788 64.9 MiB 0.13 0.00 4.9662 -142.984 -4.9662 4.9662 0.90 0.000553247 0.000497872 0.0388271 0.035368 28 2572 22 6.65987e+06 405696 500653. 1732.36 1.14 0.116643 0.103298 21970 115934 -1 2172 17 1073 1895 133148 29668 3.78603 3.78603 -131.107 -3.78603 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0228357 0.0204145 142 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 6.48 vpr 65.05 MiB -1 -1 0.15 20452 1 0.03 -1 -1 34040 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66612 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 26.7 MiB 0.26 1087 19136 6054 10420 2662 65.1 MiB 0.15 0.00 4.23232 -136.463 -4.23232 4.23232 0.87 0.000492589 0.00044499 0.0445248 0.0403682 28 2899 28 6.65987e+06 469086 500653. 1732.36 3.16 0.198867 0.173296 21970 115934 -1 2417 25 1675 2949 230320 50849 3.47891 3.47891 -134.175 -3.47891 0 0 612192. 2118.31 0.26 0.08 0.10 -1 -1 0.26 0.0283216 0.0249 140 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.30 vpr 64.31 MiB -1 -1 0.16 20340 1 0.03 -1 -1 33952 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 25.8 MiB 0.23 753 14081 4985 6810 2286 64.3 MiB 0.10 0.00 3.61906 -107.365 -3.61906 3.61906 0.88 0.000368692 0.000336239 0.0337314 0.0307378 32 1967 21 6.65987e+06 240882 554710. 1919.41 0.97 0.0874367 0.0772454 22834 132086 -1 1733 22 1136 1898 162835 35973 2.77265 2.77265 -98.3726 -2.77265 0 0 701300. 2426.64 0.31 0.07 0.14 -1 -1 0.31 0.021309 0.0188706 105 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.41 vpr 65.11 MiB -1 -1 0.16 20540 1 0.03 -1 -1 33632 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 26.4 MiB 0.25 993 13583 3880 7603 2100 65.1 MiB 0.12 0.00 4.75724 -141.541 -4.75724 4.75724 0.92 0.00054277 0.000495666 0.0435105 0.039776 32 2250 20 6.65987e+06 266238 554710. 1919.41 0.99 0.111706 0.0989843 22834 132086 -1 2011 20 1613 2556 171997 40019 3.57237 3.57237 -133.43 -3.57237 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0244834 0.0216877 137 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.55 vpr 64.64 MiB -1 -1 0.16 20520 1 0.03 -1 -1 33756 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 26.1 MiB 0.30 984 6328 1212 4906 210 64.6 MiB 0.06 0.00 5.08874 -146.537 -5.08874 5.08874 0.88 0.000513575 0.000467543 0.0181569 0.0165713 30 2772 46 6.65987e+06 304272 526063. 1820.29 1.19 0.106453 0.0931788 22546 126617 -1 2211 20 1228 1907 136054 30889 3.73165 3.73165 -133.157 -3.73165 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0234701 0.020982 138 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.56 vpr 64.82 MiB -1 -1 0.16 20436 1 0.03 -1 -1 33668 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 26.5 MiB 0.38 1115 15391 3929 9868 1594 64.8 MiB 0.13 0.00 5.2191 -153.261 -5.2191 5.2191 0.90 0.000508089 0.00046398 0.0407386 0.0372349 32 2703 22 6.65987e+06 354984 554710. 1919.41 0.99 0.10849 0.0960822 22834 132086 -1 2398 21 1413 2244 171506 39576 4.49237 4.49237 -149.522 -4.49237 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0248821 0.0221898 146 43 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.14 vpr 64.38 MiB -1 -1 0.17 20492 1 0.03 -1 -1 33928 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 25.8 MiB 1.07 822 9963 2514 6047 1402 64.4 MiB 0.10 0.00 4.35758 -125.649 -4.35758 4.35758 0.90 0.000533471 0.000487221 0.0285301 0.0261152 30 1914 20 6.65987e+06 393018 526063. 1820.29 0.96 0.0957805 0.0844227 22546 126617 -1 1609 18 981 1672 88324 22522 2.81791 2.81791 -106.668 -2.81791 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.022143 0.0197663 133 78 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.31 vpr 64.74 MiB -1 -1 0.17 20540 1 0.03 -1 -1 33864 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 26.3 MiB 0.20 1042 15822 5317 8613 1892 64.7 MiB 0.15 0.00 4.76549 -137.992 -4.76549 4.76549 0.89 0.000531596 0.000483537 0.0488004 0.0444594 30 2491 20 6.65987e+06 253560 526063. 1820.29 1.01 0.113819 0.100551 22546 126617 -1 2119 19 1152 2004 130735 29222 3.60711 3.60711 -129.356 -3.60711 0 0 666494. 2306.21 0.26 0.05 0.11 -1 -1 0.26 0.0208829 0.0186015 133 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.02 vpr 64.74 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33652 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 26.0 MiB 0.39 913 8934 2134 6274 526 64.7 MiB 0.08 0.00 4.51892 -126.294 -4.51892 4.51892 0.87 0.000524397 0.000476082 0.0260688 0.0237759 26 2602 20 6.65987e+06 367662 477104. 1650.88 1.58 0.101128 0.0892161 21682 110474 -1 2145 20 1380 2178 169956 39900 3.37797 3.37797 -123.439 -3.37797 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0251311 0.0223296 131 79 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.93 vpr 64.09 MiB -1 -1 0.13 20248 1 0.03 -1 -1 34104 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65624 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 25.7 MiB 0.09 724 12416 3530 7132 1754 64.1 MiB 0.08 0.00 3.74649 -112.139 -3.74649 3.74649 0.88 0.000386134 0.00035357 0.0296708 0.0269823 32 1726 22 6.65987e+06 190170 554710. 1919.41 0.89 0.0771166 0.0679691 22834 132086 -1 1519 18 897 1350 107597 25022 2.71465 2.71465 -102.628 -2.71465 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.0160529 0.0142893 96 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.45 vpr 64.70 MiB -1 -1 0.17 20416 1 0.03 -1 -1 33420 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 26.2 MiB 0.28 989 15430 4612 8155 2663 64.7 MiB 0.13 0.00 4.41154 -133.367 -4.41154 4.41154 0.88 0.00052096 0.000473609 0.0412009 0.0375574 32 2429 22 6.65987e+06 380340 554710. 1919.41 1.01 0.109069 0.0964279 22834 132086 -1 2063 21 1487 2519 184259 42773 3.84791 3.84791 -129.508 -3.84791 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0264848 0.0235727 130 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.49 vpr 64.86 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33904 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 26.5 MiB 0.29 902 8685 2007 6399 279 64.9 MiB 0.10 0.00 4.76517 -143.598 -4.76517 4.76517 0.89 0.000571076 0.000521455 0.0300493 0.0274757 32 2497 24 6.65987e+06 253560 554710. 1919.41 1.04 0.107497 0.0949249 22834 132086 -1 2183 21 1883 2973 209659 50687 3.93397 3.93397 -140.255 -3.93397 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0284611 0.0253925 147 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.86 vpr 64.17 MiB -1 -1 0.14 20244 1 0.03 -1 -1 33928 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65712 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 25.8 MiB 0.22 946 12143 3182 7420 1541 64.2 MiB 0.09 0.00 4.15372 -120.605 -4.15372 4.15372 0.90 0.000427065 0.000390109 0.0306759 0.0280289 26 2395 43 6.65987e+06 240882 477104. 1650.88 1.60 0.110401 0.0976876 21682 110474 -1 2067 28 1364 1766 225074 80275 3.06105 3.06105 -114.874 -3.06105 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0248296 0.0219021 111 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.03 vpr 64.37 MiB -1 -1 0.13 20316 1 0.03 -1 -1 33792 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 25.8 MiB 0.10 732 8685 2467 5468 750 64.4 MiB 0.07 0.00 3.75938 -108.757 -3.75938 3.75938 0.89 0.000400444 0.000366713 0.0209799 0.0191907 30 1655 19 6.65987e+06 266238 526063. 1820.29 0.91 0.0695418 0.0611845 22546 126617 -1 1544 21 996 1668 101042 23801 2.51311 2.51311 -96.4545 -2.51311 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0190289 0.0168562 106 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.56 vpr 64.89 MiB -1 -1 0.17 20848 1 0.03 -1 -1 33792 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 26.3 MiB 0.15 1015 15533 4784 8284 2465 64.9 MiB 0.14 0.00 4.92983 -152.714 -4.92983 4.92983 0.89 0.000494647 0.000449561 0.0433768 0.0396963 28 3244 30 6.65987e+06 316950 500653. 1732.36 1.29 0.121748 0.107739 21970 115934 -1 2307 22 1749 2275 179013 42202 4.61143 4.61143 -159.431 -4.61143 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0249671 0.0221027 144 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.90 vpr 64.67 MiB -1 -1 0.15 20524 1 0.03 -1 -1 33936 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 26.3 MiB 0.44 1191 12305 3278 8039 988 64.7 MiB 0.11 0.00 4.93544 -150.743 -4.93544 4.93544 0.88 0.000521208 0.00047551 0.03329 0.030404 26 3110 25 6.65987e+06 354984 477104. 1650.88 1.34 0.109232 0.096318 21682 110474 -1 2621 25 1874 2959 275210 79170 4.19577 4.19577 -144.583 -4.19577 0 0 585099. 2024.56 0.26 0.10 0.11 -1 -1 0.26 0.0288836 0.0255347 151 53 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 9.12 vpr 64.90 MiB -1 -1 0.14 20416 1 0.03 -1 -1 33752 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.5 MiB 0.06 1117 11004 2566 7834 604 64.9 MiB 0.11 0.00 5.28255 -141.369 -5.28255 5.28255 0.90 0.000549976 0.000503935 0.0282797 0.025824 26 3370 49 6.65987e+06 456408 477104. 1650.88 5.96 0.21369 0.187565 21682 110474 -1 2670 20 1658 2923 254838 56451 4.40303 4.40303 -143.411 -4.40303 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0263358 0.0235489 153 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.13 vpr 64.22 MiB -1 -1 0.16 20192 1 0.03 -1 -1 33884 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65764 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 25.8 MiB 0.23 750 7863 1674 5072 1117 64.2 MiB 0.07 0.00 3.28175 -94.6726 -3.28175 3.28175 0.88 0.000444798 0.00040478 0.0190662 0.0173869 30 1756 22 6.65987e+06 393018 526063. 1820.29 0.90 0.0762009 0.0665605 22546 126617 -1 1506 19 933 1598 77376 19176 2.62125 2.62125 -90.575 -2.62125 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0202408 0.0179056 120 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.94 vpr 64.42 MiB -1 -1 0.14 20276 1 0.03 -1 -1 34060 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65964 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 26.0 MiB 0.05 638 11948 3525 6694 1729 64.4 MiB 0.08 0.00 3.4543 -94.1654 -3.4543 3.4543 0.88 0.000388733 0.000355256 0.0293959 0.0268616 28 1599 22 6.65987e+06 266238 500653. 1732.36 0.89 0.0781612 0.0688563 21970 115934 -1 1335 20 856 1254 87240 20842 2.77577 2.77577 -90.3712 -2.77577 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0180868 0.0160349 97 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 6.83 vpr 64.87 MiB -1 -1 0.17 20816 1 0.03 -1 -1 33964 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 26.8 MiB 0.16 1319 10542 2869 6884 789 64.9 MiB 0.11 0.00 4.22384 -138.261 -4.22384 4.22384 0.87 0.000601108 0.000547526 0.0340018 0.0310114 28 3615 24 6.65987e+06 329628 500653. 1732.36 3.52 0.204288 0.178252 21970 115934 -1 3006 22 1865 2973 215904 49606 3.64757 3.64757 -137.164 -3.64757 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0286205 0.0253627 170 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.09 vpr 64.61 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33912 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 26.0 MiB 0.96 967 9417 2580 6478 359 64.6 MiB 0.09 0.00 5.3126 -152.671 -5.3126 5.3126 0.89 0.00054706 0.000498744 0.0299544 0.02731 30 2413 22 6.65987e+06 266238 526063. 1820.29 1.00 0.0987139 0.0867924 22546 126617 -1 1915 21 1038 1600 92361 21367 4.28602 4.28602 -139.252 -4.28602 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.024858 0.0220334 150 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.05 vpr 64.69 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33792 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 26.2 MiB 1.03 910 12186 3808 6300 2078 64.7 MiB 0.10 0.00 4.17204 -128.915 -4.17204 4.17204 0.89 0.00048288 0.000440088 0.0355983 0.0325166 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.95 0.0977441 0.0862216 22546 126617 -1 1758 18 928 1406 83079 19030 3.13577 3.13577 -122.213 -3.13577 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0207301 0.0184965 126 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.15 vpr 64.73 MiB -1 -1 0.15 20356 1 0.03 -1 -1 33948 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 26.2 MiB 0.11 997 13726 4134 8495 1097 64.7 MiB 0.12 0.00 4.87399 -127.071 -4.87399 4.87399 0.89 0.000481363 0.000436762 0.0339313 0.0308901 30 2100 21 6.65987e+06 380340 526063. 1820.29 0.93 0.0969858 0.0855672 22546 126617 -1 1834 17 818 1333 78781 18665 3.24665 3.24665 -110.551 -3.24665 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0203988 0.0183144 126 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.39 vpr 64.97 MiB -1 -1 0.16 20756 1 0.03 -1 -1 33780 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 26.6 MiB 0.23 1094 9732 2284 6801 647 65.0 MiB 0.10 0.00 4.71929 -136.272 -4.71929 4.71929 0.90 0.000555884 0.000506794 0.0268662 0.0246028 26 2676 39 6.65987e+06 418374 477104. 1650.88 3.06 0.199508 0.175174 21682 110474 -1 2326 19 1471 2455 178546 41726 3.76783 3.76783 -132.157 -3.76783 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0253538 0.0225867 144 46 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.25 vpr 64.48 MiB -1 -1 0.15 20540 1 0.03 -1 -1 34124 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 26.1 MiB 0.15 968 12693 2914 8596 1183 64.5 MiB 0.11 0.00 3.66981 -110.801 -3.66981 3.66981 0.89 0.000481595 0.000438406 0.0305688 0.0278662 32 2261 19 6.65987e+06 393018 554710. 1919.41 0.96 0.0884951 0.0780084 22834 132086 -1 1967 20 1164 2022 141932 31880 2.86191 2.86191 -102.093 -2.86191 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0226223 0.0201233 124 46 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.49 vpr 65.18 MiB -1 -1 0.16 20672 1 0.03 -1 -1 33776 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 26.6 MiB 0.17 1162 15493 5220 7522 2751 65.2 MiB 0.13 0.00 4.81692 -150.127 -4.81692 4.81692 0.90 0.000447906 0.000408979 0.0407176 0.0371536 32 3110 26 6.65987e+06 304272 554710. 1919.41 1.06 0.111942 0.0989824 22834 132086 -1 2544 24 2121 3234 262327 57912 4.17571 4.17571 -147.371 -4.17571 0 0 701300. 2426.64 0.31 0.10 0.14 -1 -1 0.31 0.0293964 0.0261261 147 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.96 vpr 64.95 MiB -1 -1 0.14 20464 1 0.03 -1 -1 33756 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 26.6 MiB 0.38 1013 10448 2457 7443 548 65.0 MiB 0.10 0.00 4.61703 -140.056 -4.61703 4.61703 0.88 0.000538439 0.000487792 0.0265367 0.0240942 26 2952 23 6.65987e+06 431052 477104. 1650.88 1.55 0.10722 0.0946902 21682 110474 -1 2326 22 1350 2117 162283 37175 3.41651 3.41651 -129.627 -3.41651 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0261695 0.0230887 143 59 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.97 vpr 64.13 MiB -1 -1 0.14 20396 1 0.03 -1 -1 33804 -1 -1 17 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65672 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 25.7 MiB 0.13 669 12030 4965 6160 905 64.1 MiB 0.08 0.00 3.76255 -110.557 -3.76255 3.76255 0.86 0.000417242 0.000379871 0.029484 0.0269193 32 1475 20 6.65987e+06 215526 554710. 1919.41 0.88 0.0785965 0.0692783 22834 132086 -1 1382 19 921 1285 116578 25787 2.80197 2.80197 -99.1743 -2.80197 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0173496 0.0154056 92 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.27 vpr 64.69 MiB -1 -1 0.14 20348 1 0.03 -1 -1 33772 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 26.3 MiB 0.25 897 13992 5018 7267 1707 64.7 MiB 0.11 0.00 3.93547 -124.701 -3.93547 3.93547 0.92 0.000456503 0.00041486 0.0371667 0.0338442 28 2149 19 6.65987e+06 253560 500653. 1732.36 0.93 0.0963657 0.0852149 21970 115934 -1 1871 22 1402 1872 148824 33300 3.11557 3.11557 -115.482 -3.11557 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0215616 0.0191556 116 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.25 vpr 64.64 MiB -1 -1 0.17 20560 1 0.03 -1 -1 33680 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 26.1 MiB 0.10 945 14020 3581 8011 2428 64.6 MiB 0.11 0.00 4.66818 -124.475 -4.66818 4.66818 0.89 0.000490686 0.00044747 0.0322252 0.0293665 32 2224 21 6.65987e+06 469086 554710. 1919.41 0.99 0.0954997 0.0841624 22834 132086 -1 1970 23 1500 2561 184931 41768 3.57631 3.57631 -118.353 -3.57631 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0249156 0.0220551 129 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.70 vpr 64.36 MiB -1 -1 0.14 20308 1 0.03 -1 -1 33748 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 26.0 MiB 0.20 809 8448 1963 6049 436 64.4 MiB 0.07 0.00 4.16472 -111.492 -4.16472 4.16472 0.89 0.00040396 0.000370519 0.0213047 0.0195459 26 2404 34 6.65987e+06 266238 477104. 1650.88 1.54 0.0938857 0.0829991 21682 110474 -1 1953 21 1368 1776 170413 41923 3.16857 3.16857 -106.139 -3.16857 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0197541 0.0174691 110 25 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.28 vpr 64.28 MiB -1 -1 0.14 20036 1 0.03 -1 -1 33980 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65820 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 25.8 MiB 0.21 618 8852 1890 6315 647 64.3 MiB 0.07 0.00 3.69503 -110.464 -3.69503 3.69503 0.90 0.000431449 0.000394297 0.0242888 0.022253 32 2025 24 6.65987e+06 202848 554710. 1919.41 1.00 0.0821136 0.0721242 22834 132086 -1 1568 21 1327 2272 160443 39596 2.88191 2.88191 -106.381 -2.88191 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0205613 0.0182582 109 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.40 vpr 64.48 MiB -1 -1 0.15 20664 1 0.03 -1 -1 33952 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 26.0 MiB 0.25 938 16973 4485 9905 2583 64.5 MiB 0.14 0.00 4.16177 -122.328 -4.16177 4.16177 0.90 0.00053659 0.000491708 0.0436657 0.0398684 32 2086 22 6.65987e+06 443730 554710. 1919.41 0.97 0.113496 0.100509 22834 132086 -1 1855 19 1333 2075 132666 31802 2.96496 2.96496 -111.053 -2.96496 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0244141 0.0217758 135 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.18 vpr 64.46 MiB -1 -1 0.15 20472 1 0.03 -1 -1 33660 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 25.9 MiB 0.17 818 9872 2327 5876 1669 64.5 MiB 0.08 0.00 3.9535 -119.787 -3.9535 3.9535 0.90 0.00044378 0.000406393 0.0257439 0.0235764 28 2135 19 6.65987e+06 240882 500653. 1732.36 0.97 0.0785647 0.0694057 21970 115934 -1 1848 18 1008 1481 115769 26162 3.05777 3.05777 -111.219 -3.05777 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0173002 0.0153063 108 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 8.96 vpr 64.32 MiB -1 -1 0.15 20788 1 0.03 -1 -1 33952 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 25.8 MiB 0.28 854 7007 1324 4687 996 64.3 MiB 0.06 0.00 3.67932 -112.828 -3.67932 3.67932 0.91 0.000500723 0.000454082 0.0190544 0.0174076 26 2878 47 6.65987e+06 393018 477104. 1650.88 5.63 0.180209 0.15664 21682 110474 -1 2129 16 1129 1978 190866 57352 3.04511 3.04511 -112.46 -3.04511 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0213952 0.0192016 126 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.06 vpr 64.68 MiB -1 -1 0.17 20400 1 0.03 -1 -1 33864 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 26.4 MiB 0.93 956 13055 3385 8531 1139 64.7 MiB 0.11 0.00 4.2257 -136.613 -4.2257 4.2257 0.90 0.000572715 0.000522704 0.0351299 0.0319452 32 2142 21 6.65987e+06 405696 554710. 1919.41 0.94 0.105122 0.0925337 22834 132086 -1 1950 20 1403 1904 129517 30385 3.45123 3.45123 -132.174 -3.45123 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0256983 0.0229034 138 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.27 vpr 64.16 MiB -1 -1 0.14 20460 1 0.03 -1 -1 33680 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 25.6 MiB 0.25 770 8481 2112 5900 469 64.2 MiB 0.07 0.00 3.26384 -102.093 -3.26384 3.26384 0.93 0.000451163 0.000410602 0.0239105 0.0217922 30 1814 29 6.65987e+06 215526 526063. 1820.29 0.96 0.0881317 0.077233 22546 126617 -1 1464 17 761 1208 72569 16667 2.62051 2.62051 -96.4977 -2.62051 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0183042 0.0163108 104 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.13 vpr 64.43 MiB -1 -1 0.15 20628 1 0.03 -1 -1 33740 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65980 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 26.0 MiB 0.15 877 7823 1725 5526 572 64.4 MiB 0.07 0.00 4.21052 -129.412 -4.21052 4.21052 0.90 0.000461736 0.000423919 0.0215262 0.0196956 28 2168 19 6.65987e+06 240882 500653. 1732.36 0.96 0.0787772 0.0692487 21970 115934 -1 2030 21 1304 1913 146005 33733 3.07585 3.07585 -118.205 -3.07585 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0212255 0.0188474 115 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.39 vpr 64.88 MiB -1 -1 0.15 20716 1 0.03 -1 -1 33720 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 26.2 MiB 0.12 1033 8591 2028 5962 601 64.9 MiB 0.07 0.00 4.5425 -136.752 -4.5425 4.5425 0.88 0.000538258 0.000493416 0.0229967 0.0209636 26 2706 26 6.65987e+06 278916 477104. 1650.88 1.33 0.0936232 0.0823221 21682 110474 -1 2297 18 1566 2196 158849 37891 3.71871 3.71871 -131.764 -3.71871 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0202519 0.0180853 130 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.41 vpr 64.74 MiB -1 -1 0.15 20956 1 0.03 -1 -1 33984 -1 -1 28 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 26.3 MiB 0.42 878 11177 3323 6945 909 64.7 MiB 0.10 0.00 4.7062 -118.142 -4.7062 4.7062 0.91 0.000485986 0.000444136 0.0294506 0.0268996 30 1916 16 6.65987e+06 354984 526063. 1820.29 0.90 0.0871717 0.0769986 22546 126617 -1 1653 15 665 1217 61911 15512 3.29783 3.29783 -104.746 -3.29783 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0181811 0.0163102 121 49 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.40 vpr 64.64 MiB -1 -1 0.15 20828 1 0.03 -1 -1 33608 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 26.3 MiB 0.26 1007 9495 2407 6691 397 64.6 MiB 0.10 0.00 5.16517 -161.462 -5.16517 5.16517 0.89 0.000558154 0.000505928 0.030809 0.0281385 32 2658 22 6.65987e+06 291594 554710. 1919.41 1.00 0.101731 0.0895584 22834 132086 -1 2234 22 1802 2507 169937 41350 3.82117 3.82117 -143.64 -3.82117 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0256159 0.0226723 153 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.99 vpr 64.25 MiB -1 -1 0.14 20116 1 0.03 -1 -1 33488 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65792 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 25.9 MiB 0.09 794 9181 2203 6150 828 64.2 MiB 0.06 0.00 3.53041 -99.5418 -3.53041 3.53041 0.90 0.000379129 0.000344975 0.0210929 0.0192751 32 1764 19 6.65987e+06 228204 554710. 1919.41 0.90 0.0681511 0.0599665 22834 132086 -1 1564 17 692 1110 76497 18243 2.71371 2.71371 -96.112 -2.71371 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0161652 0.0144316 96 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.62 vpr 65.12 MiB -1 -1 0.17 20616 1 0.03 -1 -1 33900 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 26.8 MiB 0.47 947 7201 1402 5250 549 65.1 MiB 0.08 0.00 4.0805 -134.669 -4.0805 4.0805 0.89 0.00060069 0.000550682 0.0220595 0.0201561 32 2497 24 6.65987e+06 418374 554710. 1919.41 1.01 0.0988275 0.0867835 22834 132086 -1 2184 22 1638 2272 171887 40530 3.68557 3.68557 -133.353 -3.68557 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0286394 0.0253559 144 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.33 vpr 64.62 MiB -1 -1 0.15 20528 1 0.03 -1 -1 33756 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 26.2 MiB 0.22 692 9368 2494 5834 1040 64.6 MiB 0.09 0.00 3.5233 -119.857 -3.5233 3.5233 0.89 0.000525352 0.000479082 0.0308483 0.0281382 32 1730 23 6.65987e+06 202848 554710. 1919.41 0.98 0.0980736 0.0861207 22834 132086 -1 1559 23 1459 2083 162526 37135 2.97497 2.97497 -117.069 -2.97497 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0269032 0.0238053 115 93 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.41 vpr 64.48 MiB -1 -1 0.15 20540 1 0.03 -1 -1 33776 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 26.0 MiB 0.35 963 9383 2362 6118 903 64.5 MiB 0.09 0.00 4.19332 -127.565 -4.19332 4.19332 0.89 0.000518446 0.000473148 0.0253836 0.0232294 32 2293 25 6.65987e+06 393018 554710. 1919.41 0.96 0.0932865 0.0820236 22834 132086 -1 1851 21 1044 1529 88698 22539 3.09931 3.09931 -109.457 -3.09931 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0249405 0.0220526 130 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 11.87 vpr 65.05 MiB -1 -1 0.16 20504 1 0.03 -1 -1 33772 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66612 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 27.0 MiB 0.35 1323 16127 4193 10390 1544 65.1 MiB 0.17 0.00 6.49946 -194.782 -6.49946 6.49946 0.88 0.00058017 0.000527893 0.0494848 0.045156 28 3840 36 6.65987e+06 316950 500653. 1732.36 8.32 0.227936 0.200449 21970 115934 -1 2990 21 1959 2728 227624 50018 5.35994 5.35994 -179.572 -5.35994 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0290884 0.0260153 168 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.10 vpr 64.18 MiB -1 -1 0.13 20348 1 0.03 -1 -1 33792 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65724 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 25.8 MiB 0.18 701 10895 2966 6376 1553 64.2 MiB 0.07 0.00 3.19181 -99.2246 -3.19181 3.19181 0.90 0.000358455 0.00032723 0.0251323 0.0230013 32 1552 19 6.65987e+06 215526 554710. 1919.41 0.91 0.0692538 0.061087 22834 132086 -1 1399 21 714 923 72542 17195 2.17571 2.17571 -87.784 -2.17571 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0162845 0.0144193 86 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.12 vpr 64.38 MiB -1 -1 0.14 20108 1 0.03 -1 -1 34024 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 25.9 MiB 0.12 559 11200 4645 5368 1187 64.4 MiB 0.07 0.00 4.03052 -111.683 -4.03052 4.03052 0.88 0.000376606 0.000337674 0.0285447 0.0259148 32 1719 26 6.65987e+06 202848 554710. 1919.41 1.00 0.0851649 0.0745607 22834 132086 -1 1381 33 1516 2373 220958 51242 2.94085 2.94085 -104.913 -2.94085 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0272363 0.0237949 92 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.20 vpr 64.29 MiB -1 -1 0.15 20200 1 0.03 -1 -1 33632 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65836 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 26.0 MiB 0.05 882 13663 3967 7775 1921 64.3 MiB 0.12 0.00 3.38183 -111.047 -3.38183 3.38183 0.89 0.000455978 0.000417394 0.0358345 0.0326963 32 2232 25 6.65987e+06 266238 554710. 1919.41 1.00 0.0964517 0.0850311 22834 132086 -1 1983 21 1389 2472 214229 47394 2.78771 2.78771 -108.095 -2.78771 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0217256 0.0192488 115 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 6.85 vpr 64.02 MiB -1 -1 0.15 20352 1 0.03 -1 -1 33840 -1 -1 27 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65556 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 25.6 MiB 0.09 461 9234 2985 4025 2224 64.0 MiB 0.05 0.00 3.09981 -73.1644 -3.09981 3.09981 0.89 0.000341503 0.00031139 0.0191808 0.0175135 38 1143 33 6.65987e+06 342306 638502. 2209.35 3.75 0.118935 0.102752 23986 155662 -1 888 17 513 851 43957 11516 2.24185 2.24185 -63.6531 -2.24185 0 0 851065. 2944.86 0.34 0.03 0.15 -1 -1 0.34 0.0139909 0.0124441 89 19 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.45 vpr 64.64 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33972 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 26.1 MiB 0.19 1082 15273 5386 7964 1923 64.6 MiB 0.15 0.00 3.97418 -128.905 -3.97418 3.97418 0.90 0.000529054 0.000483291 0.047631 0.0434835 32 2803 23 6.65987e+06 253560 554710. 1919.41 1.03 0.117462 0.10407 22834 132086 -1 2459 23 1634 2959 236870 51536 3.44305 3.44305 -126.805 -3.44305 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0288212 0.0255762 135 69 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.55 vpr 64.97 MiB -1 -1 0.18 20496 1 0.03 -1 -1 33692 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 26.5 MiB 0.41 841 9951 2183 7152 616 65.0 MiB 0.10 0.00 4.37472 -138.365 -4.37472 4.37472 0.91 0.000586659 0.000535695 0.0289111 0.0264068 32 2335 20 6.65987e+06 418374 554710. 1919.41 0.99 0.100608 0.0886003 22834 132086 -1 1838 17 1307 1888 108740 27817 3.30177 3.30177 -122.786 -3.30177 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0229758 0.0204191 142 86 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 9.05 vpr 65.30 MiB -1 -1 0.17 20484 1 0.03 -1 -1 33712 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 26.9 MiB 2.62 849 12139 5116 6732 291 65.3 MiB 0.10 0.00 5.4594 -159.287 -5.4594 5.4594 0.90 0.000530095 0.000481825 0.0392635 0.0358167 44 2778 24 6.95648e+06 188184 787024. 2723.27 3.06 0.16026 0.140817 27778 195446 -1 2100 22 1620 2390 205020 42905 4.50786 4.50786 -152.69 -4.50786 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.026191 0.0232501 81 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 8.06 vpr 65.69 MiB -1 -1 0.17 20512 1 0.03 -1 -1 33864 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67268 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 27.3 MiB 2.19 750 10998 3991 5243 1764 65.7 MiB 0.09 0.00 4.63092 -138.355 -4.63092 4.63092 0.91 0.000502878 0.000458118 0.0373991 0.0341549 40 2398 38 6.95648e+06 217135 706193. 2443.58 2.53 0.172818 0.151571 26914 176310 -1 2062 23 1948 2706 287194 61968 4.57081 4.57081 -154.872 -4.57081 0 0 926341. 3205.33 0.36 0.10 0.17 -1 -1 0.36 0.0280095 0.024913 80 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 7.80 vpr 64.97 MiB -1 -1 0.14 20540 1 0.03 -1 -1 33956 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 26.6 MiB 1.31 1011 6839 1853 4585 401 65.0 MiB 0.06 0.00 3.76508 -124.296 -3.76508 3.76508 0.93 0.000446599 0.000407219 0.0209668 0.0192209 38 2570 30 6.95648e+06 217135 678818. 2348.85 3.27 0.139765 0.122892 26626 170182 -1 2196 20 1226 1684 137441 28682 3.69172 3.69172 -129.324 -3.69172 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0220366 0.0196492 76 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 6.47 vpr 65.45 MiB -1 -1 0.15 20396 1 0.03 -1 -1 33924 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 26.9 MiB 0.37 653 13152 5791 6666 695 65.4 MiB 0.09 0.00 4.18338 -115.281 -4.18338 4.18338 0.91 0.000477531 0.000433615 0.0357741 0.0325162 46 2265 28 6.95648e+06 275038 828058. 2865.25 2.85 0.150496 0.132099 28066 200906 -1 1624 19 1137 1874 144677 33493 3.65242 3.65242 -117.329 -3.65242 0 0 1.01997e+06 3529.29 0.39 0.06 0.18 -1 -1 0.39 0.0197459 0.0175429 71 25 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 7.08 vpr 65.14 MiB -1 -1 0.16 20228 1 0.03 -1 -1 33392 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 26.8 MiB 0.90 735 12120 5042 6627 451 65.1 MiB 0.09 0.00 4.33299 -127.984 -4.33299 4.33299 0.92 0.000454331 0.000415368 0.0378423 0.0345175 46 2384 49 6.95648e+06 231611 828058. 2865.25 2.80 0.156463 0.137406 28066 200906 -1 1865 19 1283 2160 165504 35743 4.11991 4.11991 -134.678 -4.11991 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0220364 0.0196094 73 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 9.02 vpr 65.22 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33948 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 26.8 MiB 1.08 762 14779 6278 7942 559 65.2 MiB 0.10 0.00 3.0584 -114.242 -3.0584 3.0584 0.93 0.000564679 0.000516546 0.0443612 0.0404257 46 2130 23 6.95648e+06 303989 828058. 2865.25 4.55 0.221481 0.192947 28066 200906 -1 1614 21 1350 1975 141226 31692 3.17337 3.17337 -118.004 -3.17337 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.025398 0.0225819 79 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.31 vpr 64.96 MiB -1 -1 0.16 20112 1 0.03 -1 -1 33988 -1 -1 13 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 26.6 MiB 5.11 400 8118 3296 4253 569 65.0 MiB 0.05 0.00 3.56899 -93.1575 -3.56899 3.56899 0.94 0.000385867 0.000351571 0.0232018 0.0211858 40 1513 27 6.95648e+06 188184 706193. 2443.58 1.98 0.112342 0.0979473 26914 176310 -1 1345 20 1051 1528 151147 38012 3.12397 3.12397 -102.326 -3.12397 0 0 926341. 3205.33 0.34 0.06 0.16 -1 -1 0.34 0.0184405 0.0163102 52 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 6.52 vpr 65.14 MiB -1 -1 0.16 20188 1 0.03 -1 -1 34012 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 26.5 MiB 0.44 691 11983 4028 5840 2115 65.1 MiB 0.08 0.00 3.0166 -94.5957 -3.0166 3.0166 0.91 0.000417242 0.000379465 0.0279262 0.0254513 38 2198 34 6.95648e+06 361892 678818. 2348.85 2.88 0.130855 0.113728 26626 170182 -1 1562 21 1128 1795 124372 27855 2.92072 2.92072 -102.496 -2.92072 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0208351 0.0185236 69 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 10.43 vpr 65.14 MiB -1 -1 0.16 20700 1 0.03 -1 -1 34004 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 26.6 MiB 2.11 579 9684 3905 5251 528 65.1 MiB 0.07 0.00 3.39469 -115.112 -3.39469 3.39469 0.91 0.000493013 0.000441143 0.0312721 0.0285532 48 1811 26 6.95648e+06 159232 865456. 2994.66 4.97 0.191199 0.165534 28354 207349 -1 1465 22 1268 1776 142283 33598 3.24576 3.24576 -115.708 -3.24576 0 0 1.05005e+06 3633.38 0.41 0.06 0.20 -1 -1 0.41 0.022915 0.0203432 66 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.17 vpr 65.20 MiB -1 -1 0.15 20448 1 0.03 -1 -1 33936 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 26.7 MiB 1.09 566 8134 3343 4546 245 65.2 MiB 0.06 0.00 3.30928 -114.291 -3.30928 3.30928 0.92 0.000432739 0.000397211 0.0260596 0.0238173 42 1921 24 6.95648e+06 144757 744469. 2576.02 1.83 0.125227 0.109205 27202 183097 -1 1447 19 1086 1482 106699 25377 2.97372 2.97372 -113.7 -2.97372 0 0 949917. 3286.91 0.37 0.05 0.18 -1 -1 0.37 0.0205149 0.0183021 59 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.99 vpr 65.11 MiB -1 -1 0.16 20316 1 0.03 -1 -1 33688 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 26.7 MiB 1.89 471 10304 4280 5549 475 65.1 MiB 0.07 0.00 3.43453 -102.366 -3.43453 3.43453 0.92 0.00044187 0.000402588 0.0310724 0.0283889 44 1644 41 6.95648e+06 173708 787024. 2723.27 1.82 0.134992 0.117216 27778 195446 -1 1210 19 1006 1391 107894 26111 2.87247 2.87247 -102.182 -2.87247 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0197255 0.0175132 55 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 8.26 vpr 65.06 MiB -1 -1 0.15 20196 1 0.03 -1 -1 33752 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 26.6 MiB 1.57 590 10614 3394 4881 2339 65.1 MiB 0.07 0.00 3.37833 -114.652 -3.37833 3.37833 0.93 0.000419608 0.000382322 0.0314832 0.028765 48 2065 26 6.95648e+06 144757 865456. 2994.66 3.31 0.12774 0.111748 28354 207349 -1 1594 22 1339 1737 177767 43429 2.98202 2.98202 -113.691 -2.98202 0 0 1.05005e+06 3633.38 0.42 0.07 0.20 -1 -1 0.42 0.0216897 0.0192871 62 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 10.66 vpr 65.58 MiB -1 -1 0.17 20692 1 0.03 -1 -1 33620 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67152 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 27.2 MiB 1.92 833 13261 5618 7295 348 65.6 MiB 0.10 0.00 3.96008 -134.144 -3.96008 3.96008 0.92 0.000517619 0.000469135 0.042897 0.0391338 50 2529 26 6.95648e+06 217135 902133. 3121.57 5.30 0.214813 0.18725 28642 213929 -1 2081 20 1634 2343 195756 41013 3.35556 3.35556 -131.645 -3.35556 0 0 1.08113e+06 3740.92 0.40 0.07 0.21 -1 -1 0.40 0.0246519 0.0220725 83 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 8.46 vpr 65.60 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33648 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 27.2 MiB 0.93 789 9158 3216 4675 1267 65.6 MiB 0.07 0.00 4.48063 -134.265 -4.48063 4.48063 0.92 0.000520495 0.00047356 0.027886 0.0254641 46 2203 26 6.95648e+06 318465 828058. 2865.25 4.17 0.211116 0.18378 28066 200906 -1 1694 24 1812 2595 197759 43223 4.00836 4.00836 -134.618 -4.00836 0 0 1.01997e+06 3529.29 0.39 0.08 0.19 -1 -1 0.39 0.0276337 0.024474 75 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 7.04 vpr 64.93 MiB -1 -1 0.16 20272 1 0.03 -1 -1 33480 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 26.4 MiB 1.43 470 8444 3456 4562 426 64.9 MiB 0.06 0.00 3.10275 -88.0296 -3.10275 3.10275 0.93 0.000396814 0.000362521 0.0231537 0.0211814 40 2005 31 6.95648e+06 188184 706193. 2443.58 2.37 0.117067 0.102166 26914 176310 -1 1534 23 1125 1652 175061 53068 3.19337 3.19337 -104.765 -3.19337 0 0 926341. 3205.33 0.34 0.07 0.18 -1 -1 0.34 0.0196541 0.0173297 55 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 9.20 vpr 65.40 MiB -1 -1 0.14 20380 1 0.03 -1 -1 33776 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 26.9 MiB 1.11 736 13381 4767 6091 2523 65.4 MiB 0.09 0.00 3.0625 -113.087 -3.0625 3.0625 0.91 0.000490878 0.000443623 0.0403828 0.0366381 46 2125 28 6.95648e+06 246087 828058. 2865.25 4.80 0.214918 0.185607 28066 200906 -1 1730 22 1527 2399 181497 42649 3.74967 3.74967 -124.464 -3.74967 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0252722 0.0223378 76 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 7.56 vpr 65.48 MiB -1 -1 0.15 20788 1 0.03 -1 -1 33960 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67056 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 27.1 MiB 2.06 821 11698 3981 5913 1804 65.5 MiB 0.10 0.00 4.42651 -139.682 -4.42651 4.42651 0.93 0.000497906 0.000453588 0.0381088 0.0348267 38 2675 39 6.95648e+06 202660 678818. 2348.85 2.21 0.144947 0.127327 26626 170182 -1 1811 21 1515 2020 132332 30505 3.72352 3.72352 -135.958 -3.72352 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0244161 0.0216909 79 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 6.67 vpr 65.12 MiB -1 -1 0.16 20152 1 0.03 -1 -1 33360 -1 -1 9 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 26.6 MiB 0.80 568 11625 5013 6229 383 65.1 MiB 0.08 0.00 2.28966 -90.0891 -2.28966 2.28966 0.91 0.00046767 0.000425099 0.0378866 0.0344799 46 1756 36 6.95648e+06 130281 828058. 2865.25 2.52 0.136827 0.11968 28066 200906 -1 1389 19 1155 1674 145929 33652 2.63568 2.63568 -100.632 -2.63568 0 0 1.01997e+06 3529.29 0.40 0.06 0.20 -1 -1 0.40 0.0211115 0.0187228 57 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.41 vpr 64.33 MiB -1 -1 0.15 20236 1 0.03 -1 -1 33732 -1 -1 9 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 26.0 MiB 0.40 438 9707 4039 5351 317 64.3 MiB 0.06 0.00 2.22846 -79.3536 -2.22846 2.22846 0.92 0.000347825 0.000317353 0.0250155 0.0228529 38 1481 49 6.95648e+06 130281 678818. 2348.85 1.85 0.121404 0.10557 26626 170182 -1 1061 20 614 712 71220 16884 2.33013 2.33013 -81.3837 -2.33013 0 0 902133. 3121.57 0.34 0.04 0.16 -1 -1 0.34 0.0162541 0.0143867 43 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 10.00 vpr 64.93 MiB -1 -1 0.15 20308 1 0.03 -1 -1 33904 -1 -1 12 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 26.4 MiB 2.30 900 8449 3439 4770 240 64.9 MiB 0.06 0.00 4.11557 -135.517 -4.11557 4.11557 0.91 0.000372803 0.000337996 0.0244584 0.0222841 40 2181 21 6.95648e+06 173708 706193. 2443.58 4.51 0.169684 0.147127 26914 176310 -1 1992 22 1613 2157 226592 45321 3.91426 3.91426 -139.471 -3.91426 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0225473 0.0199798 69 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 7.45 vpr 65.57 MiB -1 -1 0.17 20636 1 0.03 -1 -1 33872 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 27.2 MiB 0.79 691 13626 5075 6512 2039 65.6 MiB 0.09 0.00 3.69419 -120.83 -3.69419 3.69419 0.93 0.00052818 0.000484085 0.0404926 0.0368961 44 2266 33 6.95648e+06 289514 787024. 2723.27 3.30 0.16929 0.148666 27778 195446 -1 1704 27 1869 2560 192832 46024 3.96461 3.96461 -128.435 -3.96461 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0292907 0.0257673 75 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 10.66 vpr 65.65 MiB -1 -1 0.17 20440 1 0.03 -1 -1 33744 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 27.2 MiB 1.48 803 10868 4396 5912 560 65.7 MiB 0.09 0.00 4.7576 -138.082 -4.7576 4.7576 0.94 0.000539633 0.000491244 0.0376173 0.034377 52 2898 49 6.95648e+06 202660 926341. 3205.33 5.70 0.234087 0.203574 29218 227130 -1 1949 21 1544 2374 198135 44856 4.30102 4.30102 -139.902 -4.30102 0 0 1.14541e+06 3963.36 0.43 0.08 0.22 -1 -1 0.43 0.0274503 0.0245277 82 59 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 5.36 vpr 64.48 MiB -1 -1 0.13 19880 1 0.02 -1 -1 33852 -1 -1 13 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 26.1 MiB 0.94 416 8539 3544 4471 524 64.5 MiB 0.04 0.00 2.23646 -66.7931 -2.23646 2.23646 0.88 0.000263319 0.000238953 0.01738 0.015841 34 1152 47 6.95648e+06 188184 618332. 2139.56 1.44 0.089208 0.0771018 25762 151098 -1 988 17 605 766 68818 15227 2.23768 2.23768 -73.5335 -2.23768 0 0 787024. 2723.27 0.32 0.04 0.15 -1 -1 0.32 0.0123683 0.0109967 44 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 6.94 vpr 64.82 MiB -1 -1 0.15 20056 1 0.03 -1 -1 33928 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 26.3 MiB 0.86 670 9543 3600 4533 1410 64.8 MiB 0.07 0.00 4.68425 -117.235 -4.68425 4.68425 0.92 0.000433971 0.000395048 0.0275237 0.0251497 44 2456 40 6.95648e+06 217135 787024. 2723.27 2.78 0.131157 0.11526 27778 195446 -1 1660 19 1265 2070 156131 39900 3.85601 3.85601 -120.654 -3.85601 0 0 997811. 3452.63 0.38 0.06 0.17 -1 -1 0.38 0.0203603 0.018116 66 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.20 vpr 64.71 MiB -1 -1 0.12 19792 1 0.03 -1 -1 33468 -1 -1 8 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 26.3 MiB 0.31 360 10055 3887 4514 1654 64.7 MiB 0.05 0.00 2.15326 -68.8392 -2.15326 2.15326 0.91 0.000282396 0.000256489 0.0207279 0.0188478 38 1061 21 6.95648e+06 115805 678818. 2348.85 1.81 0.0876066 0.0764292 26626 170182 -1 856 18 639 743 50732 13412 2.21378 2.21378 -75.1525 -2.21378 0 0 902133. 3121.57 0.34 0.03 0.16 -1 -1 0.34 0.013094 0.0116884 42 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 8.24 vpr 65.20 MiB -1 -1 0.15 20324 1 0.03 -1 -1 33500 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 26.7 MiB 1.10 746 14106 6043 7637 426 65.2 MiB 0.10 0.00 4.49111 -123.956 -4.49111 4.49111 0.93 0.000459279 0.0004192 0.0411893 0.0376583 38 2858 40 6.95648e+06 217135 678818. 2348.85 3.86 0.161015 0.142388 26626 170182 -1 1958 20 1322 2077 204584 45406 3.88096 3.88096 -125.216 -3.88096 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0225736 0.0201293 68 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 8.97 vpr 65.44 MiB -1 -1 0.15 20204 1 0.03 -1 -1 33660 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67008 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 26.8 MiB 0.58 675 10873 4420 6034 419 65.4 MiB 0.08 0.00 2.9573 -100.116 -2.9573 2.9573 0.92 0.000462913 0.000422045 0.0292494 0.0266815 46 2093 50 6.95648e+06 303989 828058. 2865.25 5.05 0.198695 0.172421 28066 200906 -1 1505 24 1382 2103 153787 35418 3.03882 3.03882 -108.679 -3.03882 0 0 1.01997e+06 3529.29 0.41 0.07 0.20 -1 -1 0.41 0.0250442 0.0222037 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 6.99 vpr 65.43 MiB -1 -1 0.15 20796 1 0.03 -1 -1 33872 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 27.0 MiB 0.81 795 15383 6700 8206 477 65.4 MiB 0.11 0.00 4.43549 -130.994 -4.43549 4.43549 0.95 0.000468103 0.000431331 0.0450466 0.0409989 48 2092 29 6.95648e+06 275038 865456. 2994.66 2.77 0.166769 0.146597 28354 207349 -1 1795 22 1236 2056 165591 37261 3.80591 3.80591 -130.105 -3.80591 0 0 1.05005e+06 3633.38 0.42 0.07 0.20 -1 -1 0.42 0.0247178 0.0218623 72 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 8.28 vpr 64.99 MiB -1 -1 0.14 20152 1 0.03 -1 -1 33700 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 26.6 MiB 1.04 836 12164 3915 6903 1346 65.0 MiB 0.08 0.00 3.08875 -104.395 -3.08875 3.08875 0.90 0.000370172 0.000338845 0.033401 0.0304819 38 2054 21 6.95648e+06 144757 678818. 2348.85 4.07 0.173165 0.150287 26626 170182 -1 1837 18 886 1354 126118 25389 3.02302 3.02302 -114.587 -3.02302 0 0 902133. 3121.57 0.34 0.05 0.17 -1 -1 0.34 0.0187429 0.0166674 55 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 7.60 vpr 65.05 MiB -1 -1 0.15 20296 1 0.03 -1 -1 33596 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 26.7 MiB 0.23 486 10916 4488 5855 573 65.1 MiB 0.07 0.00 3.37953 -96.5612 -3.37953 3.37953 0.87 0.00039435 0.000360347 0.0266269 0.0242609 42 1738 31 6.95648e+06 260562 744469. 2576.02 4.21 0.170114 0.147061 27202 183097 -1 1225 18 886 1222 106438 28327 2.85672 2.85672 -97.7201 -2.85672 0 0 949917. 3286.91 0.36 0.05 0.17 -1 -1 0.36 0.0174105 0.0154595 57 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 6.04 vpr 65.16 MiB -1 -1 0.15 20200 1 0.03 -1 -1 33472 -1 -1 16 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 26.8 MiB 0.55 447 10796 4457 5651 688 65.2 MiB 0.07 0.00 2.9532 -88.5671 -2.9532 2.9532 0.92 0.000400449 0.000368251 0.0289862 0.0264984 44 1895 36 6.95648e+06 231611 787024. 2723.27 2.23 0.118909 0.104679 27778 195446 -1 1197 20 998 1532 108720 27757 2.78922 2.78922 -94.3932 -2.78922 0 0 997811. 3452.63 0.39 0.05 0.19 -1 -1 0.39 0.019027 0.0168858 57 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 8.74 vpr 65.02 MiB -1 -1 0.13 20156 1 0.03 -1 -1 33492 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 26.6 MiB 0.49 490 8754 2672 4372 1710 65.0 MiB 0.05 0.00 3.37459 -106.603 -3.37459 3.37459 0.88 0.000347734 0.000317389 0.0229824 0.0209953 52 1349 34 6.95648e+06 144757 926341. 3205.33 5.04 0.152828 0.132553 29218 227130 -1 1114 21 1103 1579 114360 28737 2.88157 2.88157 -104.561 -2.88157 0 0 1.14541e+06 3963.36 0.43 0.05 0.21 -1 -1 0.43 0.0189791 0.0168535 58 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 6.79 vpr 65.19 MiB -1 -1 0.14 20268 1 0.03 -1 -1 33492 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 26.7 MiB 0.44 514 10050 3328 4861 1861 65.2 MiB 0.06 0.00 3.16614 -99.0057 -3.16614 3.16614 0.91 0.000385321 0.000346629 0.0244657 0.0220605 44 1932 39 6.95648e+06 275038 787024. 2723.27 3.06 0.137634 0.120103 27778 195446 -1 1339 24 1230 1923 229518 85397 2.94462 2.94462 -105.107 -2.94462 0 0 997811. 3452.63 0.40 0.09 0.18 -1 -1 0.40 0.0223265 0.0196544 61 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 14.83 vpr 65.25 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33696 -1 -1 12 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 26.7 MiB 1.24 761 12537 5784 6209 544 65.2 MiB 0.08 0.00 2.98425 -104.866 -2.98425 2.98425 0.92 0.000417186 0.000380594 0.0371095 0.0339368 40 1951 35 6.95648e+06 173708 706193. 2443.58 10.35 0.240487 0.210056 26914 176310 -1 1632 19 1072 1486 183744 40499 2.73002 2.73002 -103.333 -2.73002 0 0 926341. 3205.33 0.36 0.06 0.16 -1 -1 0.36 0.0190848 0.016941 61 48 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 7.83 vpr 65.54 MiB -1 -1 0.16 20784 1 0.03 -1 -1 33460 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 27.1 MiB 0.90 827 14593 4666 7411 2516 65.5 MiB 0.11 0.00 4.22723 -122.469 -4.22723 4.22723 0.92 0.000530264 0.000483021 0.0442362 0.0402598 40 2898 29 6.95648e+06 303989 706193. 2443.58 3.58 0.177638 0.156433 26914 176310 -1 2212 23 1637 2779 247978 54617 4.10856 4.10856 -135.648 -4.10856 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0284102 0.0251861 84 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 7.30 vpr 65.31 MiB -1 -1 0.17 20500 1 0.03 -1 -1 33936 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66876 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 26.8 MiB 1.05 745 13738 4997 6870 1871 65.3 MiB 0.10 0.00 3.2962 -117.206 -3.2962 3.2962 0.93 0.000478788 0.000433482 0.0402864 0.0365295 40 2441 27 6.95648e+06 347416 706193. 2443.58 2.91 0.174111 0.152558 26914 176310 -1 2016 22 1949 2778 252661 56579 3.50372 3.50372 -130.751 -3.50372 0 0 926341. 3205.33 0.35 0.09 0.18 -1 -1 0.35 0.0274613 0.0243324 82 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 9.60 vpr 65.06 MiB -1 -1 0.16 20148 1 0.03 -1 -1 34060 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 26.6 MiB 2.06 860 8754 2885 4850 1019 65.1 MiB 0.07 0.00 4.04047 -132.719 -4.04047 4.04047 0.93 0.000421775 0.000385087 0.0263101 0.0240897 44 2027 31 6.95648e+06 159232 787024. 2723.27 4.22 0.173309 0.150703 27778 195446 -1 1813 21 1110 1529 132053 26338 3.56322 3.56322 -130.449 -3.56322 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0210757 0.0187262 63 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 6.71 vpr 64.98 MiB -1 -1 0.16 20456 1 0.03 -1 -1 33860 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 26.6 MiB 0.83 747 9036 3143 4486 1407 65.0 MiB 0.07 0.00 3.76434 -122.812 -3.76434 3.76434 0.92 0.00054272 0.000492322 0.0292368 0.0265939 38 2983 41 6.95648e+06 231611 678818. 2348.85 2.63 0.156452 0.136912 26626 170182 -1 1920 21 1589 2334 190137 42056 3.83572 3.83572 -127.733 -3.83572 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0265142 0.0235636 76 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 11.63 vpr 65.52 MiB -1 -1 0.16 20676 1 0.03 -1 -1 33756 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67096 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 26.9 MiB 2.33 943 12585 5266 6878 441 65.5 MiB 0.10 0.00 5.54066 -172.627 -5.54066 5.54066 0.92 0.000549668 0.000501733 0.0429165 0.039195 56 2573 26 6.95648e+06 231611 973134. 3367.25 5.75 0.262448 0.229544 29794 239141 -1 2149 23 2164 3113 326462 68110 5.0776 5.0776 -172.61 -5.0776 0 0 1.19926e+06 4149.71 0.46 0.10 0.24 -1 -1 0.46 0.0298106 0.0266291 97 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 8.72 vpr 65.83 MiB -1 -1 0.16 20520 1 0.03 -1 -1 33972 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67412 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 27.3 MiB 2.79 938 15120 6700 8021 399 65.8 MiB 0.12 0.00 4.47954 -148.558 -4.47954 4.47954 0.93 0.000550559 0.000494899 0.0518372 0.0473671 40 2977 25 6.95648e+06 231611 706193. 2443.58 2.58 0.185891 0.164327 26914 176310 -1 2471 20 1757 2550 249964 52119 4.78676 4.78676 -162.397 -4.78676 0 0 926341. 3205.33 0.36 0.08 0.16 -1 -1 0.36 0.0265549 0.0237015 88 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.61 vpr 65.19 MiB -1 -1 0.15 20580 1 0.03 -1 -1 33916 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 26.7 MiB 1.15 806 12733 4192 6306 2235 65.2 MiB 0.09 0.00 4.14583 -131.471 -4.14583 4.14583 0.88 0.000501942 0.000457351 0.0370142 0.0339269 44 2580 41 6.95648e+06 318465 787024. 2723.27 5.24 0.276151 0.241497 27778 195446 -1 1877 20 1310 1980 158921 34446 3.55827 3.55827 -129.134 -3.55827 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0236445 0.021082 78 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 6.98 vpr 64.98 MiB -1 -1 0.16 20292 1 0.03 -1 -1 33816 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 26.4 MiB 1.39 717 8212 2161 5077 974 65.0 MiB 0.07 0.00 4.19005 -113.386 -4.19005 4.19005 0.91 0.000439446 0.00040162 0.0242029 0.0221604 46 1942 38 6.95648e+06 202660 828058. 2865.25 2.30 0.122531 0.107962 28066 200906 -1 1539 18 1104 1571 122247 26899 4.11171 4.11171 -112.642 -4.11171 0 0 1.01997e+06 3529.29 0.39 0.05 0.20 -1 -1 0.39 0.0198715 0.0178305 71 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 8.04 vpr 65.89 MiB -1 -1 0.18 20828 1 0.03 -1 -1 34024 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67472 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 27.3 MiB 1.61 969 15017 6294 8197 526 65.9 MiB 0.13 0.00 4.79262 -158.033 -4.79262 4.79262 0.92 0.00061599 0.000559883 0.0528982 0.0482523 44 3004 31 6.95648e+06 318465 787024. 2723.27 2.98 0.185205 0.164233 27778 195446 -1 2405 22 1887 2737 214564 46299 4.79321 4.79321 -170.997 -4.79321 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0317943 0.0283177 93 84 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 8.49 vpr 65.07 MiB -1 -1 0.16 20288 1 0.03 -1 -1 33756 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 26.7 MiB 0.84 451 10702 3732 4796 2174 65.1 MiB 0.07 0.00 3.25706 -97.1743 -3.25706 3.25706 0.94 0.000408728 0.000373226 0.0285033 0.0260116 42 1868 35 6.95648e+06 217135 744469. 2576.02 4.37 0.168402 0.145622 27202 183097 -1 1192 34 1368 1970 146199 37137 3.39987 3.39987 -104.41 -3.39987 0 0 949917. 3286.91 0.36 0.07 0.18 -1 -1 0.36 0.0274713 0.0240249 56 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 19.90 vpr 65.28 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33580 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 26.8 MiB 1.45 1043 13358 5192 6540 1626 65.3 MiB 0.11 0.00 4.83562 -153.036 -4.83562 4.83562 0.92 0.00049756 0.0004538 0.0430263 0.0393232 40 2908 41 6.95648e+06 217135 706193. 2443.58 15.11 0.274088 0.238836 26914 176310 -1 2542 19 1727 2534 265189 51613 4.58201 4.58201 -157.296 -4.58201 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0226925 0.0202058 84 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 9.46 vpr 65.59 MiB -1 -1 0.16 20580 1 0.03 -1 -1 33904 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 27.1 MiB 1.15 832 15481 6850 8276 355 65.6 MiB 0.11 0.00 3.22585 -113.908 -3.22585 3.22585 0.94 0.000500221 0.000454955 0.047262 0.0429843 44 2391 28 6.95648e+06 246087 787024. 2723.27 4.94 0.233932 0.203644 27778 195446 -1 1981 25 1531 2524 192733 42430 3.15412 3.15412 -117.826 -3.15412 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0277674 0.0246042 73 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 7.17 vpr 65.12 MiB -1 -1 0.15 20288 1 0.03 -1 -1 34020 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 26.6 MiB 1.12 692 9712 3251 4487 1974 65.1 MiB 0.07 0.00 4.55274 -121.613 -4.55274 4.55274 0.91 0.000452004 0.000412726 0.0280018 0.0256536 44 2409 26 6.95648e+06 231611 787024. 2723.27 2.77 0.145784 0.128876 27778 195446 -1 1628 24 1132 1964 152907 34365 4.40427 4.40427 -132.423 -4.40427 0 0 997811. 3452.63 0.39 0.07 0.18 -1 -1 0.39 0.0244083 0.021652 68 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 10.44 vpr 65.63 MiB -1 -1 0.14 20680 1 0.03 -1 -1 33576 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 27.2 MiB 2.79 796 11532 3820 5366 2346 65.6 MiB 0.09 0.00 4.43423 -134.57 -4.43423 4.43423 0.92 0.000444328 0.000405404 0.0358381 0.0326148 44 2218 24 6.95648e+06 202660 787024. 2723.27 4.35 0.203936 0.177462 27778 195446 -1 1762 22 1355 1831 131726 29496 3.76266 3.76266 -133.448 -3.76266 0 0 997811. 3452.63 0.40 0.06 0.18 -1 -1 0.40 0.0250856 0.0222726 78 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 10.32 vpr 65.56 MiB -1 -1 0.16 20760 1 0.03 -1 -1 33944 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 27.2 MiB 1.95 763 10406 4042 5595 769 65.6 MiB 0.08 0.00 3.235 -115.411 -3.235 3.235 0.93 0.000514083 0.000467866 0.0337264 0.0308627 38 2855 46 6.95648e+06 246087 678818. 2348.85 5.08 0.19025 0.167468 26626 170182 -1 2142 20 1537 2371 191337 42253 3.59617 3.59617 -130.946 -3.59617 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0254424 0.0226923 75 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 7.07 vpr 65.48 MiB -1 -1 0.17 20372 1 0.03 -1 -1 34016 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 27.0 MiB 0.95 832 13758 4740 6643 2375 65.5 MiB 0.11 0.00 4.17869 -135.166 -4.17869 4.17869 0.91 0.000560111 0.000509726 0.0401195 0.0365418 46 2399 24 6.95648e+06 376368 828058. 2865.25 2.74 0.165264 0.144525 28066 200906 -1 1874 24 1346 1983 166800 36204 3.73146 3.73146 -135.163 -3.73146 0 0 1.01997e+06 3529.29 0.39 0.07 0.20 -1 -1 0.39 0.0285935 0.0252923 83 59 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.80 vpr 64.94 MiB -1 -1 0.15 20208 1 0.03 -1 -1 33432 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 26.4 MiB 1.14 704 11804 4117 5540 2147 64.9 MiB 0.07 0.00 4.32723 -118.436 -4.32723 4.32723 0.88 0.000442425 0.000402259 0.0307415 0.0280764 42 2228 31 6.95648e+06 318465 744469. 2576.02 4.50 0.199348 0.174316 27202 183097 -1 1785 19 1216 1934 174304 44453 3.88152 3.88152 -124.857 -3.88152 0 0 949917. 3286.91 0.36 0.07 0.17 -1 -1 0.36 0.0214566 0.019162 69 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 9.21 vpr 65.07 MiB -1 -1 0.15 20348 1 0.03 -1 -1 33736 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 26.7 MiB 2.86 822 10020 3444 5308 1268 65.1 MiB 0.08 0.00 4.15778 -128.101 -4.15778 4.15778 0.93 0.000462274 0.000421007 0.0316171 0.0289741 40 2642 40 6.95648e+06 188184 706193. 2443.58 3.04 0.16479 0.144899 26914 176310 -1 2078 24 1882 2531 224754 51701 4.42162 4.42162 -143.712 -4.42162 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.02695 0.0239685 79 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 9.91 vpr 65.36 MiB -1 -1 0.17 20784 1 0.03 -1 -1 33732 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 26.9 MiB 1.65 847 12030 5014 6584 432 65.4 MiB 0.09 0.00 4.57287 -144.308 -4.57287 4.57287 0.92 0.000528692 0.000479812 0.0405551 0.0370606 46 3239 34 6.95648e+06 217135 828058. 2865.25 4.86 0.176818 0.155278 28066 200906 -1 2319 21 1807 2822 246652 51934 4.03581 4.03581 -139.978 -4.03581 0 0 1.01997e+06 3529.29 0.39 0.09 0.20 -1 -1 0.39 0.0274742 0.0245468 85 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 23.04 vpr 65.30 MiB -1 -1 0.16 20500 1 0.03 -1 -1 33764 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 26.9 MiB 2.63 757 13443 5119 6395 1929 65.3 MiB 0.09 0.00 4.08826 -130.07 -4.08826 4.08826 0.87 0.000479491 0.000439016 0.0420975 0.0383263 50 2778 50 6.95648e+06 188184 902133. 3121.57 17.07 0.355226 0.309636 28642 213929 -1 2045 30 1669 2787 309493 86950 4.42046 4.42046 -143.572 -4.42046 0 0 1.08113e+06 3740.92 0.43 0.12 0.20 -1 -1 0.43 0.0352511 0.031042 76 74 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 8.57 vpr 64.92 MiB -1 -1 0.14 20160 1 0.03 -1 -1 33648 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 26.6 MiB 0.28 503 12542 4062 6070 2410 64.9 MiB 0.08 0.00 3.14908 -92.6386 -3.14908 3.14908 0.91 0.000391168 0.000356085 0.0302248 0.0275799 50 1542 40 6.95648e+06 260562 902133. 3121.57 5.00 0.160966 0.139998 28642 213929 -1 1258 20 829 1251 101277 24239 2.95367 2.95367 -98.4049 -2.95367 0 0 1.08113e+06 3740.92 0.42 0.05 0.20 -1 -1 0.42 0.0183117 0.0162522 57 20 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 8.12 vpr 65.31 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33772 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66876 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 26.9 MiB 1.60 674 9676 3990 5312 374 65.3 MiB 0.07 0.00 3.76865 -134.987 -3.76865 3.76865 0.92 0.000485795 0.000443059 0.0317941 0.029053 60 1835 21 6.95648e+06 173708 1.01997e+06 3529.29 3.03 0.158904 0.138744 30658 258169 -1 1517 23 1426 1989 172709 39333 3.73911 3.73911 -132.853 -3.73911 0 0 1.27783e+06 4421.56 0.49 0.07 0.26 -1 -1 0.49 0.0253224 0.0224086 76 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 11.48 vpr 65.66 MiB -1 -1 0.17 20456 1 0.03 -1 -1 33696 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67232 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 27.2 MiB 2.18 1197 6788 1593 4785 410 65.7 MiB 0.07 0.00 4.81732 -154.887 -4.81732 4.81732 0.91 0.000568504 0.000519588 0.0255631 0.0234675 56 2745 25 6.95648e+06 231611 973134. 3367.25 5.83 0.247176 0.215709 29794 239141 -1 2575 20 1810 2734 267843 53538 4.69936 4.69936 -158.923 -4.69936 0 0 1.19926e+06 4149.71 0.45 0.09 0.24 -1 -1 0.45 0.0282058 0.0252843 97 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 9.32 vpr 65.34 MiB -1 -1 0.15 20624 1 0.03 -1 -1 33432 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 27.0 MiB 0.88 755 11806 4947 6514 345 65.3 MiB 0.08 0.00 4.55181 -144.133 -4.55181 4.55181 0.90 0.000462726 0.000419797 0.0344299 0.0312562 46 2302 50 6.95648e+06 246087 828058. 2865.25 5.16 0.224799 0.195187 28066 200906 -1 1809 22 1405 1916 184870 41973 3.26946 3.26946 -129.646 -3.26946 0 0 1.01997e+06 3529.29 0.41 0.07 0.18 -1 -1 0.41 0.0250234 0.0222142 74 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 6.81 vpr 65.12 MiB -1 -1 0.15 20152 1 0.03 -1 -1 33584 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 26.7 MiB 0.60 536 11296 4661 6055 580 65.1 MiB 0.07 0.00 2.9714 -97.779 -2.9714 2.9714 0.91 0.000425577 0.00038666 0.0293352 0.0267532 46 1687 48 6.95648e+06 289514 828058. 2865.25 2.95 0.151973 0.133505 28066 200906 -1 1196 22 1101 1627 118419 28041 2.94567 2.94567 -98.2229 -2.94567 0 0 1.01997e+06 3529.29 0.40 0.06 0.19 -1 -1 0.40 0.0210041 0.0185906 62 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 8.36 vpr 65.89 MiB -1 -1 0.17 20684 1 0.03 -1 -1 33952 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 27.6 MiB 1.80 1154 14782 4940 8104 1738 65.9 MiB 0.13 0.00 6.12641 -181.225 -6.12641 6.12641 0.89 0.000566475 0.000514263 0.0548803 0.0501932 46 2972 48 6.95648e+06 217135 828058. 2865.25 3.22 0.206534 0.183155 28066 200906 -1 2375 24 1979 3061 252430 53962 5.06025 5.06025 -172.023 -5.06025 0 0 1.01997e+06 3529.29 0.38 0.10 0.18 -1 -1 0.38 0.0328552 0.0292921 95 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 14.34 vpr 65.38 MiB -1 -1 0.15 20096 1 0.03 -1 -1 33680 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66948 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 26.9 MiB 1.24 717 11799 3733 5850 2216 65.4 MiB 0.09 0.00 4.62806 -129.887 -4.62806 4.62806 0.91 0.000503817 0.00045753 0.033576 0.0305597 40 2137 23 6.95648e+06 332941 706193. 2443.58 9.83 0.262179 0.22782 26914 176310 -1 1846 22 1420 2105 204275 43664 4.24312 4.24312 -135.251 -4.24312 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0244993 0.0217059 74 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.31 vpr 64.71 MiB -1 -1 0.14 20208 1 0.03 -1 -1 33452 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 26.2 MiB 0.27 514 10509 3980 5034 1495 64.7 MiB 0.06 0.00 2.96656 -92.2738 -2.96656 2.96656 0.89 0.000366479 0.000333187 0.0259066 0.0236829 44 1513 24 6.95648e+06 188184 787024. 2723.27 1.91 0.107857 0.0942897 27778 195446 -1 1051 16 699 1093 64585 17611 2.96762 2.96762 -95.8174 -2.96762 0 0 997811. 3452.63 0.37 0.04 0.20 -1 -1 0.37 0.015137 0.0134912 51 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.88 vpr 65.30 MiB -1 -1 0.17 20316 1 0.03 -1 -1 33664 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 26.9 MiB 0.59 1076 14908 4738 8798 1372 65.3 MiB 0.11 0.00 4.96917 -138.118 -4.96917 4.96917 0.94 0.000524409 0.000476121 0.041159 0.037407 38 3145 48 6.95648e+06 347416 678818. 2348.85 3.94 0.167347 0.147127 26626 170182 -1 2507 21 1570 2770 270498 50404 4.65836 4.65836 -145.067 -4.65836 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0262465 0.0233978 80 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 6.27 vpr 65.02 MiB -1 -1 0.13 20324 1 0.03 -1 -1 33524 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 26.7 MiB 1.17 492 11034 4564 6063 407 65.0 MiB 0.07 0.00 2.9972 -99.2597 -2.9972 2.9972 0.93 0.000394273 0.000359865 0.0279851 0.0255092 40 1961 39 6.95648e+06 202660 706193. 2443.58 1.85 0.120761 0.105051 26914 176310 -1 1516 22 1349 1863 169744 49562 3.32157 3.32157 -117.016 -3.32157 0 0 926341. 3205.33 0.34 0.07 0.18 -1 -1 0.34 0.0191602 0.0169378 57 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 7.28 vpr 65.12 MiB -1 -1 0.14 20168 1 0.03 -1 -1 33752 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 26.7 MiB 0.93 565 8867 3613 4967 287 65.1 MiB 0.06 0.00 3.45473 -106.167 -3.45473 3.45473 0.90 0.000386309 0.000350283 0.0232165 0.021167 38 1930 30 6.95648e+06 246087 678818. 2348.85 3.25 0.126332 0.109896 26626 170182 -1 1481 19 1147 1674 130098 28883 3.05892 3.05892 -108.48 -3.05892 0 0 902133. 3121.57 0.34 0.05 0.15 -1 -1 0.34 0.0179848 0.0159396 60 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 8.07 vpr 65.50 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33848 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 27.0 MiB 1.64 851 11487 4862 6149 476 65.5 MiB 0.09 0.00 3.95502 -124.066 -3.95502 3.95502 0.91 0.000499696 0.000454902 0.0383077 0.0350175 44 2861 40 6.95648e+06 231611 787024. 2723.27 3.06 0.181571 0.16006 27778 195446 -1 2114 22 1724 2612 186740 39662 3.67666 3.67666 -128.24 -3.67666 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0263064 0.0233564 80 56 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 6.95 vpr 65.47 MiB -1 -1 0.15 20756 1 0.03 -1 -1 33772 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 27.1 MiB 1.41 719 14528 6712 7344 472 65.5 MiB 0.10 0.00 4.55468 -132.882 -4.55468 4.55468 0.92 0.000505091 0.000459541 0.0460052 0.0419732 44 2547 35 6.95648e+06 231611 787024. 2723.27 2.20 0.158959 0.14031 27778 195446 -1 1688 23 1524 2201 168711 38196 4.09482 4.09482 -137.998 -4.09482 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0267329 0.0237013 72 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 10.01 vpr 65.24 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33948 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 26.8 MiB 2.10 751 11200 4198 5153 1849 65.2 MiB 0.09 0.00 4.43749 -136.856 -4.43749 4.43749 0.92 0.00050118 0.000457913 0.0370741 0.0339331 46 2439 25 6.95648e+06 202660 828058. 2865.25 4.58 0.218507 0.191204 28066 200906 -1 1911 21 1356 2100 167493 35963 4.25946 4.25946 -140.254 -4.25946 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0249498 0.022204 73 48 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 17.61 vpr 65.21 MiB -1 -1 0.15 20352 1 0.03 -1 -1 33692 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66780 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 26.8 MiB 3.27 640 8909 3664 5023 222 65.2 MiB 0.07 0.00 4.07418 -127.444 -4.07418 4.07418 0.94 0.000415061 0.000377321 0.0267557 0.0244504 40 2228 26 6.95648e+06 144757 706193. 2443.58 11.06 0.227487 0.197192 26914 176310 -1 1908 20 1236 1636 170227 43620 3.49292 3.49292 -123.985 -3.49292 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0203761 0.0181456 61 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.44 vpr 65.39 MiB -1 -1 0.15 20488 1 0.03 -1 -1 33936 -1 -1 12 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66960 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 26.8 MiB 2.00 607 11925 5002 6435 488 65.4 MiB 0.08 0.00 3.79972 -120.636 -3.79972 3.79972 0.88 0.000457606 0.000417956 0.0368453 0.0336359 48 1984 29 6.95648e+06 173708 865456. 2994.66 2.22 0.143614 0.12559 28354 207349 -1 1536 22 1367 1944 159821 37228 3.32686 3.32686 -118.238 -3.32686 0 0 1.05005e+06 3633.38 0.39 0.07 0.20 -1 -1 0.39 0.0231066 0.0204468 68 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 12.29 vpr 65.08 MiB -1 -1 0.15 20540 1 0.03 -1 -1 33612 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 26.5 MiB 0.85 673 11064 3726 5225 2113 65.1 MiB 0.08 0.00 3.0162 -94.6102 -3.0162 3.0162 0.88 0.000448898 0.000407439 0.0306547 0.0279905 38 2318 31 6.95648e+06 318465 678818. 2348.85 8.34 0.248467 0.216955 26626 170182 -1 1666 22 1207 1932 150045 33191 3.07097 3.07097 -103.367 -3.07097 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0233411 0.0206438 71 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 5.89 vpr 65.02 MiB -1 -1 0.14 20228 1 0.03 -1 -1 33972 -1 -1 28 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 26.5 MiB 0.57 661 10813 4387 5735 691 65.0 MiB 0.06 0.00 3.6526 -99.519 -3.6526 3.6526 0.90 0.000374785 0.000337521 0.0235308 0.0213315 42 1918 35 6.95648e+06 405319 744469. 2576.02 2.16 0.112651 0.0980457 27202 183097 -1 1492 19 1112 1848 158479 34720 3.42886 3.42886 -104.154 -3.42886 0 0 949917. 3286.91 0.36 0.06 0.16 -1 -1 0.36 0.0180857 0.016012 72 20 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 12.78 vpr 65.32 MiB -1 -1 0.16 20424 1 0.03 -1 -1 33676 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 26.7 MiB 0.84 539 10769 4210 5259 1300 65.3 MiB 0.08 0.00 3.44073 -108.225 -3.44073 3.44073 0.93 0.000472088 0.000429789 0.0344458 0.0314227 48 1688 34 6.95648e+06 173708 865456. 2994.66 8.56 0.244843 0.21194 28354 207349 -1 1454 20 1284 1813 161942 38490 2.90237 2.90237 -113.138 -2.90237 0 0 1.05005e+06 3633.38 0.40 0.06 0.21 -1 -1 0.40 0.0217269 0.0192765 60 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 8.31 vpr 65.15 MiB -1 -1 0.15 20732 1 0.03 -1 -1 33644 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 26.8 MiB 1.69 645 12715 5333 6940 442 65.2 MiB 0.09 0.00 3.42769 -121.093 -3.42769 3.42769 0.93 0.000474019 0.000436279 0.0393999 0.0358727 50 2241 50 6.95648e+06 159232 902133. 3121.57 3.22 0.168644 0.147113 28642 213929 -1 1593 19 1335 1900 145307 35353 3.38763 3.38763 -126.727 -3.38763 0 0 1.08113e+06 3740.92 0.40 0.06 0.21 -1 -1 0.40 0.0210027 0.0186686 72 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 8.74 vpr 65.10 MiB -1 -1 0.15 20044 1 0.03 -1 -1 34064 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 26.6 MiB 0.47 742 11799 3162 6813 1824 65.1 MiB 0.09 0.00 4.51778 -120.862 -4.51778 4.51778 0.95 0.000454443 0.000412094 0.0303251 0.0276159 38 2757 47 6.95648e+06 347416 678818. 2348.85 4.99 0.163015 0.143449 26626 170182 -1 1955 22 1406 2365 210396 43684 4.28086 4.28086 -136.346 -4.28086 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0225307 0.0199964 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 8.95 vpr 65.43 MiB -1 -1 0.15 20568 1 0.03 -1 -1 33828 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 26.9 MiB 1.86 848 13606 5964 7217 425 65.4 MiB 0.11 0.00 4.62557 -150.036 -4.62557 4.62557 0.92 0.000509967 0.000465109 0.046425 0.0425233 48 2886 26 6.95648e+06 188184 865456. 2994.66 3.67 0.179139 0.158534 28354 207349 -1 2378 21 1719 2506 253013 54190 4.45496 4.45496 -155.997 -4.45496 0 0 1.05005e+06 3633.38 0.41 0.09 0.20 -1 -1 0.41 0.0263427 0.0235004 82 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 7.92 vpr 65.41 MiB -1 -1 0.15 20876 1 0.03 -1 -1 33940 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 27.0 MiB 1.42 797 15688 5451 7649 2588 65.4 MiB 0.12 0.00 4.33979 -134.933 -4.33979 4.33979 0.91 0.000546099 0.000498922 0.0466566 0.0425183 46 2516 45 6.95648e+06 347416 828058. 2865.25 3.12 0.191616 0.169606 28066 200906 -1 1814 21 1369 2331 203557 42476 3.90176 3.90176 -141.076 -3.90176 0 0 1.01997e+06 3529.29 0.39 0.08 0.19 -1 -1 0.39 0.0268271 0.0239122 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 9.62 vpr 65.72 MiB -1 -1 0.16 20768 1 0.03 -1 -1 33964 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67300 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 27.2 MiB 1.07 866 12951 5370 7312 269 65.7 MiB 0.10 0.00 4.06852 -135.722 -4.06852 4.06852 0.91 0.000556932 0.000508222 0.0403721 0.036868 46 2675 25 6.95648e+06 332941 828058. 2865.25 5.16 0.239004 0.209189 28066 200906 -1 2147 24 1837 3034 242444 50740 3.80186 3.80186 -138.053 -3.80186 0 0 1.01997e+06 3529.29 0.39 0.09 0.19 -1 -1 0.39 0.0287801 0.0255292 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 8.50 vpr 64.66 MiB -1 -1 0.15 20316 1 0.03 -1 -1 33712 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 26.2 MiB 0.90 535 10769 4485 5866 418 64.7 MiB 0.07 0.00 3.76076 -107.124 -3.76076 3.76076 0.91 0.0004211 0.000384043 0.030261 0.0276768 40 1903 31 6.95648e+06 173708 706193. 2443.58 4.36 0.171752 0.148654 26914 176310 -1 1524 19 1178 1778 168955 37421 2.97232 2.97232 -106.451 -2.97232 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.0192513 0.0171721 57 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 6.69 vpr 65.56 MiB -1 -1 0.16 20824 1 0.03 -1 -1 34020 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 27.0 MiB 0.96 646 9676 4013 5115 548 65.6 MiB 0.07 0.00 4.36203 -132.758 -4.36203 4.36203 0.90 0.000481764 0.00043746 0.0326586 0.0297145 48 2052 23 6.95648e+06 202660 865456. 2994.66 2.45 0.153316 0.13406 28354 207349 -1 1617 22 1735 2408 175230 42504 4.01936 4.01936 -135.967 -4.01936 0 0 1.05005e+06 3633.38 0.40 0.07 0.19 -1 -1 0.40 0.0250536 0.0221858 76 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 10.20 vpr 65.40 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33924 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66972 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 27.0 MiB 1.54 811 10204 3614 5065 1525 65.4 MiB 0.08 0.00 4.885 -145.205 -4.885 4.885 0.89 0.000432771 0.000394006 0.0304773 0.0278562 52 2609 28 6.95648e+06 202660 926341. 3205.33 5.40 0.208953 0.18146 29218 227130 -1 1774 24 1606 2624 195956 42976 4.05461 4.05461 -135.926 -4.05461 0 0 1.14541e+06 3963.36 0.41 0.07 0.20 -1 -1 0.41 0.024099 0.0212896 80 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 8.30 vpr 65.36 MiB -1 -1 0.17 20660 1 0.03 -1 -1 33640 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 26.9 MiB 2.33 840 10509 4398 5789 322 65.4 MiB 0.08 0.00 5.54805 -153.523 -5.54805 5.54805 0.93 0.000496375 0.000452941 0.0344801 0.0315263 44 2631 24 6.95648e+06 202660 787024. 2723.27 2.61 0.142734 0.125826 27778 195446 -1 1950 22 1256 1879 161199 34431 4.63121 4.63121 -148.523 -4.63121 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.024404 0.0216399 79 43 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.98 vpr 65.50 MiB -1 -1 0.17 20472 1 0.03 -1 -1 33860 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 27.0 MiB 1.77 981 8543 2209 4916 1418 65.5 MiB 0.07 0.00 4.87546 -153.661 -4.87546 4.87546 0.93 0.000471349 0.000430634 0.0276412 0.0252465 38 2411 22 6.95648e+06 303989 678818. 2348.85 2.97 0.149495 0.130998 26626 170182 -1 1934 18 1044 1554 112841 23684 4.18706 4.18706 -148.99 -4.18706 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0224766 0.019989 74 78 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 6.84 vpr 65.48 MiB -1 -1 0.16 20444 1 0.03 -1 -1 33680 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67056 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 27.1 MiB 1.19 757 8390 3202 4298 890 65.5 MiB 0.07 0.00 4.41913 -136.437 -4.41913 4.41913 0.93 0.000547922 0.000489398 0.0300248 0.0274773 44 2553 27 6.95648e+06 188184 787024. 2723.27 2.30 0.160296 0.140988 27778 195446 -1 1842 22 1553 2635 192052 41288 3.91902 3.91902 -136.724 -3.91902 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0273452 0.0243315 72 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 9.08 vpr 65.26 MiB -1 -1 0.17 20616 1 0.03 -1 -1 33652 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 26.8 MiB 1.26 676 7412 2307 3688 1417 65.3 MiB 0.06 0.00 4.03938 -124.354 -4.03938 4.03938 0.93 0.000509168 0.000461335 0.0268981 0.0246484 44 2121 22 6.95648e+06 231611 787024. 2723.27 4.45 0.205119 0.178062 27778 195446 -1 1494 27 1341 1977 147127 33062 3.45412 3.45412 -121.253 -3.45412 0 0 997811. 3452.63 0.39 0.07 0.20 -1 -1 0.39 0.0304671 0.0268787 73 79 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 7.11 vpr 64.80 MiB -1 -1 0.14 20236 1 0.02 -1 -1 33792 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 26.2 MiB 1.00 565 8134 3323 4613 198 64.8 MiB 0.06 0.00 3.56099 -106.975 -3.56099 3.56099 0.92 0.000394941 0.000359061 0.0227833 0.020824 38 2071 30 6.95648e+06 144757 678818. 2348.85 2.95 0.125199 0.110053 26626 170182 -1 1519 20 1088 1614 126966 28362 3.22832 3.22832 -114.337 -3.22832 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0190408 0.0170175 53 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 11.64 vpr 65.42 MiB -1 -1 0.16 20760 1 0.03 -1 -1 33972 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 27.0 MiB 3.07 780 14679 6171 7995 513 65.4 MiB 0.10 0.00 4.81946 -134.729 -4.81946 4.81946 0.89 0.000560458 0.00051329 0.0428351 0.0391094 52 2232 23 6.95648e+06 332941 926341. 3205.33 5.23 0.241095 0.21084 29218 227130 -1 1621 23 1130 1780 152505 32527 4.34076 4.34076 -127.201 -4.34076 0 0 1.14541e+06 3963.36 0.43 0.07 0.21 -1 -1 0.43 0.0265306 0.0235222 76 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 6.82 vpr 65.79 MiB -1 -1 0.14 20428 1 0.03 -1 -1 33572 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67364 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 27.3 MiB 0.67 707 10672 3433 5510 1729 65.8 MiB 0.08 0.00 4.24958 -138.057 -4.24958 4.24958 0.89 0.000505865 0.000455977 0.037162 0.0338202 46 2101 39 6.95648e+06 188184 828058. 2865.25 2.90 0.18311 0.160119 28066 200906 -1 1652 20 1609 2296 152828 36988 4.14472 4.14472 -138.713 -4.14472 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0250535 0.0222069 78 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 9.83 vpr 65.14 MiB -1 -1 0.14 20316 1 0.03 -1 -1 33832 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 26.5 MiB 1.69 678 11925 5137 6457 331 65.1 MiB 0.08 0.00 4.05037 -122.042 -4.05037 4.05037 0.93 0.000427011 0.000390557 0.0336731 0.0308223 48 1762 19 6.95648e+06 159232 865456. 2994.66 4.82 0.166642 0.14527 28354 207349 -1 1595 19 1059 1326 116666 25861 3.66851 3.66851 -120.053 -3.66851 0 0 1.05005e+06 3633.38 0.41 0.05 0.20 -1 -1 0.41 0.0194571 0.0173448 68 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 6.46 vpr 65.09 MiB -1 -1 0.14 20072 1 0.03 -1 -1 33704 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 26.7 MiB 1.26 478 11916 5026 6437 453 65.1 MiB 0.07 0.00 3.32523 -101.355 -3.32523 3.32523 0.89 0.00039847 0.000364497 0.0305607 0.0278898 44 1783 23 6.95648e+06 188184 787024. 2723.27 2.06 0.119486 0.104799 27778 195446 -1 1359 24 1243 1747 125414 30386 3.03797 3.03797 -110.211 -3.03797 0 0 997811. 3452.63 0.37 0.05 0.18 -1 -1 0.37 0.0193283 0.0170556 57 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.82 vpr 65.41 MiB -1 -1 0.16 20544 1 0.03 -1 -1 33816 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 26.9 MiB 1.69 850 12416 5241 6727 448 65.4 MiB 0.10 0.00 4.62707 -149.564 -4.62707 4.62707 0.93 0.000523081 0.000478397 0.0403966 0.0369065 46 2722 26 6.95648e+06 217135 828058. 2865.25 2.74 0.156443 0.138154 28066 200906 -1 2074 21 1865 2438 193182 44797 4.40371 4.40371 -157.748 -4.40371 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0257153 0.0229496 85 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 8.78 vpr 65.15 MiB -1 -1 0.15 20620 1 0.03 -1 -1 33632 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 26.7 MiB 1.16 1128 10536 3281 5855 1400 65.1 MiB 0.09 0.00 4.81844 -154.124 -4.81844 4.81844 0.91 0.000510774 0.000465234 0.0355834 0.0325175 38 3024 27 6.95648e+06 202660 678818. 2348.85 4.30 0.158829 0.139455 26626 170182 -1 2569 28 1789 2629 367783 104626 4.56931 4.56931 -159.679 -4.56931 0 0 902133. 3121.57 0.34 0.12 0.17 -1 -1 0.34 0.0316107 0.0279738 82 53 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 8.26 vpr 65.33 MiB -1 -1 0.16 20484 1 0.03 -1 -1 33600 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66896 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 26.9 MiB 0.50 843 11456 4360 5763 1333 65.3 MiB 0.09 0.00 4.93982 -142.75 -4.93982 4.93982 0.89 0.000524757 0.00047918 0.0368285 0.0337173 46 2871 42 6.95648e+06 246087 828058. 2865.25 4.47 0.191865 0.169822 28066 200906 -1 1957 23 1780 2859 219432 52826 4.6493 4.6493 -149.515 -4.6493 0 0 1.01997e+06 3529.29 0.39 0.09 0.20 -1 -1 0.39 0.0285935 0.0254983 83 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 8.39 vpr 65.47 MiB -1 -1 0.16 20368 1 0.03 -1 -1 33720 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 26.9 MiB 0.94 630 11063 3050 5652 2361 65.5 MiB 0.08 0.00 3.41127 -97.5363 -3.41127 3.41127 0.91 0.000451354 0.000411447 0.0302903 0.0277048 40 1835 26 6.95648e+06 303989 706193. 2443.58 4.23 0.178871 0.155283 26914 176310 -1 1460 22 1308 2138 157545 37153 3.03682 3.03682 -102.64 -3.03682 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0234985 0.0207524 69 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 5.58 vpr 64.73 MiB -1 -1 0.14 20116 1 0.03 -1 -1 34312 -1 -1 14 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 26.2 MiB 0.54 487 8585 3718 4335 532 64.7 MiB 0.05 0.00 2.94405 -89.6154 -2.94405 2.94405 0.89 0.000381243 0.000347073 0.0237516 0.0217267 38 1494 30 6.95648e+06 202660 678818. 2348.85 1.98 0.116697 0.101825 26626 170182 -1 1118 22 1017 1284 84491 21005 3.22642 3.22642 -98.2028 -3.22642 0 0 902133. 3121.57 0.33 0.05 0.16 -1 -1 0.33 0.0195493 0.0173017 54 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 10.79 vpr 65.66 MiB -1 -1 0.18 20488 1 0.03 -1 -1 33916 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 27.2 MiB 1.39 1018 15904 6884 8410 610 65.7 MiB 0.14 0.00 3.84665 -134.608 -3.84665 3.84665 0.92 0.000588847 0.000537026 0.0575721 0.0526198 50 3513 31 6.95648e+06 231611 902133. 3121.57 5.89 0.306262 0.269336 28642 213929 -1 2746 23 2119 3360 318996 69446 4.29822 4.29822 -148.875 -4.29822 0 0 1.08113e+06 3740.92 0.40 0.11 0.21 -1 -1 0.40 0.032073 0.028634 95 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 12.79 vpr 65.33 MiB -1 -1 0.17 20728 1 0.03 -1 -1 33736 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 27.0 MiB 5.02 805 13026 5515 7018 493 65.3 MiB 0.10 0.00 5.43776 -152.039 -5.43776 5.43776 0.91 0.000530437 0.000483475 0.0443631 0.0405536 46 2740 36 6.95648e+06 217135 828058. 2865.25 4.38 0.190705 0.168667 28066 200906 -1 2126 23 1586 2402 285851 56911 4.81541 4.81541 -158.107 -4.81541 0 0 1.01997e+06 3529.29 0.39 0.10 0.19 -1 -1 0.39 0.0290972 0.0258842 82 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 9.36 vpr 65.11 MiB -1 -1 0.14 20592 1 0.03 -1 -1 33700 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 26.6 MiB 3.16 636 10029 4132 5585 312 65.1 MiB 0.07 0.00 3.67834 -124.027 -3.67834 3.67834 0.89 0.000427437 0.000378917 0.0302434 0.0274503 48 2185 28 6.95648e+06 159232 865456. 2994.66 2.96 0.149497 0.131242 28354 207349 -1 1586 19 1295 1849 150992 36406 3.53836 3.53836 -135.928 -3.53836 0 0 1.05005e+06 3633.38 0.41 0.06 0.18 -1 -1 0.41 0.0209722 0.0186328 70 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 9.00 vpr 65.56 MiB -1 -1 0.16 20212 1 0.03 -1 -1 33704 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 27.2 MiB 0.40 731 15206 6549 8090 567 65.6 MiB 0.11 0.00 4.25273 -121.678 -4.25273 4.25273 0.92 0.000482427 0.000438612 0.042022 0.0383473 48 2298 32 6.95648e+06 318465 865456. 2994.66 5.19 0.212816 0.18619 28354 207349 -1 1836 22 1173 1814 166694 37685 3.80451 3.80451 -123.316 -3.80451 0 0 1.05005e+06 3633.38 0.41 0.07 0.20 -1 -1 0.41 0.0246563 0.0219643 74 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.45 vpr 65.69 MiB -1 -1 0.17 20540 1 0.03 -1 -1 33400 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67264 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 27.2 MiB 0.90 751 14323 4212 7223 2888 65.7 MiB 0.10 0.00 4.42633 -128.985 -4.42633 4.42633 0.93 0.000531439 0.000485392 0.0419192 0.038251 40 2622 38 6.95648e+06 361892 706193. 2443.58 2.20 0.162407 0.142624 26914 176310 -1 1848 21 1476 2267 182833 41978 4.24412 4.24412 -133.401 -4.24412 0 0 926341. 3205.33 0.34 0.07 0.17 -1 -1 0.34 0.0252885 0.0224457 83 46 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 7.17 vpr 65.19 MiB -1 -1 0.15 20684 1 0.03 -1 -1 33956 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 26.9 MiB 1.09 713 11034 4424 5642 968 65.2 MiB 0.08 0.00 3.35027 -102.373 -3.35027 3.35027 0.89 0.000459882 0.00041517 0.0325445 0.0296782 38 2733 50 6.95648e+06 231611 678818. 2348.85 2.90 0.15337 0.134625 26626 170182 -1 1933 23 1526 2555 207027 44479 3.45197 3.45197 -114.871 -3.45197 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0249963 0.0220507 68 46 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 24.14 vpr 65.48 MiB -1 -1 0.16 20468 1 0.03 -1 -1 33544 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 27.0 MiB 1.68 907 11200 3286 6600 1314 65.5 MiB 0.09 0.00 4.64467 -151.435 -4.64467 4.64467 0.91 0.000517223 0.0004724 0.0377675 0.0345685 48 2706 42 6.95648e+06 202660 865456. 2994.66 19.04 0.316407 0.274819 28354 207349 -1 2215 23 1973 2902 294986 61193 4.36766 4.36766 -149.121 -4.36766 0 0 1.05005e+06 3633.38 0.42 0.10 0.21 -1 -1 0.42 0.0279282 0.024835 88 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 10.10 vpr 65.38 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33916 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 26.9 MiB 0.98 748 12542 5225 6709 608 65.4 MiB 0.09 0.00 4.47033 -145.191 -4.47033 4.47033 0.91 0.000544265 0.000493717 0.0397058 0.0360725 54 2246 33 6.95648e+06 260562 949917. 3286.91 5.68 0.246792 0.214246 29506 232905 -1 1720 22 1437 1922 168232 38969 3.73252 3.73252 -136.255 -3.73252 0 0 1.17392e+06 4061.99 0.43 0.07 0.24 -1 -1 0.43 0.0270674 0.0239606 80 59 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 10.33 vpr 65.24 MiB -1 -1 0.15 20156 1 0.03 -1 -1 34008 -1 -1 12 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 26.9 MiB 5.09 466 10105 4186 5463 456 65.2 MiB 0.07 0.00 3.92822 -103.3 -3.92822 3.92822 0.91 0.000399225 0.000361746 0.0293381 0.0268174 36 1523 22 6.95648e+06 173708 648988. 2245.63 2.11 0.127244 0.111739 26050 158493 -1 1228 15 778 1009 83744 19223 2.99102 2.99102 -101.074 -2.99102 0 0 828058. 2865.25 0.32 0.04 0.15 -1 -1 0.32 0.0162311 0.0144931 53 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 6.86 vpr 65.25 MiB -1 -1 0.14 20352 1 0.03 -1 -1 34056 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 26.8 MiB 1.27 606 9397 3361 4720 1316 65.3 MiB 0.07 0.00 3.68935 -126.523 -3.68935 3.68935 0.92 0.000466831 0.000425872 0.029323 0.0267578 42 2317 35 6.95648e+06 159232 744469. 2576.02 2.34 0.145241 0.127077 27202 183097 -1 1631 21 1234 1585 161332 35156 3.67372 3.67372 -130.834 -3.67372 0 0 949917. 3286.91 0.37 0.07 0.17 -1 -1 0.37 0.0221846 0.0197079 64 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 7.02 vpr 65.34 MiB -1 -1 0.15 20504 1 0.03 -1 -1 33764 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 27.0 MiB 1.05 743 11993 4026 5805 2162 65.3 MiB 0.09 0.00 4.14331 -121.523 -4.14331 4.14331 0.91 0.000475226 0.000431982 0.0331852 0.0303252 44 2597 32 6.95648e+06 332941 787024. 2723.27 2.66 0.136064 0.120277 27778 195446 -1 1579 21 1324 2035 146086 33880 3.91111 3.91111 -121.462 -3.91111 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.023495 0.0209037 77 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.96 vpr 65.29 MiB -1 -1 0.16 20336 1 0.03 -1 -1 33492 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 26.8 MiB 1.72 616 10459 4329 5659 471 65.3 MiB 0.07 0.00 4.04737 -116.055 -4.04737 4.04737 0.91 0.0004095 0.000368671 0.0288443 0.026374 42 2143 50 6.95648e+06 188184 744469. 2576.02 2.00 0.135601 0.11808 27202 183097 -1 1571 22 1189 1496 121997 26928 3.32882 3.32882 -111.78 -3.32882 0 0 949917. 3286.91 0.37 0.06 0.18 -1 -1 0.37 0.0202791 0.0179405 67 25 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 8.94 vpr 65.28 MiB -1 -1 0.14 20080 1 0.03 -1 -1 33468 -1 -1 9 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 26.9 MiB 1.31 561 11321 4813 6209 299 65.3 MiB 0.08 0.00 3.85356 -111.135 -3.85356 3.85356 0.91 0.000462409 0.000424134 0.0329491 0.0300437 44 1715 24 6.95648e+06 130281 787024. 2723.27 4.43 0.155614 0.134785 27778 195446 -1 1302 20 976 1470 104911 23828 2.87327 2.87327 -102.953 -2.87327 0 0 997811. 3452.63 0.39 0.05 0.17 -1 -1 0.39 0.0192521 0.0170636 56 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 14.39 vpr 65.57 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33972 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 27.1 MiB 1.06 696 13719 4819 6392 2508 65.6 MiB 0.10 0.00 3.46983 -115.227 -3.46983 3.46983 0.93 0.00052496 0.000474681 0.0402444 0.0366753 44 2085 27 6.95648e+06 347416 787024. 2723.27 9.97 0.279355 0.242572 27778 195446 -1 1582 23 1647 2194 169180 36742 3.00057 3.00057 -113.892 -3.00057 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0273047 0.0241991 79 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.40 vpr 65.21 MiB -1 -1 0.14 20396 1 0.03 -1 -1 33968 -1 -1 12 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 26.8 MiB 2.69 587 9081 3433 3891 1757 65.2 MiB 0.06 0.00 3.99537 -118.981 -3.99537 3.99537 0.92 0.000414291 0.000377739 0.0257784 0.0235585 44 2307 34 6.95648e+06 173708 787024. 2723.27 2.44 0.132715 0.116371 27778 195446 -1 1553 21 1133 1566 124116 28356 3.46822 3.46822 -116.107 -3.46822 0 0 997811. 3452.63 0.39 0.06 0.18 -1 -1 0.39 0.0197326 0.01749 64 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 15.79 vpr 65.36 MiB -1 -1 0.17 20544 1 0.03 -1 -1 33496 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66924 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 27.0 MiB 1.37 827 13505 5541 6681 1283 65.4 MiB 0.10 0.00 3.208 -113.036 -3.208 3.208 0.93 0.000518637 0.000461468 0.0384563 0.0350655 40 2180 23 6.95648e+06 318465 706193. 2443.58 11.09 0.276739 0.241213 26914 176310 -1 1944 22 1395 2260 237037 48189 3.27047 3.27047 -118.143 -3.27047 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0253935 0.0225241 71 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 10.01 vpr 65.52 MiB -1 -1 0.17 20460 1 0.03 -1 -1 33788 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67096 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 27.1 MiB 1.82 717 9706 3985 5340 381 65.5 MiB 0.08 0.00 3.995 -134.818 -3.995 3.995 0.93 0.000537082 0.000488355 0.034115 0.0311067 44 2136 23 6.95648e+06 217135 787024. 2723.27 4.79 0.202067 0.17595 27778 195446 -1 1559 21 1323 1791 115158 27485 3.49017 3.49017 -133.994 -3.49017 0 0 997811. 3452.63 0.40 0.06 0.19 -1 -1 0.40 0.0263597 0.023422 73 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 7.41 vpr 65.09 MiB -1 -1 0.15 20276 1 0.03 -1 -1 33460 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 26.6 MiB 1.43 546 10149 3579 4930 1640 65.1 MiB 0.07 0.00 2.9023 -96.8242 -2.9023 2.9023 0.93 0.000421276 0.00038608 0.0298826 0.0272356 46 1638 37 6.95648e+06 144757 828058. 2865.25 2.65 0.146272 0.128144 28066 200906 -1 1065 31 1105 1702 170168 64073 2.92452 2.92452 -98.2858 -2.92452 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0284071 0.0249461 57 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 7.28 vpr 65.00 MiB -1 -1 0.14 20232 1 0.03 -1 -1 33692 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 26.5 MiB 1.53 688 11293 4712 6328 253 65.0 MiB 0.08 0.00 4.09973 -130.941 -4.09973 4.09973 0.91 0.000429303 0.00039029 0.0321728 0.0292453 46 2135 28 6.95648e+06 159232 828058. 2865.25 2.47 0.136335 0.118953 28066 200906 -1 1698 23 1365 1978 168465 36966 3.48812 3.48812 -125.856 -3.48812 0 0 1.01997e+06 3529.29 0.40 0.07 0.18 -1 -1 0.40 0.0220184 0.0194785 70 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 9.48 vpr 65.33 MiB -1 -1 0.15 20696 1 0.03 -1 -1 33788 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 26.9 MiB 2.62 759 11034 4566 6063 405 65.3 MiB 0.08 0.00 4.18668 -129.57 -4.18668 4.18668 0.92 0.000471188 0.000429117 0.0343881 0.0314055 40 2605 27 6.95648e+06 202660 706193. 2443.58 3.53 0.154952 0.136443 26914 176310 -1 2030 28 2034 2690 321469 108944 4.18692 4.18692 -144.182 -4.18692 0 0 926341. 3205.33 0.36 0.12 0.17 -1 -1 0.36 0.0303446 0.0268562 79 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 15.19 vpr 65.40 MiB -1 -1 0.15 20620 1 0.03 -1 -1 33728 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 26.8 MiB 1.18 716 10228 3612 4706 1910 65.4 MiB 0.07 0.00 4.16289 -113.847 -4.16289 4.16289 0.88 0.000457138 0.000415882 0.0288889 0.0264171 40 2239 28 6.95648e+06 303989 706193. 2443.58 10.83 0.286454 0.250051 26914 176310 -1 1916 21 1219 1919 167378 38434 3.83102 3.83102 -120.807 -3.83102 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.0225628 0.0200248 71 49 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 11.16 vpr 65.47 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33648 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 26.9 MiB 1.61 846 13524 5903 7163 458 65.5 MiB 0.11 0.00 4.885 -157.826 -4.885 4.885 0.91 0.000571596 0.000525106 0.0477869 0.0436657 56 2698 26 6.95648e+06 202660 973134. 3367.25 6.04 0.262533 0.229524 29794 239141 -1 2164 24 2275 3274 346015 70595 4.53181 4.53181 -153.712 -4.53181 0 0 1.19926e+06 4149.71 0.45 0.11 0.24 -1 -1 0.45 0.031482 0.0280511 89 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 7.05 vpr 64.81 MiB -1 -1 0.14 20228 1 0.03 -1 -1 33512 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 26.3 MiB 1.61 501 12076 4244 5318 2514 64.8 MiB 0.07 0.00 3.74884 -94.0057 -3.74884 3.74884 0.92 0.00036824 0.000335987 0.0302586 0.02766 40 1910 34 6.95648e+06 188184 706193. 2443.58 2.22 0.123528 0.108265 26914 176310 -1 1432 21 999 1536 124979 30089 3.24152 3.24152 -100.677 -3.24152 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.0183926 0.01629 54 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.59 vpr 65.77 MiB -1 -1 0.16 20616 1 0.03 -1 -1 33672 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 27.3 MiB 1.15 1008 14543 5389 7197 1957 65.8 MiB 0.11 0.00 3.70954 -138.278 -3.70954 3.70954 0.92 0.00057382 0.000520757 0.0448382 0.0406107 40 2412 20 6.95648e+06 361892 706193. 2443.58 2.13 0.16028 0.141512 26914 176310 -1 2154 19 1653 2182 212075 52958 3.94551 3.94551 -149.35 -3.94551 0 0 926341. 3205.33 0.34 0.08 0.16 -1 -1 0.34 0.0261995 0.0234177 81 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.75 vpr 65.38 MiB -1 -1 0.16 20668 1 0.03 -1 -1 33600 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66944 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 26.8 MiB 3.21 599 11389 4446 5401 1542 65.4 MiB 0.09 0.00 2.96105 -112.244 -2.96105 2.96105 0.92 0.000511549 0.000465974 0.0410275 0.0374909 38 1957 49 6.95648e+06 144757 678818. 2348.85 2.27 0.169195 0.148764 26626 170182 -1 1545 21 1439 1962 170499 37127 3.32342 3.32342 -127.868 -3.32342 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0248949 0.0220564 61 93 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 9.54 vpr 65.23 MiB -1 -1 0.15 20448 1 0.03 -1 -1 33848 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 26.8 MiB 1.14 728 11993 4280 5583 2130 65.2 MiB 0.08 0.00 4.11943 -125.672 -4.11943 4.11943 0.93 0.000446952 0.000406227 0.033114 0.03018 44 2660 42 6.95648e+06 318465 787024. 2723.27 5.08 0.239462 0.207535 27778 195446 -1 1849 23 1170 1786 148503 34066 3.72046 3.72046 -123.66 -3.72046 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0257312 0.0227361 75 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 10.29 vpr 65.93 MiB -1 -1 0.16 20568 1 0.03 -1 -1 33884 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67512 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 27.4 MiB 1.73 1133 13599 5570 7048 981 65.9 MiB 0.12 0.00 6.01533 -177.28 -6.01533 6.01533 0.91 0.00052895 0.000480372 0.0472959 0.0430493 46 3137 40 6.95648e+06 217135 828058. 2865.25 5.19 0.202457 0.178261 28066 200906 -1 2522 22 2092 2983 241006 49112 4.93995 4.93995 -170.158 -4.93995 0 0 1.01997e+06 3529.29 0.38 0.09 0.19 -1 -1 0.38 0.0292427 0.0260683 95 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 10.10 vpr 64.77 MiB -1 -1 0.14 20096 1 0.03 -1 -1 33692 -1 -1 11 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 26.3 MiB 2.78 506 10409 4642 5419 348 64.8 MiB 0.06 0.00 2.68965 -94.6691 -2.68965 2.68965 0.93 0.000346012 0.000314475 0.0261688 0.0238732 38 1556 24 6.95648e+06 159232 678818. 2348.85 4.13 0.141157 0.122128 26626 170182 -1 1195 19 802 1041 94426 20467 2.45462 2.45462 -95.1551 -2.45462 0 0 902133. 3121.57 0.33 0.05 0.16 -1 -1 0.33 0.0164791 0.0146457 52 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 10.43 vpr 65.23 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33960 -1 -1 11 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 26.8 MiB 1.61 453 9649 4016 5181 452 65.2 MiB 0.07 0.00 3.70034 -111.62 -3.70034 3.70034 0.91 0.0004251 0.000387666 0.0295889 0.0270018 46 1640 50 6.95648e+06 159232 828058. 2865.25 5.55 0.246519 0.214448 28066 200906 -1 1226 20 1006 1462 125465 30002 3.05703 3.05703 -110.049 -3.05703 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0200865 0.0178042 54 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 16.42 vpr 65.12 MiB -1 -1 0.13 20120 1 0.03 -1 -1 33756 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 26.7 MiB 0.47 657 10304 4396 5657 251 65.1 MiB 0.07 0.00 3.0756 -108.291 -3.0756 3.0756 0.88 0.00044146 0.000401089 0.031659 0.028824 48 2011 23 6.95648e+06 144757 865456. 2994.66 12.72 0.263017 0.228466 28354 207349 -1 1649 24 1360 2172 225132 50412 3.10392 3.10392 -114.589 -3.10392 0 0 1.05005e+06 3633.38 0.42 0.08 0.20 -1 -1 0.42 0.0237159 0.0210032 59 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 6.06 vpr 64.81 MiB -1 -1 0.13 20632 1 0.03 -1 -1 33404 -1 -1 18 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 26.3 MiB 0.51 433 7975 3255 4078 642 64.8 MiB 0.05 0.00 3.29759 -76.2304 -3.29759 3.29759 0.92 0.0003411 0.00031249 0.0192443 0.0176363 38 1530 37 6.95648e+06 260562 678818. 2348.85 2.39 0.107164 0.0931285 26626 170182 -1 1053 23 716 1101 70310 18227 2.97562 2.97562 -82.152 -2.97562 0 0 902133. 3121.57 0.34 0.04 0.16 -1 -1 0.34 0.0175521 0.015461 53 19 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 26.42 vpr 65.56 MiB -1 -1 0.16 20364 1 0.03 -1 -1 33904 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 27.1 MiB 1.92 736 10796 3697 5176 1923 65.6 MiB 0.09 0.00 3.75962 -125.032 -3.75962 3.75962 0.90 0.000526048 0.000478975 0.0381008 0.0347675 46 3469 47 6.95648e+06 173708 828058. 2865.25 21.11 0.311609 0.27107 28066 200906 -1 2274 26 1722 2861 316286 80992 4.55982 4.55982 -147.737 -4.55982 0 0 1.01997e+06 3529.29 0.39 0.11 0.20 -1 -1 0.39 0.0309111 0.0273732 73 69 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 16.12 vpr 65.73 MiB -1 -1 0.18 20408 1 0.03 -1 -1 33940 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67308 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 27.2 MiB 1.09 761 10744 4472 5806 466 65.7 MiB 0.08 0.00 4.07648 -139.886 -4.07648 4.07648 0.88 0.00056105 0.000511811 0.0377016 0.0344449 40 2524 30 6.95648e+06 246087 706193. 2443.58 11.79 0.319213 0.279264 26914 176310 -1 2082 24 1894 2565 277033 61234 3.75172 3.75172 -141.408 -3.75172 0 0 926341. 3205.33 0.34 0.10 0.16 -1 -1 0.34 0.0303157 0.0268398 80 86 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 7.17 vpr 65.20 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33988 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 26.8 MiB 1.73 820 12416 4576 5562 2278 65.2 MiB 0.09 0.00 5.01635 -146.768 -5.01635 5.01635 0.87 0.000483925 0.000435888 0.0370353 0.0337885 50 2377 29 6.99608e+06 220735 902133. 3121.57 2.15 0.140086 0.123388 28642 213929 -1 1909 22 1605 2314 176575 41070 4.26721 4.26721 -144.507 -4.26721 0 0 1.08113e+06 3740.92 0.41 0.07 0.21 -1 -1 0.41 0.0256158 0.0227741 88 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 8.18 vpr 65.18 MiB -1 -1 0.17 20616 1 0.03 -1 -1 33932 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 26.7 MiB 1.47 962 11233 3707 5934 1592 65.2 MiB 0.10 0.00 5.03284 -151.156 -5.03284 5.03284 0.91 0.000530967 0.000484508 0.0374847 0.0342271 48 2930 36 6.99608e+06 250167 865456. 2994.66 3.29 0.170247 0.149125 28354 207349 -1 2454 22 2109 3060 320643 66754 4.64259 4.64259 -159.254 -4.64259 0 0 1.05005e+06 3633.38 0.40 0.10 0.20 -1 -1 0.40 0.026396 0.0233645 99 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 9.41 vpr 65.17 MiB -1 -1 0.14 20168 1 0.03 -1 -1 33548 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 26.7 MiB 0.87 839 12196 5162 6681 353 65.2 MiB 0.08 0.00 3.55379 -113.123 -3.55379 3.55379 0.92 0.000397962 0.000359775 0.0332116 0.0301214 46 2261 50 6.99608e+06 206020 828058. 2865.25 5.27 0.215435 0.186877 28066 200906 -1 1688 21 1220 1684 108708 25079 3.33991 3.33991 -112.007 -3.33991 0 0 1.01997e+06 3529.29 0.40 0.05 0.18 -1 -1 0.40 0.0206343 0.0183143 76 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 7.48 vpr 65.12 MiB -1 -1 0.15 20232 1 0.03 -1 -1 33984 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 26.5 MiB 1.55 700 12302 4830 6041 1431 65.1 MiB 0.09 0.00 4.05128 -116.185 -4.05128 4.05128 0.93 0.000462262 0.000420921 0.0374133 0.0341596 44 2703 50 6.99608e+06 235451 787024. 2723.27 2.56 0.169995 0.149136 27778 195446 -1 1833 21 1187 1876 151742 33849 3.80801 3.80801 -121.421 -3.80801 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.0220082 0.0195215 78 25 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 8.90 vpr 65.34 MiB -1 -1 0.16 20268 1 0.03 -1 -1 33472 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 27.0 MiB 2.92 903 10204 4241 5732 231 65.3 MiB 0.08 0.00 4.44731 -141.413 -4.44731 4.44731 0.94 0.000509421 0.00045858 0.0332986 0.0303593 40 3203 32 6.99608e+06 206020 706193. 2443.58 2.59 0.142659 0.12485 26914 176310 -1 2582 26 1925 3211 395909 108698 4.57915 4.57915 -156.213 -4.57915 0 0 926341. 3205.33 0.37 0.12 0.17 -1 -1 0.37 0.0283323 0.0250117 81 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 9.37 vpr 65.48 MiB -1 -1 0.17 20600 1 0.03 -1 -1 33880 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 27.0 MiB 3.19 903 12506 4545 6575 1386 65.5 MiB 0.10 0.00 3.38924 -119.322 -3.38924 3.38924 0.90 0.000513336 0.000468332 0.0395858 0.0360743 50 2568 40 6.99608e+06 250167 902133. 3121.57 2.77 0.173975 0.152763 28642 213929 -1 2051 19 1572 2359 183553 42134 3.37616 3.37616 -126.643 -3.37616 0 0 1.08113e+06 3740.92 0.41 0.07 0.21 -1 -1 0.41 0.0242058 0.0216644 97 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 7.29 vpr 65.04 MiB -1 -1 0.14 20164 1 0.03 -1 -1 34136 -1 -1 15 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 26.6 MiB 1.72 527 10769 4406 5481 882 65.0 MiB 0.07 0.00 3.89582 -110.808 -3.89582 3.89582 0.92 0.000387886 0.000352524 0.0291034 0.0265696 36 2292 38 6.99608e+06 220735 648988. 2245.63 2.40 0.122155 0.107091 26050 158493 -1 1359 21 1244 1818 169708 37451 3.29456 3.29456 -109.219 -3.29456 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0190884 0.0168897 66 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 14.79 vpr 65.13 MiB -1 -1 0.15 20100 1 0.03 -1 -1 33964 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 26.6 MiB 0.39 664 11203 3028 6067 2108 65.1 MiB 0.08 0.00 2.75465 -88.1636 -2.75465 2.75465 0.92 0.000424789 0.000386943 0.0266542 0.0243112 40 2155 26 6.99608e+06 367892 706193. 2443.58 11.16 0.233094 0.203111 26914 176310 -1 1692 20 1158 1910 156293 36151 2.88741 2.88741 -100.184 -2.88741 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.019927 0.0176655 69 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 6.59 vpr 65.40 MiB -1 -1 0.16 20612 1 0.03 -1 -1 34016 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66972 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 27.0 MiB 1.02 886 12302 5141 6872 289 65.4 MiB 0.09 0.00 3.35914 -124.887 -3.35914 3.35914 0.92 0.000460079 0.000419943 0.036954 0.0337003 38 2606 25 6.99608e+06 206020 678818. 2348.85 2.31 0.152168 0.134028 26626 170182 -1 2055 25 1818 2460 203278 42148 3.45687 3.45687 -127.895 -3.45687 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0254018 0.022464 87 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 8.09 vpr 65.23 MiB -1 -1 0.14 20220 1 0.03 -1 -1 33624 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 26.7 MiB 0.97 886 11650 3739 6142 1769 65.2 MiB 0.08 0.00 3.93292 -137.573 -3.93292 3.93292 0.88 0.000428901 0.000391036 0.0334957 0.0306437 44 2058 19 6.99608e+06 191304 787024. 2723.27 3.96 0.175742 0.153398 27778 195446 -1 1756 20 1168 1506 105812 22286 3.38876 3.38876 -129.939 -3.38876 0 0 997811. 3452.63 0.37 0.05 0.17 -1 -1 0.37 0.0208226 0.0184848 75 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 6.78 vpr 64.99 MiB -1 -1 0.14 20404 1 0.03 -1 -1 33432 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 26.5 MiB 0.83 675 11436 3956 5372 2108 65.0 MiB 0.08 0.00 3.86033 -123.728 -3.86033 3.86033 0.94 0.000456342 0.000416034 0.0344593 0.0314915 44 2557 34 6.99608e+06 206020 787024. 2723.27 2.64 0.149258 0.1309 27778 195446 -1 1641 23 1524 2109 158603 37910 3.9203 3.9203 -128.16 -3.9203 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0228813 0.0202291 83 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.42 vpr 65.18 MiB -1 -1 0.14 20420 1 0.03 -1 -1 33456 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 26.7 MiB 0.76 784 8133 1910 6031 192 65.2 MiB 0.06 0.00 3.27288 -116.653 -3.27288 3.27288 0.91 0.000418765 0.0003765 0.02363 0.021642 42 2243 48 6.99608e+06 161872 744469. 2576.02 4.46 0.171289 0.148211 27202 183097 -1 1765 18 1184 1528 133685 27691 3.25642 3.25642 -118.512 -3.25642 0 0 949917. 3286.91 0.35 0.05 0.18 -1 -1 0.35 0.0170088 0.0151195 66 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.85 vpr 65.05 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33968 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 26.6 MiB 0.92 822 13937 5978 7482 477 65.1 MiB 0.11 0.00 3.95082 -133.749 -3.95082 3.95082 0.92 0.000510435 0.000465777 0.0449979 0.0411941 44 2826 40 6.99608e+06 220735 787024. 2723.27 2.57 0.178084 0.156823 27778 195446 -1 2114 22 1906 2780 212010 46158 3.47486 3.47486 -129.119 -3.47486 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0251021 0.0222774 87 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 21.56 vpr 65.61 MiB -1 -1 0.16 20604 1 0.03 -1 -1 33760 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 27.1 MiB 1.59 975 9706 2651 5494 1561 65.6 MiB 0.09 0.00 4.79397 -141.28 -4.79397 4.79397 0.91 0.000532358 0.000486545 0.0317101 0.02898 40 3303 38 6.99608e+06 250167 706193. 2443.58 16.61 0.314783 0.275522 26914 176310 -1 2620 23 2520 3437 448745 95617 4.80751 4.80751 -162.56 -4.80751 0 0 926341. 3205.33 0.35 0.13 0.17 -1 -1 0.35 0.0299887 0.0267759 97 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 9.13 vpr 64.95 MiB -1 -1 0.14 20068 1 0.03 -1 -1 33408 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 26.5 MiB 3.25 630 8909 3655 4893 361 65.0 MiB 0.06 0.00 3.0564 -89.3526 -3.0564 3.0564 0.92 0.00038183 0.000347562 0.0243212 0.022245 38 2055 28 6.99608e+06 191304 678818. 2348.85 2.71 0.12125 0.106197 26626 170182 -1 1643 20 1092 1545 126544 27809 2.99782 2.99782 -99.322 -2.99782 0 0 902133. 3121.57 0.34 0.05 0.17 -1 -1 0.34 0.0186402 0.0165816 64 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 7.19 vpr 65.25 MiB -1 -1 0.16 20376 1 0.03 -1 -1 33956 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 26.8 MiB 1.43 999 13840 5885 7630 325 65.2 MiB 0.11 0.00 3.63599 -124.523 -3.63599 3.63599 0.92 0.000537379 0.000489757 0.0455688 0.0414688 42 3382 43 6.99608e+06 235451 744469. 2576.02 2.42 0.174502 0.153623 27202 183097 -1 2337 22 1991 3046 222901 49590 3.85421 3.85421 -132.716 -3.85421 0 0 949917. 3286.91 0.37 0.08 0.17 -1 -1 0.37 0.0279754 0.0248066 96 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 6.19 vpr 65.43 MiB -1 -1 0.16 20536 1 0.03 -1 -1 33868 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 27.1 MiB 0.86 791 13092 5076 6583 1433 65.4 MiB 0.10 0.00 4.34151 -134.806 -4.34151 4.34151 0.87 0.000486486 0.000443015 0.0403574 0.0368916 46 2501 32 6.99608e+06 220735 828058. 2865.25 2.10 0.138125 0.121683 28066 200906 -1 1778 18 1408 1828 128340 29719 3.24426 3.24426 -123.925 -3.24426 0 0 1.01997e+06 3529.29 0.38 0.06 0.19 -1 -1 0.38 0.0216684 0.0193185 84 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 7.38 vpr 65.14 MiB -1 -1 0.15 20224 1 0.03 -1 -1 33696 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 26.8 MiB 0.88 778 13261 3730 7601 1930 65.1 MiB 0.10 0.00 3.17504 -117.557 -3.17504 3.17504 0.92 0.000475276 0.000432769 0.0391902 0.0357578 50 2131 33 6.99608e+06 220735 902133. 3121.57 3.12 0.155612 0.136375 28642 213929 -1 1590 21 1617 2041 147949 35563 3.02106 3.02106 -117.33 -3.02106 0 0 1.08113e+06 3740.92 0.42 0.06 0.21 -1 -1 0.42 0.0227682 0.0202417 89 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 9.37 vpr 64.87 MiB -1 -1 0.14 20292 1 0.03 -1 -1 33840 -1 -1 10 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 26.4 MiB 1.98 513 10949 4743 5895 311 64.9 MiB 0.07 0.00 2.33546 -88.3817 -2.33546 2.33546 0.92 0.000340037 0.000309812 0.0277819 0.0253954 40 1324 27 6.99608e+06 147157 706193. 2443.58 4.21 0.147205 0.127279 26914 176310 -1 1181 23 764 860 93166 20453 2.25983 2.25983 -86.0791 -2.25983 0 0 926341. 3205.33 0.34 0.05 0.17 -1 -1 0.34 0.0178896 0.0157357 52 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 10.03 vpr 65.20 MiB -1 -1 0.15 20552 1 0.03 -1 -1 34092 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 26.7 MiB 2.35 843 8236 2227 5366 643 65.2 MiB 0.06 0.00 3.78247 -126.288 -3.78247 3.78247 0.90 0.000420582 0.00038269 0.0244959 0.0223685 38 2536 29 6.99608e+06 191304 678818. 2348.85 4.48 0.177675 0.153642 26626 170182 -1 2106 23 1547 2212 217668 42716 3.58136 3.58136 -136.48 -3.58136 0 0 902133. 3121.57 0.34 0.07 0.17 -1 -1 0.34 0.0217948 0.0192768 72 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 7.13 vpr 64.94 MiB -1 -1 0.16 20644 1 0.03 -1 -1 34080 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 26.6 MiB 1.51 802 15273 5455 7440 2378 64.9 MiB 0.11 0.00 3.98218 -132.203 -3.98218 3.98218 0.91 0.000504509 0.000458572 0.0453157 0.0413266 44 2430 42 6.99608e+06 294314 787024. 2723.27 2.28 0.184353 0.162255 27778 195446 -1 2006 22 2002 2886 210270 47858 3.85615 3.85615 -138.988 -3.85615 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0256819 0.0228193 88 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 11.45 vpr 65.47 MiB -1 -1 0.16 20700 1 0.03 -1 -1 33852 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 27.0 MiB 2.51 1225 15044 5236 8229 1579 65.5 MiB 0.12 0.00 4.6726 -146.803 -4.6726 4.6726 0.92 0.000533369 0.000487239 0.0497205 0.0454671 40 3256 42 6.99608e+06 235451 706193. 2443.58 5.57 0.204241 0.180657 26914 176310 -1 2959 22 2174 3170 324163 61807 4.397 4.397 -154.131 -4.397 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0285952 0.0255082 100 59 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 9.42 vpr 64.75 MiB -1 -1 0.14 19996 1 0.03 -1 -1 34028 -1 -1 13 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 26.3 MiB 2.34 422 8539 3493 4523 523 64.8 MiB 0.05 0.00 2.7298 -77.3475 -2.7298 2.7298 0.91 0.000302433 0.00027557 0.0194896 0.0178214 38 1230 26 6.99608e+06 191304 678818. 2348.85 3.97 0.131323 0.113346 26626 170182 -1 988 17 660 740 59916 14111 2.52491 2.52491 -76.7508 -2.52491 0 0 902133. 3121.57 0.34 0.03 0.17 -1 -1 0.34 0.013074 0.0116894 53 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 8.70 vpr 64.78 MiB -1 -1 0.13 20152 1 0.03 -1 -1 33788 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66332 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 26.3 MiB 1.08 692 10050 3569 4878 1603 64.8 MiB 0.07 0.00 4.56174 -113.848 -4.56174 4.56174 0.91 0.000428232 0.000388963 0.0280353 0.025583 40 2097 25 6.99608e+06 220735 706193. 2443.58 4.40 0.187332 0.162486 26914 176310 -1 1605 23 1263 2079 137488 34805 3.61236 3.61236 -117.368 -3.61236 0 0 926341. 3205.33 0.36 0.06 0.16 -1 -1 0.36 0.0227475 0.020175 66 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 5.29 vpr 64.32 MiB -1 -1 0.12 19864 1 0.03 -1 -1 33624 -1 -1 8 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65868 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 26.0 MiB 0.23 399 10055 4241 5582 232 64.3 MiB 0.06 0.00 2.06111 -67.7592 -2.06111 2.06111 0.92 0.000299165 0.000271322 0.0216467 0.0196924 36 1381 35 6.99608e+06 117725 648988. 2245.63 1.99 0.09418 0.08178 26050 158493 -1 935 18 613 680 59062 14806 1.90102 1.90102 -72.2718 -1.90102 0 0 828058. 2865.25 0.32 0.04 0.15 -1 -1 0.32 0.0130402 0.0115803 42 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 6.84 vpr 64.82 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33792 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 26.3 MiB 1.29 805 13358 5696 7249 413 64.8 MiB 0.10 0.00 4.47086 -121.677 -4.47086 4.47086 0.92 0.000455458 0.00041661 0.039091 0.0357033 38 2634 33 6.99608e+06 206020 678818. 2348.85 2.31 0.140899 0.123774 26626 170182 -1 2001 18 1258 1814 144356 32185 4.05506 4.05506 -129.534 -4.05506 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0199095 0.0177097 73 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 6.37 vpr 65.08 MiB -1 -1 0.13 20164 1 0.03 -1 -1 33732 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 26.6 MiB 0.57 715 11617 3653 5870 2094 65.1 MiB 0.08 0.00 2.89821 -97.4108 -2.89821 2.89821 0.92 0.000487979 0.000444628 0.0300221 0.0273698 40 2334 43 6.99608e+06 309029 706193. 2443.58 2.59 0.149749 0.130788 26914 176310 -1 1764 22 1317 2198 155518 39145 2.91362 2.91362 -107.306 -2.91362 0 0 926341. 3205.33 0.34 0.06 0.17 -1 -1 0.34 0.0221848 0.0195698 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 21.38 vpr 64.86 MiB -1 -1 0.16 20680 1 0.03 -1 -1 33912 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 26.5 MiB 1.70 800 6839 1729 4140 970 64.9 MiB 0.06 0.00 4.20669 -125.419 -4.20669 4.20669 0.90 0.0004914 0.000448351 0.0219086 0.0200545 46 2866 37 6.99608e+06 220735 828058. 2865.25 16.40 0.260928 0.226109 28066 200906 -1 1963 27 1930 2965 207915 54574 3.98026 3.98026 -130.663 -3.98026 0 0 1.01997e+06 3529.29 0.38 0.09 0.20 -1 -1 0.38 0.0284892 0.025116 87 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 10.00 vpr 64.87 MiB -1 -1 0.15 20144 1 0.03 -1 -1 33760 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 26.4 MiB 2.47 688 11116 4644 6232 240 64.9 MiB 0.08 0.00 3.13575 -107.33 -3.13575 3.13575 0.93 0.000428665 0.000391157 0.0319454 0.0291598 40 2069 25 6.99608e+06 176588 706193. 2443.58 4.31 0.176975 0.153193 26914 176310 -1 1705 19 1205 1671 144211 32934 2.85647 2.85647 -115.13 -2.85647 0 0 926341. 3205.33 0.34 0.06 0.17 -1 -1 0.34 0.0193962 0.0172106 69 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 7.75 vpr 65.11 MiB -1 -1 0.15 20424 1 0.03 -1 -1 33600 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 26.7 MiB 1.58 579 8876 3271 4297 1308 65.1 MiB 0.06 0.00 3.70857 -107.816 -3.70857 3.70857 0.91 0.000394713 0.000359612 0.0245716 0.0224686 46 2274 40 6.99608e+06 206020 828058. 2865.25 2.93 0.122538 0.107771 28066 200906 -1 1494 18 1131 1685 141949 32817 3.31781 3.31781 -110.058 -3.31781 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0176707 0.0157561 66 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.62 vpr 64.81 MiB -1 -1 0.15 20464 1 0.03 -1 -1 33848 -1 -1 18 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 26.4 MiB 0.87 581 9540 3893 5214 433 64.8 MiB 0.06 0.00 3.25804 -101.918 -3.25804 3.25804 0.91 0.000385245 0.000351948 0.0247942 0.0226419 40 1989 36 6.99608e+06 264882 706193. 2443.58 2.55 0.128034 0.111711 26914 176310 -1 1716 21 1169 1835 175888 37843 3.24451 3.24451 -111.764 -3.24451 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.0195418 0.0173014 69 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 6.25 vpr 64.66 MiB -1 -1 0.14 20136 1 0.03 -1 -1 33576 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 26.1 MiB 0.43 677 11234 4696 6284 254 64.7 MiB 0.07 0.00 3.31833 -109.934 -3.31833 3.31833 0.93 0.000425625 0.000386923 0.0310569 0.0283721 38 2069 49 6.99608e+06 147157 678818. 2348.85 2.63 0.138966 0.121043 26626 170182 -1 1632 22 1173 1750 152835 32234 3.08097 3.08097 -114.127 -3.08097 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0205199 0.0181923 58 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 7.12 vpr 64.94 MiB -1 -1 0.16 20248 1 0.03 -1 -1 33544 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 26.5 MiB 1.00 656 7596 1857 5260 479 64.9 MiB 0.06 0.00 3.30918 -105.476 -3.30918 3.30918 0.93 0.000413902 0.00037684 0.0221067 0.0202451 36 2831 44 6.99608e+06 191304 648988. 2245.63 2.94 0.117237 0.102309 26050 158493 -1 1963 22 1288 1769 137287 33344 3.28422 3.28422 -119.957 -3.28422 0 0 828058. 2865.25 0.33 0.06 0.16 -1 -1 0.33 0.02022 0.0178674 69 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.01 vpr 65.12 MiB -1 -1 0.16 20212 1 0.03 -1 -1 33680 -1 -1 15 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 26.6 MiB 2.88 919 9036 2362 6094 580 65.1 MiB 0.06 0.00 2.93125 -106.214 -2.93125 2.93125 0.92 0.000426419 0.000387565 0.0257187 0.0235001 38 2275 29 6.99608e+06 220735 678818. 2348.85 1.92 0.103438 0.0904464 26626 170182 -1 1906 20 1248 1666 131418 27524 2.54072 2.54072 -103.379 -2.54072 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0197662 0.0174559 77 48 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 10.28 vpr 65.55 MiB -1 -1 0.15 20496 1 0.03 -1 -1 33456 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 27.1 MiB 1.32 980 13324 5630 7408 286 65.6 MiB 0.11 0.00 4.30703 -125.875 -4.30703 4.30703 0.91 0.000539431 0.00049106 0.0435744 0.03974 48 2769 27 6.99608e+06 235451 865456. 2994.66 5.59 0.259997 0.227576 28354 207349 -1 2305 21 1566 2487 218085 46245 3.85107 3.85107 -126.186 -3.85107 0 0 1.05005e+06 3633.38 0.41 0.08 0.20 -1 -1 0.41 0.0266747 0.023774 92 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 20.68 vpr 65.64 MiB -1 -1 0.16 20612 1 0.03 -1 -1 33792 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 27.1 MiB 1.66 1014 12683 4657 5804 2222 65.6 MiB 0.10 0.00 4.21676 -146.737 -4.21676 4.21676 0.85 0.000562537 0.000509427 0.03852 0.0350618 40 3377 27 6.99608e+06 279598 706193. 2443.58 15.82 0.32458 0.283381 26914 176310 -1 2683 22 2481 3505 303631 63000 4.1642 4.1642 -153.469 -4.1642 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0275938 0.0246144 106 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 7.29 vpr 64.76 MiB -1 -1 0.15 20228 1 0.03 -1 -1 33968 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 26.3 MiB 1.43 880 9374 3265 4936 1173 64.8 MiB 0.07 0.00 3.62727 -120.557 -3.62727 3.62727 0.93 0.000437818 0.000394031 0.0281106 0.0257362 38 2274 42 6.99608e+06 161872 678818. 2348.85 2.62 0.141874 0.124365 26626 170182 -1 1870 21 1290 1839 154887 30757 3.07597 3.07597 -117.571 -3.07597 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0204158 0.0181383 66 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 8.23 vpr 65.45 MiB -1 -1 0.17 20596 1 0.03 -1 -1 33496 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 26.9 MiB 1.71 969 14528 6235 7667 626 65.5 MiB 0.11 0.00 3.54759 -121.928 -3.54759 3.54759 0.90 0.00051053 0.000465251 0.046465 0.0424028 44 3091 40 6.99608e+06 250167 787024. 2723.27 3.16 0.183641 0.16109 27778 195446 -1 2114 23 1808 2557 218723 48461 3.43406 3.43406 -125.843 -3.43406 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0278144 0.0246369 99 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.60 vpr 65.55 MiB -1 -1 0.16 20636 1 0.03 -1 -1 33784 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 27.0 MiB 1.71 989 9196 3129 4406 1661 65.6 MiB 0.08 0.00 5.24281 -163.942 -5.24281 5.24281 0.91 0.0005198 0.00047285 0.0317843 0.0290512 46 3107 34 6.99608e+06 250167 828058. 2865.25 2.49 0.150921 0.133249 28066 200906 -1 2427 24 2260 3261 322064 66079 4.9951 4.9951 -167.895 -4.9951 0 0 1.01997e+06 3529.29 0.40 0.10 0.20 -1 -1 0.40 0.0299589 0.0266172 104 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 12.85 vpr 65.65 MiB -1 -1 0.18 20364 1 0.03 -1 -1 33744 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67224 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 27.1 MiB 3.38 930 9881 4037 5524 320 65.6 MiB 0.08 0.00 5.08213 -159.731 -5.08213 5.08213 0.93 0.000547224 0.000496248 0.033365 0.030409 44 3191 49 6.99608e+06 264882 787024. 2723.27 6.10 0.265145 0.230174 27778 195446 -1 2262 22 1979 2791 227435 48423 4.92804 4.92804 -168.151 -4.92804 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0273241 0.0242495 103 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 11.28 vpr 65.39 MiB -1 -1 0.16 20480 1 0.03 -1 -1 33556 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 27.0 MiB 2.37 879 13768 5339 6393 2036 65.4 MiB 0.11 0.00 3.89582 -126.245 -3.89582 3.89582 0.91 0.00051052 0.000465516 0.0437545 0.0399566 54 2532 25 6.99608e+06 235451 949917. 3286.91 5.45 0.237219 0.206743 29506 232905 -1 1991 21 1567 2125 189300 39017 3.55316 3.55316 -123.951 -3.55316 0 0 1.17392e+06 4061.99 0.45 0.07 0.23 -1 -1 0.45 0.025411 0.02261 93 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 19.21 vpr 65.21 MiB -1 -1 0.15 20192 1 0.03 -1 -1 33712 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 26.7 MiB 1.06 818 11864 4957 6528 379 65.2 MiB 0.07 0.00 3.99218 -112.33 -3.99218 3.99218 0.86 0.000388638 0.000354923 0.0300181 0.0274465 40 2655 45 6.99608e+06 206020 706193. 2443.58 15.00 0.241355 0.209768 26914 176310 -1 2076 22 1484 2121 208966 48190 3.79596 3.79596 -122.324 -3.79596 0 0 926341. 3205.33 0.36 0.07 0.16 -1 -1 0.36 0.0218558 0.0193395 72 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 10.48 vpr 65.38 MiB -1 -1 0.17 20716 1 0.03 -1 -1 34008 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 27.0 MiB 1.47 1337 8083 1871 5905 307 65.4 MiB 0.09 0.00 5.02 -170.696 -5.02 5.02 0.90 0.000601257 0.000546401 0.0301784 0.0275618 50 3572 29 6.99608e+06 309029 902133. 3121.57 5.54 0.257643 0.225548 28642 213929 -1 3217 19 2341 3402 287769 59163 5.59054 5.59054 -190.004 -5.59054 0 0 1.08113e+06 3740.92 0.41 0.10 0.20 -1 -1 0.41 0.0292656 0.0262478 129 84 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.03 vpr 64.96 MiB -1 -1 0.15 20268 1 0.03 -1 -1 33792 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66520 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 26.6 MiB 3.69 589 8599 2844 4344 1411 65.0 MiB 0.06 0.00 3.01 -97.4254 -3.01 3.01 0.91 0.000390858 0.000356432 0.0243913 0.0223348 40 1560 21 6.99608e+06 161872 706193. 2443.58 2.14 0.113631 0.0991646 26914 176310 -1 1412 22 1176 1593 130059 30761 2.93162 2.93162 -102.009 -2.93162 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.0198999 0.0176082 65 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 9.39 vpr 65.18 MiB -1 -1 0.15 20716 1 0.03 -1 -1 33764 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 26.8 MiB 0.70 792 13524 5096 6588 1840 65.2 MiB 0.10 0.00 4.60267 -142.66 -4.60267 4.60267 0.88 0.000489414 0.000451811 0.0422257 0.0384594 52 2817 39 6.99608e+06 220735 926341. 3205.33 5.40 0.223187 0.194488 29218 227130 -1 1873 23 1635 2275 182344 41764 4.12671 4.12671 -138.837 -4.12671 0 0 1.14541e+06 3963.36 0.42 0.07 0.22 -1 -1 0.42 0.0251886 0.0222632 85 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 25.48 vpr 65.41 MiB -1 -1 0.17 20508 1 0.03 -1 -1 33456 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 27.0 MiB 1.41 1020 12416 4555 6119 1742 65.4 MiB 0.10 0.00 3.83208 -127.177 -3.83208 3.83208 0.92 0.000505438 0.000461956 0.0401764 0.0367112 42 3450 36 6.99608e+06 220735 744469. 2576.02 20.74 0.283403 0.247016 27202 183097 -1 2539 19 1614 2491 229704 48395 3.46042 3.46042 -128.596 -3.46042 0 0 949917. 3286.91 0.37 0.08 0.18 -1 -1 0.37 0.0236063 0.0210592 91 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 7.77 vpr 65.11 MiB -1 -1 0.14 20324 1 0.03 -1 -1 33992 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 26.6 MiB 0.95 673 10228 2970 5232 2026 65.1 MiB 0.07 0.00 4.31309 -118.378 -4.31309 4.31309 0.92 0.00046046 0.000419644 0.0292112 0.0266735 40 2459 37 6.99608e+06 235451 706193. 2443.58 3.58 0.146884 0.128504 26914 176310 -1 1893 23 1363 2339 206113 46973 4.01142 4.01142 -127.274 -4.01142 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.022998 0.0203347 68 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 9.51 vpr 65.34 MiB -1 -1 0.15 20800 1 0.03 -1 -1 33952 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 26.8 MiB 1.44 915 11571 4863 6343 365 65.3 MiB 0.09 0.00 4.31005 -133.816 -4.31005 4.31005 0.91 0.000540738 0.000494949 0.0382046 0.0348158 44 2574 26 6.99608e+06 220735 787024. 2723.27 4.77 0.196011 0.170047 27778 195446 -1 1870 20 1405 1866 127921 28382 3.34656 3.34656 -122.828 -3.34656 0 0 997811. 3452.63 0.37 0.06 0.19 -1 -1 0.37 0.0234706 0.0208193 90 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 8.28 vpr 65.52 MiB -1 -1 0.15 20432 1 0.03 -1 -1 33888 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67088 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 27.0 MiB 1.78 1099 13430 4920 6010 2500 65.5 MiB 0.11 0.00 3.65969 -129.38 -3.65969 3.65969 0.91 0.000518411 0.000471618 0.0435778 0.0398068 40 2995 22 6.99608e+06 220735 706193. 2443.58 3.03 0.17179 0.15186 26914 176310 -1 2604 43 2315 3605 725612 310216 3.48731 3.48731 -133.555 -3.48731 0 0 926341. 3205.33 0.35 0.25 0.17 -1 -1 0.35 0.0475929 0.0420816 92 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 8.74 vpr 65.59 MiB -1 -1 0.16 20492 1 0.03 -1 -1 33828 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67160 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 27.0 MiB 2.68 1101 15216 5672 7066 2478 65.6 MiB 0.12 0.00 3.74401 -128.073 -3.74401 3.74401 0.91 0.000543368 0.000497769 0.0508042 0.046269 38 3558 41 6.99608e+06 235451 678818. 2348.85 2.74 0.169205 0.149176 26626 170182 -1 2765 18 1860 2465 189085 40352 3.60011 3.60011 -137.797 -3.60011 0 0 902133. 3121.57 0.34 0.07 0.17 -1 -1 0.34 0.0246872 0.0221537 101 59 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 15.99 vpr 65.02 MiB -1 -1 0.15 20456 1 0.03 -1 -1 33512 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 26.4 MiB 1.10 743 11034 4121 5253 1660 65.0 MiB 0.08 0.00 4.35583 -118.93 -4.35583 4.35583 0.92 0.000461414 0.000422487 0.0331407 0.0302652 40 2999 39 6.99608e+06 206020 706193. 2443.58 11.65 0.267741 0.23338 26914 176310 -1 2275 23 1507 2283 235552 56739 4.97157 4.97157 -142.8 -4.97157 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0243925 0.0216395 74 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 18.84 vpr 65.37 MiB -1 -1 0.15 20652 1 0.03 -1 -1 33748 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 27.0 MiB 2.23 793 9042 2962 4450 1630 65.4 MiB 0.07 0.00 4.21168 -126.242 -4.21168 4.21168 0.93 0.000481768 0.000438499 0.0289735 0.0264956 42 3421 45 6.99608e+06 191304 744469. 2576.02 13.33 0.260076 0.225528 27202 183097 -1 2058 21 1737 2434 191590 46230 4.02242 4.02242 -132.286 -4.02242 0 0 949917. 3286.91 0.36 0.07 0.18 -1 -1 0.36 0.0224275 0.019847 81 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 7.31 vpr 65.22 MiB -1 -1 0.17 20788 1 0.03 -1 -1 34088 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 26.8 MiB 1.00 950 10726 4120 5384 1222 65.2 MiB 0.09 0.00 4.31211 -136.261 -4.31211 4.31211 0.92 0.000546397 0.000502373 0.036739 0.0334947 48 3520 36 6.99608e+06 235451 865456. 2994.66 2.84 0.151068 0.132657 28354 207349 -1 2537 37 2842 4365 548908 166410 4.26266 4.26266 -143.635 -4.26266 0 0 1.05005e+06 3633.38 0.39 0.17 0.20 -1 -1 0.39 0.0388478 0.0340138 99 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.22 vpr 65.46 MiB -1 -1 0.16 20444 1 0.03 -1 -1 33852 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67036 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 26.9 MiB 1.10 977 12980 5460 6998 522 65.5 MiB 0.11 0.00 3.94476 -129.858 -3.94476 3.94476 0.90 0.00055666 0.000507319 0.0444935 0.0405616 54 3499 42 6.99608e+06 235451 949917. 3286.91 3.65 0.190276 0.167039 29506 232905 -1 2498 22 2198 3206 290016 64071 3.76882 3.76882 -135.138 -3.76882 0 0 1.17392e+06 4061.99 0.43 0.09 0.24 -1 -1 0.43 0.0273827 0.0242892 104 74 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 6.56 vpr 64.88 MiB -1 -1 0.15 20096 1 0.03 -1 -1 33544 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 26.3 MiB 0.65 645 10769 4489 5977 303 64.9 MiB 0.07 0.00 3.21628 -99.3334 -3.21628 3.21628 0.91 0.00038823 0.000345189 0.0295845 0.027053 38 1991 25 6.99608e+06 147157 678818. 2348.85 2.75 0.129617 0.113848 26626 170182 -1 1530 21 1168 1592 107224 24373 2.80227 2.80227 -98.3658 -2.80227 0 0 902133. 3121.57 0.34 0.05 0.16 -1 -1 0.34 0.0190809 0.0168511 60 20 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 9.39 vpr 65.25 MiB -1 -1 0.15 20624 1 0.03 -1 -1 33780 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 26.8 MiB 0.95 827 10726 4440 5997 289 65.2 MiB 0.08 0.00 4.06528 -146.791 -4.06528 4.06528 0.91 0.000478174 0.000435317 0.0328764 0.0300466 46 2656 31 6.99608e+06 220735 828058. 2865.25 5.10 0.201094 0.174713 28066 200906 -1 1977 20 1982 2630 211157 45567 3.77505 3.77505 -141.677 -3.77505 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0233235 0.0207732 93 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 26.44 vpr 65.25 MiB -1 -1 0.16 20496 1 0.03 -1 -1 34140 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 26.7 MiB 1.19 950 12808 5316 6896 596 65.2 MiB 0.11 0.00 4.80548 -149.393 -4.80548 4.80548 0.92 0.000593504 0.000544102 0.0448247 0.0410046 50 3454 27 6.99608e+06 235451 902133. 3121.57 21.78 0.345938 0.303046 28642 213929 -1 2403 29 2499 3801 392900 102108 5.00186 5.00186 -162.712 -5.00186 0 0 1.08113e+06 3740.92 0.41 0.13 0.21 -1 -1 0.41 0.0353471 0.0312688 98 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.94 vpr 65.16 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33680 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 26.8 MiB 0.74 849 13599 4722 6429 2448 65.2 MiB 0.11 0.00 4.35389 -139.539 -4.35389 4.35389 0.92 0.000509894 0.000464718 0.0431234 0.0393553 38 2795 34 6.99608e+06 220735 678818. 2348.85 3.91 0.170074 0.149343 26626 170182 -1 1911 22 1727 2347 177407 38768 3.50386 3.50386 -131.231 -3.50386 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0255052 0.0226594 85 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 8.27 vpr 64.88 MiB -1 -1 0.16 20448 1 0.03 -1 -1 33712 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 26.4 MiB 1.40 640 11474 4735 6197 542 64.9 MiB 0.07 0.00 3.65345 -112.727 -3.65345 3.65345 0.93 0.000415152 0.000378384 0.029301 0.0267635 48 1940 24 6.99608e+06 294314 865456. 2994.66 3.52 0.132996 0.117015 28354 207349 -1 1580 19 1112 1760 198312 48286 3.25871 3.25871 -116.61 -3.25871 0 0 1.05005e+06 3633.38 0.41 0.07 0.20 -1 -1 0.41 0.018677 0.0165885 72 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 29.86 vpr 65.90 MiB -1 -1 0.17 20756 1 0.03 -1 -1 33792 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67480 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 27.2 MiB 1.85 1528 15924 5227 8931 1766 65.9 MiB 0.14 0.00 6.09323 -187.636 -6.09323 6.09323 0.93 0.000600385 0.000546694 0.0573725 0.0522692 40 4257 42 6.99608e+06 264882 706193. 2443.58 24.56 0.374119 0.326668 26914 176310 -1 3547 23 2806 4085 457786 97175 5.74254 5.74254 -196.746 -5.74254 0 0 926341. 3205.33 0.34 0.13 0.17 -1 -1 0.34 0.0307332 0.0272925 116 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 7.62 vpr 64.93 MiB -1 -1 0.16 20056 1 0.03 -1 -1 33484 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 26.6 MiB 0.72 768 13524 5053 6623 1848 64.9 MiB 0.10 0.00 4.76624 -142.397 -4.76624 4.76624 0.92 0.000497864 0.000453426 0.0437103 0.0399754 46 2785 27 6.99608e+06 206020 828058. 2865.25 3.54 0.165662 0.145893 28066 200906 -1 1845 20 1494 2008 149110 34618 4.17065 4.17065 -143.287 -4.17065 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0228803 0.0204204 83 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 11.74 vpr 64.54 MiB -1 -1 0.13 20148 1 0.03 -1 -1 33660 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 26.1 MiB 0.25 516 10672 4080 5320 1272 64.5 MiB 0.06 0.00 2.96036 -91.6204 -2.96036 2.96036 0.93 0.000371046 0.000336173 0.0264421 0.0241638 40 1546 38 6.99608e+06 191304 706193. 2443.58 8.29 0.212326 0.183684 26914 176310 -1 1189 18 859 1340 90198 25029 2.86132 2.86132 -98.2156 -2.86132 0 0 926341. 3205.33 0.34 0.05 0.17 -1 -1 0.34 0.0164226 0.0145876 51 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 20.77 vpr 65.46 MiB -1 -1 0.15 20820 1 0.03 -1 -1 33848 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67032 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 27.1 MiB 1.42 903 15560 6646 7056 1858 65.5 MiB 0.11 0.00 4.75332 -131.249 -4.75332 4.75332 0.89 0.000518406 0.000460496 0.048369 0.0441035 48 2982 46 6.99608e+06 235451 865456. 2994.66 16.02 0.323525 0.282807 28354 207349 -1 2202 23 1722 2767 230689 51369 4.63516 4.63516 -141.993 -4.63516 0 0 1.05005e+06 3633.38 0.39 0.08 0.19 -1 -1 0.39 0.0256821 0.0227697 85 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 6.94 vpr 64.99 MiB -1 -1 0.14 20292 1 0.03 -1 -1 33856 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 26.4 MiB 1.03 493 9540 2740 5276 1524 65.0 MiB 0.06 0.00 2.966 -97.1273 -2.966 2.966 0.92 0.000396255 0.000360261 0.0248049 0.0226393 38 1851 39 6.99608e+06 206020 678818. 2348.85 2.75 0.133324 0.116723 26626 170182 -1 1279 23 1077 1568 111684 26906 3.55017 3.55017 -109.108 -3.55017 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.020514 0.0181257 57 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 7.51 vpr 64.89 MiB -1 -1 0.16 20288 1 0.03 -1 -1 33580 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 26.4 MiB 0.68 768 9081 3737 5047 297 64.9 MiB 0.07 0.00 3.80347 -118.428 -3.80347 3.80347 0.92 0.000439536 0.000402439 0.0268342 0.0244907 38 2446 44 6.99608e+06 191304 678818. 2348.85 3.61 0.142439 0.124355 26626 170182 -1 1772 21 1331 1863 163805 32644 3.34751 3.34751 -114.704 -3.34751 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0208849 0.0185742 69 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.17 vpr 65.57 MiB -1 -1 0.17 20688 1 0.03 -1 -1 33608 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67144 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 27.1 MiB 1.90 956 12416 5112 6468 836 65.6 MiB 0.10 0.00 4.12666 -129.088 -4.12666 4.12666 0.92 0.000535236 0.000492155 0.0400105 0.0365327 38 3346 46 6.99608e+06 264882 678818. 2348.85 2.92 0.16503 0.144941 26626 170182 -1 2546 22 1925 2830 259948 53297 4.4105 4.4105 -145.109 -4.4105 0 0 902133. 3121.57 0.36 0.09 0.17 -1 -1 0.36 0.0274571 0.0244233 97 56 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 8.91 vpr 65.26 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33924 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 26.8 MiB 1.69 974 13599 5339 6861 1399 65.3 MiB 0.11 0.00 4.25698 -140.266 -4.25698 4.25698 0.92 0.000516664 0.000470129 0.0443707 0.0404738 38 3070 41 6.99608e+06 220735 678818. 2348.85 3.91 0.184745 0.162612 26626 170182 -1 2342 23 1928 2638 217168 45954 4.67035 4.67035 -156.564 -4.67035 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0275401 0.0245482 93 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 10.29 vpr 65.12 MiB -1 -1 0.16 20608 1 0.03 -1 -1 33508 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 26.7 MiB 2.47 1087 13768 5458 5698 2612 65.1 MiB 0.11 0.00 4.58577 -147.33 -4.58577 4.58577 0.92 0.000511335 0.000466094 0.0445165 0.0406675 38 3125 30 6.99608e+06 220735 678818. 2348.85 4.51 0.17354 0.152679 26626 170182 -1 2517 19 1814 2602 203364 41786 4.42561 4.42561 -152.77 -4.42561 0 0 902133. 3121.57 0.35 0.07 0.17 -1 -1 0.35 0.0235735 0.020967 90 48 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 7.96 vpr 64.94 MiB -1 -1 0.15 20124 1 0.03 -1 -1 33584 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 26.5 MiB 2.28 854 11609 4663 6043 903 64.9 MiB 0.08 0.00 3.95082 -130.122 -3.95082 3.95082 0.90 0.000415192 0.000378599 0.0334915 0.0305527 38 2338 24 6.99608e+06 161872 678818. 2348.85 2.50 0.132159 0.115847 26626 170182 -1 1952 23 1202 1634 138008 27635 3.34956 3.34956 -121.518 -3.34956 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0218788 0.0193617 67 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 6.86 vpr 65.18 MiB -1 -1 0.16 20616 1 0.03 -1 -1 34000 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 26.8 MiB 1.00 785 11813 4965 6422 426 65.2 MiB 0.09 0.00 3.70143 -122.026 -3.70143 3.70143 0.91 0.000446596 0.000409231 0.0358874 0.0327736 46 2466 44 6.99608e+06 206020 828058. 2865.25 2.54 0.16834 0.147994 28066 200906 -1 1742 24 1592 2267 169951 39702 3.57132 3.57132 -119.748 -3.57132 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0249189 0.0221129 86 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 9.66 vpr 65.36 MiB -1 -1 0.15 20672 1 0.03 -1 -1 34028 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 26.9 MiB 1.36 809 10756 2943 5618 2195 65.4 MiB 0.08 0.00 3.4598 -111.751 -3.4598 3.4598 0.91 0.000470758 0.000429096 0.0316238 0.0288981 46 2326 24 6.99608e+06 279598 828058. 2865.25 4.98 0.187282 0.162636 28066 200906 -1 1700 21 1475 2174 152653 35067 3.29957 3.29957 -109.769 -3.29957 0 0 1.01997e+06 3529.29 0.39 0.06 0.20 -1 -1 0.39 0.0231455 0.0205277 91 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 18.36 vpr 65.05 MiB -1 -1 0.16 20060 1 0.03 -1 -1 34044 -1 -1 17 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 26.6 MiB 0.53 678 13280 5850 6635 795 65.0 MiB 0.09 0.00 3.68935 -104.602 -3.68935 3.68935 0.92 0.000412067 0.000374897 0.036066 0.0328979 42 2430 50 6.99608e+06 250167 744469. 2576.02 14.56 0.256117 0.223314 27202 183097 -1 1806 21 1391 2073 190827 45683 3.81422 3.81422 -114.081 -3.81422 0 0 949917. 3286.91 0.37 0.07 0.18 -1 -1 0.37 0.0204553 0.0181468 71 20 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 8.37 vpr 65.14 MiB -1 -1 0.16 20304 1 0.03 -1 -1 33704 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 26.8 MiB 2.19 779 10020 4070 5537 413 65.1 MiB 0.08 0.00 4.56081 -142.799 -4.56081 4.56081 0.92 0.000465171 0.000424765 0.0314362 0.0287472 44 2750 43 6.99608e+06 220735 787024. 2723.27 2.85 0.151754 0.13233 27778 195446 -1 1920 23 1788 2373 198004 44117 3.97955 3.97955 -138.289 -3.97955 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0243342 0.021609 87 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 8.53 vpr 64.99 MiB -1 -1 0.14 20720 1 0.03 -1 -1 33600 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 26.5 MiB 0.93 988 11366 4377 5078 1911 65.0 MiB 0.09 0.00 3.4477 -126.272 -3.4477 3.4477 0.93 0.000488388 0.000445787 0.0359505 0.0328559 40 3223 42 6.99608e+06 206020 706193. 2443.58 4.29 0.166114 0.145472 26914 176310 -1 2772 21 2024 2787 332780 64435 3.28857 3.28857 -136.411 -3.28857 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0234909 0.0208233 93 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 9.04 vpr 64.79 MiB -1 -1 0.13 20216 1 0.03 -1 -1 33896 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 26.3 MiB 0.43 735 13335 5144 6746 1445 64.8 MiB 0.09 0.00 4.50448 -121.497 -4.50448 4.50448 0.92 0.00045372 0.000411682 0.0335521 0.0305561 46 2320 24 6.99608e+06 353176 828058. 2865.25 5.36 0.179132 0.156095 28066 200906 -1 1726 19 1053 1905 137788 31995 3.80592 3.80592 -119.773 -3.80592 0 0 1.01997e+06 3529.29 0.37 0.06 0.20 -1 -1 0.37 0.0202209 0.0180022 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 8.32 vpr 65.32 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33816 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 26.8 MiB 2.25 849 9872 4071 5471 330 65.3 MiB 0.08 0.00 4.41391 -145.413 -4.41391 4.41391 0.91 0.000531197 0.000485646 0.033684 0.0308624 44 3096 30 6.99608e+06 206020 787024. 2723.27 2.72 0.167883 0.148308 27778 195446 -1 2236 23 1920 2868 210913 47371 4.3396 4.3396 -149.501 -4.3396 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.0273868 0.0243757 86 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 8.40 vpr 65.55 MiB -1 -1 0.16 20724 1 0.03 -1 -1 33784 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 27.0 MiB 0.85 1031 9706 3955 5323 428 65.6 MiB 0.08 0.00 5.10216 -163.017 -5.10216 5.10216 0.92 0.000557586 0.000508133 0.0333956 0.0304694 48 3809 38 6.99608e+06 250167 865456. 2994.66 4.10 0.166608 0.146117 28354 207349 -1 2651 28 2478 3481 495235 132429 5.38994 5.38994 -176.091 -5.38994 0 0 1.05005e+06 3633.38 0.41 0.15 0.20 -1 -1 0.41 0.0350042 0.0311553 102 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 9.73 vpr 65.38 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33952 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66948 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 26.8 MiB 0.95 1043 9881 4045 5563 273 65.4 MiB 0.09 0.00 4.39921 -147.12 -4.39921 4.39921 0.91 0.000548874 0.000500349 0.0335921 0.0306894 46 3556 37 6.99608e+06 250167 828058. 2865.25 5.39 0.233268 0.203348 28066 200906 -1 2542 22 1921 2813 246127 50838 4.2931 4.2931 -151.36 -4.2931 0 0 1.01997e+06 3529.29 0.39 0.09 0.20 -1 -1 0.39 0.0278829 0.0248221 104 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 6.57 vpr 65.07 MiB -1 -1 0.15 20456 1 0.03 -1 -1 33728 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 26.7 MiB 1.04 639 8765 3407 4448 910 65.1 MiB 0.07 0.00 4.31695 -124.149 -4.31695 4.31695 0.91 0.000419829 0.000383719 0.0256412 0.0234776 42 2236 38 6.99608e+06 191304 744469. 2576.02 2.29 0.129362 0.112713 27202 183097 -1 1564 19 1116 1583 126166 28470 3.33556 3.33556 -115.866 -3.33556 0 0 949917. 3286.91 0.35 0.06 0.18 -1 -1 0.35 0.018777 0.0167322 71 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 10.02 vpr 65.52 MiB -1 -1 0.15 20580 1 0.03 -1 -1 33952 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 27.1 MiB 1.09 919 12808 4622 5804 2382 65.5 MiB 0.10 0.00 5.00926 -154.589 -5.00926 5.00926 0.92 0.00054069 0.00049358 0.0426545 0.0390008 48 2897 47 6.99608e+06 264882 865456. 2994.66 5.50 0.260096 0.22623 28354 207349 -1 2329 23 2356 3266 309320 75619 4.83874 4.83874 -164.15 -4.83874 0 0 1.05005e+06 3633.38 0.40 0.10 0.20 -1 -1 0.40 0.0280917 0.0249217 104 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 22.64 vpr 65.36 MiB -1 -1 0.16 20732 1 0.03 -1 -1 33936 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 27.0 MiB 1.25 773 12860 5275 6775 810 65.4 MiB 0.10 0.00 4.8046 -140.908 -4.8046 4.8046 0.94 0.000510288 0.000464365 0.0412329 0.0376137 48 2906 29 6.99608e+06 206020 865456. 2994.66 17.97 0.32413 0.282984 28354 207349 -1 2232 21 1751 2784 284527 71100 4.13436 4.13436 -142.551 -4.13436 0 0 1.05005e+06 3633.38 0.40 0.09 0.19 -1 -1 0.40 0.0237581 0.0211539 82 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 6.77 vpr 65.51 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33720 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67084 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 27.1 MiB 1.30 794 10228 3166 5486 1576 65.5 MiB 0.08 0.00 5.19565 -143.212 -5.19565 5.19565 0.92 0.000490519 0.000447272 0.0330313 0.0301792 42 2712 27 6.99608e+06 250167 744469. 2576.02 2.17 0.134158 0.117727 27202 183097 -1 2054 20 1322 1912 169320 36759 4.33151 4.33151 -137.058 -4.33151 0 0 949917. 3286.91 0.37 0.07 0.18 -1 -1 0.37 0.0234878 0.0209129 87 43 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 8.78 vpr 65.28 MiB -1 -1 0.16 20404 1 0.03 -1 -1 34000 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 26.7 MiB 2.25 966 13788 4937 6208 2643 65.3 MiB 0.11 0.00 4.24398 -133.079 -4.24398 4.24398 0.92 0.000526976 0.000480394 0.043922 0.0400874 46 3311 48 6.99608e+06 294314 828058. 2865.25 3.10 0.180349 0.158872 28066 200906 -1 2374 27 2588 3623 402761 112973 4.3885 4.3885 -146.75 -4.3885 0 0 1.01997e+06 3529.29 0.39 0.13 0.19 -1 -1 0.39 0.0323559 0.0285371 108 78 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 24.67 vpr 65.60 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33968 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67176 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 27.1 MiB 1.86 1164 15481 5166 8845 1470 65.6 MiB 0.13 0.00 4.66597 -153.274 -4.66597 4.66597 0.92 0.000536816 0.000488926 0.0498182 0.0453126 40 3016 25 6.99608e+06 250167 706193. 2443.58 19.43 0.287054 0.250235 26914 176310 -1 2766 22 2077 3028 306564 59776 4.30941 4.30941 -157.067 -4.30941 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0273957 0.0244151 95 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 11.54 vpr 65.59 MiB -1 -1 0.17 20484 1 0.03 -1 -1 33832 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67160 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 27.0 MiB 2.82 970 14431 6168 7633 630 65.6 MiB 0.11 0.00 3.80498 -123.528 -3.80498 3.80498 0.90 0.000504427 0.000458917 0.0448752 0.040859 50 2689 23 6.99608e+06 294314 902133. 3121.57 5.33 0.231697 0.201606 28642 213929 -1 2315 23 1817 2320 252879 61497 3.89612 3.89612 -132.494 -3.89612 0 0 1.08113e+06 3740.92 0.41 0.09 0.21 -1 -1 0.41 0.0279005 0.024803 109 79 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 8.49 vpr 64.77 MiB -1 -1 0.15 20488 1 0.03 -1 -1 33820 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 26.2 MiB 1.35 673 8289 1936 5635 718 64.8 MiB 0.06 0.00 3.54309 -104.459 -3.54309 3.54309 0.90 0.000410875 0.000375628 0.022979 0.0210274 36 2073 30 6.99608e+06 147157 648988. 2245.63 4.03 0.154204 0.133282 26050 158493 -1 1713 23 1167 1811 179356 40626 3.29327 3.29327 -116.101 -3.29327 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0200574 0.0177515 54 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 9.95 vpr 65.50 MiB -1 -1 0.15 20820 1 0.03 -1 -1 33956 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67072 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 26.8 MiB 0.72 998 13731 5201 6084 2446 65.5 MiB 0.11 0.00 5.23946 -166.614 -5.23946 5.23946 0.92 0.000548682 0.000501431 0.0451397 0.0412446 46 3007 25 6.99608e+06 250167 828058. 2865.25 5.79 0.225481 0.197285 28066 200906 -1 2369 22 2125 3007 423869 125683 4.61914 4.61914 -158.329 -4.61914 0 0 1.01997e+06 3529.29 0.38 0.13 0.20 -1 -1 0.38 0.0276082 0.0246447 100 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 22.49 vpr 65.90 MiB -1 -1 0.15 20496 1 0.03 -1 -1 33856 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67480 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 27.4 MiB 1.01 1023 11631 4065 5883 1683 65.9 MiB 0.10 0.00 4.8947 -165.145 -4.8947 4.8947 0.91 0.000574578 0.000525604 0.0410969 0.0375624 40 3825 35 6.99608e+06 250167 706193. 2443.58 18.09 0.316249 0.275216 26914 176310 -1 3090 21 2784 3862 393065 81021 5.40114 5.40114 -190.623 -5.40114 0 0 926341. 3205.33 0.35 0.12 0.17 -1 -1 0.35 0.0296228 0.026479 109 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 6.98 vpr 64.91 MiB -1 -1 0.15 20456 1 0.03 -1 -1 33880 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 26.5 MiB 1.12 649 12083 5091 6584 408 64.9 MiB 0.08 0.00 3.80367 -112.996 -3.80367 3.80367 0.91 0.00040949 0.000372438 0.0331236 0.0301904 42 2423 39 6.99608e+06 161872 744469. 2576.02 2.64 0.13872 0.121186 27202 183097 -1 1721 23 1462 1873 165965 39160 3.57511 3.57511 -118.197 -3.57511 0 0 949917. 3286.91 0.35 0.07 0.18 -1 -1 0.35 0.0207193 0.0182874 69 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 8.37 vpr 64.91 MiB -1 -1 0.14 20128 1 0.03 -1 -1 34040 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 26.4 MiB 0.52 500 9836 4038 5376 422 64.9 MiB 0.06 0.00 3.32523 -100.829 -3.32523 3.32523 0.86 0.000390597 0.000354553 0.0262126 0.023911 44 1930 39 6.99608e+06 191304 787024. 2723.27 4.73 0.167543 0.14462 27778 195446 -1 1352 25 1156 1781 120042 29179 3.25447 3.25447 -106.844 -3.25447 0 0 997811. 3452.63 0.38 0.06 0.20 -1 -1 0.38 0.0210125 0.0185175 56 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 9.19 vpr 65.45 MiB -1 -1 0.16 20572 1 0.03 -1 -1 33640 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 27.1 MiB 0.91 868 11909 4701 5758 1450 65.5 MiB 0.09 0.00 4.58703 -149.04 -4.58703 4.58703 0.93 0.000505331 0.000458805 0.0386129 0.0352218 46 2684 28 6.99608e+06 220735 828058. 2865.25 4.89 0.21238 0.184395 28066 200906 -1 1970 30 1883 2462 174865 39592 4.33525 4.33525 -150.653 -4.33525 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0314208 0.0275753 88 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 8.82 vpr 65.22 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33700 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 26.8 MiB 1.94 896 11571 3933 6047 1591 65.2 MiB 0.09 0.00 4.54977 -137.477 -4.54977 4.54977 0.93 0.000579288 0.00053515 0.0381122 0.0348173 46 2917 48 6.99608e+06 220735 828058. 2865.25 3.48 0.183336 0.160715 28066 200906 -1 2011 23 1738 2395 192670 42992 4.31425 4.31425 -142.349 -4.31425 0 0 1.01997e+06 3529.29 0.38 0.07 0.19 -1 -1 0.38 0.0260582 0.0230659 95 53 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 9.14 vpr 65.29 MiB -1 -1 0.15 20516 1 0.03 -1 -1 33712 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 26.9 MiB 0.47 847 13556 4796 7036 1724 65.3 MiB 0.12 0.00 4.71017 -139.049 -4.71017 4.71017 0.91 0.000525069 0.000478725 0.0431362 0.0394084 48 2320 19 6.99608e+06 250167 865456. 2994.66 5.28 0.219296 0.19265 28354 207349 -1 2140 21 1789 3097 254688 54606 4.21595 4.21595 -142.789 -4.21595 0 0 1.05005e+06 3633.38 0.40 0.09 0.20 -1 -1 0.40 0.0256692 0.0228636 83 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.10 vpr 65.20 MiB -1 -1 0.15 20728 1 0.03 -1 -1 33816 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 26.8 MiB 1.25 742 9042 3157 4137 1748 65.2 MiB 0.07 0.00 3.64737 -104.512 -3.64737 3.64737 0.92 0.00045913 0.000418865 0.0279388 0.0255875 48 2323 27 6.99608e+06 235451 865456. 2994.66 2.48 0.142269 0.125073 28354 207349 -1 2005 21 1525 2217 196585 45075 3.21422 3.21422 -112.086 -3.21422 0 0 1.05005e+06 3633.38 0.41 0.07 0.20 -1 -1 0.41 0.0228034 0.02027 86 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 7.61 vpr 64.91 MiB -1 -1 0.15 20496 1 0.03 -1 -1 34232 -1 -1 15 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 26.5 MiB 1.09 490 9374 3097 4710 1567 64.9 MiB 0.06 0.00 3.44679 -100.328 -3.44679 3.44679 0.91 0.000394823 0.000361121 0.0256528 0.0235317 38 1628 40 6.99608e+06 220735 678818. 2348.85 3.37 0.129689 0.113241 26626 170182 -1 1015 22 964 1436 85969 21901 3.78332 3.78332 -105.678 -3.78332 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.018981 0.0167138 66 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 11.16 vpr 65.90 MiB -1 -1 0.16 20596 1 0.03 -1 -1 33976 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67480 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 27.5 MiB 0.95 1154 16102 6967 8731 404 65.9 MiB 0.14 0.00 4.18254 -144.202 -4.18254 4.18254 0.90 0.000579852 0.000526836 0.0554539 0.0505623 46 4050 36 6.99608e+06 264882 828058. 2865.25 6.78 0.211396 0.186092 28066 200906 -1 2908 20 2381 3583 293313 62159 4.25831 4.25831 -148.246 -4.25831 0 0 1.01997e+06 3529.29 0.37 0.10 0.20 -1 -1 0.37 0.0287853 0.0257073 111 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 10.06 vpr 65.34 MiB -1 -1 0.17 20656 1 0.03 -1 -1 33632 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 26.8 MiB 1.99 1126 13496 4705 6380 2411 65.3 MiB 0.11 0.00 5.49463 -159.408 -5.49463 5.49463 0.93 0.000527652 0.000481759 0.0434386 0.0396955 38 3177 46 6.99608e+06 250167 678818. 2348.85 4.69 0.186239 0.163375 26626 170182 -1 2724 25 2603 3642 402783 105038 4.74444 4.74444 -164.451 -4.74444 0 0 902133. 3121.57 0.34 0.12 0.17 -1 -1 0.34 0.0287459 0.0254693 100 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 9.45 vpr 65.28 MiB -1 -1 0.16 20540 1 0.03 -1 -1 33744 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 26.9 MiB 1.01 926 14354 6182 7861 311 65.3 MiB 0.11 0.00 4.28347 -151.804 -4.28347 4.28347 0.91 0.000494732 0.000452204 0.0436164 0.0397928 48 2248 21 6.99608e+06 206020 865456. 2994.66 5.09 0.222528 0.193521 28354 207349 -1 1928 19 1425 1785 146446 31779 3.62281 3.62281 -138.169 -3.62281 0 0 1.05005e+06 3633.38 0.39 0.06 0.21 -1 -1 0.39 0.0211432 0.0187946 91 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 6.59 vpr 65.03 MiB -1 -1 0.15 20260 1 0.03 -1 -1 34008 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 26.7 MiB 0.78 1057 13599 5180 6238 2181 65.0 MiB 0.11 0.00 4.11318 -134.456 -4.11318 4.11318 0.91 0.000477805 0.000436075 0.0411999 0.0376181 38 2724 25 6.99608e+06 220735 678818. 2348.85 2.56 0.155153 0.136644 26626 170182 -1 2270 21 1412 1911 157008 31445 3.87982 3.87982 -137.691 -3.87982 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0242072 0.0215316 81 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 9.95 vpr 65.64 MiB -1 -1 0.16 20544 1 0.03 -1 -1 33548 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67220 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 27.1 MiB 1.61 870 12120 4959 6494 667 65.6 MiB 0.10 0.00 4.09557 -123.875 -4.09557 4.09557 0.92 0.000538746 0.000490772 0.0404347 0.0368215 42 3474 41 6.99608e+06 250167 744469. 2576.02 5.01 0.242642 0.210976 27202 183097 -1 2179 21 2026 2841 215668 48460 4.10972 4.10972 -131.468 -4.10972 0 0 949917. 3286.91 0.36 0.08 0.18 -1 -1 0.36 0.0259126 0.0230091 97 46 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 10.08 vpr 65.43 MiB -1 -1 0.15 20772 1 0.03 -1 -1 33852 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 27.0 MiB 1.66 825 9205 3109 4150 1946 65.4 MiB 0.07 0.00 3.47679 -109.391 -3.47679 3.47679 0.92 0.00046272 0.000419509 0.0283417 0.0258761 46 2602 31 6.99608e+06 250167 828058. 2865.25 5.07 0.206915 0.179125 28066 200906 -1 1955 25 1736 2700 204746 44982 2.98316 2.98316 -108.983 -2.98316 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0264178 0.02341 88 46 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 9.45 vpr 65.36 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33556 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66928 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 26.9 MiB 0.91 918 10536 3621 5008 1907 65.4 MiB 0.09 0.00 4.39601 -144.18 -4.39601 4.39601 0.90 0.000517167 0.000471857 0.0347713 0.0318144 46 3353 30 6.99608e+06 206020 828058. 2865.25 5.21 0.220957 0.193239 28066 200906 -1 2447 22 1820 2659 238030 50430 4.86281 4.86281 -154.129 -4.86281 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0264096 0.0234391 88 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 9.46 vpr 65.34 MiB -1 -1 0.15 20756 1 0.03 -1 -1 33884 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 26.8 MiB 2.77 942 12292 4666 5756 1870 65.3 MiB 0.10 0.00 3.70017 -126.602 -3.70017 3.70017 0.91 0.000546976 0.000497553 0.0417983 0.0381915 52 3164 31 6.99608e+06 235451 926341. 3205.33 3.23 0.201007 0.17574 29218 227130 -1 2157 21 1946 2651 214171 51062 3.56046 3.56046 -127.801 -3.56046 0 0 1.14541e+06 3963.36 0.44 0.08 0.22 -1 -1 0.44 0.0266347 0.0237042 103 59 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 8.79 vpr 64.94 MiB -1 -1 0.15 20284 1 0.03 -1 -1 33964 -1 -1 14 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 26.5 MiB 1.49 638 10503 3616 4659 2228 64.9 MiB 0.07 0.00 4.33189 -121.838 -4.33189 4.33189 0.92 0.000415453 0.000380305 0.0296906 0.0271577 38 1692 24 6.99608e+06 206020 678818. 2348.85 4.11 0.166164 0.144105 26626 170182 -1 1377 20 1243 1634 118973 26855 3.32456 3.32456 -115.376 -3.32456 0 0 902133. 3121.57 0.34 0.05 0.16 -1 -1 0.34 0.0191211 0.0169746 70 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 18.72 vpr 65.16 MiB -1 -1 0.15 20176 1 0.03 -1 -1 34016 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 26.6 MiB 2.46 733 10370 4308 5800 262 65.2 MiB 0.08 0.00 4.00228 -133.8 -4.00228 4.00228 0.91 0.000453634 0.000412661 0.0308112 0.0280864 44 2610 40 6.99608e+06 206020 787024. 2723.27 12.99 0.253388 0.21966 27778 195446 -1 1795 22 1481 2009 156084 34478 3.77925 3.77925 -136.622 -3.77925 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0213376 0.018836 79 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 16.13 vpr 65.11 MiB -1 -1 0.16 20292 1 0.03 -1 -1 33484 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 26.5 MiB 0.89 764 12362 5067 6494 801 65.1 MiB 0.09 0.00 4.07608 -123.99 -4.07608 4.07608 0.91 0.000475534 0.000432346 0.0382987 0.0349912 46 2867 29 6.99608e+06 220735 828058. 2865.25 11.87 0.278787 0.241968 28066 200906 -1 1915 24 1817 2659 234904 53092 3.84482 3.84482 -130.987 -3.84482 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0258395 0.0229251 80 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 6.81 vpr 65.11 MiB -1 -1 0.15 20140 1 0.03 -1 -1 33868 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 26.7 MiB 1.07 586 8909 3659 4796 454 65.1 MiB 0.06 0.00 3.79267 -108.98 -3.79267 3.79267 0.93 0.000362169 0.000324165 0.0251072 0.0229264 44 2352 39 6.99608e+06 191304 787024. 2723.27 2.41 0.115075 0.100186 27778 195446 -1 1570 31 1378 1749 242201 105330 3.57531 3.57531 -110.334 -3.57531 0 0 997811. 3452.63 0.39 0.11 0.19 -1 -1 0.39 0.0271784 0.023938 68 25 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 7.22 vpr 64.75 MiB -1 -1 0.14 20584 1 0.03 -1 -1 33716 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 26.3 MiB 0.87 860 12076 5115 6633 328 64.7 MiB 0.08 0.00 4.30315 -133.848 -4.30315 4.30315 0.91 0.00037521 0.000342685 0.0326478 0.0296745 38 2379 33 6.99608e+06 176588 678818. 2348.85 3.15 0.141566 0.123849 26626 170182 -1 1900 19 1328 1759 137489 29036 3.73446 3.73446 -133.615 -3.73446 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0195566 0.0174131 73 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.14 vpr 65.65 MiB -1 -1 0.15 20668 1 0.03 -1 -1 33872 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67224 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 27.1 MiB 1.00 1156 13840 5407 6744 1689 65.6 MiB 0.11 0.00 4.42187 -150.582 -4.42187 4.42187 0.93 0.000527819 0.000480368 0.0457423 0.0417321 46 2902 21 6.99608e+06 250167 828058. 2865.25 2.70 0.174499 0.154054 28066 200906 -1 2353 23 2067 2872 231612 47712 3.75905 3.75905 -142.095 -3.75905 0 0 1.01997e+06 3529.29 0.40 0.09 0.19 -1 -1 0.40 0.0284483 0.0253057 101 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 7.77 vpr 64.91 MiB -1 -1 0.15 20464 1 0.03 -1 -1 34004 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 26.5 MiB 0.90 820 12876 4559 5981 2336 64.9 MiB 0.09 0.00 3.74867 -118.743 -3.74867 3.74867 0.91 0.000412956 0.000377398 0.0351638 0.0321877 36 2421 43 6.99608e+06 191304 648988. 2245.63 3.69 0.14723 0.129172 26050 158493 -1 2079 20 1267 1781 176497 34895 3.12421 3.12421 -119.163 -3.12421 0 0 828058. 2865.25 0.31 0.06 0.16 -1 -1 0.31 0.0190185 0.0168214 71 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 9.68 vpr 65.23 MiB -1 -1 0.15 20540 1 0.03 -1 -1 33684 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 26.8 MiB 1.19 889 10726 4477 5918 331 65.2 MiB 0.08 0.00 3.49879 -116.053 -3.49879 3.49879 0.92 0.000512261 0.000465789 0.0350136 0.031966 48 2372 28 6.99608e+06 220735 865456. 2994.66 5.15 0.221557 0.192917 28354 207349 -1 1864 16 1347 1780 128094 30206 3.22856 3.22856 -116.238 -3.22856 0 0 1.05005e+06 3633.38 0.41 0.06 0.21 -1 -1 0.41 0.0209384 0.0188276 91 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 9.35 vpr 65.79 MiB -1 -1 0.17 20600 1 0.03 -1 -1 33768 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67368 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 27.3 MiB 2.98 1223 9263 3795 5242 226 65.8 MiB 0.09 0.00 4.74537 -163.238 -4.74537 4.74537 0.93 0.000552083 0.000501688 0.0310632 0.0283314 52 3369 34 6.99608e+06 294314 926341. 3205.33 2.91 0.155464 0.136983 29218 227130 -1 2682 22 2276 3195 296643 58250 4.49114 4.49114 -159.634 -4.49114 0 0 1.14541e+06 3963.36 0.42 0.09 0.21 -1 -1 0.42 0.028247 0.0251686 113 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 9.34 vpr 65.10 MiB -1 -1 0.15 20180 1 0.03 -1 -1 33976 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 26.5 MiB 2.08 727 10316 3968 5326 1022 65.1 MiB 0.07 0.00 3.38944 -114.889 -3.38944 3.38944 0.92 0.0004533 0.000413435 0.0315172 0.028827 46 2548 48 6.99608e+06 176588 828058. 2865.25 3.97 0.156995 0.13743 28066 200906 -1 1774 21 1715 2269 170442 39233 3.16641 3.16641 -116.986 -3.16641 0 0 1.01997e+06 3529.29 0.39 0.07 0.20 -1 -1 0.39 0.0220834 0.0196156 80 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 8.20 vpr 64.80 MiB -1 -1 0.15 20276 1 0.03 -1 -1 33768 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 26.3 MiB 0.79 695 11609 4409 5699 1501 64.8 MiB 0.08 0.00 3.88892 -124.254 -3.88892 3.88892 0.89 0.000394424 0.000356079 0.0324461 0.029448 40 2563 29 6.99608e+06 161872 706193. 2443.58 4.19 0.141355 0.123457 26914 176310 -1 2106 19 1525 2213 231571 51201 3.43886 3.43886 -127.129 -3.43886 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0199437 0.0177649 72 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 8.31 vpr 65.19 MiB -1 -1 0.16 20736 1 0.03 -1 -1 33836 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 26.7 MiB 1.68 729 11034 3646 5163 2225 65.2 MiB 0.08 0.00 4.07043 -123.448 -4.07043 4.07043 0.89 0.000465419 0.000423434 0.0331675 0.0303197 46 2576 50 6.99608e+06 206020 828058. 2865.25 3.29 0.166293 0.14591 28066 200906 -1 1832 30 1790 2581 175346 42302 4.16472 4.16472 -129.342 -4.16472 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0303634 0.0267696 79 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 9.20 vpr 65.08 MiB -1 -1 0.16 20660 1 0.03 -1 -1 33720 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 26.7 MiB 1.64 807 9881 4044 5289 548 65.1 MiB 0.08 0.00 3.78147 -112.033 -3.78147 3.78147 0.91 0.000473872 0.00043133 0.0300701 0.0274345 40 2561 37 6.99608e+06 264882 706193. 2443.58 4.28 0.154506 0.135271 26914 176310 -1 2185 21 1573 2240 248384 59453 3.75971 3.75971 -116.507 -3.75971 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0237155 0.0210721 88 49 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 10.45 vpr 65.59 MiB -1 -1 0.14 20512 1 0.03 -1 -1 33736 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 27.0 MiB 1.52 1189 13031 5003 6393 1635 65.6 MiB 0.11 0.00 5.55394 -180.701 -5.55394 5.55394 0.87 0.000548783 0.000497626 0.0434253 0.0396082 40 3527 35 6.99608e+06 250167 706193. 2443.58 5.68 0.176233 0.153816 26914 176310 -1 3144 23 2649 3987 436819 84814 4.9 4.9 -177.886 -4.9 0 0 926341. 3205.33 0.34 0.12 0.17 -1 -1 0.34 0.0293485 0.0259583 105 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 5.78 vpr 64.49 MiB -1 -1 0.14 20036 1 0.03 -1 -1 33488 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66036 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 26.0 MiB 0.96 678 10796 4152 4483 2161 64.5 MiB 0.07 0.00 3.34663 -92.0539 -3.34663 3.34663 0.91 0.000378565 0.000341014 0.0273809 0.0250525 34 1899 26 6.99608e+06 191304 618332. 2139.56 1.69 0.109167 0.0951011 25762 151098 -1 1532 19 951 1531 115611 24412 2.79811 2.79811 -101.114 -2.79811 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0166034 0.0146945 54 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 11.81 vpr 65.22 MiB -1 -1 0.17 20688 1 0.06 -1 -1 34008 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 26.8 MiB 3.09 1002 14907 4915 7817 2175 65.2 MiB 0.13 0.00 4.76623 -160.299 -4.76623 4.76623 0.91 0.00056183 0.000511628 0.0488663 0.0445663 48 2884 23 6.99608e+06 294314 865456. 2994.66 5.22 0.241812 0.211342 28354 207349 -1 2440 20 2323 2954 285538 61481 4.9593 4.9593 -167.879 -4.9593 0 0 1.05005e+06 3633.38 0.40 0.09 0.20 -1 -1 0.40 0.0273522 0.0244249 116 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 23.56 vpr 65.43 MiB -1 -1 0.15 20452 1 0.03 -1 -1 33692 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 26.8 MiB 0.95 1317 10744 3615 5258 1871 65.4 MiB 0.09 0.00 4.50112 -167.331 -4.50112 4.50112 0.90 0.00053635 0.000487047 0.034898 0.0317958 40 3495 26 6.99608e+06 235451 706193. 2443.58 19.28 0.295159 0.256549 26914 176310 -1 2926 24 3276 4138 494202 92561 4.85739 4.85739 -181.953 -4.85739 0 0 926341. 3205.33 0.36 0.13 0.17 -1 -1 0.36 0.0292428 0.026016 110 93 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 8.04 vpr 65.39 MiB -1 -1 0.15 20528 1 0.03 -1 -1 33756 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66960 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 26.9 MiB 1.53 944 9712 3948 5370 394 65.4 MiB 0.08 0.00 3.79657 -123.64 -3.79657 3.79657 0.91 0.000510066 0.000464272 0.032039 0.0292466 44 3075 49 6.99608e+06 220735 787024. 2723.27 3.17 0.148786 0.130076 27778 195446 -1 1984 21 1585 2040 163763 38450 3.46081 3.46081 -119.657 -3.46081 0 0 997811. 3452.63 0.41 0.07 0.19 -1 -1 0.41 0.0254222 0.0225713 94 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 9.21 vpr 65.43 MiB -1 -1 0.17 20720 1 0.03 -1 -1 33788 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 26.9 MiB 1.04 1078 15796 7109 8306 381 65.4 MiB 0.14 0.00 5.81442 -170.312 -5.81442 5.81442 0.93 0.000587058 0.000533698 0.0562947 0.051349 46 3303 43 6.99608e+06 220735 828058. 2865.25 4.73 0.211617 0.1862 28066 200906 -1 2519 19 2001 2996 241064 50553 4.8635 4.8635 -169.634 -4.8635 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0264896 0.0237367 98 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.92 vpr 64.37 MiB -1 -1 0.15 20168 1 0.03 -1 -1 33764 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65912 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 25.9 MiB 0.77 501 9684 3375 4762 1547 64.4 MiB 0.06 0.00 2.78575 -96.9119 -2.78575 2.78575 0.91 0.000354837 0.000323344 0.0241776 0.0220743 38 1487 22 6.99608e+06 176588 678818. 2348.85 4.00 0.133952 0.115735 26626 170182 -1 1249 19 785 987 89017 19309 2.57072 2.57072 -92.9223 -2.57072 0 0 902133. 3121.57 0.34 0.04 0.16 -1 -1 0.34 0.015241 0.013534 53 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.03 vpr 65.01 MiB -1 -1 0.15 20144 1 0.03 -1 -1 34096 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 26.5 MiB 3.87 598 11756 4032 5894 1830 65.0 MiB 0.08 0.00 3.77712 -117.524 -3.77712 3.77712 0.90 0.000432557 0.000394307 0.0340795 0.0311328 38 1780 24 6.99608e+06 206020 678818. 2348.85 1.96 0.133349 0.116781 26626 170182 -1 1431 21 1164 1714 139245 30323 3.30746 3.30746 -119.712 -3.30746 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0220672 0.019672 68 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 6.99 vpr 65.28 MiB -1 -1 0.15 20428 1 0.03 -1 -1 33632 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 26.7 MiB 0.62 791 12331 4777 6250 1304 65.3 MiB 0.09 0.00 3.68644 -122.952 -3.68644 3.68644 0.91 0.000442566 0.000401848 0.0329351 0.030085 44 2873 41 6.99608e+06 250167 787024. 2723.27 3.07 0.15252 0.133813 27778 195446 -1 2087 19 1489 2342 241451 50537 3.70196 3.70196 -133.232 -3.70196 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0205364 0.0183061 78 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.08 vpr 64.55 MiB -1 -1 0.14 20152 1 0.03 -1 -1 33868 -1 -1 16 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 26.0 MiB 1.13 448 7369 2953 3764 652 64.5 MiB 0.04 0.00 3.31959 -76.8944 -3.31959 3.31959 0.92 0.00035001 0.000318785 0.0186627 0.0170728 38 1742 32 6.99608e+06 235451 678818. 2348.85 1.82 0.086521 0.0753172 26626 170182 -1 1067 18 820 1065 70792 18815 2.98797 2.98797 -80.5539 -2.98797 0 0 902133. 3121.57 0.34 0.04 0.17 -1 -1 0.34 0.0149516 0.0132761 59 19 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 12.54 vpr 65.45 MiB -1 -1 0.17 20448 1 0.03 -1 -1 33876 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 26.9 MiB 3.34 1245 8306 2489 4423 1394 65.4 MiB 0.07 0.00 4.0386 -139.855 -4.0386 4.0386 0.90 0.000512646 0.000467307 0.0273312 0.0249901 48 3245 50 6.99608e+06 250167 865456. 2994.66 5.82 0.249322 0.216071 28354 207349 -1 2845 21 2041 2978 290931 56452 3.88612 3.88612 -141.416 -3.88612 0 0 1.05005e+06 3633.38 0.41 0.09 0.20 -1 -1 0.41 0.0266579 0.0237233 103 69 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 9.29 vpr 65.67 MiB -1 -1 0.16 20352 1 0.03 -1 -1 33868 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67244 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 27.3 MiB 2.61 1163 15568 6109 7919 1540 65.7 MiB 0.13 0.00 4.35051 -150.242 -4.35051 4.35051 0.92 0.00057761 0.000526462 0.0531287 0.0484547 40 3509 30 6.99608e+06 279598 706193. 2443.58 3.30 0.191964 0.168828 26914 176310 -1 2880 22 2655 3597 319611 69613 4.47785 4.47785 -163.263 -4.47785 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0281174 0.0249307 117 86 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_001.v common 11.22 vpr 65.02 MiB -1 -1 0.21 20780 14 0.31 -1 -1 36896 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 26.6 MiB 1.96 1276 8543 2090 5594 859 65.0 MiB 0.08 0.00 8.38905 -176.577 -8.38905 8.38905 0.87 0.000615063 0.000557886 0.0333034 0.0303591 36 3665 49 6.79088e+06 255968 648988. 2245.63 5.80 0.222133 0.196374 25390 158009 -1 3031 19 1428 3960 252465 55201 7.21088 7.21088 -172.542 -7.21088 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.0304623 0.027419 130 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 10.30 vpr 65.05 MiB -1 -1 0.24 21020 14 0.36 -1 -1 36192 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 26.6 MiB 2.80 1147 12331 4133 6053 2145 65.1 MiB 0.11 0.00 7.6097 -157.374 -7.6097 7.6097 0.93 0.000638404 0.000579718 0.0495887 0.0448787 34 3327 27 6.79088e+06 255968 618332. 2139.56 3.80 0.214819 0.189845 25102 150614 -1 2658 19 1284 3490 200353 45854 6.82379 6.82379 -154.476 -6.82379 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0318323 0.0286756 125 181 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 12.20 vpr 64.80 MiB -1 -1 0.20 20588 11 0.28 -1 -1 36356 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 26.4 MiB 3.95 1231 6383 1494 4487 402 64.8 MiB 0.06 0.00 6.81003 -148.008 -6.81003 6.81003 0.93 0.000634744 0.000571756 0.0267615 0.0243068 36 3209 32 6.79088e+06 255968 648988. 2245.63 4.65 0.195129 0.171433 25390 158009 -1 2801 19 1317 3890 223314 49848 6.29093 6.29093 -148.387 -6.29093 0 0 828058. 2865.25 0.32 0.09 0.16 -1 -1 0.32 0.0331143 0.0298076 130 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 8.97 vpr 64.88 MiB -1 -1 0.22 20576 12 0.40 -1 -1 36328 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 26.5 MiB 1.38 1099 5293 1100 3885 308 64.9 MiB 0.05 0.00 7.28153 -143.815 -7.28153 7.28153 0.91 0.000645439 0.000586905 0.0226092 0.0206425 36 3357 33 6.79088e+06 323328 648988. 2245.63 3.93 0.18571 0.162438 25390 158009 -1 2586 20 1448 4044 231944 51886 6.54158 6.54158 -139.567 -6.54158 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0321549 0.0287802 136 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 10.64 vpr 65.08 MiB -1 -1 0.22 20608 13 0.34 -1 -1 36784 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 26.5 MiB 2.10 1401 5756 1163 4305 288 65.1 MiB 0.06 0.00 8.2885 -175.09 -8.2885 8.2885 0.92 0.000709594 0.000641115 0.0248191 0.0226577 44 3623 24 6.79088e+06 296384 787024. 2723.27 4.78 0.256798 0.225045 27118 194962 -1 2945 17 1360 3567 206025 45572 7.51181 7.51181 -170.614 -7.51181 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0327709 0.0297032 152 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 9.39 vpr 65.00 MiB -1 -1 0.24 20620 13 0.30 -1 -1 36480 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 26.5 MiB 1.91 1243 11063 3086 5977 2000 65.0 MiB 0.10 0.00 7.40767 -155.099 -7.40767 7.40767 0.90 0.000660569 0.000598312 0.0453867 0.0412065 38 3505 23 6.79088e+06 255968 678818. 2348.85 3.83 0.224035 0.198469 25966 169698 -1 2804 18 1394 4237 219172 49131 6.58427 6.58427 -150.238 -6.58427 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0331282 0.0299895 137 197 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 9.84 vpr 64.59 MiB -1 -1 0.20 20300 12 0.24 -1 -1 36376 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 26.2 MiB 1.64 831 9024 2147 6104 773 64.6 MiB 0.07 0.00 7.03512 -124.15 -7.03512 7.03512 0.92 0.000540999 0.000491613 0.0314383 0.0286558 36 2328 49 6.79088e+06 282912 648988. 2245.63 4.71 0.247574 0.215279 25390 158009 -1 1811 24 963 2242 190298 71060 6.02493 6.02493 -115.935 -6.02493 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0291578 0.0259361 106 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 11.52 vpr 64.61 MiB -1 -1 0.20 20468 12 0.24 -1 -1 36392 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 26.1 MiB 3.43 997 12636 5258 7154 224 64.6 MiB 0.10 0.00 6.42294 -136.16 -6.42294 6.42294 0.90 0.000517842 0.000470049 0.0411964 0.0374197 44 2627 22 6.79088e+06 229024 787024. 2723.27 4.55 0.222911 0.194649 27118 194962 -1 2129 16 1056 2792 155188 35766 5.65861 5.65861 -131.48 -5.65861 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.0233226 0.0209899 106 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 9.24 vpr 64.83 MiB -1 -1 0.20 20536 12 0.21 -1 -1 36372 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 26.3 MiB 3.57 1116 6203 1235 4627 341 64.8 MiB 0.06 0.00 7.04997 -146.463 -7.04997 7.04997 0.92 0.000549236 0.000496796 0.022341 0.0203246 38 2827 29 6.79088e+06 269440 678818. 2348.85 2.23 0.133234 0.117176 25966 169698 -1 2377 15 1090 2724 145236 33529 6.25178 6.25178 -137.947 -6.25178 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0226567 0.0204842 113 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 9.80 vpr 64.52 MiB -1 -1 0.21 20428 13 0.23 -1 -1 36500 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66068 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 26.0 MiB 2.50 1109 7177 1737 4800 640 64.5 MiB 0.07 0.00 7.59858 -166.488 -7.59858 7.59858 0.90 0.00059305 0.000536228 0.0277161 0.0251894 36 3033 30 6.79088e+06 202080 648988. 2245.63 3.90 0.171898 0.150696 25390 158009 -1 2399 14 1005 2359 142479 31916 6.91327 6.91327 -163.368 -6.91327 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0218855 0.0197825 106 155 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 6.56 vpr 64.45 MiB -1 -1 0.21 20556 12 0.23 -1 -1 36488 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65992 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 26.1 MiB 2.05 935 11402 3533 6247 1622 64.4 MiB 0.08 0.00 7.11778 -148.236 -7.11778 7.11778 0.89 0.000509491 0.000463298 0.0368566 0.0335093 30 2539 45 6.79088e+06 229024 556674. 1926.21 1.17 0.123279 0.108206 24526 138013 -1 2061 17 900 2128 107060 25145 6.24408 6.24408 -144.119 -6.24408 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0219214 0.0196829 96 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 8.27 vpr 64.61 MiB -1 -1 0.20 20468 12 0.19 -1 -1 36516 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 26.1 MiB 2.78 937 12856 4731 5927 2198 64.6 MiB 0.10 0.00 5.84661 -143.137 -5.84661 5.84661 0.89 0.000512652 0.000464209 0.0411426 0.0373743 44 2800 36 6.79088e+06 229024 787024. 2723.27 2.04 0.141388 0.123826 27118 194962 -1 2043 14 969 2636 142102 32796 5.18431 5.18431 -135.735 -5.18431 0 0 997811. 3452.63 0.37 0.05 0.19 -1 -1 0.37 0.0198793 0.0179727 101 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 10.38 vpr 65.09 MiB -1 -1 0.23 20896 13 0.32 -1 -1 36396 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 26.6 MiB 2.30 1258 8319 2303 5000 1016 65.1 MiB 0.08 0.00 7.91028 -166.355 -7.91028 7.91028 0.93 0.000670319 0.000600335 0.0346418 0.0314185 44 3023 21 6.79088e+06 269440 787024. 2723.27 4.34 0.243774 0.213791 27118 194962 -1 2599 18 1118 3067 177490 38715 6.88526 6.88526 -157.731 -6.88526 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.029879 0.0269193 134 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 9.95 vpr 65.30 MiB -1 -1 0.23 20772 14 0.38 -1 -1 36156 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 26.8 MiB 2.31 1345 7268 1767 5038 463 65.3 MiB 0.08 0.00 8.74626 -182.518 -8.74626 8.74626 0.92 0.000711796 0.000643975 0.0315094 0.0286192 36 3522 26 6.79088e+06 296384 648988. 2245.63 3.94 0.206273 0.181266 25390 158009 -1 2989 18 1459 3621 213522 48818 7.56225 7.56225 -174.856 -7.56225 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0329968 0.0297581 151 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 9.74 vpr 64.41 MiB -1 -1 0.17 20156 11 0.22 -1 -1 36184 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 26.0 MiB 2.85 987 12186 3908 6119 2159 64.4 MiB 0.09 0.00 6.7187 -136.52 -6.7187 6.7187 0.92 0.000523628 0.000475667 0.0388812 0.0353681 34 3118 45 6.79088e+06 282912 618332. 2139.56 3.27 0.174735 0.15271 25102 150614 -1 2533 55 1326 3340 702783 417195 6.16214 6.16214 -140.269 -6.16214 0 0 787024. 2723.27 0.30 0.27 0.15 -1 -1 0.30 0.0560066 0.0488476 106 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 11.28 vpr 65.28 MiB -1 -1 0.23 20732 12 0.34 -1 -1 36396 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 26.7 MiB 1.70 1224 13348 3764 6998 2586 65.3 MiB 0.12 0.00 7.24781 -156.42 -7.24781 7.24781 0.93 0.000662075 0.000603597 0.0508777 0.0460019 44 3277 40 6.79088e+06 323328 787024. 2723.27 5.80 0.2981 0.260615 27118 194962 -1 2666 17 1385 4252 222241 51840 6.58078 6.58078 -147.103 -6.58078 0 0 997811. 3452.63 0.37 0.08 0.19 -1 -1 0.37 0.0308524 0.0278356 145 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 12.16 vpr 65.14 MiB -1 -1 0.23 20724 14 0.31 -1 -1 36348 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 26.7 MiB 2.83 1311 6743 1544 4772 427 65.1 MiB 0.07 0.00 8.47078 -173.752 -8.47078 8.47078 0.91 0.000629052 0.000568685 0.0277647 0.0252867 44 3464 31 6.79088e+06 255968 787024. 2723.27 5.65 0.261332 0.229463 27118 194962 -1 2780 17 1214 3544 197627 42898 7.22545 7.22545 -161.109 -7.22545 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0295195 0.0267068 126 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 9.66 vpr 64.60 MiB -1 -1 0.20 20420 12 0.20 -1 -1 36364 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 26.1 MiB 2.06 1008 11740 3543 6499 1698 64.6 MiB 0.09 0.00 7.24148 -161.628 -7.24148 7.24148 0.90 0.000517684 0.000469872 0.039377 0.0357443 36 2795 45 6.79088e+06 202080 648988. 2245.63 4.22 0.207282 0.18054 25390 158009 -1 2378 15 976 2474 149319 33765 6.21607 6.21607 -156.301 -6.21607 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0230164 0.020787 105 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 9.68 vpr 63.94 MiB -1 -1 0.17 20248 10 0.12 -1 -1 36856 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65472 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 25.5 MiB 2.37 679 4973 1078 3739 156 63.9 MiB 0.04 0.00 4.83286 -114.815 -4.83286 4.83286 0.89 0.000393303 0.000355721 0.0141096 0.012823 38 1772 21 6.79088e+06 175136 678818. 2348.85 4.11 0.146608 0.126264 25966 169698 -1 1619 14 647 1409 89824 20060 4.29586 4.29586 -114.403 -4.29586 0 0 902133. 3121.57 0.33 0.04 0.17 -1 -1 0.33 0.01552 0.0139871 66 84 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 10.13 vpr 64.44 MiB -1 -1 0.22 20668 13 0.22 -1 -1 35892 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 26.0 MiB 2.57 997 12331 4111 5801 2419 64.4 MiB 0.10 0.00 7.54752 -160.268 -7.54752 7.54752 0.93 0.000562827 0.000512848 0.0419301 0.0381923 36 2929 29 6.79088e+06 242496 648988. 2245.63 4.04 0.228328 0.19995 25390 158009 -1 2308 18 1125 2654 153918 35011 6.16922 6.16922 -147.333 -6.16922 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0250608 0.0224628 107 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 22.74 vpr 65.30 MiB -1 -1 0.21 20736 13 0.35 -1 -1 36528 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 26.8 MiB 2.20 1287 9943 2672 5830 1441 65.3 MiB 0.10 0.00 7.66212 -166.709 -7.66212 7.66212 0.92 0.000673295 0.000610315 0.0408653 0.0371068 36 4367 40 6.79088e+06 282912 648988. 2245.63 16.76 0.378314 0.332693 25390 158009 -1 3174 30 2184 6712 566802 176298 6.96787 6.96787 -161.481 -6.96787 0 0 828058. 2865.25 0.33 0.19 0.15 -1 -1 0.33 0.0502946 0.0449184 143 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 11.73 vpr 65.14 MiB -1 -1 0.22 20664 13 0.36 -1 -1 36616 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 26.6 MiB 2.74 1366 11989 3183 6998 1808 65.1 MiB 0.10 0.00 7.56666 -167.812 -7.56666 7.56666 0.93 0.000592533 0.000538387 0.0440245 0.0399629 38 3931 41 6.79088e+06 282912 678818. 2348.85 5.28 0.229975 0.202763 25966 169698 -1 3120 17 1406 4182 239599 51913 6.50587 6.50587 -157.808 -6.50587 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.030132 0.0272529 141 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 5.91 vpr 63.77 MiB -1 -1 0.17 20292 9 0.11 -1 -1 36052 -1 -1 18 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65296 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 25.3 MiB 1.34 700 7596 2556 3853 1187 63.8 MiB 0.04 0.00 4.83723 -93.7879 -4.83723 4.83723 0.85 0.000294769 0.000268285 0.0175002 0.0159634 34 1715 26 6.79088e+06 242496 618332. 2139.56 1.52 0.0933256 0.0807327 25102 150614 -1 1498 18 668 1631 98751 22412 4.3539 4.3539 -94.2702 -4.3539 0 0 787024. 2723.27 0.29 0.04 0.14 -1 -1 0.29 0.0164664 0.0146129 67 69 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 23.00 vpr 65.18 MiB -1 -1 0.20 20416 13 0.36 -1 -1 36552 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 26.7 MiB 2.39 1263 10263 2709 7113 441 65.2 MiB 0.10 0.00 8.1433 -166.845 -8.1433 8.1433 0.92 0.000645812 0.000584724 0.0393833 0.0358534 40 3385 50 6.79088e+06 309856 706193. 2443.58 16.89 0.380538 0.332335 26254 175826 -1 3075 21 1607 4496 277530 61024 7.34382 7.34382 -164.809 -7.34382 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.033289 0.0298443 136 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 9.37 vpr 63.82 MiB -1 -1 0.15 19816 8 0.10 -1 -1 36240 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65356 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 25.4 MiB 2.37 633 5921 1256 4594 71 63.8 MiB 0.04 0.00 4.18492 -95.1021 -4.18492 4.18492 0.92 0.000369421 0.000337223 0.0151576 0.0138485 36 1824 30 6.79088e+06 148192 648988. 2245.63 3.83 0.121482 0.104963 25390 158009 -1 1490 18 656 1469 79844 19181 3.83796 3.83796 -94.1549 -3.83796 0 0 828058. 2865.25 0.31 0.04 0.15 -1 -1 0.31 0.0156784 0.0139708 60 59 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 13.84 vpr 64.75 MiB -1 -1 0.21 20348 15 0.29 -1 -1 36592 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 26.4 MiB 2.76 1197 14144 5293 7084 1767 64.7 MiB 0.12 0.00 8.89118 -178.017 -8.89118 8.89118 0.90 0.000579739 0.00052512 0.0501756 0.0455769 36 3911 43 6.79088e+06 242496 648988. 2245.63 7.42 0.214282 0.188204 25390 158009 -1 3064 31 1411 3990 445921 169785 7.93467 7.93467 -173.678 -7.93467 0 0 828058. 2865.25 0.31 0.16 0.15 -1 -1 0.31 0.0410123 0.0364391 121 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 12.62 vpr 64.76 MiB -1 -1 0.20 20464 13 0.28 -1 -1 36416 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 26.2 MiB 2.25 1207 12898 3890 6827 2181 64.8 MiB 0.11 0.00 6.79894 -149.553 -6.79894 6.79894 0.91 0.000619774 0.000564476 0.0478745 0.0435606 36 3359 23 6.79088e+06 242496 648988. 2245.63 6.80 0.206645 0.183195 25390 158009 -1 2799 19 1253 3687 226923 49033 5.82898 5.82898 -144.739 -5.82898 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0297097 0.0267399 117 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 29.44 vpr 64.98 MiB -1 -1 0.22 20760 13 0.33 -1 -1 36556 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 26.5 MiB 1.91 1179 7024 1686 4552 786 65.0 MiB 0.07 0.00 7.81323 -165.772 -7.81323 7.81323 0.91 0.000651714 0.000591028 0.0296709 0.0270275 40 3618 36 6.79088e+06 242496 706193. 2443.58 23.78 0.400013 0.351114 26254 175826 -1 3151 26 1711 4941 532467 172390 6.77334 6.77334 -165.618 -6.77334 0 0 926341. 3205.33 0.35 0.17 0.17 -1 -1 0.35 0.0419525 0.0375795 136 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 10.14 vpr 64.43 MiB -1 -1 0.20 20512 12 0.19 -1 -1 36608 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65980 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 25.9 MiB 2.38 1077 9024 2472 4753 1799 64.4 MiB 0.07 0.00 6.90294 -154.176 -6.90294 6.90294 0.89 0.000524521 0.000474555 0.0309725 0.0281393 44 2601 23 6.79088e+06 215552 787024. 2723.27 4.27 0.20215 0.176431 27118 194962 -1 2193 15 961 2304 130018 29335 5.99004 5.99004 -140.976 -5.99004 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0231961 0.0210261 103 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 14.18 vpr 64.35 MiB -1 -1 0.19 20448 11 0.18 -1 -1 36336 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65892 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 25.9 MiB 2.27 910 12120 3870 6285 1965 64.3 MiB 0.09 0.00 6.3635 -135.496 -6.3635 6.3635 0.92 0.000512861 0.000463096 0.0379176 0.0344668 36 2758 44 6.79088e+06 242496 648988. 2245.63 8.49 0.246379 0.214228 25390 158009 -1 2137 15 968 2319 151256 33988 5.69238 5.69238 -131.952 -5.69238 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0204862 0.0184813 95 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 7.49 vpr 64.31 MiB -1 -1 0.20 20428 11 0.22 -1 -1 36256 -1 -1 21 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 25.9 MiB 1.86 934 11106 3231 6003 1872 64.3 MiB 0.08 0.00 7.04953 -133.904 -7.04953 7.04953 0.90 0.000518335 0.000470537 0.0360375 0.0327303 36 2495 17 6.79088e+06 282912 648988. 2245.63 2.18 0.152689 0.133744 25390 158009 -1 2080 15 900 2405 142832 32141 6.24403 6.24403 -128.601 -6.24403 0 0 828058. 2865.25 0.34 0.06 0.15 -1 -1 0.34 0.0222823 0.0200048 109 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 19.79 vpr 64.93 MiB -1 -1 0.19 20668 12 0.24 -1 -1 36420 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 26.5 MiB 3.03 1143 7431 2070 3957 1404 64.9 MiB 0.07 0.00 7.03679 -162.788 -7.03679 7.03679 0.93 0.000630149 0.000571766 0.0300385 0.027382 38 3489 28 6.79088e+06 229024 678818. 2348.85 13.26 0.313813 0.273693 25966 169698 -1 2750 18 1400 3465 198948 44554 6.45548 6.45548 -161.876 -6.45548 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0285068 0.0256825 119 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 9.99 vpr 64.84 MiB -1 -1 0.17 20736 12 0.18 -1 -1 36184 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 26.4 MiB 2.56 1005 7304 1599 5397 308 64.8 MiB 0.06 0.00 6.85818 -143.144 -6.85818 6.85818 0.87 0.000520274 0.000475024 0.0254953 0.0233132 36 3104 26 6.79088e+06 229024 648988. 2245.63 4.19 0.172703 0.15276 25390 158009 -1 2546 20 1197 3028 191255 42293 5.92738 5.92738 -138.337 -5.92738 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0262347 0.0233443 101 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 7.90 vpr 64.41 MiB -1 -1 0.19 20464 10 0.18 -1 -1 36540 -1 -1 17 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65960 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 26.0 MiB 1.84 942 8378 2178 5592 608 64.4 MiB 0.07 0.00 6.16888 -135.594 -6.16888 6.16888 0.91 0.000512463 0.000465075 0.0291677 0.0264848 34 2825 33 6.79088e+06 229024 618332. 2139.56 2.70 0.16374 0.143806 25102 150614 -1 2283 15 958 2705 169570 37670 5.36338 5.36338 -129.171 -5.36338 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.021579 0.0194701 103 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 8.99 vpr 65.43 MiB -1 -1 0.23 21136 13 0.37 -1 -1 36740 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 26.9 MiB 2.28 1312 13663 4088 7126 2449 65.4 MiB 0.13 0.00 8.09614 -166.803 -8.09614 8.09614 0.91 0.000707945 0.000633213 0.0564053 0.0511328 44 3318 23 6.79088e+06 282912 787024. 2723.27 2.84 0.223131 0.196244 27118 194962 -1 2701 17 1373 4208 224771 50229 7.1394 7.1394 -154.037 -7.1394 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0329253 0.0297607 149 220 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 9.99 vpr 64.78 MiB -1 -1 0.23 21000 14 0.40 -1 -1 36388 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66332 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 26.3 MiB 2.60 1261 10584 2627 7173 784 64.8 MiB 0.10 0.00 7.68903 -168.897 -7.68903 7.68903 0.92 0.000693553 0.000630595 0.0441343 0.0399651 44 3649 50 6.79088e+06 242496 787024. 2723.27 3.49 0.2202 0.19531 27118 194962 -1 2886 17 1427 3968 219322 49259 6.95258 6.95258 -162.986 -6.95258 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.0317261 0.0287371 136 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 10.07 vpr 64.56 MiB -1 -1 0.20 20660 12 0.19 -1 -1 35932 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 26.1 MiB 2.56 1099 9036 2242 5503 1291 64.6 MiB 0.07 0.00 7.11595 -155.813 -7.11595 7.11595 0.91 0.000528262 0.000487042 0.032112 0.0292636 42 2594 21 6.79088e+06 215552 744469. 2576.02 4.04 0.212805 0.186396 26542 182613 -1 2155 16 879 2322 148727 32785 6.33018 6.33018 -150.18 -6.33018 0 0 949917. 3286.91 0.37 0.06 0.17 -1 -1 0.37 0.0238762 0.0215537 101 148 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 11.21 vpr 65.33 MiB -1 -1 0.23 20912 12 0.34 -1 -1 36656 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 26.8 MiB 2.84 1467 6039 1319 4287 433 65.3 MiB 0.07 0.00 7.47278 -158.083 -7.47278 7.47278 0.92 0.000707446 0.000636052 0.0266136 0.0243316 48 3354 17 6.79088e+06 323328 865456. 2994.66 4.56 0.242093 0.211949 27694 206865 -1 3077 17 1391 4060 254908 53783 6.54502 6.54502 -148.257 -6.54502 0 0 1.05005e+06 3633.38 0.41 0.09 0.20 -1 -1 0.41 0.0343509 0.0311792 146 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 8.66 vpr 64.98 MiB -1 -1 0.23 20940 14 0.45 -1 -1 37092 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 26.5 MiB 1.61 1271 10129 2796 6287 1046 65.0 MiB 0.09 0.00 8.30959 -169.599 -8.30959 8.30959 0.89 0.000649076 0.00058897 0.0407419 0.0370204 36 3450 22 6.79088e+06 296384 648988. 2245.63 3.29 0.208089 0.183999 25390 158009 -1 2866 16 1351 3700 212299 48794 7.47267 7.47267 -164.725 -7.47267 0 0 828058. 2865.25 0.33 0.08 0.16 -1 -1 0.33 0.031103 0.0282323 142 200 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 8.84 vpr 65.05 MiB -1 -1 0.23 21020 13 0.32 -1 -1 36096 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 26.6 MiB 2.51 1280 4811 900 3622 289 65.0 MiB 0.05 0.00 8.58767 -169.841 -8.58767 8.58767 0.90 0.000621717 0.00056412 0.0197583 0.0180653 38 3430 34 6.79088e+06 309856 678818. 2348.85 2.72 0.17978 0.157231 25966 169698 -1 2787 17 1355 3483 187965 42656 7.47267 7.47267 -159.441 -7.47267 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.030277 0.0274221 136 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 11.24 vpr 65.20 MiB -1 -1 0.23 20692 13 0.32 -1 -1 36528 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 26.8 MiB 2.32 1180 11979 3854 6305 1820 65.2 MiB 0.11 0.00 7.68398 -158.005 -7.68398 7.68398 0.92 0.000626677 0.000560305 0.0451141 0.0407621 46 3049 18 6.79088e+06 282912 828058. 2865.25 5.16 0.227853 0.199464 27406 200422 -1 2544 16 1179 3480 191322 42294 6.96798 6.96798 -148.071 -6.96798 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0269251 0.0243242 125 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 9.57 vpr 64.40 MiB -1 -1 0.19 20448 12 0.23 -1 -1 36460 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65944 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 25.9 MiB 2.27 851 11432 3292 6222 1918 64.4 MiB 0.09 0.00 6.74005 -141.479 -6.74005 6.74005 0.86 0.000565459 0.00051528 0.0419942 0.0383304 38 2732 20 6.79088e+06 215552 678818. 2348.85 3.96 0.19436 0.172632 25966 169698 -1 2025 17 1043 2803 137992 33770 6.06839 6.06839 -140.261 -6.06839 0 0 902133. 3121.57 0.32 0.06 0.15 -1 -1 0.32 0.0260455 0.023521 111 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 28.53 vpr 65.43 MiB -1 -1 0.26 21540 14 0.49 -1 -1 37012 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 27.1 MiB 1.34 1525 8269 1990 5730 549 65.4 MiB 0.09 0.00 8.76146 -179.232 -8.76146 8.76146 0.89 0.000799889 0.000714054 0.0385093 0.0348579 40 3962 28 6.79088e+06 282912 706193. 2443.58 23.31 0.404461 0.355832 26254 175826 -1 3736 16 1643 4957 342662 72776 7.59797 7.59797 -174.093 -7.59797 0 0 926341. 3205.33 0.35 0.11 0.17 -1 -1 0.35 0.0349689 0.0319131 159 229 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 10.73 vpr 64.90 MiB -1 -1 0.19 20560 11 0.24 -1 -1 35988 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 26.4 MiB 2.64 1083 5656 1222 4312 122 64.9 MiB 0.06 0.00 6.44427 -138.672 -6.44427 6.44427 0.89 0.000589233 0.000533023 0.022276 0.0202684 44 3087 27 6.79088e+06 215552 787024. 2723.27 4.58 0.210861 0.183544 27118 194962 -1 2503 18 1145 3343 199423 43115 5.73164 5.73164 -134.877 -5.73164 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0275318 0.0248211 112 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 10.58 vpr 64.87 MiB -1 -1 0.24 20672 13 0.33 -1 -1 36492 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 26.4 MiB 2.10 1224 12683 3651 6628 2404 64.9 MiB 0.11 0.00 8.19665 -170.984 -8.19665 8.19665 0.92 0.000657851 0.00059852 0.0506602 0.0460715 36 3521 25 6.79088e+06 269440 648988. 2245.63 4.83 0.266318 0.234665 25390 158009 -1 2718 17 1178 3776 220011 48287 7.01061 7.01061 -160.627 -7.01061 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0307487 0.0277822 137 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 9.15 vpr 65.07 MiB -1 -1 0.23 20800 12 0.32 -1 -1 36840 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 26.6 MiB 2.36 1183 14221 4949 6932 2340 65.1 MiB 0.13 0.00 7.19197 -155.782 -7.19197 7.19197 0.91 0.000668725 0.000603172 0.0561395 0.0508001 48 3258 28 6.79088e+06 282912 865456. 2994.66 2.93 0.233481 0.20651 27694 206865 -1 2769 24 1411 4530 432759 157864 6.41972 6.41972 -150.586 -6.41972 0 0 1.05005e+06 3633.38 0.39 0.15 0.21 -1 -1 0.39 0.0393096 0.0351181 146 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 10.01 vpr 64.98 MiB -1 -1 0.19 20816 13 0.30 -1 -1 36664 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 26.6 MiB 1.64 1273 10103 2600 6194 1309 65.0 MiB 0.09 0.00 8.00961 -170.987 -8.00961 8.00961 0.92 0.000643962 0.000582771 0.0381332 0.0345897 38 3255 22 6.79088e+06 296384 678818. 2348.85 4.79 0.262477 0.230417 25966 169698 -1 2694 17 1212 3197 175848 40913 6.72081 6.72081 -158.428 -6.72081 0 0 902133. 3121.57 0.32 0.07 0.16 -1 -1 0.32 0.0281557 0.0253948 131 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 13.09 vpr 64.54 MiB -1 -1 0.22 20744 13 0.27 -1 -1 37024 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 26.1 MiB 3.25 1094 12364 4318 5742 2304 64.5 MiB 0.11 0.00 7.6093 -157.428 -7.6093 7.6093 0.90 0.000606893 0.000549731 0.0453812 0.0411019 38 3487 43 6.79088e+06 242496 678818. 2348.85 6.26 0.211039 0.184485 25966 169698 -1 2496 17 1300 3454 186520 43111 6.50936 6.50936 -147.867 -6.50936 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0272278 0.0245147 124 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 11.34 vpr 65.23 MiB -1 -1 0.24 21068 12 0.31 -1 -1 36476 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66800 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 26.7 MiB 2.41 1339 6489 1417 4538 534 65.2 MiB 0.07 0.00 7.45027 -163.951 -7.45027 7.45027 0.91 0.000656827 0.000594857 0.0278586 0.0253729 44 3321 18 6.79088e+06 269440 787024. 2723.27 5.22 0.251652 0.221194 27118 194962 -1 2880 15 1268 4103 226307 48638 6.33367 6.33367 -151.313 -6.33367 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0283178 0.025574 140 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 9.23 vpr 64.74 MiB -1 -1 0.24 20576 13 0.36 -1 -1 37008 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66292 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 26.2 MiB 1.91 1312 5757 1265 4157 335 64.7 MiB 0.06 0.00 7.77691 -170.238 -7.77691 7.77691 0.90 0.000676657 0.000612776 0.0266315 0.0241677 36 4117 46 6.79088e+06 269440 648988. 2245.63 3.55 0.213782 0.187064 25390 158009 -1 3191 34 1537 4493 529481 205202 6.95673 6.95673 -165.406 -6.95673 0 0 828058. 2865.25 0.32 0.20 0.16 -1 -1 0.32 0.0556298 0.049771 145 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 17.69 vpr 65.02 MiB -1 -1 0.21 20416 14 0.35 -1 -1 36228 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 26.6 MiB 1.76 1196 9783 2600 6598 585 65.0 MiB 0.09 0.00 8.29092 -170.108 -8.29092 8.29092 0.92 0.000621751 0.000564567 0.0367677 0.0334666 38 3116 34 6.79088e+06 269440 678818. 2348.85 12.26 0.313994 0.27535 25966 169698 -1 2517 19 1395 4131 212750 47962 7.04638 7.04638 -156.873 -7.04638 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.030898 0.0278929 125 167 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 21.53 vpr 65.20 MiB -1 -1 0.22 20632 13 0.33 -1 -1 36644 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 26.7 MiB 2.68 1239 12547 3128 7964 1455 65.2 MiB 0.11 0.00 8.02156 -162.008 -8.02156 8.02156 0.90 0.000645016 0.000583749 0.0491581 0.0445764 36 3706 32 6.79088e+06 282912 648988. 2245.63 15.21 0.330729 0.290086 25390 158009 -1 3134 23 1969 5759 376061 79652 7.33607 7.33607 -160.823 -7.33607 0 0 828058. 2865.25 0.31 0.12 0.15 -1 -1 0.31 0.0365972 0.0326912 136 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 18.91 vpr 65.18 MiB -1 -1 0.22 20732 13 0.33 -1 -1 36672 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 26.7 MiB 2.10 1309 8319 2069 5720 530 65.2 MiB 0.08 0.00 7.83086 -168.91 -7.83086 7.83086 0.86 0.000656622 0.000598175 0.0348215 0.0315983 38 3459 40 6.79088e+06 282912 678818. 2348.85 13.32 0.418321 0.369661 25966 169698 -1 2928 18 1445 4114 215674 47831 6.83836 6.83836 -161.551 -6.83836 0 0 902133. 3121.57 0.32 0.08 0.15 -1 -1 0.32 0.0317574 0.0287195 144 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 20.00 vpr 65.30 MiB -1 -1 0.24 20884 12 0.37 -1 -1 36616 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 26.8 MiB 1.87 1321 14779 4130 8902 1747 65.3 MiB 0.14 0.00 7.66848 -162.706 -7.66848 7.66848 0.92 0.000709593 0.000642671 0.0607605 0.0552647 38 3631 50 6.79088e+06 282912 678818. 2348.85 14.31 0.457888 0.403823 25966 169698 -1 3008 18 1459 4087 232219 51644 6.98829 6.98829 -157.579 -6.98829 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.034069 0.0307701 147 213 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 8.95 vpr 64.66 MiB -1 -1 0.18 20140 11 0.16 -1 -1 36524 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 26.3 MiB 1.56 752 5224 962 4133 129 64.7 MiB 0.05 0.00 6.41251 -131.25 -6.41251 6.41251 0.91 0.000484321 0.000440563 0.018111 0.0164763 36 2354 24 6.79088e+06 188608 648988. 2245.63 4.10 0.171959 0.148226 25390 158009 -1 1841 17 982 2579 141528 34864 5.56708 5.56708 -127.034 -5.56708 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0212566 0.0190376 91 121 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 10.21 vpr 64.60 MiB -1 -1 0.21 20816 13 0.26 -1 -1 36284 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 26.0 MiB 2.21 1180 7221 1648 4796 777 64.6 MiB 0.07 0.00 7.59268 -164.24 -7.59268 7.59268 0.93 0.000578226 0.000523387 0.0272677 0.0247612 36 3135 25 6.79088e+06 269440 648988. 2245.63 4.48 0.189031 0.166513 25390 158009 -1 2766 17 1158 3022 197887 43020 6.74539 6.74539 -159.239 -6.74539 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0282293 0.0254107 118 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 10.73 vpr 65.61 MiB -1 -1 0.24 21368 14 0.55 -1 -1 36800 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 27.0 MiB 1.59 1584 7108 1588 4936 584 65.6 MiB 0.08 0.00 9.32595 -187.261 -9.32595 9.32595 0.92 0.000779735 0.00070675 0.0344565 0.031268 50 3511 18 6.79088e+06 323328 902133. 3121.57 5.05 0.283337 0.249107 27982 213445 -1 3216 16 1699 4871 267896 58380 8.0201 8.0201 -173.358 -8.0201 0 0 1.08113e+06 3740.92 0.40 0.09 0.21 -1 -1 0.40 0.0348191 0.0316049 171 243 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 10.08 vpr 65.09 MiB -1 -1 0.22 20764 13 0.36 -1 -1 36672 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 26.7 MiB 1.91 1314 12733 3340 7297 2096 65.1 MiB 0.11 0.00 7.97246 -177.126 -7.97246 7.97246 0.92 0.000670912 0.000576913 0.0480351 0.043583 38 3411 27 6.79088e+06 282912 678818. 2348.85 4.43 0.208133 0.183302 25966 169698 -1 2845 17 1391 3842 239432 52895 7.01061 7.01061 -170.364 -7.01061 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0283402 0.0255378 134 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 7.71 vpr 64.54 MiB -1 -1 0.20 20488 11 0.21 -1 -1 36504 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 26.1 MiB 0.87 915 4304 849 3239 216 64.5 MiB 0.04 0.00 6.78614 -143.669 -6.78614 6.78614 0.91 0.000537028 0.000487627 0.0167591 0.015356 36 2700 29 6.79088e+06 229024 648988. 2245.63 3.48 0.15323 0.134154 25390 158009 -1 2122 15 1010 2751 160047 35594 6.06839 6.06839 -137.13 -6.06839 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0226976 0.0205553 101 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 9.90 vpr 65.73 MiB -1 -1 0.25 21564 15 0.61 -1 -1 36732 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67308 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 27.2 MiB 1.28 1525 5039 926 3796 317 65.7 MiB 0.06 0.00 9.59451 -195.342 -9.59451 9.59451 0.86 0.000776935 0.000707093 0.0252307 0.0230105 36 4861 41 6.79088e+06 336800 648988. 2245.63 4.81 0.258026 0.230177 25390 158009 -1 3846 22 1955 5417 336882 74570 8.35685 8.35685 -188.636 -8.35685 0 0 828058. 2865.25 0.31 0.12 0.14 -1 -1 0.31 0.0450213 0.0407428 179 256 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 9.76 vpr 65.04 MiB -1 -1 0.22 20784 13 0.39 -1 -1 36372 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 26.5 MiB 1.38 1281 8502 2158 5508 836 65.0 MiB 0.09 0.00 8.03603 -175.042 -8.03603 8.03603 0.93 0.000720902 0.00065592 0.0372752 0.0339501 38 3308 18 6.79088e+06 269440 678818. 2348.85 4.66 0.264985 0.233824 25966 169698 -1 2729 15 1311 3591 186034 41679 7.09671 7.09671 -167.647 -7.09671 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0303378 0.0275774 139 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 14.91 vpr 64.68 MiB -1 -1 0.17 20120 11 0.16 -1 -1 36612 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 26.3 MiB 1.53 1102 10183 2765 6008 1410 64.7 MiB 0.08 0.00 6.80233 -145.463 -6.80233 6.80233 0.91 0.00052614 0.000479557 0.0353834 0.0322068 30 2820 19 6.79088e+06 175136 556674. 1926.21 10.13 0.190607 0.167747 24526 138013 -1 2278 16 941 2287 125340 28672 5.65673 5.65673 -139.283 -5.65673 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0224018 0.0201319 94 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 8.74 vpr 65.32 MiB -1 -1 0.22 20996 12 0.37 -1 -1 36400 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66892 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 26.8 MiB 1.36 1332 7953 2031 5347 575 65.3 MiB 0.08 0.00 7.73069 -165.16 -7.73069 7.73069 0.92 0.000687783 0.000622316 0.0341317 0.0309225 38 3533 25 6.79088e+06 269440 678818. 2348.85 3.64 0.210208 0.185299 25966 169698 -1 2880 16 1393 4466 244161 53393 6.50936 6.50936 -156.666 -6.50936 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0321512 0.0291802 146 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 9.73 vpr 64.62 MiB -1 -1 0.16 20460 12 0.22 -1 -1 36084 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 26.1 MiB 1.36 1053 12008 3553 6389 2066 64.6 MiB 0.09 0.00 7.28149 -150.89 -7.28149 7.28149 0.90 0.000573662 0.000521091 0.0410753 0.0372927 48 2365 40 6.79088e+06 242496 865456. 2994.66 4.74 0.252891 0.222013 27694 206865 -1 2130 32 1182 3096 419904 216609 6.33023 6.33023 -141.759 -6.33023 0 0 1.05005e+06 3633.38 0.42 0.17 0.20 -1 -1 0.42 0.0438978 0.0392509 113 148 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 7.15 vpr 64.50 MiB -1 -1 0.21 20684 12 0.23 -1 -1 36264 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 26.0 MiB 1.22 903 6163 1336 4643 184 64.5 MiB 0.06 0.00 7.56546 -146.033 -7.56546 7.56546 0.91 0.000534046 0.000484056 0.0228389 0.020772 34 2679 34 6.79088e+06 229024 618332. 2139.56 2.47 0.129999 0.114389 25102 150614 -1 2166 23 940 2677 282057 108915 6.54507 6.54507 -141.615 -6.54507 0 0 787024. 2723.27 0.32 0.11 0.14 -1 -1 0.32 0.0297626 0.026562 106 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 18.62 vpr 64.90 MiB -1 -1 0.24 20688 12 0.34 -1 -1 36612 -1 -1 26 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 26.4 MiB 2.54 1197 6039 1341 4100 598 64.9 MiB 0.06 0.00 7.39356 -141.853 -7.39356 7.39356 0.91 0.000643952 0.000583464 0.0246305 0.0224227 40 2765 18 6.79088e+06 350272 706193. 2443.58 12.40 0.325147 0.284332 26254 175826 -1 2683 18 1287 4001 245257 52754 6.50238 6.50238 -135.7 -6.50238 0 0 926341. 3205.33 0.36 0.09 0.17 -1 -1 0.36 0.031594 0.0285314 140 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 13.54 vpr 65.44 MiB -1 -1 0.22 21056 13 0.43 -1 -1 36456 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 27.1 MiB 1.28 1362 9111 2298 6252 561 65.4 MiB 0.09 0.00 7.91407 -168.647 -7.91407 7.91407 0.90 0.000730925 0.00066202 0.0395632 0.0358935 36 4498 41 6.79088e+06 309856 648988. 2245.63 8.46 0.236859 0.207621 25390 158009 -1 3430 25 2554 6396 468023 127210 7.54398 7.54398 -171.891 -7.54398 0 0 828058. 2865.25 0.32 0.15 0.15 -1 -1 0.32 0.0434251 0.0388943 160 235 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 9.45 vpr 65.09 MiB -1 -1 0.23 20648 12 0.28 -1 -1 36564 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 26.6 MiB 1.54 1278 7770 1751 5660 359 65.1 MiB 0.07 0.00 7.73336 -164.138 -7.73336 7.73336 0.90 0.000630672 0.000570775 0.0311429 0.0282244 38 3570 28 6.79088e+06 269440 678818. 2348.85 4.32 0.204619 0.180494 25966 169698 -1 2893 19 1614 4633 260219 56380 6.62347 6.62347 -155.711 -6.62347 0 0 902133. 3121.57 0.35 0.09 0.16 -1 -1 0.35 0.0332179 0.0299328 140 195 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 9.40 vpr 64.24 MiB -1 -1 0.19 20316 12 0.18 -1 -1 36856 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65780 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 25.9 MiB 2.37 988 4473 916 3372 185 64.2 MiB 0.04 0.00 7.24997 -147.671 -7.24997 7.24997 0.92 0.000496771 0.000450697 0.0167813 0.0152994 36 2682 24 6.79088e+06 202080 648988. 2245.63 3.68 0.137226 0.119687 25390 158009 -1 2226 18 906 2477 157273 34411 6.12222 6.12222 -141.304 -6.12222 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0226282 0.0202012 93 119 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 9.78 vpr 64.78 MiB -1 -1 0.22 20452 12 0.26 -1 -1 36628 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 26.3 MiB 1.69 1084 12898 3877 6797 2224 64.8 MiB 0.10 0.00 7.21455 -151.198 -7.21455 7.21455 0.91 0.000565034 0.000512924 0.0441368 0.0400597 36 2934 32 6.79088e+06 255968 648988. 2245.63 4.58 0.200681 0.177154 25390 158009 -1 2522 17 1069 2930 187495 40044 6.38938 6.38938 -145.28 -6.38938 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0267619 0.0241038 111 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 7.52 vpr 65.05 MiB -1 -1 0.21 20708 11 0.23 -1 -1 36496 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 26.7 MiB 1.80 1115 8626 2299 5376 951 65.0 MiB 0.08 0.00 6.84847 -137.093 -6.84847 6.84847 0.90 0.000588317 0.000531665 0.0330484 0.0299752 36 3085 31 6.79088e+06 269440 648988. 2245.63 2.23 0.155182 0.136094 25390 158009 -1 2587 16 1145 3498 206937 46000 5.91846 5.91846 -134.854 -5.91846 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0268768 0.0242286 125 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 9.31 vpr 65.00 MiB -1 -1 0.21 20744 11 0.25 -1 -1 36596 -1 -1 19 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 26.4 MiB 1.56 1077 4642 990 3215 437 65.0 MiB 0.05 0.00 6.39394 -126.807 -6.39394 6.39394 0.91 0.000571672 0.000519165 0.0192133 0.0175632 36 2869 37 6.79088e+06 255968 648988. 2245.63 4.28 0.17327 0.151433 25390 158009 -1 2437 20 1375 4064 247006 53420 5.76386 5.76386 -127.412 -5.76386 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0288329 0.0257641 116 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 13.41 vpr 64.56 MiB -1 -1 0.21 20412 13 0.26 -1 -1 36112 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 26.0 MiB 2.10 1115 9196 2684 4764 1748 64.6 MiB 0.08 0.00 7.27805 -147.461 -7.27805 7.27805 0.90 0.000553484 0.000499291 0.0339582 0.0308044 30 3203 46 6.79088e+06 242496 556674. 1926.21 7.94 0.233473 0.203231 24526 138013 -1 2365 18 1028 2893 146859 34111 6.4521 6.4521 -143.501 -6.4521 0 0 706193. 2443.58 0.27 0.06 0.12 -1 -1 0.27 0.0252685 0.0226054 108 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 17.25 vpr 64.73 MiB -1 -1 0.21 20712 12 0.24 -1 -1 36120 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 26.4 MiB 2.56 1193 6490 1485 4564 441 64.7 MiB 0.06 0.00 7.26273 -167.563 -7.26273 7.26273 0.92 0.000606254 0.000549645 0.0259556 0.0236506 40 2753 23 6.79088e+06 242496 706193. 2443.58 11.12 0.299578 0.260908 26254 175826 -1 2592 15 1162 3054 182136 40617 6.16912 6.16912 -155.542 -6.16912 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0266008 0.0241937 120 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 10.57 vpr 64.82 MiB -1 -1 0.21 20476 13 0.35 -1 -1 36452 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 26.4 MiB 2.07 1194 6123 1343 4442 338 64.8 MiB 0.06 0.00 8.79477 -171.911 -8.79477 8.79477 0.93 0.0006246 0.00057323 0.0237385 0.0216024 38 2937 20 6.79088e+06 282912 678818. 2348.85 4.89 0.258402 0.225986 25966 169698 -1 2489 18 1105 3151 165336 36337 7.51535 7.51535 -158.405 -7.51535 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0311563 0.028137 137 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 21.71 vpr 65.27 MiB -1 -1 0.22 20788 14 0.30 -1 -1 36544 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66836 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 26.7 MiB 1.48 1287 8685 2330 5621 734 65.3 MiB 0.08 0.00 8.66267 -183.033 -8.66267 8.66267 0.85 0.000621372 0.000564808 0.0340319 0.0310065 38 3763 48 6.79088e+06 269440 678818. 2348.85 16.80 0.380539 0.335986 25966 169698 -1 2915 16 1330 3905 202778 45246 7.71556 7.71556 -172.147 -7.71556 0 0 902133. 3121.57 0.32 0.08 0.15 -1 -1 0.32 0.0294054 0.0267139 132 195 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 10.15 vpr 64.79 MiB -1 -1 0.23 21084 14 0.31 -1 -1 36468 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 26.4 MiB 2.58 1083 11456 4044 5385 2027 64.8 MiB 0.10 0.00 7.96611 -159.164 -7.96611 7.96611 0.91 0.000619582 0.000561272 0.0444148 0.0401768 38 3010 34 6.79088e+06 229024 678818. 2348.85 3.92 0.215577 0.190675 25966 169698 -1 2533 21 1329 3905 220140 48577 6.88531 6.88531 -150.267 -6.88531 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0327173 0.0294507 122 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 10.72 vpr 65.25 MiB -1 -1 0.24 20852 13 0.42 -1 -1 36168 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 26.7 MiB 2.21 1338 8024 1861 5707 456 65.2 MiB 0.08 0.00 8.29812 -170.177 -8.29812 8.29812 0.91 0.000707864 0.000644094 0.0334516 0.030392 46 3286 28 6.79088e+06 296384 828058. 2865.25 4.69 0.256918 0.224884 27406 200422 -1 2713 17 1339 3882 198248 44688 7.42576 7.42576 -159.92 -7.42576 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0315709 0.0286227 144 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 8.37 vpr 64.54 MiB -1 -1 0.20 20432 13 0.23 -1 -1 35864 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 26.1 MiB 2.40 919 12292 3407 6536 2349 64.5 MiB 0.09 0.00 7.20737 -146.133 -7.20737 7.20737 0.89 0.000553406 0.000503629 0.0395758 0.035889 36 2720 18 6.79088e+06 242496 648988. 2245.63 2.60 0.164467 0.144192 25390 158009 -1 2349 21 1060 2707 237673 81251 6.16917 6.16917 -141.277 -6.16917 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.0285856 0.0255277 104 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 24.03 vpr 65.03 MiB -1 -1 0.25 20880 13 0.54 -1 -1 36492 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 26.5 MiB 2.15 1350 9234 2593 5787 854 65.0 MiB 0.09 0.00 8.31996 -168.69 -8.31996 8.31996 0.91 0.000710087 0.000645711 0.0400237 0.0364549 38 3825 50 6.79088e+06 296384 678818. 2348.85 17.95 0.446845 0.394675 25966 169698 -1 3171 20 1711 4755 291516 62812 7.05325 7.05325 -160.364 -7.05325 0 0 902133. 3121.57 0.34 0.11 0.16 -1 -1 0.34 0.0371309 0.0335226 145 200 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 21.00 vpr 64.90 MiB -1 -1 0.23 20684 14 0.39 -1 -1 36796 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 26.5 MiB 2.02 1251 6312 1329 4019 964 64.9 MiB 0.06 0.00 8.37235 -176.058 -8.37235 8.37235 0.90 0.000622634 0.000553052 0.0258384 0.0234149 40 3069 17 6.79088e+06 242496 706193. 2443.58 15.23 0.348767 0.304178 26254 175826 -1 2990 20 1531 4498 306796 65009 7.25783 7.25783 -172.618 -7.25783 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0341689 0.0307847 128 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 9.23 vpr 65.04 MiB -1 -1 0.23 21020 13 0.28 -1 -1 36412 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 26.6 MiB 2.24 1125 7914 1884 5216 814 65.0 MiB 0.07 0.00 7.39828 -160.2 -7.39828 7.39828 0.95 0.000617063 0.000560985 0.0317171 0.0288012 38 3005 21 6.79088e+06 255968 678818. 2348.85 3.36 0.181196 0.159737 25966 169698 -1 2486 23 1200 3332 176702 39015 6.56626 6.56626 -155.185 -6.56626 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0344981 0.0308973 124 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 8.59 vpr 64.64 MiB -1 -1 0.22 20800 13 0.25 -1 -1 36636 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66196 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 26.3 MiB 1.90 1096 8306 2939 4353 1014 64.6 MiB 0.07 0.00 7.45237 -146.107 -7.45237 7.45237 0.86 0.000570137 0.000516567 0.0312257 0.0284482 38 3152 24 6.79088e+06 255968 678818. 2348.85 3.31 0.201427 0.179458 25966 169698 -1 2342 16 1150 3084 162162 37365 6.43207 6.43207 -139.415 -6.43207 0 0 902133. 3121.57 0.32 0.07 0.15 -1 -1 0.32 0.0261301 0.0236441 121 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 11.43 vpr 65.18 MiB -1 -1 0.23 20732 14 0.45 -1 -1 36392 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 26.6 MiB 1.97 1434 9943 2708 5582 1653 65.2 MiB 0.09 0.00 8.52022 -179.043 -8.52022 8.52022 0.90 0.000714719 0.000644025 0.0411725 0.037428 46 3715 29 6.79088e+06 282912 828058. 2865.25 5.59 0.283553 0.248963 27406 200422 -1 3171 17 1583 4694 251057 54959 7.46497 7.46497 -164.971 -7.46497 0 0 1.01997e+06 3529.29 0.38 0.09 0.20 -1 -1 0.38 0.033252 0.030143 154 215 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 11.68 vpr 65.01 MiB -1 -1 0.25 20960 11 0.35 -1 -1 36780 -1 -1 23 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 26.5 MiB 2.56 1077 10149 2679 5779 1691 65.0 MiB 0.09 0.00 7.52622 -140.559 -7.52622 7.52622 0.92 0.000615989 0.000556516 0.0384657 0.0349797 36 3431 24 6.79088e+06 309856 648988. 2245.63 5.41 0.190852 0.167786 25390 158009 -1 2771 20 1451 4096 246936 56814 6.50587 6.50587 -138.088 -6.50587 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0334891 0.0300566 136 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 11.55 vpr 64.09 MiB -1 -1 0.18 19992 13 0.18 -1 -1 36700 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65628 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 25.7 MiB 3.50 972 6054 1229 4689 136 64.1 MiB 0.06 0.00 6.97458 -160.094 -6.97458 6.97458 0.89 0.000547942 0.000488164 0.0230933 0.0210502 44 2580 35 6.79088e+06 188608 787024. 2723.27 4.67 0.217188 0.189205 27118 194962 -1 2150 15 1044 2364 139472 31738 5.93965 5.93965 -149.931 -5.93965 0 0 997811. 3452.63 0.38 0.05 0.18 -1 -1 0.38 0.0201801 0.0182029 98 127 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 10.92 vpr 64.69 MiB -1 -1 0.23 20716 14 0.29 -1 -1 36672 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 26.4 MiB 2.05 963 3581 624 2890 67 64.7 MiB 0.04 0.00 8.38402 -165.799 -8.38402 8.38402 0.91 0.000634823 0.000576442 0.0164317 0.0150243 36 3137 33 6.79088e+06 229024 648988. 2245.63 5.34 0.192112 0.169581 25390 158009 -1 2489 23 1433 3816 225579 53597 7.63717 7.63717 -163.256 -7.63717 0 0 828058. 2865.25 0.33 0.09 0.15 -1 -1 0.33 0.0352654 0.03159 122 172 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 25.41 vpr 65.11 MiB -1 -1 0.24 21452 15 0.52 -1 -1 36444 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 26.7 MiB 1.85 1424 5271 949 4056 266 65.1 MiB 0.07 0.00 9.1358 -193.594 -9.1358 9.1358 0.91 0.00079142 0.000720512 0.0269315 0.0245824 44 3988 33 6.79088e+06 309856 787024. 2723.27 19.58 0.399871 0.353398 27118 194962 -1 3100 22 2050 5481 333147 91729 8.02005 8.02005 -179.593 -8.02005 0 0 997811. 3452.63 0.39 0.13 0.19 -1 -1 0.39 0.0440319 0.0395572 163 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 13.83 vpr 64.37 MiB -1 -1 0.20 20320 11 0.39 -1 -1 36480 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 26.0 MiB 2.03 958 10726 3368 5272 2086 64.4 MiB 0.08 0.00 6.79222 -142.45 -6.79222 6.79222 0.90 0.000501095 0.000455542 0.0343571 0.0312426 30 2689 41 6.79088e+06 202080 556674. 1926.21 8.29 0.189649 0.164917 24526 138013 -1 2234 18 943 2504 151073 33167 5.78973 5.78973 -136.953 -5.78973 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0229463 0.0205852 97 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 9.90 vpr 64.89 MiB -1 -1 0.17 20716 12 0.21 -1 -1 36340 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 26.4 MiB 1.82 1114 10400 2653 5866 1881 64.9 MiB 0.08 0.00 6.63358 -148.815 -6.63358 6.63358 0.86 0.000587991 0.000529528 0.0349205 0.0317462 44 2977 25 6.79088e+06 229024 787024. 2723.27 4.73 0.237584 0.209455 27118 194962 -1 2465 18 1219 3380 180544 40323 5.91159 5.91159 -143.173 -5.91159 0 0 997811. 3452.63 0.37 0.07 0.17 -1 -1 0.37 0.0268685 0.0242708 112 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 10.03 vpr 65.11 MiB -1 -1 0.23 20616 12 0.37 -1 -1 36676 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 26.5 MiB 1.48 1409 5123 1016 3643 464 65.1 MiB 0.06 0.00 7.37446 -165.375 -7.37446 7.37446 0.92 0.000708549 0.0006423 0.0243754 0.0221544 44 3278 28 6.79088e+06 255968 787024. 2723.27 4.75 0.262952 0.230697 27118 194962 -1 2783 17 1263 3864 196835 44082 6.46241 6.46241 -153.667 -6.46241 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0325628 0.0294916 143 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 9.11 vpr 65.07 MiB -1 -1 0.28 20708 12 0.28 -1 -1 36464 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 26.7 MiB 2.35 1290 8804 2224 5446 1134 65.1 MiB 0.08 0.00 7.66631 -156.992 -7.66631 7.66631 0.93 0.000650334 0.00059581 0.0347265 0.0315945 44 3473 38 6.79088e+06 242496 787024. 2723.27 3.00 0.181441 0.160907 27118 194962 -1 2940 16 1287 3747 223251 48433 6.45897 6.45897 -149.707 -6.45897 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0294323 0.0268027 130 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 8.56 vpr 65.48 MiB -1 -1 0.24 21200 14 0.57 -1 -1 36540 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 27.1 MiB 2.24 1339 6323 1159 4879 285 65.5 MiB 0.07 0.00 9.2305 -183.989 -9.2305 9.2305 0.91 0.000775215 0.000702017 0.0308593 0.0281089 38 3705 30 6.79088e+06 296384 678818. 2348.85 2.38 0.19357 0.171937 25966 169698 -1 3013 18 1532 4522 227149 51743 7.89131 7.89131 -171.065 -7.89131 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0386118 0.0351048 167 232 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 19.16 vpr 64.80 MiB -1 -1 0.22 20388 12 0.26 -1 -1 36500 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 26.2 MiB 1.92 1023 10231 4165 5804 262 64.8 MiB 0.09 0.00 7.21752 -140.072 -7.21752 7.21752 0.94 0.000597668 0.000543646 0.038869 0.0353245 36 3532 36 6.79088e+06 255968 648988. 2245.63 13.67 0.29216 0.255417 25390 158009 -1 2548 16 1205 3395 212673 48136 6.16142 6.16142 -137.705 -6.16142 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0266538 0.02414 121 155 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 10.20 vpr 64.73 MiB -1 -1 0.19 20456 11 0.23 -1 -1 36292 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 26.2 MiB 2.56 852 9208 3256 4555 1397 64.7 MiB 0.07 0.00 7.04622 -127.422 -7.04622 7.04622 0.91 0.000511553 0.000453764 0.0308368 0.0280301 30 2286 23 6.79088e+06 255968 556674. 1926.21 4.10 0.186694 0.161819 24526 138013 -1 1813 16 927 2368 105512 26395 5.91852 5.91852 -121.555 -5.91852 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.022157 0.0198999 104 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 11.37 vpr 65.39 MiB -1 -1 0.26 21440 13 0.53 -1 -1 36392 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 26.8 MiB 1.97 1698 8532 2074 5800 658 65.4 MiB 0.10 0.00 7.91451 -163.387 -7.91451 7.91451 0.94 0.000879458 0.000797191 0.0415387 0.0376108 46 4524 47 6.79088e+06 350272 828058. 2865.25 5.03 0.320263 0.284348 27406 200422 -1 3573 18 1870 5879 293787 64537 6.99937 6.99937 -156.314 -6.99937 0 0 1.01997e+06 3529.29 0.37 0.11 0.19 -1 -1 0.37 0.0407124 0.0369879 188 285 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 7.46 vpr 65.00 MiB -1 -1 0.22 20556 14 0.29 -1 -1 36664 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 26.6 MiB 1.99 1264 9385 2554 5852 979 65.0 MiB 0.08 0.00 8.41881 -168.357 -8.41881 8.41881 0.86 0.000626121 0.000565327 0.0352686 0.0320327 30 3443 28 6.79088e+06 296384 556674. 1926.21 2.11 0.149188 0.133304 24526 138013 -1 2741 17 1270 3452 177968 40166 7.21431 7.21431 -163.766 -7.21431 0 0 706193. 2443.58 0.28 0.07 0.12 -1 -1 0.28 0.0291486 0.0263761 130 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 8.32 vpr 64.76 MiB -1 -1 0.22 20560 12 0.20 -1 -1 36048 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 26.3 MiB 1.98 1075 7736 1882 5428 426 64.8 MiB 0.07 0.00 7.20863 -155.968 -7.20863 7.20863 0.92 0.000556668 0.000506123 0.0272571 0.0248144 38 2746 23 6.79088e+06 242496 678818. 2348.85 2.88 0.168635 0.148998 25966 169698 -1 2229 18 1032 2575 147443 32944 6.12992 6.12992 -146.185 -6.12992 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0263243 0.0237482 109 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 9.64 vpr 64.83 MiB -1 -1 0.21 20648 13 0.34 -1 -1 36604 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66388 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 26.4 MiB 1.63 1233 12542 3940 6787 1815 64.8 MiB 0.11 0.00 8.09146 -166.475 -8.09146 8.09146 0.88 0.000626642 0.000567799 0.047815 0.0434252 36 3202 30 6.79088e+06 242496 648988. 2245.63 4.47 0.209304 0.184525 25390 158009 -1 2687 18 1245 3410 184945 42779 6.82029 6.82029 -158.939 -6.82029 0 0 828058. 2865.25 0.30 0.07 0.14 -1 -1 0.30 0.028343 0.0253849 128 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 25.16 vpr 65.19 MiB -1 -1 0.23 21272 13 0.40 -1 -1 37388 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 26.8 MiB 2.05 1392 4695 845 3563 287 65.2 MiB 0.06 0.00 7.47587 -155.329 -7.47587 7.47587 0.93 0.000744942 0.000674406 0.0231085 0.0211028 40 3664 28 6.79088e+06 323328 706193. 2443.58 19.31 0.385675 0.33753 26254 175826 -1 3433 18 1707 4807 297818 65147 6.54507 6.54507 -151.854 -6.54507 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0345944 0.0313059 157 228 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 10.24 vpr 65.24 MiB -1 -1 0.22 20544 11 0.31 -1 -1 36416 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 26.7 MiB 2.08 1218 4659 929 3342 388 65.2 MiB 0.05 0.00 7.06923 -144.171 -7.06923 7.06923 0.90 0.000631761 0.000572986 0.0200545 0.0182881 36 3280 38 6.79088e+06 296384 648988. 2245.63 4.64 0.236118 0.205741 25390 158009 -1 2789 15 1179 3509 202940 44755 6.16912 6.16912 -138.96 -6.16912 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0269389 0.0244179 141 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 10.73 vpr 65.09 MiB -1 -1 0.21 20600 15 0.42 -1 -1 36368 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 26.6 MiB 1.78 1290 8402 2178 5761 463 65.1 MiB 0.08 0.00 8.74612 -186.954 -8.74612 8.74612 0.92 0.000690927 0.000623378 0.034885 0.0315362 46 3189 27 6.79088e+06 296384 828058. 2865.25 5.00 0.313267 0.276544 27406 200422 -1 2786 28 1295 4217 461701 217315 7.50422 7.50422 -171.497 -7.50422 0 0 1.01997e+06 3529.29 0.40 0.19 0.19 -1 -1 0.40 0.0486261 0.0436919 147 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 10.03 vpr 65.26 MiB -1 -1 0.22 21252 13 0.38 -1 -1 36448 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 26.8 MiB 2.28 1316 8641 2148 5636 857 65.3 MiB 0.08 0.00 8.07216 -175.63 -8.07216 8.07216 0.85 0.000652902 0.000592867 0.0342193 0.0311445 44 3138 27 6.79088e+06 282912 787024. 2723.27 4.15 0.27162 0.239395 27118 194962 -1 2666 17 1219 3724 189053 42617 7.04981 7.04981 -164.83 -7.04981 0 0 997811. 3452.63 0.37 0.08 0.17 -1 -1 0.37 0.0310879 0.0282613 143 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 17.92 vpr 64.80 MiB -1 -1 0.19 20412 12 0.25 -1 -1 36200 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 26.2 MiB 2.04 864 9543 2234 6923 386 64.8 MiB 0.08 0.00 7.58072 -150.751 -7.58072 7.58072 0.92 0.000532072 0.000486407 0.0349224 0.0318138 38 2787 32 6.79088e+06 242496 678818. 2348.85 12.39 0.27168 0.237093 25966 169698 -1 2065 16 1049 2587 138165 31689 6.83831 6.83831 -144.518 -6.83831 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0242501 0.021825 111 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 9.11 vpr 64.78 MiB -1 -1 0.20 20404 11 0.19 -1 -1 36180 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 26.3 MiB 1.85 1018 5722 1217 4259 246 64.8 MiB 0.05 0.00 6.71746 -144.764 -6.71746 6.71746 0.92 0.000533857 0.000485054 0.0216192 0.0197075 36 2822 26 6.79088e+06 188608 648988. 2245.63 3.89 0.159051 0.139544 25390 158009 -1 2332 17 1031 2563 161297 35918 5.86813 5.86813 -141.367 -5.86813 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0243838 0.0219375 98 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 17.96 vpr 65.17 MiB -1 -1 0.23 20912 13 0.39 -1 -1 36388 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 26.7 MiB 1.37 1236 5940 1259 4215 466 65.2 MiB 0.06 0.00 8.31912 -162.691 -8.31912 8.31912 0.89 0.000673814 0.000609912 0.0264368 0.0240299 38 3344 20 6.79088e+06 282912 678818. 2348.85 12.94 0.326584 0.285974 25966 169698 -1 2835 16 1360 3850 202602 44829 7.6875 7.6875 -160.272 -7.6875 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0306634 0.0277452 143 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 6.75 vpr 64.55 MiB -1 -1 0.18 20456 10 0.19 -1 -1 36440 -1 -1 17 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66104 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 26.2 MiB 2.13 951 4560 1025 3135 400 64.6 MiB 0.04 0.00 6.21922 -128.027 -6.21922 6.21922 0.87 0.000508709 0.000453616 0.0165664 0.0151168 30 2695 24 6.79088e+06 229024 556674. 1926.21 1.51 0.101912 0.0905318 24526 138013 -1 2076 18 907 2285 114350 26868 5.53902 5.53902 -125.872 -5.53902 0 0 706193. 2443.58 0.27 0.05 0.12 -1 -1 0.27 0.0230042 0.0206899 101 130 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 10.87 vpr 64.62 MiB -1 -1 0.20 20352 14 0.23 -1 -1 36608 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 26.1 MiB 3.30 984 4532 878 3142 512 64.6 MiB 0.05 0.00 7.85466 -160.915 -7.85466 7.85466 0.91 0.000560386 0.00050739 0.0174085 0.0158442 34 3083 47 6.79088e+06 242496 618332. 2139.56 4.19 0.168776 0.148002 25102 150614 -1 2447 18 1120 2955 192392 43299 6.87418 6.87418 -156.718 -6.87418 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0259954 0.023372 110 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 9.69 vpr 64.89 MiB -1 -1 0.23 20596 13 0.34 -1 -1 36448 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 26.5 MiB 3.08 1210 8183 2048 5045 1090 64.9 MiB 0.07 0.00 7.80505 -164.773 -7.80505 7.80505 0.90 0.000625213 0.0005694 0.0312458 0.0284301 38 3002 19 6.79088e+06 269440 678818. 2348.85 2.92 0.170799 0.14979 25966 169698 -1 2695 16 1228 3149 180865 39628 6.72425 6.72425 -158.926 -6.72425 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0262553 0.0237476 125 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 11.84 vpr 64.48 MiB -1 -1 0.19 20588 12 0.18 -1 -1 36508 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 26.1 MiB 3.93 940 12120 3498 6380 2242 64.5 MiB 0.09 0.00 6.85518 -144.407 -6.85518 6.85518 0.87 0.000428289 0.000389569 0.0373761 0.0339405 46 2350 15 6.79088e+06 229024 828058. 2865.25 4.55 0.1689 0.146549 27406 200422 -1 2033 17 937 2446 140777 31315 5.99343 5.99343 -137.347 -5.99343 0 0 1.01997e+06 3529.29 0.37 0.06 0.18 -1 -1 0.37 0.0212952 0.0191106 99 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 8.33 vpr 65.23 MiB -1 -1 0.22 20748 12 0.24 -1 -1 36408 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 26.8 MiB 2.39 1190 9694 2639 6567 488 65.2 MiB 0.09 0.00 7.04874 -155.773 -7.04874 7.04874 0.91 0.000647534 0.000585415 0.0398601 0.036169 46 2758 18 6.79088e+06 242496 828058. 2865.25 2.31 0.201434 0.178384 27406 200422 -1 2312 15 1077 3163 160333 35862 6.20488 6.20488 -146.595 -6.20488 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0289912 0.0263539 130 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 10.72 vpr 65.11 MiB -1 -1 0.24 20536 13 0.37 -1 -1 36336 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 26.6 MiB 1.41 1303 8543 2004 5667 872 65.1 MiB 0.08 0.00 7.83951 -165.716 -7.83951 7.83951 0.92 0.000661343 0.000599994 0.0357231 0.0324637 44 3097 29 6.79088e+06 269440 787024. 2723.27 5.52 0.271885 0.23906 27118 194962 -1 2570 17 1266 3559 181705 41523 6.69391 6.69391 -153.626 -6.69391 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.030017 0.0270005 143 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 9.44 vpr 64.77 MiB -1 -1 0.20 20420 11 0.21 -1 -1 36452 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 26.3 MiB 2.33 1116 6616 1429 3881 1306 64.8 MiB 0.06 0.00 6.2158 -147.345 -6.2158 6.2158 0.94 0.00052143 0.000472683 0.0238202 0.0216628 36 3218 33 6.79088e+06 215552 648988. 2245.63 3.64 0.181511 0.160044 25390 158009 -1 2609 16 1232 3209 185957 42205 5.35995 5.35995 -141.952 -5.35995 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.025264 0.0228306 106 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 19.81 vpr 64.81 MiB -1 -1 0.19 20600 13 0.25 -1 -1 36596 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66368 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 26.2 MiB 2.90 994 9543 2876 4545 2122 64.8 MiB 0.08 0.00 7.66009 -161.63 -7.66009 7.66009 0.91 0.000578253 0.000523234 0.0352378 0.0318191 38 3161 25 6.79088e+06 202080 678818. 2348.85 13.45 0.283478 0.24748 25966 169698 -1 2217 20 1130 3116 162814 38166 6.67042 6.67042 -152.159 -6.67042 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0299339 0.0268321 113 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 9.85 vpr 64.91 MiB -1 -1 0.21 20632 13 0.31 -1 -1 36592 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 26.5 MiB 1.42 1317 8183 2040 5445 698 64.9 MiB 0.08 0.00 7.48608 -168.657 -7.48608 7.48608 0.94 0.000657271 0.000597875 0.0340335 0.0309283 44 3175 16 6.79088e+06 255968 787024. 2723.27 4.72 0.252203 0.222293 27118 194962 -1 2665 18 1320 3547 186742 42334 6.57319 6.57319 -158.885 -6.57319 0 0 997811. 3452.63 0.38 0.08 0.18 -1 -1 0.38 0.0311853 0.0282234 136 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 12.82 vpr 65.01 MiB -1 -1 0.21 20580 11 0.24 -1 -1 36472 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 26.4 MiB 2.61 932 11088 4572 6163 353 65.0 MiB 0.09 0.00 6.40374 -127.638 -6.40374 6.40374 0.92 0.00056124 0.000506054 0.0392205 0.0355328 38 3204 35 6.79088e+06 255968 678818. 2348.85 6.68 0.187204 0.16341 25966 169698 -1 2154 16 1193 3220 164660 39971 5.38344 5.38344 -120.238 -5.38344 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0251702 0.0227381 116 154 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 10.28 vpr 65.37 MiB -1 -1 0.24 21416 14 0.40 -1 -1 36608 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 27.1 MiB 1.82 1275 12567 3064 6849 2654 65.4 MiB 0.12 0.00 8.90517 -187.129 -8.90517 8.90517 0.92 0.00070332 0.0006379 0.0525168 0.0476633 44 3352 27 6.79088e+06 309856 787024. 2723.27 4.59 0.316715 0.279885 27118 194962 -1 2648 15 1225 3208 170537 39164 8.06351 8.06351 -178.018 -8.06351 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.033133 0.0302082 159 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 19.50 vpr 64.45 MiB -1 -1 0.18 20048 12 0.19 -1 -1 36872 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65996 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 26.0 MiB 2.92 1076 14144 4263 7957 1924 64.4 MiB 0.11 0.00 6.67019 -155.032 -6.67019 6.67019 0.91 0.000534722 0.000483629 0.0443354 0.0402832 38 2834 33 6.79088e+06 255968 678818. 2348.85 13.13 0.261129 0.228272 25966 169698 -1 2431 17 1063 2485 143989 31620 5.9004 5.9004 -146.441 -5.9004 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0235487 0.0212163 106 129 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 10.84 vpr 65.16 MiB -1 -1 0.24 21260 13 0.37 -1 -1 36644 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 26.7 MiB 1.76 1249 10698 2850 6495 1353 65.2 MiB 0.10 0.00 8.17702 -169.59 -8.17702 8.17702 0.90 0.000671228 0.000605879 0.0402982 0.0364376 44 3113 45 6.79088e+06 269440 787024. 2723.27 5.30 0.296029 0.259835 27118 194962 -1 2692 18 1225 3591 188122 42059 7.25008 7.25008 -162.14 -7.25008 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0321429 0.0291263 136 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 8.83 vpr 64.44 MiB -1 -1 0.22 20912 13 0.21 -1 -1 36052 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 25.9 MiB 1.35 988 12528 4457 5893 2178 64.4 MiB 0.09 0.00 7.60722 -166.135 -7.60722 7.60722 0.88 0.000541042 0.00049173 0.038788 0.0352287 44 2417 22 6.79088e+06 269440 787024. 2723.27 4.00 0.219715 0.191666 27118 194962 -1 2152 18 1013 2626 142161 32985 6.33367 6.33367 -151.605 -6.33367 0 0 997811. 3452.63 0.37 0.06 0.19 -1 -1 0.37 0.0235181 0.0210909 107 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 8.10 vpr 64.55 MiB -1 -1 0.23 20772 12 0.27 -1 -1 36388 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 26.2 MiB 1.93 1129 6563 1390 4948 225 64.6 MiB 0.06 0.00 7.37103 -160.155 -7.37103 7.37103 0.90 0.000613022 0.000559105 0.0263226 0.023946 34 3386 26 6.79088e+06 255968 618332. 2139.56 2.67 0.144578 0.126568 25102 150614 -1 2655 19 1221 3448 208020 47191 6.49812 6.49812 -154.121 -6.49812 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.030736 0.0275892 128 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 25.55 vpr 65.63 MiB -1 -1 0.25 21548 15 0.60 -1 -1 37048 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 27.0 MiB 1.42 1461 7019 1723 4462 834 65.6 MiB 0.08 0.00 9.4802 -194.196 -9.4802 9.4802 0.92 0.00081089 0.00072992 0.0350114 0.0317021 40 3857 20 6.79088e+06 336800 706193. 2443.58 20.10 0.480877 0.425287 26254 175826 -1 3750 20 2150 6380 414318 91535 8.47507 8.47507 -190.97 -8.47507 0 0 926341. 3205.33 0.34 0.14 0.15 -1 -1 0.34 0.0463026 0.0419684 183 255 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 11.24 vpr 64.17 MiB -1 -1 0.18 20056 10 0.12 -1 -1 35860 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65708 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 25.8 MiB 1.89 790 7049 2015 4252 782 64.2 MiB 0.05 0.00 4.74332 -119.113 -4.74332 4.74332 0.94 0.000389166 0.000352306 0.0199462 0.0181442 30 2094 24 6.79088e+06 161664 556674. 1926.21 6.13 0.155691 0.13601 24526 138013 -1 1704 15 667 1522 94047 20784 4.33162 4.33162 -116.881 -4.33162 0 0 706193. 2443.58 0.29 0.04 0.13 -1 -1 0.29 0.0164946 0.0148258 66 81 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 8.99 vpr 64.88 MiB -1 -1 0.20 20500 13 0.22 -1 -1 36208 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 26.4 MiB 1.91 974 10050 2926 5436 1688 64.9 MiB 0.08 0.00 7.74787 -157.983 -7.74787 7.74787 0.91 0.000543286 0.00049476 0.0358309 0.03262 36 2911 43 6.79088e+06 229024 648988. 2245.63 3.62 0.199519 0.17644 25390 158009 -1 2377 15 1131 2801 179307 40320 6.58438 6.58438 -153.211 -6.58438 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0235761 0.0213659 103 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 9.02 vpr 64.38 MiB -1 -1 0.19 20396 12 0.24 -1 -1 36644 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 26.1 MiB 2.45 1289 8448 2191 5318 939 64.4 MiB 0.08 0.00 7.18863 -160.485 -7.18863 7.18863 0.93 0.000612795 0.000557231 0.0328445 0.0299871 38 3079 21 6.79088e+06 242496 678818. 2348.85 3.06 0.179419 0.158276 25966 169698 -1 2575 15 1269 3143 178719 39214 6.08296 6.08296 -151.708 -6.08296 0 0 902133. 3121.57 0.33 0.07 0.17 -1 -1 0.33 0.0252184 0.0227649 117 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 9.66 vpr 64.39 MiB -1 -1 0.17 20092 9 0.16 -1 -1 36096 -1 -1 18 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65936 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 25.9 MiB 1.05 752 9555 2712 5903 940 64.4 MiB 0.06 0.00 5.16629 -99.605 -5.16629 5.16629 0.88 0.000438927 0.000398032 0.0281944 0.025565 30 2043 29 6.79088e+06 242496 556674. 1926.21 5.46 0.175251 0.152644 24526 138013 -1 1659 17 741 2054 108678 24546 4.39659 4.39659 -97.2578 -4.39659 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0193587 0.0173262 86 102 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 10.56 vpr 65.02 MiB -1 -1 0.23 20744 12 0.33 -1 -1 36356 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66576 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 26.5 MiB 1.86 1312 13291 3621 7142 2528 65.0 MiB 0.12 0.00 7.35568 -164.212 -7.35568 7.35568 0.90 0.000673353 0.000605805 0.052143 0.0471236 38 3697 28 6.79088e+06 282912 678818. 2348.85 5.00 0.227631 0.201279 25966 169698 -1 3095 17 1650 4419 232270 52748 6.67037 6.67037 -158.867 -6.67037 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0310177 0.0280273 143 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 21.87 vpr 65.30 MiB -1 -1 0.25 21352 13 0.39 -1 -1 36404 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 26.8 MiB 2.37 1311 13291 3763 7122 2406 65.3 MiB 0.12 0.00 8.3208 -173.057 -8.3208 8.3208 0.90 0.000662134 0.000599613 0.0511155 0.0463432 34 4579 49 6.79088e+06 296384 618332. 2139.56 15.68 0.348119 0.305219 25102 150614 -1 3475 20 1541 4341 291704 63371 7.3039 7.3039 -171.303 -7.3039 0 0 787024. 2723.27 0.32 0.11 0.14 -1 -1 0.32 0.0379935 0.0342541 147 197 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 8.94 vpr 64.99 MiB -1 -1 0.16 20572 1 0.03 -1 -1 33872 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 26.6 MiB 3.79 1137 15768 5063 8031 2674 65.0 MiB 0.14 0.00 5.46262 -163.811 -5.46262 5.46262 0.91 0.000520609 0.000475443 0.0422712 0.0385774 34 2793 23 6.87369e+06 363320 618332. 2139.56 1.90 0.15361 0.134513 25762 151098 -1 2290 18 1636 2589 181807 43066 4.4513 4.4513 -151.51 -4.4513 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0212311 0.0187931 142 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 7.61 vpr 65.14 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33884 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 26.8 MiB 2.73 995 9347 2406 6094 847 65.1 MiB 0.09 0.00 4.40625 -134.148 -4.40625 4.40625 0.90 0.000517663 0.000470325 0.0282397 0.0257073 34 2568 29 6.87369e+06 335372 618332. 2139.56 1.72 0.149534 0.130052 25762 151098 -1 2204 21 1821 2766 192148 46144 4.07136 4.07136 -140.123 -4.07136 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0244948 0.0215923 138 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 7.76 vpr 64.99 MiB -1 -1 0.15 20320 1 0.03 -1 -1 33924 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 26.4 MiB 3.01 954 15337 4637 8345 2355 65.0 MiB 0.12 0.00 4.42735 -120.659 -4.42735 4.42735 0.92 0.000451198 0.000412041 0.0383292 0.0348731 34 2485 25 6.87369e+06 293451 618332. 2139.56 1.56 0.137988 0.120624 25762 151098 -1 1976 20 1261 1705 123346 29622 3.61336 3.61336 -117.518 -3.61336 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0203928 0.0179968 124 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.06 vpr 64.80 MiB -1 -1 0.16 20308 1 0.03 -1 -1 34032 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 26.3 MiB 1.20 990 16170 4805 9691 1674 64.8 MiB 0.13 0.00 4.56722 -126.881 -4.56722 4.56722 0.91 0.00046816 0.000427161 0.0393312 0.0358649 34 2380 21 6.87369e+06 405241 618332. 2139.56 1.63 0.135423 0.118454 25762 151098 -1 2046 23 1518 2779 207672 47000 3.7744 3.7744 -124.262 -3.7744 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0221407 0.0194315 124 25 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 8.05 vpr 65.18 MiB -1 -1 0.15 20468 1 0.03 -1 -1 33372 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 26.8 MiB 1.52 1020 12127 3332 7989 806 65.2 MiB 0.11 0.00 4.58138 -135.491 -4.58138 4.58138 0.92 0.000515996 0.000467648 0.0322305 0.0292693 28 2864 24 6.87369e+06 377294 531479. 1839.03 3.36 0.18598 0.162275 24610 126494 -1 2425 23 1873 3644 282352 63929 3.9097 3.9097 -138.221 -3.9097 0 0 648988. 2245.63 0.27 0.09 0.12 -1 -1 0.27 0.0253209 0.0223373 131 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.87 vpr 64.66 MiB -1 -1 0.17 20756 1 0.03 -1 -1 33964 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 26.3 MiB 1.75 1076 15643 4151 9274 2218 64.7 MiB 0.13 0.00 3.36233 -119.977 -3.36233 3.36233 0.91 0.000500423 0.000455782 0.0396196 0.0360698 28 2604 23 6.87369e+06 419215 531479. 1839.03 0.96 0.106668 0.0939048 24610 126494 -1 2382 21 1482 2421 183960 41128 3.11061 3.11061 -126.364 -3.11061 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0235506 0.0206805 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.32 vpr 64.40 MiB -1 -1 0.15 20332 1 0.03 -1 -1 33916 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65948 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 25.8 MiB 2.65 768 11200 3422 6221 1557 64.4 MiB 0.08 0.00 3.88482 -108.503 -3.88482 3.88482 0.93 0.000401929 0.000366432 0.0279202 0.0254617 34 1729 19 6.87369e+06 265503 618332. 2139.56 1.49 0.10845 0.0945339 25762 151098 -1 1509 20 1099 1797 124003 29021 3.03626 3.03626 -105.349 -3.03626 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0177473 0.0155989 97 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 5.70 vpr 64.70 MiB -1 -1 0.15 20156 1 0.03 -1 -1 34028 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66252 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 26.2 MiB 1.05 962 13487 3595 7903 1989 64.7 MiB 0.09 0.00 3.53179 -106.578 -3.53179 3.53179 0.92 0.00042063 0.000382877 0.0276539 0.0250311 34 2236 19 6.87369e+06 447163 618332. 2139.56 1.49 0.114255 0.0993737 25762 151098 -1 1863 20 995 1672 108736 24731 2.70166 2.70166 -98.9172 -2.70166 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0189994 0.0167609 119 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 9.85 vpr 65.02 MiB -1 -1 0.17 20164 1 0.03 -1 -1 33976 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 26.5 MiB 2.77 925 12636 4369 6197 2070 65.0 MiB 0.10 0.00 3.30197 -112.873 -3.30197 3.30197 0.92 0.000420031 0.00038457 0.0352042 0.0321272 36 2160 23 6.87369e+06 237555 648988. 2245.63 3.85 0.167047 0.144871 26050 158493 -1 1872 20 1095 1601 124739 28051 3.06361 3.06361 -117.683 -3.06361 0 0 828058. 2865.25 0.32 0.05 0.16 -1 -1 0.32 0.019654 0.0173171 113 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 11.01 vpr 64.66 MiB -1 -1 0.15 20112 1 0.03 -1 -1 33976 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 26.2 MiB 4.51 866 10916 3152 5921 1843 64.7 MiB 0.09 0.00 4.09393 -136.454 -4.09393 4.09393 0.94 0.000459703 0.000418961 0.0304682 0.0277851 34 2156 24 6.87369e+06 223581 618332. 2139.56 3.28 0.170545 0.147626 25762 151098 -1 1860 21 1208 2066 158811 35660 3.14326 3.14326 -128.503 -3.14326 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0208871 0.0183738 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.01 vpr 64.55 MiB -1 -1 0.15 20132 1 0.03 -1 -1 33736 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66104 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 26.1 MiB 3.48 765 11532 2973 7641 918 64.6 MiB 0.08 0.00 4.09699 -119.415 -4.09699 4.09699 0.88 0.000439755 0.000396931 0.0310568 0.0282592 34 1766 21 6.87369e+06 223581 618332. 2139.56 1.46 0.122252 0.106205 25762 151098 -1 1515 20 1085 1715 117780 28644 2.85166 2.85166 -105.6 -2.85166 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0193595 0.0170408 98 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 9.80 vpr 64.73 MiB -1 -1 0.16 20492 1 0.03 -1 -1 33720 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 26.3 MiB 2.70 706 8306 1954 5512 840 64.7 MiB 0.06 0.00 3.6525 -111.833 -3.6525 3.6525 0.90 0.000431744 0.00039486 0.0219474 0.0200454 36 1988 27 6.87369e+06 237555 648988. 2245.63 3.97 0.153577 0.132596 26050 158493 -1 1661 19 1125 1568 111534 28073 2.96326 2.96326 -113.226 -2.96326 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0185689 0.0164115 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.59 vpr 65.15 MiB -1 -1 0.15 20424 1 0.03 -1 -1 33992 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 26.8 MiB 4.35 1028 16599 6315 8361 1923 65.1 MiB 0.15 0.00 4.13563 -133.6 -4.13563 4.13563 0.92 0.0005149 0.000462506 0.0458956 0.0418195 34 3057 25 6.87369e+06 321398 618332. 2139.56 1.95 0.171109 0.150956 25762 151098 -1 2405 22 1980 3001 267731 58292 3.31981 3.31981 -129.305 -3.31981 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0261145 0.0231545 142 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.08 vpr 65.22 MiB -1 -1 0.15 20628 1 0.03 -1 -1 33756 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 26.8 MiB 2.84 989 10031 2534 6882 615 65.2 MiB 0.09 0.00 4.81484 -142.23 -4.81484 4.81484 0.91 0.000507392 0.000463137 0.0260487 0.0237922 32 2593 24 6.87369e+06 433189 586450. 2029.24 1.05 0.0931325 0.0816057 25474 144626 -1 2153 22 1723 2788 217881 49682 4.00776 4.00776 -140.461 -4.00776 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0242276 0.0213058 133 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.91 vpr 64.67 MiB -1 -1 0.15 20608 1 0.03 -1 -1 33732 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66224 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 26.1 MiB 1.93 614 5068 1019 3719 330 64.7 MiB 0.04 0.00 3.26207 -95.0897 -3.26207 3.26207 0.93 0.000373238 0.000339187 0.0128208 0.0117071 26 1919 28 6.87369e+06 265503 503264. 1741.40 0.97 0.0698518 0.061028 24322 120374 -1 1789 24 1254 1970 166202 39802 3.06661 3.06661 -101.255 -3.06661 0 0 618332. 2139.56 0.26 0.06 0.11 -1 -1 0.26 0.0196067 0.0171139 94 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 7.05 vpr 65.15 MiB -1 -1 0.15 20568 1 0.03 -1 -1 33944 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 26.7 MiB 2.26 1007 16078 5563 8042 2473 65.1 MiB 0.12 0.00 3.7063 -122.467 -3.7063 3.7063 0.89 0.000451239 0.000410886 0.0417173 0.0379261 34 2625 21 6.87369e+06 335372 618332. 2139.56 1.59 0.14963 0.130664 25762 151098 -1 2084 22 1604 2825 206431 47747 2.98531 2.98531 -118.548 -2.98531 0 0 787024. 2723.27 0.31 0.07 0.16 -1 -1 0.31 0.023697 0.0209219 135 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.80 vpr 65.16 MiB -1 -1 0.16 20612 1 0.03 -1 -1 34020 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 26.8 MiB 4.60 1032 15523 6549 8204 770 65.2 MiB 0.12 0.00 4.15353 -134.149 -4.15353 4.15353 0.94 0.000502141 0.000458155 0.0436929 0.0398049 34 2905 38 6.87369e+06 293451 618332. 2139.56 1.92 0.153084 0.134796 25762 151098 -1 2147 22 1799 2550 195998 46224 3.23381 3.23381 -122.14 -3.23381 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0244987 0.0216663 140 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.51 vpr 65.04 MiB -1 -1 0.16 20108 1 0.03 -1 -1 33372 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 26.5 MiB 2.88 847 14168 4025 7985 2158 65.0 MiB 0.10 0.00 3.09156 -110.795 -3.09156 3.09156 0.89 0.000468919 0.000422044 0.0332836 0.0303249 34 2031 19 6.87369e+06 391268 618332. 2139.56 1.51 0.125978 0.109575 25762 151098 -1 1698 23 1184 1734 139759 32212 2.18787 2.18787 -100.659 -2.18787 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0233242 0.0204478 109 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.69 vpr 64.66 MiB -1 -1 0.14 20456 1 0.03 -1 -1 33556 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 26.3 MiB 0.69 656 11276 3436 6760 1080 64.7 MiB 0.07 0.00 2.61023 -88.8242 -2.61023 2.61023 0.91 0.000359245 0.000329115 0.0263573 0.0240901 32 1559 23 6.87369e+06 195634 586450. 2029.24 0.93 0.0715387 0.0628314 25474 144626 -1 1296 23 653 927 84113 18660 1.95772 1.95772 -86.9117 -1.95772 0 0 744469. 2576.02 0.30 0.05 0.14 -1 -1 0.30 0.0169608 0.0148463 71 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 9.77 vpr 65.04 MiB -1 -1 0.15 20308 1 0.03 -1 -1 33864 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 26.5 MiB 3.43 778 9338 2420 6492 426 65.0 MiB 0.09 0.00 4.95513 -145.252 -4.95513 4.95513 0.91 0.000435475 0.000397935 0.0252191 0.0230146 34 2105 23 6.87369e+06 265503 618332. 2139.56 3.17 0.163253 0.140913 25762 151098 -1 1729 19 1243 1783 105498 27198 3.54786 3.54786 -132.494 -3.54786 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0191472 0.016911 116 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.87 vpr 65.30 MiB -1 -1 0.16 20552 1 0.03 -1 -1 34016 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 26.9 MiB 1.07 985 11499 2787 8050 662 65.3 MiB 0.10 0.00 4.26399 -136.517 -4.26399 4.26399 0.91 0.00048981 0.000447809 0.0272395 0.0248312 32 2549 47 6.87369e+06 489084 586450. 2029.24 1.60 0.129687 0.112982 25474 144626 -1 2132 28 1898 2850 260302 73804 3.7954 3.7954 -135.219 -3.7954 0 0 744469. 2576.02 0.29 0.10 0.14 -1 -1 0.29 0.0279849 0.0244419 137 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 7.86 vpr 65.27 MiB -1 -1 0.16 20612 1 0.03 -1 -1 33732 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 26.8 MiB 2.46 995 6701 1305 5169 227 65.3 MiB 0.07 0.00 4.31715 -129.69 -4.31715 4.31715 0.91 0.000522326 0.00047487 0.0207729 0.0189426 34 3077 27 6.87369e+06 307425 618332. 2139.56 2.18 0.143547 0.124338 25762 151098 -1 2241 22 1750 2856 245759 55031 3.75866 3.75866 -130.038 -3.75866 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.024984 0.0220305 142 59 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 7.30 vpr 64.39 MiB -1 -1 0.13 20052 1 0.03 -1 -1 34212 -1 -1 17 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65936 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 25.9 MiB 2.02 371 10977 3839 5013 2125 64.4 MiB 0.06 0.00 2.58413 -70.3474 -2.58413 2.58413 0.93 0.000297288 0.000269046 0.0225869 0.0205695 28 1325 27 6.87369e+06 237555 531479. 1839.03 2.28 0.104498 0.0906076 24610 126494 -1 1074 22 742 1040 84221 21563 2.50407 2.50407 -79.8397 -2.50407 0 0 648988. 2245.63 0.27 0.04 0.12 -1 -1 0.27 0.0144896 0.0126549 67 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.21 vpr 64.88 MiB -1 -1 0.15 20084 1 0.03 -1 -1 33724 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 26.4 MiB 1.17 952 5847 1159 4467 221 64.9 MiB 0.05 0.00 4.63338 -129.909 -4.63338 4.63338 0.90 0.000394512 0.000360154 0.0151736 0.0138561 30 2387 25 6.87369e+06 321398 556674. 1926.21 1.02 0.0757989 0.0663911 25186 138497 -1 1962 22 1181 2132 158416 34156 3.7241 3.7241 -122.996 -3.7241 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0204275 0.0180057 119 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.47 vpr 64.28 MiB -1 -1 0.13 19796 1 0.02 -1 -1 33308 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65820 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 26.0 MiB 0.52 704 9676 3283 5033 1360 64.3 MiB 0.05 0.00 2.58823 -84.5042 -2.58823 2.58823 0.94 0.000291573 0.000263818 0.0190542 0.0173153 28 1429 20 6.87369e+06 167686 531479. 1839.03 0.93 0.0573743 0.0503641 24610 126494 -1 1344 16 565 664 51936 12522 2.15017 2.15017 -84.3239 -2.15017 0 0 648988. 2245.63 0.27 0.03 0.12 -1 -1 0.27 0.0116231 0.0102829 65 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.06 vpr 65.13 MiB -1 -1 0.14 20356 1 0.03 -1 -1 33800 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 26.6 MiB 0.97 922 10744 2499 7805 440 65.1 MiB 0.08 0.00 4.70738 -131.097 -4.70738 4.70738 0.90 0.000386362 0.000353004 0.0224475 0.0204594 26 2404 21 6.87369e+06 419215 503264. 1741.40 1.08 0.0781243 0.0685282 24322 120374 -1 2181 26 1365 2192 198316 46035 4.0267 4.0267 -126.462 -4.0267 0 0 618332. 2139.56 0.24 0.08 0.10 -1 -1 0.24 0.0223639 0.0195544 120 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.21 vpr 65.20 MiB -1 -1 0.16 20372 1 0.03 -1 -1 33808 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.6 MiB 1.04 1018 15215 4457 9037 1721 65.2 MiB 0.12 0.00 3.58631 -115.037 -3.58631 3.58631 0.92 0.000481488 0.000441483 0.0347799 0.0316925 28 2435 25 6.87369e+06 433189 531479. 1839.03 1.06 0.100177 0.0885296 24610 126494 -1 2089 16 1119 1959 128537 28970 2.77996 2.77996 -111.593 -2.77996 0 0 648988. 2245.63 0.27 0.06 0.12 -1 -1 0.27 0.0183776 0.0163675 130 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.32 vpr 64.65 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33604 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 26.3 MiB 2.09 1070 17066 5177 9769 2120 64.7 MiB 0.14 0.00 4.79173 -136.462 -4.79173 4.79173 0.92 0.000507672 0.000461251 0.0429621 0.0391144 30 2520 24 6.87369e+06 391268 556674. 1926.21 1.03 0.10785 0.0950071 25186 138497 -1 2060 17 1055 1910 104827 24868 3.6681 3.6681 -124.886 -3.6681 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0191859 0.0169518 131 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.71 vpr 64.74 MiB -1 -1 0.15 20304 1 0.03 -1 -1 33756 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 26.4 MiB 1.10 703 9368 2220 5797 1351 64.7 MiB 0.07 0.00 3.24007 -107.338 -3.24007 3.24007 0.91 0.000422738 0.000385943 0.0246142 0.0224844 34 1987 21 6.87369e+06 223581 618332. 2139.56 1.49 0.112037 0.0972992 25762 151098 -1 1602 21 1019 1690 110919 26652 2.93026 2.93026 -109.609 -2.93026 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0192975 0.0169086 99 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.87 vpr 64.79 MiB -1 -1 0.14 20320 1 0.03 -1 -1 33852 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 26.2 MiB 1.36 624 12763 3540 6427 2796 64.8 MiB 0.08 0.00 3.24697 -98.9537 -3.24697 3.24697 0.89 0.000411744 0.000374607 0.0276799 0.0251511 34 1668 26 6.87369e+06 363320 618332. 2139.56 1.47 0.113433 0.0985374 25762 151098 -1 1287 19 837 1210 79394 20357 2.88626 2.88626 -92.5246 -2.88626 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0167451 0.0147636 97 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.04 vpr 64.78 MiB -1 -1 0.15 20424 1 0.03 -1 -1 33736 -1 -1 18 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 26.2 MiB 1.06 763 12694 4114 7113 1467 64.8 MiB 0.09 0.00 3.5993 -104.629 -3.5993 3.5993 0.88 0.0003966 0.000361848 0.0320318 0.0293155 32 2109 21 6.87369e+06 251529 586450. 2029.24 0.98 0.0823055 0.0726557 25474 144626 -1 1799 19 1081 1917 171125 38306 3.09656 3.09656 -109.387 -3.09656 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0169574 0.0149949 95 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 4.96 vpr 64.85 MiB -1 -1 0.15 20388 1 0.03 -1 -1 33752 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 26.5 MiB 0.88 834 13031 3636 7853 1542 64.8 MiB 0.10 0.00 3.99153 -123.226 -3.99153 3.99153 0.92 0.000410092 0.000372736 0.0325485 0.0297345 30 1992 21 6.87369e+06 237555 556674. 1926.21 0.97 0.0849014 0.074919 25186 138497 -1 1733 20 1068 1783 108326 24960 2.87696 2.87696 -115.111 -2.87696 0 0 706193. 2443.58 0.29 0.05 0.13 -1 -1 0.29 0.0180923 0.015974 101 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.80 vpr 64.44 MiB -1 -1 0.14 20548 1 0.03 -1 -1 33704 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 26.1 MiB 1.05 614 5831 1071 4187 573 64.4 MiB 0.05 0.00 3.5993 -104.92 -3.5993 3.5993 0.93 0.00041789 0.000378846 0.0142484 0.0130084 34 1764 25 6.87369e+06 363320 618332. 2139.56 1.61 0.106241 0.0919691 25762 151098 -1 1500 18 955 1528 104603 27153 2.94926 2.94926 -105.489 -2.94926 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0173883 0.0153733 102 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 8.13 vpr 64.64 MiB -1 -1 0.16 20232 1 0.03 -1 -1 33512 -1 -1 25 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 26.2 MiB 3.45 863 14072 4376 7539 2157 64.6 MiB 0.10 0.00 3.04756 -100.489 -3.04756 3.04756 0.91 0.000433109 0.000391232 0.0336179 0.0306664 34 1909 21 6.87369e+06 349346 618332. 2139.56 1.51 0.12378 0.107882 25762 151098 -1 1708 19 1091 1614 119245 28263 2.38047 2.38047 -99.7204 -2.38047 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0186644 0.0164849 106 48 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.27 vpr 65.55 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33700 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67124 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 26.9 MiB 4.12 1118 10108 2278 7040 790 65.6 MiB 0.09 0.00 4.17389 -123.088 -4.17389 4.17389 0.92 0.000538795 0.000490771 0.0240015 0.021772 26 3090 38 6.87369e+06 558954 503264. 1741.40 1.87 0.124758 0.110147 24322 120374 -1 2752 73 3440 6386 638453 134864 3.8437 3.8437 -130.264 -3.8437 0 0 618332. 2139.56 0.26 0.23 0.11 -1 -1 0.26 0.0677001 0.0584745 156 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 9.98 vpr 65.27 MiB -1 -1 0.16 20564 1 0.03 -1 -1 33896 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66836 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 26.8 MiB 3.88 1050 18428 5889 9545 2994 65.3 MiB 0.15 0.00 3.99748 -134.85 -3.99748 3.99748 0.91 0.000532083 0.000481872 0.0443131 0.0401879 30 2304 26 6.87369e+06 531006 556674. 1926.21 2.89 0.198731 0.172884 25186 138497 -1 1893 18 1445 2277 122140 29198 2.89086 2.89086 -117.356 -2.89086 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.022274 0.0196879 148 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.69 vpr 65.03 MiB -1 -1 0.17 20140 1 0.03 -1 -1 33756 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 26.6 MiB 2.45 729 12681 4828 6102 1751 65.0 MiB 0.10 0.00 4.09163 -121.55 -4.09163 4.09163 0.94 0.000428108 0.000389991 0.0326434 0.0297156 36 2115 36 6.87369e+06 251529 648988. 2245.63 1.99 0.14145 0.123375 26050 158493 -1 1823 19 1282 1905 152144 36164 3.3235 3.3235 -117.041 -3.3235 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0188551 0.0166854 109 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.16 vpr 65.41 MiB -1 -1 0.18 20672 1 0.03 -1 -1 34020 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 27.0 MiB 3.10 953 14543 4925 6755 2863 65.4 MiB 0.13 0.00 3.78134 -121.658 -3.78134 3.78134 0.95 0.000538184 0.000490247 0.041515 0.0378113 34 2770 24 6.87369e+06 363320 618332. 2139.56 1.77 0.160498 0.140333 25762 151098 -1 2008 21 1651 2803 198970 45902 3.16061 3.16061 -121.592 -3.16061 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0243826 0.0214994 136 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 12.36 vpr 65.05 MiB -1 -1 0.18 20620 1 0.03 -1 -1 34008 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 26.6 MiB 4.72 1511 10033 2621 6359 1053 65.0 MiB 0.11 0.00 5.60672 -170.903 -5.60672 5.60672 0.92 0.000549763 0.000500167 0.0305279 0.0278672 36 3561 24 6.87369e+06 349346 648988. 2245.63 4.33 0.205666 0.17824 26050 158493 -1 3027 20 2176 3185 271931 58363 4.9855 4.9855 -172.625 -4.9855 0 0 828058. 2865.25 0.32 0.09 0.16 -1 -1 0.32 0.0240333 0.0212501 159 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 9.15 vpr 65.20 MiB -1 -1 0.17 20620 1 0.03 -1 -1 33708 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 26.7 MiB 4.12 1142 14964 4330 8425 2209 65.2 MiB 0.13 0.00 5.2871 -162.814 -5.2871 5.2871 0.92 0.000549691 0.000502789 0.0431725 0.0394363 34 2876 29 6.87369e+06 377294 618332. 2139.56 1.76 0.172892 0.151915 25762 151098 -1 2362 21 1520 2409 179820 40778 4.5536 4.5536 -160.543 -4.5536 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0253821 0.0224287 152 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 10.31 vpr 65.24 MiB -1 -1 0.16 20448 1 0.03 -1 -1 33988 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 26.9 MiB 3.43 964 8863 1996 5999 868 65.2 MiB 0.09 0.00 4.10673 -127.256 -4.10673 4.10673 0.95 0.000524757 0.000478387 0.0254173 0.0232002 34 2616 23 6.87369e+06 349346 618332. 2139.56 3.62 0.169997 0.148353 25762 151098 -1 2236 21 1617 2633 212782 50249 3.36391 3.36391 -125.026 -3.36391 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0222393 0.0195538 131 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.12 vpr 65.15 MiB -1 -1 0.15 20540 1 0.03 -1 -1 34028 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 26.6 MiB 2.91 831 14175 5092 5953 3130 65.2 MiB 0.10 0.00 4.31305 -113.651 -4.31305 4.31305 0.92 0.000449639 0.000408108 0.0360727 0.0328618 34 2736 36 6.87369e+06 279477 618332. 2139.56 1.99 0.154306 0.135326 25762 151098 -1 1845 22 1288 1920 137580 35695 3.95006 3.95006 -116.785 -3.95006 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0210577 0.0185489 119 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 11.73 vpr 66.00 MiB -1 -1 0.16 21128 1 0.03 -1 -1 34120 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67580 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 27.4 MiB 3.79 1125 12954 3388 8890 676 66.0 MiB 0.13 0.00 4.84068 -153.465 -4.84068 4.84068 0.87 0.000544515 0.000496071 0.035678 0.0325259 30 2992 40 6.87369e+06 531006 556674. 1926.21 4.83 0.232938 0.204696 25186 138497 -1 2204 20 1416 2329 119183 30863 3.83736 3.83736 -145.825 -3.83736 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0270398 0.0239869 173 84 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.93 vpr 64.34 MiB -1 -1 0.16 20384 1 0.03 -1 -1 33600 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65880 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 26.0 MiB 1.94 779 13291 4134 7087 2070 64.3 MiB 0.08 0.00 3.55895 -107.74 -3.55895 3.55895 0.87 0.000348471 0.000318322 0.0281164 0.025622 32 2017 21 6.87369e+06 307425 586450. 2029.24 0.98 0.0788197 0.0692308 25474 144626 -1 1822 19 1136 1936 156094 34416 2.84596 2.84596 -105.425 -2.84596 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0170216 0.0149344 96 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.11 vpr 65.02 MiB -1 -1 0.17 20468 1 0.03 -1 -1 33824 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 26.6 MiB 2.82 1055 8969 2107 6380 482 65.0 MiB 0.09 0.00 4.79158 -142.334 -4.79158 4.79158 0.91 0.000491833 0.000445393 0.0256183 0.0234377 30 2731 23 6.87369e+06 321398 556674. 1926.21 1.15 0.0920384 0.0807424 25186 138497 -1 2039 22 1317 1992 125222 30107 3.86576 3.86576 -132.751 -3.86576 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0233319 0.0205559 140 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.11 vpr 65.29 MiB -1 -1 0.16 20532 1 0.03 -1 -1 33808 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 27.0 MiB 2.29 980 9951 2142 7372 437 65.3 MiB 0.09 0.00 3.6843 -115.486 -3.6843 3.6843 0.92 0.000499064 0.000448106 0.0253224 0.0230711 32 2890 26 6.87369e+06 447163 586450. 2029.24 1.62 0.116301 0.101723 25474 144626 -1 2221 21 1588 2681 224480 50258 3.07761 3.07761 -115.254 -3.07761 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0227179 0.0199562 132 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.24 vpr 64.91 MiB -1 -1 0.14 20496 1 0.03 -1 -1 33968 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 26.3 MiB 0.74 972 9537 2296 6533 708 64.9 MiB 0.08 0.00 4.25479 -129.925 -4.25479 4.25479 0.85 0.00047277 0.000429986 0.0221583 0.0201924 34 2449 22 6.87369e+06 363320 618332. 2139.56 1.50 0.110816 0.096135 25762 151098 -1 2032 21 1272 2425 189312 41406 3.7011 3.7011 -125.423 -3.7011 0 0 787024. 2723.27 0.29 0.07 0.14 -1 -1 0.29 0.0211511 0.0186367 123 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.08 vpr 64.84 MiB -1 -1 0.16 20532 1 0.03 -1 -1 33924 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 26.5 MiB 3.34 1122 14450 4547 7634 2269 64.8 MiB 0.12 0.00 5.14049 -153.237 -5.14049 5.14049 0.90 0.000505941 0.000460523 0.0407089 0.0371256 34 2716 24 6.87369e+06 307425 618332. 2139.56 1.58 0.126097 0.110874 25762 151098 -1 2240 21 1280 1794 138052 31873 3.3592 3.3592 -127.805 -3.3592 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0238623 0.0211226 136 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.52 vpr 64.89 MiB -1 -1 0.16 20512 1 0.03 -1 -1 33640 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 26.6 MiB 3.70 990 17178 5882 8168 3128 64.9 MiB 0.12 0.00 3.6884 -118.378 -3.6884 3.6884 0.91 0.000507746 0.000461015 0.0427847 0.0389603 30 2877 24 6.87369e+06 447163 556674. 1926.21 1.64 0.119464 0.105784 25186 138497 -1 2092 22 1461 2649 168211 40081 3.23791 3.23791 -114.832 -3.23791 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0235137 0.0206762 136 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 9.77 vpr 65.47 MiB -1 -1 0.15 20472 1 0.03 -1 -1 33728 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 27.0 MiB 3.54 922 18795 6474 8507 3814 65.5 MiB 0.14 0.00 4.11773 -131.117 -4.11773 4.11773 0.92 0.000541175 0.000492406 0.0474861 0.0432815 34 3101 29 6.87369e+06 489084 618332. 2139.56 2.95 0.189359 0.167094 25762 151098 -1 2029 22 1693 2800 249488 68630 3.24686 3.24686 -120.996 -3.24686 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0271103 0.0239599 144 59 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.16 vpr 64.95 MiB -1 -1 0.14 20372 1 0.03 -1 -1 33676 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 26.4 MiB 1.07 881 12751 3354 7696 1701 64.9 MiB 0.10 0.00 4.26989 -123.123 -4.26989 4.26989 0.90 0.000461614 0.00042136 0.028219 0.0256544 30 2195 22 6.87369e+06 461137 556674. 1926.21 0.97 0.0867729 0.0761345 25186 138497 -1 1695 21 965 1709 89776 21316 3.6008 3.6008 -117.658 -3.6008 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0204462 0.0180247 124 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.24 vpr 65.05 MiB -1 -1 0.15 20244 1 0.03 -1 -1 33828 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 26.7 MiB 2.45 1140 14450 4739 7431 2280 65.0 MiB 0.12 0.00 4.86398 -140.272 -4.86398 4.86398 0.89 0.000487476 0.000445578 0.0373875 0.0341344 34 2688 26 6.87369e+06 307425 618332. 2139.56 1.64 0.141375 0.123688 25762 151098 -1 2351 20 1637 2366 176234 40551 3.92996 3.92996 -134.935 -3.92996 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0211938 0.0186585 135 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 10.55 vpr 65.34 MiB -1 -1 0.15 20540 1 0.03 -1 -1 33964 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 26.9 MiB 2.37 912 13105 4297 5300 3508 65.3 MiB 0.10 0.00 4.74348 -140.694 -4.74348 4.74348 0.88 0.00051382 0.000469208 0.0387592 0.0354369 36 3390 47 6.87369e+06 307425 648988. 2245.63 5.06 0.196609 0.172983 26050 158493 -1 2334 18 1713 2698 193753 48203 4.43196 4.43196 -140.453 -4.43196 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0224372 0.0199496 141 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.99 vpr 65.21 MiB -1 -1 0.16 20388 1 0.03 -1 -1 33988 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 26.8 MiB 3.17 1089 15709 4726 9045 1938 65.2 MiB 0.13 0.00 4.3693 -136.102 -4.3693 4.3693 0.86 0.000536036 0.000486969 0.0434803 0.0396055 34 2963 29 6.87369e+06 293451 618332. 2139.56 1.69 0.15245 0.132971 25762 151098 -1 2412 22 1699 3098 239730 53476 3.72146 3.72146 -134.49 -3.72146 0 0 787024. 2723.27 0.29 0.08 0.15 -1 -1 0.29 0.0232846 0.0204354 135 74 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.84 vpr 64.48 MiB -1 -1 0.15 20192 1 0.03 -1 -1 33292 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 25.9 MiB 0.88 730 9914 2670 6709 535 64.5 MiB 0.07 0.00 3.5583 -105.077 -3.5583 3.5583 0.90 0.000422254 0.000386898 0.0224718 0.0205284 28 1795 23 6.87369e+06 307425 531479. 1839.03 0.93 0.0734855 0.0644472 24610 126494 -1 1697 21 974 1670 124586 29567 2.90826 2.90826 -103.963 -2.90826 0 0 648988. 2245.63 0.27 0.05 0.12 -1 -1 0.27 0.0181162 0.0158982 93 20 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 7.31 vpr 65.08 MiB -1 -1 0.16 20500 1 0.03 -1 -1 33760 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66644 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 26.5 MiB 2.11 968 15568 5616 7798 2154 65.1 MiB 0.12 0.00 3.7434 -130.891 -3.7434 3.7434 0.90 0.000417728 0.000379678 0.043523 0.0396632 34 2779 24 6.87369e+06 251529 618332. 2139.56 1.94 0.153696 0.134601 25762 151098 -1 2225 24 1781 2546 222546 49444 3.3365 3.3365 -133.232 -3.3365 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0259722 0.022921 124 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.46 vpr 65.54 MiB -1 -1 0.16 20760 1 0.03 -1 -1 34060 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 26.9 MiB 3.36 1427 16858 5256 9636 1966 65.5 MiB 0.17 0.00 5.58608 -163.667 -5.58608 5.58608 0.90 0.000596038 0.000527201 0.0505865 0.0458113 34 3599 26 6.87369e+06 335372 618332. 2139.56 1.84 0.178769 0.156916 25762 151098 -1 2933 22 2135 3307 260209 58698 4.8184 4.8184 -161.399 -4.8184 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0277883 0.0246987 166 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 7.88 vpr 65.07 MiB -1 -1 0.14 20216 1 0.03 -1 -1 33880 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 26.6 MiB 3.55 968 18998 5516 10575 2907 65.1 MiB 0.15 0.00 4.31005 -135.578 -4.31005 4.31005 0.91 0.000529036 0.000483553 0.0449596 0.0408464 28 2295 25 6.87369e+06 475111 531479. 1839.03 1.15 0.122016 0.10813 24610 126494 -1 2110 22 1551 2528 176522 41622 3.19176 3.19176 -124.427 -3.19176 0 0 648988. 2245.63 0.27 0.08 0.12 -1 -1 0.27 0.0251021 0.0222092 137 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.23 vpr 64.77 MiB -1 -1 0.14 20320 1 0.03 -1 -1 34028 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 26.4 MiB 0.88 634 6615 1367 5002 246 64.8 MiB 0.06 0.00 3.6392 -108.305 -3.6392 3.6392 0.88 0.000414761 0.00037927 0.016156 0.0147959 26 2210 35 6.87369e+06 349346 503264. 1741.40 1.42 0.090027 0.0791073 24322 120374 -1 1732 22 1273 2053 177294 42109 3.24486 3.24486 -115.112 -3.24486 0 0 618332. 2139.56 0.25 0.06 0.11 -1 -1 0.25 0.0195966 0.0172555 104 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 11.41 vpr 65.61 MiB -1 -1 0.17 20972 1 0.03 -1 -1 33996 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67180 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 27.3 MiB 5.99 1457 14543 4326 8631 1586 65.6 MiB 0.14 0.00 5.90291 -175.463 -5.90291 5.90291 0.93 0.00062316 0.000558868 0.0475983 0.0434474 34 3438 35 6.87369e+06 349346 618332. 2139.56 2.07 0.193991 0.16965 25762 151098 -1 2911 20 2264 3374 276997 62014 4.9852 4.9852 -172.57 -4.9852 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0269682 0.0238551 171 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.01 vpr 65.34 MiB -1 -1 0.15 20492 1 0.03 -1 -1 33724 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 27.0 MiB 3.81 1003 17199 4580 10530 2089 65.3 MiB 0.12 0.00 4.63938 -140.336 -4.63938 4.63938 0.88 0.000494913 0.000449715 0.0386642 0.0352293 32 2464 25 6.87369e+06 489084 586450. 2029.24 1.04 0.10393 0.0915851 25474 144626 -1 2095 23 1635 2729 201771 45578 3.7433 3.7433 -131.792 -3.7433 0 0 744469. 2576.02 0.29 0.08 0.13 -1 -1 0.29 0.024478 0.0215666 135 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.80 vpr 64.39 MiB -1 -1 0.13 20036 1 0.03 -1 -1 33608 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65932 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 25.8 MiB 0.80 878 10618 2802 6933 883 64.4 MiB 0.07 0.00 3.66956 -107.639 -3.66956 3.66956 0.91 0.000401293 0.000356959 0.0218967 0.0199564 30 1958 22 6.87369e+06 335372 556674. 1926.21 0.94 0.0703823 0.0616836 25186 138497 -1 1653 18 727 1303 82483 19055 2.69971 2.69971 -100.23 -2.69971 0 0 706193. 2443.58 0.28 0.04 0.14 -1 -1 0.28 0.0151802 0.013393 94 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.14 vpr 65.02 MiB -1 -1 0.17 20820 1 0.03 -1 -1 33816 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 26.6 MiB 2.51 1091 19371 5911 10963 2497 65.0 MiB 0.16 0.00 5.19487 -138.438 -5.19487 5.19487 0.90 0.000517424 0.000472626 0.0452253 0.0410528 28 2690 23 6.87369e+06 517032 531479. 1839.03 1.43 0.115468 0.101684 24610 126494 -1 2422 22 1633 3034 222693 49806 4.75015 4.75015 -146.366 -4.75015 0 0 648988. 2245.63 0.26 0.08 0.13 -1 -1 0.26 0.0239894 0.0210183 145 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.39 vpr 64.74 MiB -1 -1 0.12 20492 1 0.03 -1 -1 34052 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 26.2 MiB 0.88 765 8363 1967 5928 468 64.7 MiB 0.07 0.00 3.6502 -113.574 -3.6502 3.6502 0.89 0.000400929 0.000366399 0.0202049 0.0184325 34 2139 22 6.87369e+06 265503 618332. 2139.56 1.49 0.100872 0.0874606 25762 151098 -1 1778 19 1158 2038 144835 33647 2.93826 2.93826 -111.413 -2.93826 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0168042 0.0148908 98 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.39 vpr 64.98 MiB -1 -1 0.15 20272 1 0.03 -1 -1 33768 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 26.5 MiB 2.91 687 8418 1716 5962 740 65.0 MiB 0.07 0.00 3.88482 -111.398 -3.88482 3.88482 0.90 0.000445705 0.000404815 0.0189174 0.0171527 28 2032 22 6.87369e+06 475111 531479. 1839.03 1.43 0.0792183 0.069529 24610 126494 -1 1732 18 1171 2098 140097 34058 3.01326 3.01326 -110.382 -3.01326 0 0 648988. 2245.63 0.26 0.06 0.12 -1 -1 0.26 0.0173908 0.0153575 109 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 9.55 vpr 65.20 MiB -1 -1 0.16 20540 1 0.03 -1 -1 33824 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 26.8 MiB 4.61 1118 13105 3443 8133 1529 65.2 MiB 0.12 0.00 4.10563 -124.474 -4.10563 4.10563 0.90 0.000493862 0.000451246 0.0369593 0.0337327 34 2878 24 6.87369e+06 335372 618332. 2139.56 1.72 0.144003 0.125581 25762 151098 -1 2350 23 1916 2927 214977 49304 3.34511 3.34511 -121.343 -3.34511 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0243691 0.0214417 138 56 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.56 vpr 65.11 MiB -1 -1 0.15 20636 1 0.03 -1 -1 33916 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 26.7 MiB 2.67 806 8532 1884 6173 475 65.1 MiB 0.08 0.00 4.39805 -136.981 -4.39805 4.39805 0.91 0.000520112 0.000474618 0.0244185 0.0223366 34 2439 23 6.87369e+06 363320 618332. 2139.56 1.68 0.139763 0.121893 25762 151098 -1 1892 22 1562 2465 167343 39695 4.014 4.014 -132.895 -4.014 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0244201 0.0214172 132 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 9.64 vpr 65.29 MiB -1 -1 0.16 20576 1 0.03 -1 -1 33520 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66856 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 26.9 MiB 2.52 1121 14983 4753 8344 1886 65.3 MiB 0.13 0.00 4.71348 -141.457 -4.71348 4.71348 0.87 0.000514885 0.000468321 0.0397039 0.0361257 36 2713 22 6.87369e+06 377294 648988. 2245.63 3.97 0.201791 0.175664 26050 158493 -1 2340 22 1503 2593 259528 52852 4.01806 4.01806 -139.978 -4.01806 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.02407 0.0212325 133 48 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 10.44 vpr 64.79 MiB -1 -1 0.15 20500 1 0.03 -1 -1 33660 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 26.4 MiB 3.95 883 12923 4460 6401 2062 64.8 MiB 0.10 0.00 4.76482 -134.311 -4.76482 4.76482 0.94 0.000428806 0.000391035 0.0346738 0.0315959 34 2173 23 6.87369e+06 209608 618332. 2139.56 3.28 0.168537 0.146229 25762 151098 -1 1919 24 1085 1501 133785 29128 3.40117 3.40117 -117.767 -3.40117 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0206789 0.0181486 103 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.84 vpr 65.02 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33796 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 26.5 MiB 3.01 973 14184 4741 7494 1949 65.0 MiB 0.11 0.00 3.76746 -124.928 -3.76746 3.76746 0.91 0.000465077 0.000422908 0.0403276 0.0367705 34 2486 19 6.87369e+06 237555 618332. 2139.56 1.65 0.135769 0.118522 25762 151098 -1 2089 19 1315 1949 148629 34679 3.2835 3.2835 -124.572 -3.2835 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0195269 0.017238 114 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.31 vpr 65.06 MiB -1 -1 0.15 20728 1 0.03 -1 -1 34036 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 26.4 MiB 3.09 925 17835 5186 10054 2595 65.1 MiB 0.13 0.00 3.47005 -102.148 -3.47005 3.47005 0.90 0.000480914 0.000431892 0.0403324 0.0365238 32 2458 31 6.87369e+06 475111 586450. 2029.24 1.04 0.108145 0.0948711 25474 144626 -1 1948 22 1270 2371 177844 39960 2.91726 2.91726 -101.622 -2.91726 0 0 744469. 2576.02 0.30 0.06 0.14 -1 -1 0.30 0.0212569 0.0186187 124 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 6.55 vpr 65.00 MiB -1 -1 0.15 20288 1 0.03 -1 -1 33868 -1 -1 35 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 26.5 MiB 2.19 875 14783 4032 9129 1622 65.0 MiB 0.11 0.00 4.05975 -105.458 -4.05975 4.05975 0.91 0.000423658 0.000386651 0.0307022 0.027963 26 2270 25 6.87369e+06 489084 503264. 1741.40 1.23 0.0896358 0.0786259 24322 120374 -1 2027 21 1268 2387 205598 45639 3.972 3.972 -115.213 -3.972 0 0 618332. 2139.56 0.26 0.07 0.12 -1 -1 0.26 0.0199025 0.0174921 117 20 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 9.95 vpr 64.93 MiB -1 -1 0.15 20288 1 0.03 -1 -1 33540 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 26.4 MiB 3.34 802 13599 4534 7471 1594 64.9 MiB 0.11 0.00 4.04073 -123.042 -4.04073 4.04073 0.93 0.000444007 0.00040368 0.0385088 0.0350249 28 2087 22 6.87369e+06 237555 531479. 1839.03 3.45 0.177637 0.153918 24610 126494 -1 1892 21 1343 2306 173766 40652 3.29986 3.29986 -123.134 -3.29986 0 0 648988. 2245.63 0.26 0.07 0.13 -1 -1 0.26 0.0206741 0.0181148 105 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.32 vpr 64.80 MiB -1 -1 0.16 20404 1 0.03 -1 -1 33708 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 26.2 MiB 3.34 1020 11806 3110 7534 1162 64.8 MiB 0.10 0.00 3.6756 -125.066 -3.6756 3.6756 0.92 0.000487055 0.000442705 0.0351392 0.0320411 34 2679 22 6.87369e+06 237555 618332. 2139.56 1.75 0.143882 0.125936 25762 151098 -1 2172 18 1392 2053 173685 39227 3.20081 3.20081 -127.632 -3.20081 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0200383 0.017731 122 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 5.33 vpr 64.86 MiB -1 -1 0.15 19992 1 0.03 -1 -1 34008 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 26.3 MiB 0.92 1014 15430 4861 8054 2515 64.9 MiB 0.12 0.00 4.6284 -133.663 -4.6284 4.6284 0.94 0.000447448 0.000403242 0.035067 0.031753 32 2693 29 6.87369e+06 433189 586450. 2029.24 1.12 0.103173 0.0908666 25474 144626 -1 2134 19 1219 2210 164082 37394 3.5018 3.5018 -123.469 -3.5018 0 0 744469. 2576.02 0.30 0.06 0.14 -1 -1 0.30 0.020363 0.0181257 129 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.00 vpr 64.91 MiB -1 -1 0.14 20480 1 0.03 -1 -1 34044 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 26.5 MiB 3.94 1172 16215 5632 8430 2153 64.9 MiB 0.16 0.00 4.82738 -155.303 -4.82738 4.82738 0.91 0.000513096 0.000467869 0.0458536 0.0418027 34 3239 22 6.87369e+06 321398 618332. 2139.56 1.81 0.16205 0.142021 25762 151098 -1 2741 20 1767 2644 217703 50575 4.30086 4.30086 -152.489 -4.30086 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0244703 0.0216589 147 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 9.50 vpr 65.41 MiB -1 -1 0.15 20552 1 0.03 -1 -1 33800 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 26.9 MiB 4.33 951 10308 2331 7565 412 65.4 MiB 0.10 0.00 5.39654 -155.229 -5.39654 5.39654 0.88 0.000547487 0.0004999 0.0268559 0.0244829 34 2817 24 6.87369e+06 503058 618332. 2139.56 2.09 0.156301 0.137358 25762 151098 -1 2165 23 1634 2704 199475 48470 4.14135 4.14135 -141.69 -4.14135 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0261718 0.0230269 147 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.59 vpr 65.28 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33708 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 26.7 MiB 3.73 1114 12702 3372 8526 804 65.3 MiB 0.11 0.00 4.59844 -147.406 -4.59844 4.59844 0.91 0.000538035 0.000489448 0.0310401 0.0280557 28 3068 25 6.87369e+06 572927 531479. 1839.03 1.64 0.108285 0.0949453 24610 126494 -1 2645 25 1813 3370 330481 68782 3.96 3.96 -145.051 -3.96 0 0 648988. 2245.63 0.26 0.10 0.13 -1 -1 0.26 0.0279808 0.0245047 148 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 8.46 vpr 64.65 MiB -1 -1 0.15 20264 1 0.03 -1 -1 33996 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 26.3 MiB 2.84 643 13768 5811 6950 1007 64.7 MiB 0.10 0.00 4.04073 -117.599 -4.04073 4.04073 0.94 0.000414359 0.00037642 0.0362158 0.0329474 36 1975 29 6.87369e+06 237555 648988. 2245.63 2.40 0.144225 0.126535 26050 158493 -1 1437 20 958 1552 107805 26738 3.17261 3.17261 -106.943 -3.17261 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0185025 0.0163289 99 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 8.85 vpr 65.12 MiB -1 -1 0.17 20436 1 0.03 -1 -1 33928 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 26.7 MiB 3.97 958 7038 1640 4840 558 65.1 MiB 0.08 0.00 4.57902 -143.19 -4.57902 4.57902 0.92 0.000533304 0.000486529 0.0229364 0.0209179 34 2472 21 6.87369e+06 307425 618332. 2139.56 1.68 0.136744 0.118895 25762 151098 -1 1990 20 1617 2540 179225 41610 3.7651 3.7651 -137.998 -3.7651 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0236872 0.0209684 136 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.05 vpr 64.68 MiB -1 -1 0.15 20480 1 0.03 -1 -1 33708 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 26.3 MiB 2.99 1035 6615 1396 4961 258 64.7 MiB 0.07 0.00 5.21006 -150.271 -5.21006 5.21006 0.91 0.000528523 0.000484294 0.0197894 0.0181251 34 2845 24 6.87369e+06 321398 618332. 2139.56 1.86 0.137934 0.120667 25762 151098 -1 2413 22 1704 2806 223267 50806 4.44196 4.44196 -146.742 -4.44196 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.02527 0.0223577 140 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 9.95 vpr 64.92 MiB -1 -1 0.16 20468 1 0.03 -1 -1 33624 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 26.5 MiB 2.67 1178 17839 5313 10611 1915 64.9 MiB 0.15 0.00 5.241 -151.339 -5.241 5.241 0.92 0.000485306 0.000441947 0.0459976 0.0418424 36 2587 21 6.87369e+06 391268 648988. 2245.63 3.99 0.201547 0.174779 26050 158493 -1 2283 20 1514 2383 165366 37937 4.261 4.261 -144.483 -4.261 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0231214 0.020453 141 43 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.40 vpr 65.35 MiB -1 -1 0.15 20704 1 0.03 -1 -1 34000 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66916 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 26.9 MiB 3.20 1032 10531 2482 6524 1525 65.3 MiB 0.09 0.00 4.69758 -143.214 -4.69758 4.69758 0.90 0.000515593 0.000469424 0.0283257 0.0257929 32 2579 23 6.87369e+06 447163 586450. 2029.24 1.03 0.0956764 0.0837837 25474 144626 -1 2142 21 1344 2275 193292 43208 3.4535 3.4535 -131.105 -3.4535 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0233241 0.0205048 135 78 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 7.41 vpr 64.85 MiB -1 -1 0.15 20352 1 0.03 -1 -1 33672 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 26.5 MiB 2.64 1030 11245 3242 7121 882 64.8 MiB 0.10 0.00 4.79284 -145.044 -4.79284 4.79284 0.87 0.000510084 0.000466337 0.032837 0.0300184 34 2708 22 6.87369e+06 293451 618332. 2139.56 1.66 0.146884 0.128623 25762 151098 -1 2211 24 1772 3172 252269 55262 3.84946 3.84946 -137.262 -3.84946 0 0 787024. 2723.27 0.30 0.09 0.14 -1 -1 0.30 0.0261573 0.0230354 132 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 8.09 vpr 65.24 MiB -1 -1 0.16 20512 1 0.03 -1 -1 33964 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 26.9 MiB 3.18 973 10944 3003 6644 1297 65.2 MiB 0.09 0.00 4.08063 -124.263 -4.08063 4.08063 0.92 0.000558358 0.000508298 0.030109 0.0274239 34 2457 23 6.87369e+06 405241 618332. 2139.56 1.69 0.144418 0.125811 25762 151098 -1 2069 23 1652 2711 206508 47762 3.11951 3.11951 -119.044 -3.11951 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0252513 0.0221205 132 79 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.46 vpr 64.55 MiB -1 -1 0.12 20460 1 0.03 -1 -1 33716 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 26.0 MiB 0.76 780 13906 5362 7318 1226 64.5 MiB 0.10 0.00 4.08063 -122.384 -4.08063 4.08063 0.93 0.00038561 0.000352678 0.0329269 0.0300005 34 1855 45 6.87369e+06 237555 618332. 2139.56 1.53 0.129855 0.113385 25762 151098 -1 1545 20 890 1368 99226 22570 2.94401 2.94401 -106.567 -2.94401 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.018086 0.0159531 96 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.28 vpr 65.25 MiB -1 -1 0.15 20536 1 0.03 -1 -1 33636 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 26.8 MiB 5.18 1081 9548 2182 6489 877 65.3 MiB 0.08 0.00 4.62608 -140.581 -4.62608 4.62608 0.85 0.00053273 0.000484603 0.0232394 0.0211392 28 2635 30 6.87369e+06 475111 531479. 1839.03 1.10 0.0933675 0.0815094 24610 126494 -1 2394 20 1652 2696 203697 47134 4.0193 4.0193 -140.548 -4.0193 0 0 648988. 2245.63 0.25 0.08 0.11 -1 -1 0.25 0.0237858 0.0209788 137 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 10.08 vpr 65.06 MiB -1 -1 0.15 20392 1 0.03 -1 -1 33868 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 26.6 MiB 4.71 1050 13477 3452 8462 1563 65.1 MiB 0.13 0.00 4.60818 -154.696 -4.60818 4.60818 0.92 0.000559627 0.000509273 0.0433323 0.0394866 34 2764 25 6.87369e+06 293451 618332. 2139.56 2.13 0.169146 0.148152 25762 151098 -1 2341 19 1705 2865 213262 48811 3.7531 3.7531 -149.559 -3.7531 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.0240206 0.021267 142 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.54 vpr 64.79 MiB -1 -1 0.14 20484 1 0.03 -1 -1 33656 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 26.3 MiB 3.70 803 10744 3029 6489 1226 64.8 MiB 0.09 0.00 4.47622 -122.656 -4.47622 4.47622 0.91 0.000440161 0.000400585 0.028441 0.0260283 34 2330 21 6.87369e+06 223581 618332. 2139.56 1.70 0.120409 0.105149 25762 151098 -1 1874 19 1142 1513 111450 26852 3.4908 3.4908 -118.606 -3.4908 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0179319 0.0158883 106 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.84 vpr 64.72 MiB -1 -1 0.14 20424 1 0.03 -1 -1 33916 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 26.1 MiB 0.82 704 7103 1505 5021 577 64.7 MiB 0.06 0.00 4.06963 -117.109 -4.06963 4.06963 0.93 0.000423064 0.000386493 0.0176076 0.0160998 30 1825 19 6.87369e+06 279477 556674. 1926.21 0.94 0.066098 0.0577397 25186 138497 -1 1577 16 870 1445 78907 18836 2.91301 2.91301 -105.151 -2.91301 0 0 706193. 2443.58 0.28 0.04 0.14 -1 -1 0.28 0.0148382 0.0131602 99 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 8.25 vpr 65.34 MiB -1 -1 0.14 20476 1 0.03 -1 -1 33812 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 26.9 MiB 3.33 1122 16407 5100 9312 1995 65.3 MiB 0.15 0.00 4.76368 -149.576 -4.76368 4.76368 0.87 0.000506264 0.000462711 0.044131 0.0403742 34 3132 23 6.87369e+06 321398 618332. 2139.56 1.81 0.163202 0.144159 25762 151098 -1 2492 20 1868 2567 249452 54373 4.30566 4.30566 -151.517 -4.30566 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0231735 0.0205278 145 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 10.34 vpr 65.04 MiB -1 -1 0.16 20532 1 0.03 -1 -1 33624 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 26.6 MiB 3.15 1027 10087 2665 7077 345 65.0 MiB 0.09 0.00 5.28228 -152.543 -5.28228 5.28228 0.91 0.000499252 0.000455204 0.0272394 0.0248898 36 2623 39 6.87369e+06 377294 648988. 2245.63 4.00 0.196689 0.170004 26050 158493 -1 2094 19 1245 1937 117668 28657 4.6349 4.6349 -144.976 -4.6349 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0217863 0.0192983 142 53 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 9.12 vpr 65.37 MiB -1 -1 0.14 20448 1 0.03 -1 -1 33416 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.9 MiB 0.95 1027 19820 5642 10737 3441 65.4 MiB 0.17 0.00 5.45503 -148.146 -5.45503 5.45503 0.93 0.000477641 0.000433255 0.0463213 0.0418618 30 3056 37 6.87369e+06 503058 556674. 1926.21 4.91 0.216999 0.190163 25186 138497 -1 2126 21 1515 2796 169916 40317 4.54885 4.54885 -143.677 -4.54885 0 0 706193. 2443.58 0.29 0.07 0.13 -1 -1 0.29 0.024568 0.021655 157 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.03 vpr 65.03 MiB -1 -1 0.16 20228 1 0.03 -1 -1 33520 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 26.5 MiB 2.84 803 13893 3888 7187 2818 65.0 MiB 0.10 0.00 3.64131 -107.005 -3.64131 3.64131 0.91 0.000471621 0.000430634 0.0313976 0.0285984 32 2150 23 6.87369e+06 475111 586450. 2029.24 1.03 0.0930692 0.0817272 25474 144626 -1 1779 22 1365 2449 186602 43150 2.93196 2.93196 -102.245 -2.93196 0 0 744469. 2576.02 0.30 0.07 0.14 -1 -1 0.30 0.0221573 0.0195103 119 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 5.09 vpr 64.75 MiB -1 -1 0.14 20288 1 0.03 -1 -1 34252 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 26.2 MiB 1.15 507 7132 1637 4881 614 64.8 MiB 0.05 0.00 3.6605 -96.1635 -3.6605 3.6605 0.88 0.000423629 0.000388144 0.017737 0.0161961 30 1496 20 6.87369e+06 293451 556674. 1926.21 0.97 0.0670414 0.0586898 25186 138497 -1 1196 17 785 1135 70779 17542 2.76101 2.76101 -92.6515 -2.76101 0 0 706193. 2443.58 0.28 0.04 0.13 -1 -1 0.28 0.0152726 0.0134699 96 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 10.81 vpr 65.34 MiB -1 -1 0.17 20740 1 0.03 -1 -1 33828 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66904 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 26.6 MiB 4.31 1378 10228 2746 6595 887 65.3 MiB 0.11 0.00 4.35815 -140.01 -4.35815 4.35815 0.92 0.000617252 0.000556354 0.034008 0.0310184 34 3944 37 6.87369e+06 335372 618332. 2139.56 3.19 0.185411 0.162321 25762 151098 -1 3174 19 1978 3279 270018 60360 4.54246 4.54246 -148.713 -4.54246 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0258856 0.0229494 165 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 12.01 vpr 65.11 MiB -1 -1 0.16 20612 1 0.03 -1 -1 33868 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 26.7 MiB 4.79 1036 15709 5736 7909 2064 65.1 MiB 0.13 0.00 5.60997 -168.26 -5.60997 5.60997 0.88 0.00053792 0.000492646 0.0453279 0.0414375 34 2870 35 6.87369e+06 307425 618332. 2139.56 4.07 0.248131 0.217332 25762 151098 -1 2240 23 2002 3041 253136 56900 4.5866 4.5866 -154.916 -4.5866 0 0 787024. 2723.27 0.30 0.09 0.14 -1 -1 0.30 0.0259799 0.0230428 139 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 10.30 vpr 65.06 MiB -1 -1 0.17 20712 1 0.03 -1 -1 33888 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 26.5 MiB 5.23 954 12542 3477 7836 1229 65.1 MiB 0.10 0.00 4.34735 -144.276 -4.34735 4.34735 0.91 0.000517465 0.000463488 0.0363612 0.0331871 34 2396 24 6.87369e+06 251529 618332. 2139.56 1.87 0.143117 0.125198 25762 151098 -1 1977 20 1353 1987 138164 34066 3.5981 3.5981 -140.671 -3.5981 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.021548 0.0189777 118 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.90 vpr 65.14 MiB -1 -1 0.16 20228 1 0.03 -1 -1 33808 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 26.5 MiB 1.40 986 18523 6141 9875 2507 65.1 MiB 0.14 0.00 5.03998 -136.555 -5.03998 5.03998 0.91 0.000479219 0.000431114 0.0421728 0.0382972 28 2617 26 6.87369e+06 461137 531479. 1839.03 1.33 0.110317 0.0972473 24610 126494 -1 2265 23 1411 2278 185501 41444 3.8566 3.8566 -128.643 -3.8566 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0230841 0.0202546 129 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.46 vpr 65.21 MiB -1 -1 0.15 20912 1 0.03 -1 -1 33748 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66780 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 26.8 MiB 2.23 1064 18301 5445 10263 2593 65.2 MiB 0.15 0.00 4.47348 -130.92 -4.47348 4.47348 0.91 0.000522044 0.000475222 0.0464527 0.0423055 32 2670 22 6.87369e+06 475111 586450. 2029.24 1.03 0.115903 0.102282 25474 144626 -1 2206 21 1472 2558 198438 45014 3.63536 3.63536 -124.973 -3.63536 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0249785 0.0220724 149 46 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.01 vpr 65.12 MiB -1 -1 0.14 20616 1 0.03 -1 -1 33544 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 26.5 MiB 2.34 1005 13953 3900 8706 1347 65.1 MiB 0.11 0.00 3.71604 -108.811 -3.71604 3.71604 0.90 0.000476816 0.000435804 0.0335909 0.0306074 34 2309 22 6.87369e+06 433189 618332. 2139.56 1.56 0.131513 0.114303 25762 151098 -1 1950 17 1067 1860 124922 29376 2.93031 2.93031 -104.331 -2.93031 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0184454 0.0163147 124 46 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 9.57 vpr 65.42 MiB -1 -1 0.14 20892 1 0.03 -1 -1 33760 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 27.0 MiB 3.70 1158 14261 4788 7245 2228 65.4 MiB 0.13 0.00 4.84864 -152.871 -4.84864 4.84864 0.88 0.000507834 0.000464381 0.040415 0.0368589 34 3462 28 6.87369e+06 307425 618332. 2139.56 2.74 0.174895 0.154362 25762 151098 -1 2628 23 2062 3235 287780 62306 4.17495 4.17495 -148.162 -4.17495 0 0 787024. 2723.27 0.30 0.09 0.14 -1 -1 0.30 0.026059 0.0229998 148 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.07 vpr 65.23 MiB -1 -1 0.15 20472 1 0.03 -1 -1 33760 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66800 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 26.8 MiB 3.74 1138 19124 5521 11431 2172 65.2 MiB 0.16 0.00 4.13563 -138.632 -4.13563 4.13563 0.93 0.000536036 0.000486778 0.0470678 0.0427937 28 2715 22 6.87369e+06 503058 531479. 1839.03 1.09 0.122852 0.10862 24610 126494 -1 2408 19 1498 2419 164089 37336 3.12431 3.12431 -127.083 -3.12431 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0228886 0.0202185 147 59 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.42 vpr 64.42 MiB -1 -1 0.15 20392 1 0.03 -1 -1 33848 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65968 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 26.1 MiB 2.27 666 12120 4433 5222 2465 64.4 MiB 0.09 0.00 3.97634 -118.279 -3.97634 3.97634 0.93 0.000408371 0.000372081 0.0310185 0.0283063 32 1713 25 6.87369e+06 265503 586450. 2029.24 0.99 0.0851843 0.0750807 25474 144626 -1 1450 16 1051 1510 102810 24073 2.88196 2.88196 -105.209 -2.88196 0 0 744469. 2576.02 0.29 0.05 0.14 -1 -1 0.29 0.0155006 0.0137312 101 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.13 vpr 64.73 MiB -1 -1 0.15 20400 1 0.03 -1 -1 33752 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 26.2 MiB 1.94 954 14256 4666 7594 1996 64.7 MiB 0.11 0.00 4.32352 -124.508 -4.32352 4.32352 0.94 0.000447837 0.000407528 0.0385335 0.0351138 30 2387 23 6.87369e+06 237555 556674. 1926.21 1.02 0.100637 0.0887454 25186 138497 -1 2015 15 856 1149 82635 18383 3.26184 3.26184 -123.375 -3.26184 0 0 706193. 2443.58 0.29 0.04 0.13 -1 -1 0.29 0.0168239 0.0149811 112 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 8.36 vpr 65.12 MiB -1 -1 0.15 20248 1 0.03 -1 -1 33756 -1 -1 39 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 26.7 MiB 2.02 1008 17238 4626 10206 2406 65.1 MiB 0.13 0.00 4.58512 -131.297 -4.58512 4.58512 0.91 0.000478898 0.000438114 0.0367055 0.0334029 28 2463 22 6.87369e+06 544980 531479. 1839.03 3.12 0.169915 0.147585 24610 126494 -1 2321 20 1520 2685 209113 46179 4.2616 4.2616 -136.339 -4.2616 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0217781 0.0191996 135 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 11.07 vpr 64.94 MiB -1 -1 0.15 20224 1 0.03 -1 -1 33812 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 26.6 MiB 3.92 766 12464 3650 7053 1761 64.9 MiB 0.11 0.00 4.72278 -121.674 -4.72278 4.72278 0.92 0.000405268 0.000369588 0.0338752 0.0311856 36 2048 24 6.87369e+06 265503 648988. 2245.63 3.94 0.15965 0.138695 26050 158493 -1 1693 19 1092 1446 93186 24458 3.45685 3.45685 -110.754 -3.45685 0 0 828058. 2865.25 0.33 0.05 0.16 -1 -1 0.33 0.0177524 0.0156793 107 25 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.10 vpr 64.71 MiB -1 -1 0.13 20196 1 0.03 -1 -1 34000 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 26.3 MiB 3.62 839 11909 3234 7671 1004 64.7 MiB 0.09 0.00 4.09853 -129.483 -4.09853 4.09853 0.87 0.000404786 0.000369967 0.0309203 0.0282532 34 2157 23 6.87369e+06 209608 618332. 2139.56 1.48 0.120398 0.105443 25762 151098 -1 1820 21 1422 2436 176587 40630 2.89096 2.89096 -115.541 -2.89096 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0198265 0.0175159 101 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.91 vpr 65.43 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33728 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 26.9 MiB 3.31 942 11236 2692 7798 746 65.4 MiB 0.11 0.00 3.93572 -125.697 -3.93572 3.93572 0.92 0.000549085 0.000500069 0.0287983 0.0261391 30 2084 23 6.87369e+06 517032 556674. 1926.21 2.43 0.157035 0.135452 25186 138497 -1 1755 22 1427 2345 123843 30179 2.85066 2.85066 -111.306 -2.85066 0 0 706193. 2443.58 0.27 0.06 0.13 -1 -1 0.27 0.0219725 0.0192946 141 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 8.01 vpr 64.91 MiB -1 -1 0.15 20120 1 0.03 -1 -1 34004 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 26.5 MiB 3.30 854 11604 2702 8073 829 64.9 MiB 0.08 0.00 3.71466 -115.66 -3.71466 3.71466 0.94 0.000395842 0.000360367 0.0290258 0.0265034 34 2121 22 6.87369e+06 237555 618332. 2139.56 1.51 0.116899 0.102067 25762 151098 -1 1793 24 1269 1863 147188 34139 3.22491 3.22491 -116.376 -3.22491 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.021203 0.018606 105 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 9.44 vpr 65.14 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33728 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 26.8 MiB 3.43 1000 15215 3699 9919 1597 65.1 MiB 0.12 0.00 3.6733 -115.913 -3.6733 3.6733 0.87 0.000493305 0.000451208 0.0362932 0.0330658 28 2463 22 6.87369e+06 433189 531479. 1839.03 2.99 0.182795 0.159877 24610 126494 -1 2134 17 1072 1687 130609 29568 3.23291 3.23291 -117.711 -3.23291 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0202833 0.0180587 129 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.50 vpr 65.42 MiB -1 -1 0.17 20468 1 0.03 -1 -1 33684 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66988 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 27.0 MiB 3.99 1013 12839 3510 8051 1278 65.4 MiB 0.11 0.00 3.7214 -127.022 -3.7214 3.7214 0.91 0.000531639 0.000485402 0.0340412 0.0310095 26 2613 33 6.87369e+06 447163 503264. 1741.40 1.34 0.117896 0.103426 24322 120374 -1 2318 22 1836 2739 240609 53381 3.49736 3.49736 -136.167 -3.49736 0 0 618332. 2139.56 0.26 0.08 0.12 -1 -1 0.26 0.0258841 0.0227059 137 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.48 vpr 64.54 MiB -1 -1 0.15 20304 1 0.03 -1 -1 33700 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 26.2 MiB 2.78 868 13324 3871 8104 1349 64.5 MiB 0.10 0.00 3.6034 -114.008 -3.6034 3.6034 0.91 0.000458747 0.000419539 0.0366337 0.0334452 34 2053 23 6.87369e+06 223581 618332. 2139.56 1.52 0.132574 0.115981 25762 151098 -1 1867 20 1096 1750 148394 33483 2.93031 2.93031 -111.865 -2.93031 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0205729 0.0181829 99 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.59 vpr 64.98 MiB -1 -1 0.16 20300 1 0.03 -1 -1 33712 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 26.5 MiB 1.81 974 10050 2495 6517 1038 65.0 MiB 0.09 0.00 4.16989 -130.796 -4.16989 4.16989 0.91 0.000437643 0.00040023 0.0272002 0.0247303 34 2564 21 6.87369e+06 251529 618332. 2139.56 1.63 0.117592 0.102199 25762 151098 -1 2158 22 1584 2433 195283 44249 3.42321 3.42321 -125.2 -3.42321 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0207678 0.0182692 114 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 7.97 vpr 65.19 MiB -1 -1 0.16 20168 1 0.03 -1 -1 33876 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 26.8 MiB 3.16 1073 14072 3847 8138 2087 65.2 MiB 0.11 0.00 4.82103 -137.111 -4.82103 4.82103 0.90 0.000477174 0.000435917 0.0376543 0.0343938 34 2766 23 6.87369e+06 307425 618332. 2139.56 1.60 0.137189 0.119797 25762 151098 -1 2315 22 1603 2279 167129 38418 3.85576 3.85576 -132.18 -3.85576 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0225401 0.0198227 132 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.61 vpr 65.05 MiB -1 -1 0.15 20708 1 0.03 -1 -1 33464 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 26.5 MiB 3.12 938 11346 3139 7252 955 65.1 MiB 0.09 0.00 4.10263 -113.928 -4.10263 4.10263 0.87 0.000467598 0.00042873 0.0279375 0.025573 34 2292 21 6.87369e+06 405241 618332. 2139.56 1.46 0.123418 0.107763 25762 151098 -1 1865 18 985 1663 101328 25310 3.08831 3.08831 -105.918 -3.08831 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0188781 0.0166375 123 49 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 8.48 vpr 65.46 MiB -1 -1 0.16 20780 1 0.03 -1 -1 33632 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67028 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 27.0 MiB 3.37 1137 15773 5092 8347 2334 65.5 MiB 0.15 0.00 5.16181 -165.054 -5.16181 5.16181 0.87 0.000551003 0.000495389 0.0471888 0.0427977 34 3224 24 6.87369e+06 307425 618332. 2139.56 1.95 0.175105 0.153937 25762 151098 -1 2506 23 1972 3000 246393 55956 4.23626 4.23626 -156.047 -4.23626 0 0 787024. 2723.27 0.30 0.09 0.14 -1 -1 0.30 0.0267467 0.0235845 151 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.21 vpr 64.46 MiB -1 -1 0.15 20244 1 0.03 -1 -1 33680 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66008 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 25.9 MiB 0.78 812 10400 2700 6281 1419 64.5 MiB 0.07 0.00 3.6213 -110.383 -3.6213 3.6213 0.88 0.000372362 0.000341788 0.0241452 0.0220839 34 1771 19 6.87369e+06 237555 618332. 2139.56 1.40 0.0992655 0.0864373 25762 151098 -1 1572 19 861 1344 90065 21187 2.78501 2.78501 -102.459 -2.78501 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.015821 0.0140148 92 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.58 vpr 65.59 MiB -1 -1 0.16 20628 1 0.03 -1 -1 33688 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 27.1 MiB 2.30 1097 18567 5571 11084 1912 65.6 MiB 0.15 0.00 4.4584 -148.753 -4.4584 4.4584 0.91 0.000575565 0.000517558 0.0491253 0.0446951 30 2603 24 6.87369e+06 489084 556674. 1926.21 1.08 0.124944 0.109987 25186 138497 -1 2091 22 1434 2068 140013 31232 3.72316 3.72316 -139.913 -3.72316 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0259083 0.0228355 145 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 10.00 vpr 65.04 MiB -1 -1 0.15 20804 1 0.03 -1 -1 33604 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 5.21 823 13152 5512 7421 219 65.0 MiB 0.11 0.00 3.7595 -132.319 -3.7595 3.7595 0.90 0.000513791 0.000468889 0.0417603 0.0380815 34 2123 27 6.87369e+06 223581 618332. 2139.56 1.61 0.151394 0.132011 25762 151098 -1 1805 19 1496 2160 182254 40246 3.05731 3.05731 -125.203 -3.05731 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0212228 0.0187184 114 93 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.25 vpr 64.95 MiB -1 -1 0.16 20472 1 0.03 -1 -1 33616 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 26.6 MiB 3.45 1010 10827 2581 6963 1283 65.0 MiB 0.10 0.00 4.11773 -126.026 -4.11773 4.11773 0.92 0.000521868 0.000467758 0.0282521 0.0257437 34 2332 20 6.87369e+06 447163 618332. 2139.56 1.59 0.1381 0.120602 25762 151098 -1 1913 20 1166 1887 120654 28634 2.75641 2.75641 -108.206 -2.75641 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0232081 0.0205076 134 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 9.99 vpr 65.42 MiB -1 -1 0.17 20528 1 0.03 -1 -1 33784 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 26.9 MiB 4.82 1280 16127 4711 8958 2458 65.4 MiB 0.16 0.00 5.89191 -180.703 -5.89191 5.89191 0.90 0.00055824 0.00050839 0.048551 0.0443055 34 3352 23 6.87369e+06 349346 618332. 2139.56 1.87 0.176558 0.154968 25762 151098 -1 2806 23 2166 3316 300140 64406 5.0795 5.0795 -171.863 -5.0795 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0288812 0.0256148 171 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.51 vpr 64.46 MiB -1 -1 0.14 20628 1 0.03 -1 -1 33840 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 26.0 MiB 1.52 668 8716 2078 6018 620 64.5 MiB 0.06 0.00 3.01966 -95.583 -3.01966 3.01966 0.91 0.000347311 0.000316669 0.0237263 0.0219344 30 1784 17 6.87369e+06 209608 556674. 1926.21 0.94 0.0667109 0.0588246 25186 138497 -1 1450 18 757 999 78556 18489 2.57366 2.57366 -100.628 -2.57366 0 0 706193. 2443.58 0.28 0.04 0.13 -1 -1 0.28 0.0145612 0.0128461 81 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.69 vpr 64.55 MiB -1 -1 0.14 20560 1 0.03 -1 -1 33900 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 26.2 MiB 1.27 599 7081 1635 4909 537 64.6 MiB 0.06 0.00 4.05453 -121.132 -4.05453 4.05453 0.87 0.000434546 0.000392265 0.0186563 0.0170678 34 1802 23 6.87369e+06 265503 618332. 2139.56 1.43 0.104988 0.0906821 25762 151098 -1 1344 22 1125 1743 107136 27099 2.90001 2.90001 -110.666 -2.90001 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0198256 0.0174491 105 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.46 vpr 64.79 MiB -1 -1 0.15 20132 1 0.03 -1 -1 33816 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 26.3 MiB 1.23 913 15639 4952 8936 1751 64.8 MiB 0.12 0.00 3.6323 -121.89 -3.6323 3.6323 0.91 0.000444903 0.00040235 0.038183 0.0347282 32 2483 25 6.87369e+06 321398 586450. 2029.24 1.05 0.0967275 0.0851387 25474 144626 -1 2082 23 1398 2534 242205 51921 3.19991 3.19991 -122.936 -3.19991 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0213071 0.0186433 109 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.86 vpr 64.50 MiB -1 -1 0.15 20232 1 0.03 -1 -1 33676 -1 -1 29 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 26.0 MiB 0.91 516 9536 2821 4714 2001 64.5 MiB 0.06 0.00 3.5473 -82.6349 -3.5473 3.5473 0.90 0.000346225 0.000316471 0.0191146 0.0174719 28 1443 23 6.87369e+06 405241 531479. 1839.03 0.93 0.0640127 0.0558886 24610 126494 -1 1276 16 742 1274 86553 21057 3.05256 3.05256 -82.6649 -3.05256 0 0 648988. 2245.63 0.26 0.04 0.13 -1 -1 0.26 0.0128296 0.0112984 87 19 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.87 vpr 64.66 MiB -1 -1 0.15 20348 1 0.03 -1 -1 33876 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 26.3 MiB 2.97 974 10332 2610 6542 1180 64.7 MiB 0.10 0.00 4.3434 -128.294 -4.3434 4.3434 0.87 0.000517589 0.000472175 0.031418 0.028699 34 2904 44 6.87369e+06 279477 618332. 2139.56 1.81 0.167174 0.14616 25762 151098 -1 2481 22 1620 2847 226586 52091 3.79676 3.79676 -132.011 -3.79676 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0246473 0.0216764 133 69 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 7.86 vpr 64.97 MiB -1 -1 0.17 20756 1 0.03 -1 -1 33992 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 26.5 MiB 3.60 978 9679 2433 6610 636 65.0 MiB 0.10 0.00 4.12463 -132.597 -4.12463 4.12463 0.90 0.000556611 0.000506819 0.0272673 0.0248424 28 2440 23 6.87369e+06 433189 531479. 1839.03 1.14 0.101903 0.0892661 24610 126494 -1 2090 22 1828 2808 189300 45189 3.19976 3.19976 -123.169 -3.19976 0 0 648988. 2245.63 0.26 0.07 0.11 -1 -1 0.26 0.0259817 0.0228819 143 86 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 7.91 vpr 64.38 MiB -1 -1 0.14 20728 1 0.03 -1 -1 33900 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 26.1 MiB 2.90 1101 11203 3178 6921 1104 64.4 MiB 0.11 0.00 5.42457 -156.316 -5.42457 5.42457 0.88 0.000515179 0.000471352 0.0314436 0.0287064 34 2918 37 6.89349e+06 338252 618332. 2139.56 1.92 0.163024 0.142749 25762 151098 -1 2330 21 1708 2520 163764 40336 4.34515 4.34515 -149.16 -4.34515 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0234365 0.0207034 149 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.13 vpr 64.71 MiB -1 -1 0.18 20428 1 0.03 -1 -1 33704 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 26.3 MiB 1.94 1174 12178 3196 7626 1356 64.7 MiB 0.12 0.00 4.90208 -149.95 -4.90208 4.90208 0.91 0.000535788 0.000489745 0.0346287 0.0315505 34 3129 45 6.89349e+06 366440 618332. 2139.56 1.92 0.168028 0.146288 25762 151098 -1 2525 20 1896 2817 195635 44278 4.54103 4.54103 -152.393 -4.54103 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0235111 0.0208631 156 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.10 vpr 64.51 MiB -1 -1 0.15 20388 1 0.03 -1 -1 34004 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 26.1 MiB 2.24 1048 13663 4160 7949 1554 64.5 MiB 0.11 0.00 4.2044 -120.612 -4.2044 4.2044 0.91 0.00045288 0.000413873 0.0354413 0.0323118 34 2461 28 6.89349e+06 295971 618332. 2139.56 1.69 0.140671 0.123026 25762 151098 -1 2068 17 1174 1629 125136 28487 3.6043 3.6043 -118.534 -3.6043 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0183595 0.01629 125 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.80 vpr 64.91 MiB -1 -1 0.14 20116 1 0.03 -1 -1 33848 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 26.4 MiB 2.13 1070 14593 4351 8219 2023 64.9 MiB 0.12 0.00 4.83618 -131.951 -4.83618 4.83618 0.88 0.000440922 0.000403078 0.0368247 0.0335981 34 2512 27 6.89349e+06 338252 618332. 2139.56 1.58 0.139474 0.122176 25762 151098 -1 2085 21 1310 2112 150521 33470 3.83566 3.83566 -123.468 -3.83566 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0209886 0.0185354 134 25 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 7.70 vpr 64.99 MiB -1 -1 0.15 20268 1 0.03 -1 -1 33412 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 26.5 MiB 1.72 1121 10839 3086 5720 2033 65.0 MiB 0.11 0.00 5.28221 -151.791 -5.28221 5.28221 0.92 0.000488934 0.000446083 0.0297489 0.0271673 36 3048 26 6.89349e+06 324158 648988. 2245.63 2.73 0.144367 0.12558 26050 158493 -1 2547 20 1919 3437 271377 58237 4.29409 4.29409 -144.18 -4.29409 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0217688 0.0192005 142 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.53 vpr 64.85 MiB -1 -1 0.15 20736 1 0.03 -1 -1 33892 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 26.4 MiB 2.38 1263 20077 7001 10670 2406 64.9 MiB 0.17 0.00 3.92406 -127.128 -3.92406 3.92406 0.80 0.000523393 0.000476156 0.0497989 0.0451948 34 3484 24 6.89349e+06 465097 618332. 2139.56 2.00 0.166157 0.145116 25762 151098 -1 2789 22 1642 2691 272873 55199 3.27965 3.27965 -126.713 -3.27965 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.025058 0.0219494 162 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.41 vpr 64.64 MiB -1 -1 0.15 20164 1 0.03 -1 -1 34264 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 26.1 MiB 1.54 795 13496 4096 7659 1741 64.6 MiB 0.10 0.00 4.14623 -113.724 -4.14623 4.14623 0.91 0.000389566 0.000354356 0.0334058 0.0305084 34 1922 21 6.89349e+06 295971 618332. 2139.56 1.52 0.11658 0.101967 25762 151098 -1 1665 19 1209 1767 145110 32540 3.09466 3.09466 -107.031 -3.09466 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0164836 0.0145664 107 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.23 vpr 64.69 MiB -1 -1 0.15 20176 1 0.03 -1 -1 33848 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 26.2 MiB 0.89 908 11759 3095 6971 1693 64.7 MiB 0.08 0.00 3.40307 -102.549 -3.40307 3.40307 0.90 0.000397526 0.000360928 0.0239586 0.0217081 26 2334 21 6.89349e+06 451003 503264. 1741.40 1.14 0.0810737 0.0710986 24322 120374 -1 2119 20 1170 2104 171783 38298 2.69355 2.69355 -101.086 -2.69355 0 0 618332. 2139.56 0.25 0.04 0.12 -1 -1 0.25 0.0117715 0.010363 119 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.09 vpr 64.59 MiB -1 -1 0.16 20288 1 0.03 -1 -1 33924 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66140 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 26.1 MiB 2.02 1042 10703 3845 4978 1880 64.6 MiB 0.09 0.00 3.68945 -124.167 -3.68945 3.68945 0.89 0.000461732 0.000419103 0.0291141 0.0265369 34 2732 28 6.89349e+06 281877 618332. 2139.56 1.92 0.110672 0.0965447 25762 151098 -1 2160 20 1579 2113 170875 38070 2.94946 2.94946 -119.188 -2.94946 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0202018 0.0178049 130 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 7.12 vpr 64.90 MiB -1 -1 0.15 20264 1 0.03 -1 -1 33984 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 26.4 MiB 2.36 928 7914 1841 5211 862 64.9 MiB 0.08 0.00 4.05148 -133.476 -4.05148 4.05148 0.88 0.000450551 0.000412523 0.0215894 0.0198075 34 2363 46 6.89349e+06 253689 618332. 2139.56 1.74 0.138982 0.121392 25762 151098 -1 1967 18 1068 1435 118944 26570 3.2697 3.2697 -123.949 -3.2697 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0186312 0.0165758 120 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.32 vpr 64.89 MiB -1 -1 0.16 20384 1 0.03 -1 -1 33840 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 26.4 MiB 2.45 867 6563 1487 4637 439 64.9 MiB 0.06 0.00 4.47797 -127.666 -4.47797 4.47797 0.91 0.000415553 0.000363314 0.0173238 0.0157566 34 2468 30 6.89349e+06 295971 618332. 2139.56 1.76 0.119436 0.103106 25762 151098 -1 1954 18 1246 1652 117850 27065 3.58625 3.58625 -124.145 -3.58625 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0179167 0.0157826 124 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.57 vpr 64.80 MiB -1 -1 0.13 20616 1 0.03 -1 -1 33672 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 26.4 MiB 1.77 849 7781 1935 5506 340 64.8 MiB 0.07 0.00 3.6807 -111.961 -3.6807 3.6807 0.87 0.000403207 0.00036767 0.0201238 0.0183877 34 2156 24 6.89349e+06 239595 618332. 2139.56 1.81 0.116169 0.101098 25762 151098 -1 1837 18 1097 1520 113918 26887 3.08901 3.08901 -112.434 -3.08901 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0175541 0.0155241 108 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.78 vpr 64.88 MiB -1 -1 0.15 20688 1 0.03 -1 -1 33756 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 26.3 MiB 2.46 1060 16407 4994 8930 2483 64.9 MiB 0.14 0.00 4.09068 -131.143 -4.09068 4.09068 0.92 0.000522804 0.00047528 0.0459086 0.0418864 34 2942 46 6.89349e+06 324158 618332. 2139.56 2.05 0.179022 0.156918 25762 151098 -1 2312 19 1654 2518 184499 42386 3.22401 3.22401 -123.401 -3.22401 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0221056 0.0196319 143 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 9.49 vpr 65.14 MiB -1 -1 0.16 20628 1 0.03 -1 -1 33628 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 26.8 MiB 2.24 1222 15298 4935 8519 1844 65.1 MiB 0.14 0.00 5.57191 -161.898 -5.57191 5.57191 0.90 0.00050621 0.000460503 0.042297 0.0385646 44 2654 22 6.89349e+06 338252 787024. 2723.27 3.90 0.204456 0.177606 27778 195446 -1 2226 18 1228 1749 116448 26023 4.17965 4.17965 -143.988 -4.17965 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0213578 0.0189539 153 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.62 vpr 64.67 MiB -1 -1 0.15 20296 1 0.03 -1 -1 33392 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66224 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 26.1 MiB 2.13 847 11909 3522 6229 2158 64.7 MiB 0.08 0.00 3.19582 -98.7926 -3.19582 3.19582 0.88 0.000369834 0.000338146 0.028192 0.0257899 34 1978 21 6.89349e+06 253689 618332. 2139.56 1.50 0.108576 0.0948409 25762 151098 -1 1713 20 983 1407 102917 23465 2.73986 2.73986 -96.8501 -2.73986 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0167047 0.0147173 102 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 10.14 vpr 65.30 MiB -1 -1 0.16 20596 1 0.03 -1 -1 33896 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 26.9 MiB 2.60 1270 15103 4761 8086 2256 65.3 MiB 0.13 0.00 4.1162 -136.486 -4.1162 4.1162 0.90 0.000539052 0.00048468 0.0422336 0.0384289 38 3035 24 6.89349e+06 338252 678818. 2348.85 4.26 0.213084 0.18531 26626 170182 -1 2635 18 1851 2943 211103 45834 3.459 3.459 -129.009 -3.459 0 0 902133. 3121.57 0.34 0.07 0.17 -1 -1 0.34 0.0217922 0.0192599 159 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 9.59 vpr 64.84 MiB -1 -1 0.16 20788 1 0.03 -1 -1 34056 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 26.3 MiB 2.36 1061 15017 4935 7452 2630 64.8 MiB 0.12 0.00 4.12104 -133.123 -4.12104 4.12104 0.90 0.000498366 0.000456422 0.0410704 0.0375113 36 2514 26 6.89349e+06 310065 648988. 2245.63 4.01 0.189552 0.16462 26050 158493 -1 2201 18 1382 2001 156507 34318 3.04636 3.04636 -120.145 -3.04636 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0206654 0.0183065 142 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.70 vpr 65.00 MiB -1 -1 0.14 20208 1 0.03 -1 -1 33436 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 26.5 MiB 2.07 1121 14407 4796 7561 2050 65.0 MiB 0.12 0.00 3.60799 -127.319 -3.60799 3.60799 0.93 0.000468869 0.000428022 0.0390201 0.0356253 36 2593 20 6.89349e+06 295971 648988. 2245.63 2.38 0.152466 0.13445 26050 158493 -1 2266 19 1560 2114 154286 34059 3.02646 3.02646 -124.23 -3.02646 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0206142 0.0182037 131 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 9.08 vpr 64.23 MiB -1 -1 0.13 20392 1 0.03 -1 -1 33540 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 25.8 MiB 1.18 565 9205 3754 4929 522 64.2 MiB 0.06 0.00 2.67033 -85.3827 -2.67033 2.67033 0.91 0.000357875 0.000325993 0.0218612 0.0199723 38 1394 30 6.89349e+06 211408 678818. 2348.85 4.81 0.181924 0.156635 26626 170182 -1 1159 13 560 635 58152 13020 2.05307 2.05307 -80.887 -2.05307 0 0 902133. 3121.57 0.35 0.03 0.16 -1 -1 0.35 0.0112064 0.00996965 82 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 7.31 vpr 64.70 MiB -1 -1 0.15 20244 1 0.03 -1 -1 34128 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 26.3 MiB 2.48 986 14322 4290 8044 1988 64.7 MiB 0.11 0.00 4.76552 -144.771 -4.76552 4.76552 0.87 0.000418743 0.000382837 0.036184 0.0330712 34 2322 29 6.89349e+06 267783 618332. 2139.56 1.79 0.137959 0.120894 25762 151098 -1 2014 20 1276 1972 146102 33382 3.479 3.479 -129.696 -3.479 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0194601 0.0171498 117 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 6.37 vpr 65.05 MiB -1 -1 0.14 20464 1 0.03 -1 -1 34048 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 26.5 MiB 1.32 1121 13823 3432 8585 1806 65.1 MiB 0.11 0.00 4.71322 -150.624 -4.71322 4.71322 0.90 0.000510305 0.000463511 0.0331911 0.0302227 34 2727 22 6.89349e+06 479191 618332. 2139.56 1.88 0.140003 0.121834 25762 151098 -1 2334 20 1481 2227 174544 39115 4.00824 4.00824 -143.79 -4.00824 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0218108 0.0191272 151 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 6.87 vpr 64.75 MiB -1 -1 0.15 20756 1 0.03 -1 -1 33796 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 26.4 MiB 1.52 1277 12375 3467 7863 1045 64.7 MiB 0.12 0.00 4.43295 -138.206 -4.43295 4.43295 0.87 0.000547 0.000501104 0.0357371 0.0326587 36 3078 26 6.89349e+06 324158 648988. 2245.63 2.22 0.160668 0.141149 26050 158493 -1 2617 21 2034 3206 249894 52894 3.89554 3.89554 -137.73 -3.89554 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0248548 0.0219394 155 59 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 8.04 vpr 64.43 MiB -1 -1 0.13 19988 1 0.03 -1 -1 33940 -1 -1 19 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65972 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 26.0 MiB 1.41 448 11324 4682 5071 1571 64.4 MiB 0.06 0.00 2.70371 -73.039 -2.70371 2.70371 0.93 0.000309526 0.000282134 0.022769 0.0207806 40 1106 23 6.89349e+06 267783 706193. 2443.58 3.46 0.120786 0.10429 26914 176310 -1 982 22 792 952 75437 18340 2.39095 2.39095 -69.6367 -2.39095 0 0 926341. 3205.33 0.34 0.04 0.18 -1 -1 0.34 0.0146172 0.012786 76 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.90 vpr 64.61 MiB -1 -1 0.14 20108 1 0.03 -1 -1 33940 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 26.3 MiB 1.05 989 9879 2312 6247 1320 64.6 MiB 0.09 0.00 4.42392 -127.052 -4.42392 4.42392 0.91 0.000433013 0.0003954 0.0243814 0.0222603 34 2328 22 6.89349e+06 324158 618332. 2139.56 1.71 0.118377 0.102868 25762 151098 -1 1979 21 1206 2295 156747 36159 3.50885 3.50885 -121.305 -3.50885 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.020173 0.0177894 119 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.29 vpr 64.20 MiB -1 -1 0.13 19856 1 0.02 -1 -1 33612 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65744 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 25.7 MiB 0.42 477 9356 3828 5185 343 64.2 MiB 0.05 0.00 2.35052 -74.7133 -2.35052 2.35052 0.92 0.000302185 0.000274082 0.0177176 0.0160242 30 1271 33 6.89349e+06 169126 556674. 1926.21 0.91 0.0588033 0.0510992 25186 138497 -1 917 13 471 601 34359 9289 1.85746 1.85746 -71.2035 -1.85746 0 0 706193. 2443.58 0.29 0.02 0.12 -1 -1 0.29 0.00915238 0.00813441 65 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 6.84 vpr 64.64 MiB -1 -1 0.16 20188 1 0.03 -1 -1 33632 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 26.2 MiB 1.96 1046 9966 2582 6701 683 64.6 MiB 0.09 0.00 4.91481 -138.303 -4.91481 4.91481 0.92 0.000466719 0.000426875 0.0271521 0.0248085 34 2316 22 6.89349e+06 281877 618332. 2139.56 1.71 0.129273 0.113116 25762 151098 -1 1980 19 1004 1540 102606 24225 3.76736 3.76736 -123.228 -3.76736 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0195068 0.0172583 125 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 6.84 vpr 64.47 MiB -1 -1 0.14 20124 1 0.03 -1 -1 34012 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66016 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.0 MiB 0.87 1030 18239 5331 10544 2364 64.5 MiB 0.14 0.00 3.48935 -111.917 -3.48935 3.48935 0.90 0.00044961 0.000410018 0.0400424 0.0363427 30 2299 29 6.89349e+06 436909 556674. 1926.21 2.87 0.165377 0.143993 25186 138497 -1 1943 18 1002 1825 117062 25649 2.62651 2.62651 -101.154 -2.62651 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0182899 0.0161967 130 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 7.98 vpr 65.11 MiB -1 -1 0.14 20788 1 0.03 -1 -1 33980 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 26.6 MiB 2.58 1031 15255 4057 8092 3106 65.1 MiB 0.13 0.00 4.82008 -133.501 -4.82008 4.82008 0.91 0.000490467 0.0004496 0.0414621 0.0378409 34 2929 28 6.89349e+06 324158 618332. 2139.56 2.18 0.162845 0.143009 25762 151098 -1 2406 20 1641 2502 180517 44433 4.15846 4.15846 -138.48 -4.15846 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0222578 0.0197248 142 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.54 vpr 64.67 MiB -1 -1 0.14 20224 1 0.03 -1 -1 33488 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 26.3 MiB 1.97 1042 13556 4378 7182 1996 64.7 MiB 0.11 0.00 3.7536 -126.104 -3.7536 3.7536 0.88 0.000423475 0.000387287 0.0348091 0.0317082 34 2426 26 6.89349e+06 239595 618332. 2139.56 1.54 0.127869 0.111536 25762 151098 -1 2062 21 1231 1775 140537 30780 3.10151 3.10151 -121.28 -3.10151 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0190397 0.0166792 112 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.78 vpr 64.43 MiB -1 -1 0.14 20164 1 0.03 -1 -1 33756 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65980 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 25.9 MiB 2.05 868 13092 4092 7012 1988 64.4 MiB 0.10 0.00 4.03552 -117.607 -4.03552 4.03552 0.87 0.000406238 0.000372263 0.033216 0.0303892 34 2273 22 6.89349e+06 239595 618332. 2139.56 1.71 0.12525 0.110228 25762 151098 -1 1875 20 958 1604 132449 28430 3.37775 3.37775 -111.98 -3.37775 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0178219 0.0157376 104 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.15 vpr 64.32 MiB -1 -1 0.15 20420 1 0.03 -1 -1 33496 -1 -1 20 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 25.8 MiB 1.97 757 6960 1669 4834 457 64.3 MiB 0.06 0.00 4.17394 -114.526 -4.17394 4.17394 0.92 0.00039784 0.000362913 0.0177823 0.0162284 30 2142 28 6.89349e+06 281877 556674. 1926.21 1.06 0.074364 0.0649195 25186 138497 -1 1666 20 1033 1810 114421 26114 3.22555 3.22555 -108.797 -3.22555 0 0 706193. 2443.58 0.29 0.05 0.13 -1 -1 0.29 0.0173537 0.0153042 107 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 7.01 vpr 64.34 MiB -1 -1 0.13 20124 1 0.03 -1 -1 33416 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65880 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 25.8 MiB 0.69 835 13031 3792 7568 1671 64.3 MiB 0.09 0.00 3.90738 -121.629 -3.90738 3.90738 0.93 0.000384935 0.000352652 0.0311697 0.0283307 32 2291 36 6.89349e+06 239595 586450. 2029.24 3.19 0.149855 0.129812 25474 144626 -1 1971 20 1241 2047 177578 39376 2.97946 2.97946 -115.239 -2.97946 0 0 744469. 2576.02 0.30 0.06 0.13 -1 -1 0.30 0.0175582 0.0154551 101 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 7.93 vpr 64.70 MiB -1 -1 0.15 20464 1 0.03 -1 -1 33660 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 26.4 MiB 1.88 912 9006 2499 5943 564 64.7 MiB 0.07 0.00 3.63671 -112.55 -3.63671 3.63671 0.94 0.000486916 0.000454778 0.0235694 0.0215307 30 2196 23 6.89349e+06 253689 556674. 1926.21 2.94 0.151249 0.131139 25186 138497 -1 1882 16 885 1325 85929 19971 2.81636 2.81636 -109.416 -2.81636 0 0 706193. 2443.58 0.28 0.04 0.14 -1 -1 0.28 0.0155308 0.0137405 108 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 9.38 vpr 64.70 MiB -1 -1 0.15 20616 1 0.03 -1 -1 33784 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 26.2 MiB 2.23 982 10163 2807 6505 851 64.7 MiB 0.08 0.00 3.48715 -105.954 -3.48715 3.48715 0.91 0.000430221 0.000393195 0.0259756 0.0237365 36 2114 24 6.89349e+06 310065 648988. 2245.63 3.99 0.150788 0.130215 26050 158493 -1 1893 17 1056 1446 109106 24335 2.53636 2.53636 -101.077 -2.53636 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0167574 0.0148016 120 48 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.61 vpr 65.18 MiB -1 -1 0.14 20424 1 0.03 -1 -1 33792 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 26.8 MiB 1.85 1339 15137 4138 9246 1753 65.2 MiB 0.14 0.00 4.47915 -132.321 -4.47915 4.47915 0.87 0.000524397 0.000477889 0.0422276 0.0385313 34 2963 23 6.89349e+06 352346 618332. 2139.56 1.66 0.160668 0.140999 25762 151098 -1 2512 21 1427 2365 176883 38523 3.84576 3.84576 -128.825 -3.84576 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0245685 0.0218043 159 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 7.85 vpr 65.16 MiB -1 -1 0.15 20592 1 0.03 -1 -1 33876 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 26.7 MiB 2.42 1289 13933 4065 8243 1625 65.2 MiB 0.14 0.00 4.58977 -156.464 -4.58977 4.58977 0.93 0.000562243 0.000512903 0.0419003 0.0382553 36 2961 23 6.89349e+06 338252 648988. 2245.63 2.14 0.175689 0.15488 26050 158493 -1 2768 19 2118 2977 227249 49577 3.80435 3.80435 -151.02 -3.80435 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0247769 0.0219922 168 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 8.51 vpr 64.79 MiB -1 -1 0.14 20288 1 0.03 -1 -1 33332 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 26.4 MiB 1.45 765 12506 3068 7484 1954 64.8 MiB 0.10 0.00 3.98848 -116.551 -3.98848 3.98848 0.90 0.000417168 0.000380521 0.0321117 0.0293082 36 1999 20 6.89349e+06 253689 648988. 2245.63 3.92 0.156113 0.135274 26050 158493 -1 1708 21 1218 1874 142062 32163 3.20796 3.20796 -111.26 -3.20796 0 0 828058. 2865.25 0.31 0.06 0.16 -1 -1 0.31 0.0191581 0.0168337 109 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 7.59 vpr 64.78 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33716 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 26.4 MiB 2.49 1249 10813 2744 7185 884 64.8 MiB 0.10 0.00 4.24063 -135.696 -4.24063 4.24063 0.92 0.000527779 0.000480205 0.0315807 0.0288431 34 3153 26 6.89349e+06 352346 618332. 2139.56 1.86 0.151221 0.13196 25762 151098 -1 2661 18 1662 2449 211819 44945 3.88885 3.88885 -140.681 -3.88885 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0213258 0.0188579 160 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 8.74 vpr 65.03 MiB -1 -1 0.16 20388 1 0.03 -1 -1 34004 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 26.6 MiB 2.91 1247 16273 5220 8383 2670 65.0 MiB 0.16 0.00 5.45989 -162.138 -5.45989 5.45989 0.88 0.000523942 0.000478616 0.0461034 0.0421193 36 3304 23 6.89349e+06 352346 648988. 2245.63 2.63 0.18344 0.16272 26050 158493 -1 2788 22 2139 3182 279459 58032 4.86768 4.86768 -161.55 -4.86768 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0262488 0.0232094 163 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 9.46 vpr 65.10 MiB -1 -1 0.15 20448 1 0.02 -1 -1 34020 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 26.7 MiB 2.56 1201 15298 5197 6778 3323 65.1 MiB 0.14 0.00 5.99918 -171.098 -5.99918 5.99918 0.94 0.000527795 0.000479148 0.045585 0.041563 36 3723 40 6.89349e+06 352346 648988. 2245.63 3.57 0.192238 0.168904 26050 158493 -1 2576 21 1820 2714 210431 54047 5.27384 5.27384 -170.652 -5.27384 0 0 828058. 2865.25 0.32 0.08 0.16 -1 -1 0.32 0.0248285 0.0218177 166 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 7.77 vpr 64.86 MiB -1 -1 0.17 20504 1 0.03 -1 -1 33884 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 26.3 MiB 2.30 1173 16983 5747 8489 2747 64.9 MiB 0.15 0.00 4.05378 -126.496 -4.05378 4.05378 0.91 0.000505257 0.000460872 0.0475022 0.043385 36 2746 23 6.89349e+06 338252 648988. 2245.63 2.19 0.172756 0.152595 26050 158493 -1 2384 20 1786 2593 194371 42478 3.12356 3.12356 -117.448 -3.12356 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0232749 0.0205625 148 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.24 vpr 64.71 MiB -1 -1 0.15 20320 1 0.03 -1 -1 33704 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 26.3 MiB 2.22 909 14358 5137 7007 2214 64.7 MiB 0.11 0.00 4.5826 -118.27 -4.5826 4.5826 0.90 0.000426108 0.000388611 0.0361049 0.0329036 34 2771 28 6.89349e+06 281877 618332. 2139.56 1.87 0.135435 0.118137 25762 151098 -1 2020 19 1141 1651 146263 32423 3.57426 3.57426 -114.046 -3.57426 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0187297 0.0164734 120 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 10.25 vpr 65.47 MiB -1 -1 0.15 20384 1 0.03 -1 -1 33760 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 27.1 MiB 2.55 1620 14567 4267 9425 875 65.5 MiB 0.16 0.00 5.31355 -171.75 -5.31355 5.31355 0.87 0.000610483 0.000556402 0.0447057 0.0406754 36 4099 33 6.89349e+06 436909 648988. 2245.63 4.44 0.251492 0.218862 26050 158493 -1 3468 24 2609 3895 304456 64358 4.55769 4.55769 -169.039 -4.55769 0 0 828058. 2865.25 0.32 0.10 0.15 -1 -1 0.32 0.0319746 0.0281919 203 84 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 8.94 vpr 64.78 MiB -1 -1 0.15 20168 1 0.03 -1 -1 33672 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66332 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 26.2 MiB 2.01 935 8481 2198 5465 818 64.8 MiB 0.07 0.00 3.78206 -112.802 -3.78206 3.78206 0.91 0.000389049 0.000354191 0.0210125 0.0191604 36 2118 26 6.89349e+06 253689 648988. 2245.63 3.79 0.142169 0.122553 26050 158493 -1 1959 17 1073 1447 108695 23866 3.15881 3.15881 -112.939 -3.15881 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0166298 0.0147383 106 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.29 vpr 65.09 MiB -1 -1 0.16 20648 1 0.03 -1 -1 33528 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 26.6 MiB 1.74 1159 12749 3392 7336 2021 65.1 MiB 0.11 0.00 4.75882 -144.088 -4.75882 4.75882 0.93 0.000500694 0.00045804 0.035623 0.0325451 30 3158 41 6.89349e+06 324158 556674. 1926.21 1.31 0.119642 0.105251 25186 138497 -1 2457 20 1461 2296 169002 35554 3.7423 3.7423 -131.29 -3.7423 0 0 706193. 2443.58 0.28 0.07 0.14 -1 -1 0.28 0.0217803 0.0192031 140 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 8.01 vpr 65.07 MiB -1 -1 0.15 20328 1 0.03 -1 -1 33972 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 26.7 MiB 2.45 1195 16023 5389 8481 2153 65.1 MiB 0.14 0.00 4.23925 -128.06 -4.23925 4.23925 0.88 0.000484787 0.000441345 0.0431845 0.0394058 36 2964 25 6.89349e+06 324158 648988. 2245.63 2.44 0.16791 0.148078 26050 158493 -1 2426 20 1358 2187 165444 36651 3.58905 3.58905 -124.791 -3.58905 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0220677 0.0194775 149 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 5.00 vpr 64.92 MiB -1 -1 0.16 20088 1 0.03 -1 -1 33960 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 26.5 MiB 0.70 1056 13758 4414 7436 1908 64.9 MiB 0.11 0.00 4.26729 -130.845 -4.26729 4.26729 0.91 0.000453537 0.000413187 0.0332003 0.0301934 30 2527 28 6.89349e+06 366440 556674. 1926.21 1.16 0.102473 0.0905827 25186 138497 -1 2219 22 1208 2191 168479 35056 3.595 3.595 -126.769 -3.595 0 0 706193. 2443.58 0.29 0.07 0.13 -1 -1 0.29 0.0215889 0.0190048 123 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 9.53 vpr 65.15 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33540 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 26.8 MiB 2.13 1207 10455 2579 6753 1123 65.2 MiB 0.10 0.00 4.44301 -131.225 -4.44301 4.44301 0.91 0.000494456 0.000452158 0.0297516 0.027163 36 2616 21 6.89349e+06 324158 648988. 2245.63 4.19 0.187234 0.162196 26050 158493 -1 2300 19 1441 2046 153148 33477 3.18886 3.18886 -120.986 -3.18886 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0221924 0.0196708 148 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.74 vpr 65.18 MiB -1 -1 0.15 20536 1 0.03 -1 -1 33908 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 26.8 MiB 2.44 1187 14518 4859 6825 2834 65.2 MiB 0.13 0.00 4.27293 -132.833 -4.27293 4.27293 0.90 0.00052851 0.000482972 0.0400265 0.0364634 34 3445 26 6.89349e+06 338252 618332. 2139.56 2.11 0.15803 0.13716 25762 151098 -1 2538 19 1645 2465 186566 42784 3.4704 3.4704 -126.55 -3.4704 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0216523 0.0191077 154 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.20 vpr 65.29 MiB -1 -1 0.15 20896 1 0.03 -1 -1 33768 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66860 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 26.9 MiB 2.05 1246 9336 2230 6513 593 65.3 MiB 0.10 0.00 4.12904 -136.238 -4.12904 4.12904 0.87 0.000545319 0.00049831 0.0265155 0.0241558 34 3265 27 6.89349e+06 366440 618332. 2139.56 2.04 0.155827 0.136257 25762 151098 -1 2627 24 1955 2681 199538 45676 3.39606 3.39606 -133.734 -3.39606 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0271674 0.0239257 164 59 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.55 vpr 64.91 MiB -1 -1 0.14 20372 1 0.03 -1 -1 33572 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 26.4 MiB 1.83 1001 8641 2091 5830 720 64.9 MiB 0.08 0.00 4.50695 -131.282 -4.50695 4.50695 0.88 0.000474476 0.00043527 0.0227421 0.0208116 34 2625 20 6.89349e+06 295971 618332. 2139.56 1.68 0.119526 0.104205 25762 151098 -1 2079 21 1304 2062 140160 33197 3.71836 3.71836 -125.299 -3.71836 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0211386 0.0186441 128 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 6.96 vpr 65.04 MiB -1 -1 0.15 20864 1 0.03 -1 -1 33744 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 26.5 MiB 1.94 1119 14450 4565 7826 2059 65.0 MiB 0.12 0.00 4.84598 -139.753 -4.84598 4.84598 0.90 0.000475429 0.000433105 0.0386457 0.035237 34 2751 32 6.89349e+06 310065 618332. 2139.56 1.81 0.150979 0.131942 25762 151098 -1 2320 19 1445 2039 150966 33994 3.94096 3.94096 -133.357 -3.94096 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0206262 0.0182985 135 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 6.81 vpr 65.12 MiB -1 -1 0.17 20800 1 0.03 -1 -1 33768 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 26.7 MiB 1.59 1292 15447 4870 8199 2378 65.1 MiB 0.14 0.00 4.72898 -145.597 -4.72898 4.72898 0.91 0.000515455 0.000469674 0.0441199 0.0402438 34 3305 38 6.89349e+06 338252 618332. 2139.56 1.96 0.172844 0.150821 25762 151098 -1 2664 22 1683 2685 217728 46549 4.1093 4.1093 -142.399 -4.1093 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0243176 0.0212994 156 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 9.06 vpr 65.40 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33864 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 26.9 MiB 2.96 1374 13553 4031 8630 892 65.4 MiB 0.13 0.00 4.3848 -136.299 -4.3848 4.3848 0.92 0.000566713 0.0005178 0.0397734 0.0363463 36 3546 21 6.89349e+06 352346 648988. 2245.63 2.78 0.174405 0.153881 26050 158493 -1 3131 35 2877 4359 347677 74272 3.85536 3.85536 -136.421 -3.85536 0 0 828058. 2865.25 0.33 0.13 0.15 -1 -1 0.33 0.0379774 0.0332215 166 74 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.80 vpr 64.71 MiB -1 -1 0.15 20232 1 0.03 -1 -1 33700 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 26.2 MiB 1.93 841 8022 2262 5194 566 64.7 MiB 0.07 0.00 3.56029 -109.346 -3.56029 3.56029 0.92 0.000410923 0.000376707 0.0208245 0.0190669 36 1876 16 6.89349e+06 211408 648988. 2245.63 1.75 0.102423 0.0892126 26050 158493 -1 1781 20 889 1394 102255 23750 2.58651 2.58651 -99.1772 -2.58651 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0171238 0.0150965 96 20 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 6.89 vpr 64.83 MiB -1 -1 0.16 20772 1 0.03 -1 -1 33528 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66388 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 26.3 MiB 1.55 1155 11979 3435 7133 1411 64.8 MiB 0.11 0.00 4.30741 -149.256 -4.30741 4.30741 0.90 0.00049109 0.000447597 0.0334827 0.0305345 34 2804 26 6.89349e+06 281877 618332. 2139.56 2.17 0.149604 0.130859 25762 151098 -1 2340 20 1904 2594 200265 44004 3.6786 3.6786 -144.817 -3.6786 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0214487 0.0189471 138 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 7.75 vpr 65.10 MiB -1 -1 0.17 20896 1 0.03 -1 -1 34148 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 26.6 MiB 2.14 1337 12167 3186 7820 1161 65.1 MiB 0.13 0.00 5.53202 -162.159 -5.53202 5.53202 0.91 0.000575948 0.000523598 0.037165 0.0338915 34 3534 45 6.89349e+06 352346 618332. 2139.56 2.31 0.180992 0.157641 25762 151098 -1 2896 34 2519 3992 292876 64073 4.7323 4.7323 -160.064 -4.7323 0 0 787024. 2723.27 0.32 0.11 0.14 -1 -1 0.32 0.038065 0.0333611 168 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 8.21 vpr 64.91 MiB -1 -1 0.15 20608 1 0.03 -1 -1 33608 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 26.4 MiB 2.24 981 15773 5650 7566 2557 64.9 MiB 0.14 0.00 4.48922 -138.529 -4.48922 4.48922 0.89 0.000498201 0.000453776 0.0435476 0.0397382 36 2706 29 6.89349e+06 310065 648988. 2245.63 2.76 0.158641 0.138789 26050 158493 -1 2148 21 1650 2368 177031 41003 3.31991 3.31991 -126.449 -3.31991 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0227222 0.0200309 144 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 6.75 vpr 64.84 MiB -1 -1 0.16 20616 1 0.03 -1 -1 33852 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 26.4 MiB 1.68 892 10781 3144 6961 676 64.8 MiB 0.09 0.00 4.18863 -126.692 -4.18863 4.18863 0.91 0.000428073 0.000391509 0.0246593 0.0225079 36 2083 22 6.89349e+06 380534 648988. 2245.63 1.92 0.123708 0.108073 26050 158493 -1 1865 22 1178 1877 144664 32149 3.40385 3.40385 -122.331 -3.40385 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0199768 0.0175463 118 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.58 vpr 65.62 MiB -1 -1 0.16 21036 1 0.03 -1 -1 33756 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67196 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 26.8 MiB 3.79 1573 16207 5526 8946 1735 65.6 MiB 0.18 0.00 6.36902 -185.345 -6.36902 6.36902 0.91 0.000596927 0.00054321 0.0507701 0.0461982 34 4174 50 6.89349e+06 380534 618332. 2139.56 3.43 0.216034 0.189453 25762 151098 -1 3178 20 2450 3885 284990 62516 5.14154 5.14154 -178.922 -5.14154 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0281897 0.0250888 188 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.57 vpr 64.99 MiB -1 -1 0.14 20324 1 0.03 -1 -1 33984 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 26.5 MiB 1.72 1035 15151 5099 7891 2161 65.0 MiB 0.12 0.00 4.71732 -144.131 -4.71732 4.71732 0.90 0.000483243 0.000440883 0.0419427 0.0382974 34 2637 24 6.89349e+06 295971 618332. 2139.56 1.64 0.148956 0.130346 25762 151098 -1 2128 21 1700 2398 160101 36685 3.8815 3.8815 -138.492 -3.8815 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0230264 0.0203888 139 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.09 vpr 64.45 MiB -1 -1 0.15 20432 1 0.03 -1 -1 33628 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66000 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 26.0 MiB 0.67 851 9838 2581 6658 599 64.5 MiB 0.07 0.00 3.70876 -106.292 -3.70876 3.70876 0.93 0.000379809 0.000347318 0.0209822 0.0191519 26 2030 30 6.89349e+06 338252 503264. 1741.40 1.36 0.0807795 0.0708927 24322 120374 -1 1868 17 917 1511 170021 48717 2.84421 2.84421 -106.234 -2.84421 0 0 618332. 2139.56 0.26 0.06 0.12 -1 -1 0.26 0.0151776 0.0133872 94 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 8.24 vpr 65.20 MiB -1 -1 0.15 20588 1 0.03 -1 -1 33824 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 26.6 MiB 2.24 1097 14679 5479 6928 2272 65.2 MiB 0.13 0.00 5.34057 -137.648 -5.34057 5.34057 0.93 0.000514688 0.000468686 0.0417962 0.0380928 34 3407 33 6.89349e+06 324158 618332. 2139.56 2.74 0.170979 0.150358 25762 151098 -1 2311 21 1355 2353 209044 46222 4.38625 4.38625 -135.864 -4.38625 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0243623 0.0215628 149 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.40 vpr 64.51 MiB -1 -1 0.14 20416 1 0.03 -1 -1 33732 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 26.0 MiB 0.77 790 8543 2077 5745 721 64.5 MiB 0.07 0.00 3.60525 -112.744 -3.60525 3.60525 0.92 0.00042167 0.000381355 0.0208713 0.0190656 34 2095 22 6.89349e+06 267783 618332. 2139.56 1.52 0.103779 0.0901101 25762 151098 -1 1917 20 1208 2137 152743 35026 2.88036 2.88036 -109.901 -2.88036 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0170818 0.0150428 98 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.44 vpr 64.52 MiB -1 -1 0.16 20068 1 0.03 -1 -1 33664 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66068 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 26.2 MiB 1.58 900 11118 2938 7199 981 64.5 MiB 0.10 0.00 4.05078 -116.815 -4.05078 4.05078 0.91 0.000431216 0.000395132 0.0282771 0.0257452 34 2168 28 6.89349e+06 281877 618332. 2139.56 1.70 0.123006 0.107025 25762 151098 -1 1812 20 1256 1803 152268 33469 3.11246 3.11246 -112.985 -3.11246 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0185267 0.0162497 113 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 8.60 vpr 64.50 MiB -1 -1 0.17 20832 1 0.03 -1 -1 33848 -1 -1 26 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 26.2 MiB 3.66 1189 14871 4290 8850 1731 64.5 MiB 0.13 0.00 4.52181 -133.377 -4.52181 4.52181 0.89 0.000491693 0.000447691 0.0405354 0.036988 34 2841 25 6.89349e+06 366440 618332. 2139.56 1.76 0.149558 0.130376 25762 151098 -1 2250 19 1473 2119 135906 32124 3.54234 3.54234 -126.145 -3.54234 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0212392 0.0187307 154 56 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.47 vpr 64.86 MiB -1 -1 0.16 20632 1 0.03 -1 -1 33916 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 26.5 MiB 2.20 1209 16340 4806 9520 2014 64.9 MiB 0.14 0.00 5.15268 -160.098 -5.15268 5.15268 0.91 0.000523556 0.000476336 0.045859 0.0417434 36 2942 21 6.89349e+06 310065 648988. 2245.63 2.00 0.143261 0.125975 26050 158493 -1 2466 20 1667 2432 179214 39064 4.17665 4.17665 -150.568 -4.17665 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0235596 0.0207786 151 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 9.66 vpr 64.93 MiB -1 -1 0.17 20540 1 0.03 -1 -1 33556 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 26.5 MiB 1.93 1151 8919 1954 6160 805 64.9 MiB 0.09 0.00 5.44797 -153.538 -5.44797 5.44797 0.92 0.000530484 0.000482884 0.025914 0.0236522 36 2961 43 6.89349e+06 324158 648988. 2245.63 4.47 0.208658 0.180968 26050 158493 -1 2536 20 1772 2694 216458 46150 4.81329 4.81329 -151.9 -4.81329 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0222936 0.0197026 150 48 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 8.74 vpr 64.50 MiB -1 -1 0.15 20168 1 0.03 -1 -1 33680 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 25.9 MiB 2.00 948 12416 4023 6894 1499 64.5 MiB 0.10 0.00 4.44301 -126.97 -4.44301 4.44301 0.93 0.000436737 0.00039972 0.0333251 0.0304355 34 2281 31 6.89349e+06 211408 618332. 2139.56 3.52 0.155353 0.135353 25762 151098 -1 1975 18 938 1316 114947 24563 3.09196 3.09196 -114.975 -3.09196 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0177174 0.015648 105 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.76 vpr 64.72 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33812 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 26.2 MiB 1.87 1059 14483 4851 7224 2408 64.7 MiB 0.11 0.00 3.67535 -124.181 -3.67535 3.67535 0.91 0.000468268 0.000426434 0.0389668 0.0355533 34 2699 22 6.89349e+06 281877 618332. 2139.56 1.69 0.142147 0.12439 25762 151098 -1 2149 19 1458 2031 146792 32793 3.23845 3.23845 -122.463 -3.23845 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0200421 0.0177055 131 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 9.90 vpr 65.13 MiB -1 -1 0.15 20636 1 0.03 -1 -1 33772 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 26.6 MiB 2.51 1024 15493 4307 9520 1666 65.1 MiB 0.12 0.00 3.806 -108.658 -3.806 3.806 0.92 0.000446943 0.000410885 0.039993 0.0363992 36 2360 20 6.89349e+06 366440 648988. 2245.63 4.13 0.192819 0.167053 26050 158493 -1 2000 19 1287 2025 142728 32893 3.04661 3.04661 -105.245 -3.04661 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0206384 0.018266 142 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 6.37 vpr 64.54 MiB -1 -1 0.15 20288 1 0.03 -1 -1 34008 -1 -1 23 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 26.1 MiB 1.57 918 12323 3941 6490 1892 64.5 MiB 0.09 0.00 4.39675 -112.391 -4.39675 4.39675 0.93 0.000433295 0.00039776 0.0306922 0.0280059 34 2147 21 6.89349e+06 324158 618332. 2139.56 1.60 0.119001 0.103849 25762 151098 -1 1908 20 1138 1995 161837 33568 3.70146 3.70146 -109.98 -3.70146 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0188192 0.0165957 119 20 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.89 vpr 64.76 MiB -1 -1 0.15 20468 1 0.03 -1 -1 33528 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 26.3 MiB 2.87 924 9083 2508 6037 538 64.8 MiB 0.09 0.00 4.56532 -133.276 -4.56532 4.56532 0.90 0.00044996 0.000410079 0.0248138 0.0226449 34 2736 29 6.89349e+06 295971 618332. 2139.56 1.88 0.129395 0.112496 25762 151098 -1 2186 20 1812 2507 189331 42418 4.31514 4.31514 -143.22 -4.31514 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.020237 0.0177991 130 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 8.12 vpr 64.96 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33588 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 26.4 MiB 2.46 1216 6123 1500 4259 364 65.0 MiB 0.07 0.00 3.91264 -134.898 -3.91264 3.91264 0.91 0.000493189 0.000450589 0.018287 0.0166719 36 2645 23 6.89349e+06 281877 648988. 2245.63 2.43 0.137606 0.120787 26050 158493 -1 2362 29 2125 2874 333718 104841 3.00176 3.00176 -122.65 -3.00176 0 0 828058. 2865.25 0.32 0.12 0.15 -1 -1 0.32 0.0295196 0.0259611 138 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.90 vpr 64.20 MiB -1 -1 0.16 20000 1 0.03 -1 -1 33956 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65736 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 25.8 MiB 0.79 941 8614 1787 6108 719 64.2 MiB 0.08 0.00 4.73282 -132.206 -4.73282 4.73282 0.91 0.000454731 0.000415188 0.0203598 0.0185437 30 2255 21 6.89349e+06 436909 556674. 1926.21 1.00 0.0782981 0.0684347 25186 138497 -1 1974 21 1018 1913 116086 27921 3.52565 3.52565 -121.514 -3.52565 0 0 706193. 2443.58 0.29 0.06 0.14 -1 -1 0.29 0.0201692 0.0178121 129 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 9.99 vpr 64.86 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33988 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 26.2 MiB 2.42 946 14295 4865 6147 3283 64.9 MiB 0.12 0.00 4.80372 -148.142 -4.80372 4.80372 0.90 0.000494335 0.000450718 0.0392866 0.0358666 38 2827 33 6.89349e+06 324158 678818. 2348.85 4.33 0.200178 0.173888 26626 170182 -1 2148 20 1613 2415 172416 40549 3.8457 3.8457 -136.281 -3.8457 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0220588 0.0194669 148 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 9.82 vpr 65.11 MiB -1 -1 0.16 20564 1 0.03 -1 -1 33768 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 26.6 MiB 2.20 1348 15391 4691 8221 2479 65.1 MiB 0.15 0.00 5.48061 -170.804 -5.48061 5.48061 0.91 0.000538051 0.000486763 0.051502 0.0476288 36 2971 28 6.89349e+06 380534 648988. 2245.63 4.31 0.229235 0.200842 26050 158493 -1 2521 21 1856 2673 200167 44694 4.23189 4.23189 -155.088 -4.23189 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0253981 0.0224896 164 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 9.99 vpr 65.29 MiB -1 -1 0.16 20444 1 0.03 -1 -1 33916 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 26.8 MiB 2.34 1348 16572 5279 8759 2534 65.3 MiB 0.15 0.00 4.59633 -149.535 -4.59633 4.59633 0.91 0.000542029 0.000492716 0.0475503 0.0432808 36 3220 22 6.89349e+06 366440 648988. 2245.63 4.33 0.217605 0.189312 26050 158493 -1 2729 22 1927 2866 248487 51644 3.7334 3.7334 -140.921 -3.7334 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.026619 0.0235422 164 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.00 vpr 64.38 MiB -1 -1 0.14 20692 1 0.03 -1 -1 34056 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 26.0 MiB 2.16 929 11603 3304 7249 1050 64.4 MiB 0.10 0.00 4.22559 -126.079 -4.22559 4.22559 0.91 0.0004284 0.000392859 0.0294275 0.0269077 34 2274 21 6.89349e+06 295971 618332. 2139.56 1.69 0.121218 0.106063 25762 151098 -1 1994 21 1138 1586 126934 27558 3.29711 3.29711 -116.443 -3.29711 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0193843 0.0170703 112 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 8.05 vpr 65.25 MiB -1 -1 0.16 20868 1 0.03 -1 -1 33944 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 26.9 MiB 3.12 1157 9838 2412 6479 947 65.2 MiB 0.10 0.00 5.48387 -163.439 -5.48387 5.48387 0.91 0.000529417 0.000482479 0.029272 0.026675 34 2914 31 6.89349e+06 366440 618332. 2139.56 1.68 0.131967 0.114779 25762 151098 -1 2394 19 1932 2689 190948 42993 4.36915 4.36915 -156.668 -4.36915 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0235807 0.0209205 162 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.94 vpr 64.85 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33588 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 26.3 MiB 1.54 1128 9303 2368 6110 825 64.8 MiB 0.09 0.00 5.14805 -150.89 -5.14805 5.14805 0.92 0.00049571 0.000451587 0.026231 0.0239012 34 2876 34 6.89349e+06 324158 618332. 2139.56 2.19 0.149706 0.13046 25762 151098 -1 2362 19 1593 2666 208387 46147 3.97449 3.97449 -137.61 -3.97449 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0211728 0.0187012 139 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.24 vpr 64.65 MiB -1 -1 0.17 20604 1 0.03 -1 -1 33760 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66200 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 26.1 MiB 2.18 1160 14828 4291 8520 2017 64.6 MiB 0.13 0.00 5.04939 -147.832 -5.04939 5.04939 0.90 0.000502443 0.000458195 0.0416159 0.0378506 34 2696 30 6.89349e+06 324158 618332. 2139.56 1.80 0.153844 0.134094 25762 151098 -1 2222 21 1562 2377 151469 35667 4.18485 4.18485 -141.313 -4.18485 0 0 787024. 2723.27 0.33 0.07 0.16 -1 -1 0.33 0.0233412 0.0205666 142 43 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 7.99 vpr 65.00 MiB -1 -1 0.17 20584 1 0.03 -1 -1 33924 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 26.6 MiB 2.39 1280 15731 5729 7457 2545 65.0 MiB 0.15 0.00 4.67272 -140.819 -4.67272 4.67272 0.92 0.000518267 0.000471045 0.0448646 0.0408829 36 2891 31 6.89349e+06 380534 648988. 2245.63 2.31 0.174184 0.152862 26050 158493 -1 2460 19 1798 2628 192195 42175 3.84329 3.84329 -132.966 -3.84329 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0223213 0.0197217 162 78 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 8.70 vpr 65.04 MiB -1 -1 0.16 20432 1 0.03 -1 -1 33748 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 26.7 MiB 3.47 1143 12183 3367 8279 537 65.0 MiB 0.12 0.00 5.41467 -156.077 -5.41467 5.41467 0.89 0.000535616 0.000488837 0.0353168 0.032128 34 3317 24 6.89349e+06 324158 618332. 2139.56 1.98 0.131411 0.114886 25762 151098 -1 2550 21 1877 2841 221059 51776 4.56189 4.56189 -155.485 -4.56189 0 0 787024. 2723.27 0.31 0.08 0.16 -1 -1 0.31 0.0236245 0.020824 155 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 9.25 vpr 65.36 MiB -1 -1 0.17 20620 1 0.03 -1 -1 33752 -1 -1 30 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 26.9 MiB 2.02 1279 8047 1945 5583 519 65.4 MiB 0.08 0.00 4.65125 -137.416 -4.65125 4.65125 0.90 0.000511352 0.000465794 0.022532 0.0205703 36 2926 21 6.89349e+06 422815 648988. 2245.63 4.02 0.177834 0.153411 26050 158493 -1 2441 18 1475 2021 137313 30895 3.6201 3.6201 -125.951 -3.6201 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0215036 0.0190201 166 79 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.71 vpr 64.48 MiB -1 -1 0.14 20224 1 0.03 -1 -1 34028 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 26.0 MiB 0.62 782 13906 5117 6523 2266 64.5 MiB 0.10 0.00 4.15903 -122.769 -4.15903 4.15903 0.89 0.000398928 0.000365223 0.033202 0.0303036 30 2007 46 6.89349e+06 239595 556674. 1926.21 1.01 0.0981745 0.0860039 25186 138497 -1 1575 20 861 1362 93836 21337 2.75456 2.75456 -106.315 -2.75456 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0171472 0.0151031 96 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.94 vpr 65.09 MiB -1 -1 0.15 20796 1 0.03 -1 -1 33712 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 26.7 MiB 2.00 1307 13157 3552 8195 1410 65.1 MiB 0.13 0.00 5.64852 -169.418 -5.64852 5.64852 0.91 0.000521722 0.000475996 0.0377615 0.0345314 36 3147 47 6.89349e+06 352346 648988. 2245.63 2.68 0.192948 0.169745 26050 158493 -1 2616 22 1989 2734 228443 48831 4.51639 4.51639 -156.045 -4.51639 0 0 828058. 2865.25 0.33 0.09 0.15 -1 -1 0.33 0.0267745 0.023679 156 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.56 vpr 65.29 MiB -1 -1 0.17 20776 1 0.03 -1 -1 33956 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 26.8 MiB 3.73 1377 7415 1651 5387 377 65.3 MiB 0.09 0.00 5.30157 -175.126 -5.30157 5.30157 0.90 0.000510888 0.000461465 0.0233232 0.0212761 36 3393 25 6.89349e+06 352346 648988. 2245.63 2.57 0.152323 0.132413 26050 158493 -1 2835 22 2229 3205 258901 54853 4.72005 4.72005 -173.543 -4.72005 0 0 828058. 2865.25 0.32 0.09 0.16 -1 -1 0.32 0.0266574 0.0234914 171 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.90 vpr 64.42 MiB -1 -1 0.14 20636 1 0.03 -1 -1 33920 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65968 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 25.8 MiB 2.97 743 12720 4130 6895 1695 64.4 MiB 0.10 0.00 4.14342 -113.505 -4.14342 4.14342 0.91 0.000404422 0.000367657 0.0313488 0.0285786 34 2089 40 6.89349e+06 253689 618332. 2139.56 1.77 0.123321 0.107838 25762 151098 -1 1703 20 1004 1324 102159 24850 3.09861 3.09861 -104.339 -3.09861 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0187969 0.0165966 108 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.92 vpr 64.68 MiB -1 -1 0.14 20100 1 0.03 -1 -1 33988 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 26.1 MiB 0.71 706 7823 1736 5421 666 64.7 MiB 0.06 0.00 4.10083 -117.838 -4.10083 4.10083 0.91 0.000381919 0.000349067 0.018342 0.0167644 30 1853 22 6.89349e+06 281877 556674. 1926.21 0.97 0.068233 0.0596094 25186 138497 -1 1635 19 956 1623 99531 23093 2.83491 2.83491 -105.508 -2.83491 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0163872 0.0144339 99 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 7.52 vpr 65.16 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33868 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 26.6 MiB 2.32 1103 13719 4794 6980 1945 65.2 MiB 0.12 0.00 4.58942 -145.059 -4.58942 4.58942 0.94 0.000518355 0.000471592 0.039185 0.0357693 34 2800 20 6.89349e+06 324158 618332. 2139.56 1.72 0.125463 0.110115 25762 151098 -1 2436 19 1793 2593 211212 45957 3.5781 3.5781 -137.613 -3.5781 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0226975 0.0201782 145 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 7.18 vpr 65.07 MiB -1 -1 0.14 20492 1 0.03 -1 -1 33772 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 26.8 MiB 2.07 1083 8919 2056 5474 1389 65.1 MiB 0.08 0.00 4.89424 -142.728 -4.89424 4.89424 0.94 0.000528096 0.000480377 0.026587 0.0242552 34 3008 43 6.89349e+06 324158 618332. 2139.56 1.91 0.158614 0.137926 25762 151098 -1 2323 19 1527 2220 172266 41413 4.43665 4.43665 -142.524 -4.43665 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0222926 0.0197292 149 53 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 9.42 vpr 65.01 MiB -1 -1 0.16 20608 1 0.03 -1 -1 33596 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.4 MiB 0.79 1033 19356 5199 10890 3267 65.0 MiB 0.17 0.00 5.32917 -146.087 -5.32917 5.32917 0.92 0.000530921 0.00048738 0.0455868 0.0415565 30 3041 40 6.89349e+06 507378 556674. 1926.21 5.39 0.228303 0.200677 25186 138497 -1 2185 22 1788 3363 221964 52375 4.11544 4.11544 -138.805 -4.11544 0 0 706193. 2443.58 0.29 0.08 0.13 -1 -1 0.29 0.0246977 0.0217333 157 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 6.64 vpr 64.78 MiB -1 -1 0.17 20296 1 0.03 -1 -1 33696 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 26.2 MiB 1.77 1151 13143 3782 7948 1413 64.8 MiB 0.11 0.00 3.95739 -118.903 -3.95739 3.95739 0.91 0.000455253 0.000415964 0.0328957 0.0299806 34 2659 22 6.89349e+06 352346 618332. 2139.56 1.68 0.130924 0.113994 25762 151098 -1 2150 18 1518 2207 150480 33588 3.0457 3.0457 -108.49 -3.0457 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.018766 0.0165526 136 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.61 vpr 64.63 MiB -1 -1 0.15 20188 1 0.03 -1 -1 34244 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 26.1 MiB 1.66 755 13768 6057 6665 1046 64.6 MiB 0.09 0.00 4.43859 -116.143 -4.43859 4.43859 0.91 0.000386406 0.000351898 0.0332255 0.0303163 34 2141 23 6.89349e+06 281877 618332. 2139.56 1.80 0.118803 0.103478 25762 151098 -1 1630 19 1192 1703 130803 31060 3.6153 3.6153 -113.605 -3.6153 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0164976 0.0145081 106 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 8.86 vpr 65.41 MiB -1 -1 0.15 20988 1 0.03 -1 -1 33712 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 26.9 MiB 3.21 1514 18043 5658 10071 2314 65.4 MiB 0.18 0.00 4.58581 -147.507 -4.58581 4.58581 0.88 0.000560038 0.00051087 0.0537383 0.0490532 34 4194 50 6.89349e+06 380534 618332. 2139.56 2.40 0.190931 0.16852 25762 151098 -1 3210 21 1923 3102 270129 56903 4.10359 4.10359 -149.648 -4.10359 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0274047 0.0241109 185 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.69 vpr 65.01 MiB -1 -1 0.17 20588 1 0.03 -1 -1 33728 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 26.7 MiB 2.27 1122 15639 4714 8375 2550 65.0 MiB 0.14 0.00 5.51467 -162.715 -5.51467 5.51467 0.94 0.00052549 0.000479335 0.0447808 0.0408054 34 2973 28 6.89349e+06 338252 618332. 2139.56 2.10 0.167834 0.147189 25762 151098 -1 2496 20 2015 2776 220362 49269 4.51165 4.51165 -152.253 -4.51165 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0231239 0.020389 155 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.44 vpr 64.73 MiB -1 -1 0.16 20508 1 0.03 -1 -1 33988 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 26.2 MiB 2.31 1207 14779 4497 8341 1941 64.7 MiB 0.13 0.00 4.36565 -143.578 -4.36565 4.36565 0.92 0.000484965 0.000441592 0.0403824 0.0367636 34 2807 25 6.89349e+06 295971 618332. 2139.56 1.90 0.147697 0.128997 25762 151098 -1 2289 22 1533 2072 160406 36055 3.3748 3.3748 -129.801 -3.3748 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0218574 0.0192134 137 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.42 vpr 64.93 MiB -1 -1 0.15 20296 1 0.03 -1 -1 33828 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 26.4 MiB 2.33 1106 13291 3686 7595 2010 64.9 MiB 0.11 0.00 5.17406 -143.598 -5.17406 5.17406 0.92 0.000486425 0.000445236 0.036721 0.0335385 34 2843 37 6.89349e+06 295971 618332. 2139.56 1.88 0.138566 0.122052 25762 151098 -1 2401 20 1346 2012 169798 37394 3.71046 3.71046 -130.057 -3.71046 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0220506 0.019502 135 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.15 vpr 65.04 MiB -1 -1 0.16 20520 1 0.03 -1 -1 33824 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 26.7 MiB 2.21 1277 13949 4663 6540 2746 65.0 MiB 0.12 0.00 4.6119 -129.607 -4.6119 4.6119 0.90 0.000525543 0.000478349 0.0388922 0.0354516 34 2960 24 6.89349e+06 366440 618332. 2139.56 1.71 0.153666 0.133864 25762 151098 -1 2590 20 1709 2564 186340 41948 3.79686 3.79686 -129.409 -3.79686 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0230019 0.0202709 163 46 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.27 vpr 64.58 MiB -1 -1 0.16 20756 1 0.03 -1 -1 33800 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66128 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 26.1 MiB 2.21 1057 10103 2410 7187 506 64.6 MiB 0.09 0.00 4.37294 -118.646 -4.37294 4.37294 0.91 0.000473147 0.000431155 0.0269305 0.0245655 34 2982 24 6.89349e+06 338252 618332. 2139.56 1.88 0.130906 0.113886 25762 151098 -1 2173 23 1384 2295 155687 36909 3.6794 3.6794 -116.416 -3.6794 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0230132 0.0202117 140 46 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 8.71 vpr 65.03 MiB -1 -1 0.14 20544 1 0.03 -1 -1 33976 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 26.5 MiB 2.76 1146 16340 5897 7961 2482 65.0 MiB 0.15 0.00 4.90628 -154.007 -4.90628 4.90628 0.92 0.000510493 0.000464111 0.0461621 0.0420963 34 3223 50 6.89349e+06 310065 618332. 2139.56 2.71 0.191136 0.166451 25762 151098 -1 2505 20 1732 2711 217498 48057 3.8815 3.8815 -143.675 -3.8815 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.022952 0.020209 148 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 10.00 vpr 65.14 MiB -1 -1 0.14 20604 1 0.03 -1 -1 34024 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 26.7 MiB 2.81 1236 16371 6869 8593 909 65.1 MiB 0.15 0.00 4.19324 -136.834 -4.19324 4.19324 0.89 0.000534336 0.000486731 0.0462261 0.042145 36 2890 25 6.89349e+06 366440 648988. 2245.63 4.02 0.225383 0.197217 26050 158493 -1 2431 20 1700 2341 156685 36663 3.17181 3.17181 -126.921 -3.17181 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0244416 0.0217171 167 59 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.18 vpr 64.13 MiB -1 -1 0.14 20212 1 0.03 -1 -1 33564 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65672 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 25.6 MiB 1.57 881 7081 1573 4782 726 64.1 MiB 0.06 0.00 4.21387 -125.832 -4.21387 4.21387 0.91 0.000406231 0.000371462 0.0183224 0.0167999 34 1947 20 6.89349e+06 281877 618332. 2139.56 1.50 0.102336 0.0888373 25762 151098 -1 1668 20 1336 1773 132678 29656 3.02156 3.02156 -111.286 -3.02156 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0180219 0.0158987 110 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 8.77 vpr 64.75 MiB -1 -1 0.16 20632 1 0.03 -1 -1 33672 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 26.3 MiB 1.41 868 7770 1747 5581 442 64.7 MiB 0.07 0.00 4.24583 -126.348 -4.24583 4.24583 0.89 0.000468732 0.000428405 0.0213421 0.0194611 36 2425 28 6.89349e+06 281877 648988. 2245.63 4.23 0.190323 0.16525 26050 158493 -1 1953 21 1685 2287 171941 40763 3.4029 3.4029 -121.453 -3.4029 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0210934 0.0185946 125 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.82 vpr 64.57 MiB -1 -1 0.15 20148 1 0.03 -1 -1 33800 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 26.1 MiB 1.67 954 15337 5910 7043 2384 64.6 MiB 0.12 0.00 4.83108 -133.604 -4.83108 4.83108 0.88 0.000460406 0.000420907 0.0404204 0.0368873 34 3035 40 6.89349e+06 310065 618332. 2139.56 2.05 0.172696 0.151828 25762 151098 -1 2125 23 1627 2422 177736 47190 3.74936 3.74936 -130.315 -3.74936 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0239492 0.0211413 137 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 8.09 vpr 64.34 MiB -1 -1 0.14 20312 1 0.03 -1 -1 33644 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65880 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 25.8 MiB 3.14 859 12636 4650 6385 1601 64.3 MiB 0.10 0.00 4.13932 -113.849 -4.13932 4.13932 0.94 0.000371527 0.000339345 0.0312884 0.0285447 34 2181 32 6.89349e+06 267783 618332. 2139.56 1.73 0.128541 0.11205 25762 151098 -1 1805 22 1129 1557 124622 29306 2.97321 2.97321 -102.396 -2.97321 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0190872 0.0166954 108 25 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 9.51 vpr 64.51 MiB -1 -1 0.15 20372 1 0.03 -1 -1 33860 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66056 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 26.1 MiB 2.31 931 12898 3547 7775 1576 64.5 MiB 0.10 0.00 4.14413 -130.005 -4.14413 4.14413 0.91 0.000421956 0.000385364 0.0327135 0.0298696 36 2328 29 6.89349e+06 253689 648988. 2245.63 4.03 0.163736 0.141703 26050 158493 -1 2011 21 1443 2040 168261 36117 3.30996 3.30996 -124.621 -3.30996 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.019428 0.0170894 114 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.23 vpr 64.90 MiB -1 -1 0.17 20724 1 0.03 -1 -1 33708 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 26.5 MiB 1.90 1223 9197 2351 6452 394 64.9 MiB 0.09 0.00 4.60737 -145.998 -4.60737 4.60737 0.88 0.00052783 0.000472976 0.0271268 0.0247183 34 2913 27 6.89349e+06 366440 618332. 2139.56 1.85 0.157723 0.138144 25762 151098 -1 2414 23 2100 2928 239147 52425 4.03295 4.03295 -146.125 -4.03295 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0268279 0.0234725 160 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.08 vpr 64.63 MiB -1 -1 0.14 20124 1 0.03 -1 -1 34044 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 26.0 MiB 2.13 913 11088 2855 7004 1229 64.6 MiB 0.08 0.00 3.57635 -113.738 -3.57635 3.57635 0.88 0.000408377 0.000373616 0.0274304 0.0249949 30 2273 20 6.89349e+06 239595 556674. 1926.21 0.95 0.0783912 0.068854 25186 138497 -1 1905 20 1065 1491 97174 22413 2.89331 2.89331 -107.732 -2.89331 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0170135 0.0150109 108 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.46 vpr 65.15 MiB -1 -1 0.16 20380 1 0.03 -1 -1 33796 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 26.6 MiB 2.16 1210 14261 3846 8261 2154 65.1 MiB 0.13 0.00 4.18989 -126.928 -4.18989 4.18989 0.93 0.000503017 0.000458739 0.0404924 0.0369117 34 3022 24 6.89349e+06 310065 618332. 2139.56 1.67 0.128633 0.112786 25762 151098 -1 2489 20 1414 2094 158378 34676 3.45175 3.45175 -125.893 -3.45175 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0220667 0.0194551 146 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 7.73 vpr 65.18 MiB -1 -1 0.18 20456 1 0.03 -1 -1 33868 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 26.7 MiB 2.32 1307 17117 5534 9059 2524 65.2 MiB 0.16 0.00 4.84686 -157.681 -4.84686 4.84686 0.91 0.000538049 0.000488859 0.0502798 0.0457149 34 3332 30 6.89349e+06 366440 618332. 2139.56 2.07 0.184135 0.161139 25762 151098 -1 2667 23 2249 3229 236032 53031 4.41039 4.41039 -159.173 -4.41039 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0282068 0.0248612 170 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 7.64 vpr 64.89 MiB -1 -1 0.15 20252 1 0.03 -1 -1 33984 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 26.4 MiB 2.83 1086 13432 3424 8813 1195 64.9 MiB 0.11 0.00 3.821 -117.953 -3.821 3.821 0.91 0.000439208 0.000400276 0.0347212 0.031595 34 2606 27 6.89349e+06 253689 618332. 2139.56 1.67 0.137605 0.119949 25762 151098 -1 2143 20 1427 1932 136459 31615 2.80696 2.80696 -111.298 -2.80696 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0210199 0.0185709 124 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 8.57 vpr 64.70 MiB -1 -1 0.15 20404 1 0.03 -1 -1 33704 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66252 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 26.3 MiB 1.32 871 12898 3868 7278 1752 64.7 MiB 0.10 0.00 4.12213 -126.038 -4.12213 4.12213 0.92 0.000451206 0.00041309 0.0342206 0.0312897 36 2177 21 6.89349e+06 253689 648988. 2245.63 4.03 0.168656 0.146798 26050 158493 -1 1933 21 1325 1987 169565 36435 3.23035 3.23035 -113.999 -3.23035 0 0 828058. 2865.25 0.32 0.06 0.16 -1 -1 0.32 0.0197822 0.0173805 115 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 6.81 vpr 65.00 MiB -1 -1 0.15 20256 1 0.03 -1 -1 33636 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 26.5 MiB 2.01 1006 10292 2539 6455 1298 65.0 MiB 0.09 0.00 4.93133 -134.302 -4.93133 4.93133 0.93 0.000485107 0.000441747 0.0280248 0.0254941 34 2482 22 6.89349e+06 310065 618332. 2139.56 1.61 0.132024 0.114876 25762 151098 -1 2102 18 1269 1785 114938 27680 3.75856 3.75856 -129.967 -3.75856 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0199988 0.0177511 133 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 7.06 vpr 64.99 MiB -1 -1 0.16 20496 1 0.03 -1 -1 33712 -1 -1 25 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 26.4 MiB 2.26 1105 14450 4218 8203 2029 65.0 MiB 0.12 0.00 4.04968 -110.899 -4.04968 4.04968 0.90 0.000459865 0.000420367 0.0370905 0.0338478 34 2657 23 6.89349e+06 352346 618332. 2139.56 1.64 0.142206 0.124197 25762 151098 -1 2195 21 1346 1980 146862 32855 3.15146 3.15146 -109.077 -3.15146 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0223471 0.0197396 138 49 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 15.12 vpr 64.76 MiB -1 -1 0.16 20672 1 0.03 -1 -1 33456 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 26.3 MiB 2.30 1170 10033 2409 6880 744 64.8 MiB 0.10 0.00 5.6505 -176.695 -5.6505 5.6505 0.90 0.000558091 0.000506719 0.0305673 0.0278868 34 3979 39 6.89349e+06 338252 618332. 2139.56 9.57 0.29377 0.253877 25762 151098 -1 2902 23 2152 3336 270669 62426 4.84719 4.84719 -171.492 -4.84719 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0271785 0.0239091 166 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 5.24 vpr 64.61 MiB -1 -1 0.14 20084 1 0.03 -1 -1 33740 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 26.1 MiB 0.65 815 9368 2443 5733 1192 64.6 MiB 0.07 0.00 3.49795 -108.682 -3.49795 3.49795 0.90 0.000381949 0.00034856 0.0216447 0.0197439 34 1814 25 6.89349e+06 239595 618332. 2139.56 1.52 0.103031 0.0895431 25762 151098 -1 1577 19 774 1207 83395 19438 2.56436 2.56436 -99.3758 -2.56436 0 0 787024. 2723.27 0.31 0.04 0.14 -1 -1 0.31 0.0156408 0.0137878 92 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 7.60 vpr 65.50 MiB -1 -1 0.16 20576 1 0.03 -1 -1 33756 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 27.0 MiB 2.20 1425 17431 5130 10160 2141 65.5 MiB 0.17 0.00 5.66786 -177.951 -5.66786 5.66786 0.90 0.000566549 0.00051475 0.0510133 0.0465494 34 3494 40 6.89349e+06 380534 618332. 2139.56 2.08 0.192951 0.168638 25762 151098 -1 2800 23 2105 2897 221520 49926 5.00324 5.00324 -174.642 -5.00324 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0278375 0.0244536 175 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 10.21 vpr 64.88 MiB -1 -1 0.16 20392 1 0.03 -1 -1 33580 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 26.5 MiB 2.60 1387 11223 3117 6896 1210 64.9 MiB 0.10 0.00 4.854 -168.258 -4.854 4.854 0.90 0.000528965 0.000482425 0.0326197 0.0297221 38 2917 25 6.89349e+06 324158 678818. 2348.85 4.36 0.234696 0.203999 26626 170182 -1 2562 24 1921 2497 168616 37648 4.42073 4.42073 -166.036 -4.42073 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0272939 0.0240571 160 93 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 9.69 vpr 65.12 MiB -1 -1 0.16 20476 1 0.03 -1 -1 33868 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 26.8 MiB 2.22 1228 16529 5130 9253 2146 65.1 MiB 0.15 0.00 4.18062 -130.52 -4.18062 4.18062 0.93 0.000528953 0.000479595 0.047758 0.0435006 36 2679 46 6.89349e+06 310065 648988. 2245.63 4.19 0.230286 0.200561 26050 158493 -1 2371 19 1474 2061 158969 34359 3.14201 3.14201 -122.314 -3.14201 0 0 828058. 2865.25 0.32 0.06 0.16 -1 -1 0.32 0.022436 0.0198614 152 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 8.30 vpr 65.00 MiB -1 -1 0.17 20328 1 0.03 -1 -1 33704 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 26.6 MiB 2.96 1277 13758 3654 8100 2004 65.0 MiB 0.15 0.00 5.8432 -174.13 -5.8432 5.8432 0.91 0.000543408 0.000494105 0.0410499 0.0374694 36 3134 30 6.89349e+06 366440 648988. 2245.63 2.02 0.160903 0.140916 26050 158493 -1 2741 21 2065 3322 272282 57654 4.69455 4.69455 -160.869 -4.69455 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0260269 0.0229415 172 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.65 vpr 64.24 MiB -1 -1 0.15 20404 1 0.03 -1 -1 33736 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65784 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 25.8 MiB 1.01 693 11650 3455 7011 1184 64.2 MiB 0.08 0.00 3.03066 -95.0101 -3.03066 3.03066 0.91 0.000355575 0.000325685 0.0270215 0.024705 34 1802 38 6.89349e+06 211408 618332. 2139.56 1.54 0.0943984 0.082015 25762 151098 -1 1455 17 687 909 76685 16928 2.15212 2.15212 -89.3307 -2.15212 0 0 787024. 2723.27 0.30 0.04 0.15 -1 -1 0.30 0.0139454 0.0122573 82 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 6.23 vpr 64.86 MiB -1 -1 0.15 20256 1 0.03 -1 -1 33644 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 26.5 MiB 1.42 726 8270 1936 5996 338 64.9 MiB 0.07 0.00 4.60327 -135.822 -4.60327 4.60327 0.91 0.000437168 0.000397525 0.0218836 0.0199621 34 1980 21 6.89349e+06 281877 618332. 2139.56 1.61 0.11251 0.0973858 25762 151098 -1 1602 32 1870 2906 352863 137449 3.522 3.522 -126.735 -3.522 0 0 787024. 2723.27 0.30 0.12 0.15 -1 -1 0.30 0.0275969 0.0240551 119 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 7.43 vpr 64.77 MiB -1 -1 0.14 20496 1 0.03 -1 -1 33556 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 26.3 MiB 2.11 1036 12008 3645 6699 1664 64.8 MiB 0.11 0.00 4.33865 -139.218 -4.33865 4.33865 0.92 0.000459522 0.000418766 0.0324184 0.0295656 34 2978 44 6.89349e+06 253689 618332. 2139.56 2.11 0.149675 0.130275 25762 151098 -1 2428 21 1589 2812 229790 50098 3.72055 3.72055 -142.277 -3.72055 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0204283 0.0179497 120 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.95 vpr 64.45 MiB -1 -1 0.14 20316 1 0.03 -1 -1 33864 -1 -1 21 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65992 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 26.0 MiB 1.29 532 11034 4110 4271 2653 64.4 MiB 0.07 0.00 3.6784 -85.8398 -3.6784 3.6784 0.89 0.000340654 0.000309309 0.0239586 0.0218907 34 1620 27 6.89349e+06 295971 618332. 2139.56 1.62 0.100809 0.0872769 25762 151098 -1 1248 20 849 1302 92392 24875 2.98371 2.98371 -81.2823 -2.98371 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0151488 0.0132978 92 19 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 10.00 vpr 65.28 MiB -1 -1 0.17 20464 1 0.03 -1 -1 33728 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 26.9 MiB 2.54 1378 14871 4869 7700 2302 65.3 MiB 0.14 0.00 4.565 -139.747 -4.565 4.565 0.88 0.000508007 0.000461897 0.0416996 0.0380571 38 3057 23 6.89349e+06 324158 678818. 2348.85 4.24 0.211108 0.183605 26626 170182 -1 2632 19 1727 2576 176374 38187 3.68256 3.68256 -131.929 -3.68256 0 0 902133. 3121.57 0.32 0.07 0.17 -1 -1 0.32 0.0227228 0.0200685 161 69 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.23 vpr 65.32 MiB -1 -1 0.13 20592 1 0.03 -1 -1 33692 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 26.8 MiB 2.33 1414 15617 4439 9113 2065 65.3 MiB 0.14 0.00 4.8901 -157.733 -4.8901 4.8901 0.85 0.000502205 0.000459814 0.0407768 0.0370707 34 3269 24 6.89349e+06 408721 618332. 2139.56 1.75 0.166597 0.14485 25762 151098 -1 2694 20 1849 2547 181701 41207 4.21289 4.21289 -153.322 -4.21289 0 0 787024. 2723.27 0.30 0.07 0.16 -1 -1 0.30 0.0249888 0.0220473 179 86 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 5.62 vpr 62.68 MiB -1 -1 0.22 17644 14 0.27 -1 -1 32900 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1279 6823 1440 4905 478 62.7 MiB 0.08 0.00 7.95704 -163.811 -7.95704 7.95704 0.64 0.000902389 0.00083636 0.0344606 0.031912 36 3193 16 6.55708e+06 325485 612192. 2118.31 2.16 0.203512 0.176225 22750 144809 -1 2849 34 1240 3807 386059 168230 6.88996 6.88996 -155.56 -6.88996 0 0 782063. 2706.10 0.20 0.16 0.13 -1 -1 0.20 0.0545367 0.0472303 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 5.56 vpr 62.51 MiB -1 -1 0.26 17588 14 0.28 -1 -1 32880 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 24.0 MiB 0.48 1272 10173 2471 6545 1157 62.5 MiB 0.10 0.00 8.16064 -158.468 -8.16064 8.16064 0.63 0.000895349 0.000826618 0.0471883 0.0436956 36 3251 22 6.55708e+06 373705 612192. 2118.31 1.95 0.223988 0.194373 22750 144809 -1 2871 28 1569 4797 434858 167668 7.27044 7.27044 -149.639 -7.27044 0 0 782063. 2706.10 0.20 0.16 0.12 -1 -1 0.20 0.046782 0.0406998 184 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 6.05 vpr 62.42 MiB -1 -1 0.23 17344 11 0.22 -1 -1 33024 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1375 11748 3042 6701 2005 62.4 MiB 0.11 0.00 6.90223 -139.699 -6.90223 6.90223 0.63 0.000901418 0.000834301 0.0561511 0.0520026 28 4030 31 6.55708e+06 313430 500653. 1732.36 2.73 0.18013 0.158215 21310 115450 -1 3257 20 1688 5676 395500 88119 6.50178 6.50178 -144.577 -6.50178 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0367008 0.0321419 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 5.99 vpr 62.45 MiB -1 -1 0.26 17512 12 0.29 -1 -1 32936 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 23.9 MiB 0.57 1263 4783 870 3608 305 62.4 MiB 0.06 0.00 7.83974 -145.087 -7.83974 7.83974 0.63 0.000906685 0.000840812 0.0246669 0.0228533 36 3198 28 6.55708e+06 361650 612192. 2118.31 2.37 0.21186 0.182666 22750 144809 -1 2762 18 1264 4136 214917 50074 7.0397 7.0397 -139.752 -7.0397 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.034316 0.0301343 190 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 5.86 vpr 62.60 MiB -1 -1 0.22 17608 13 0.28 -1 -1 32776 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 24.1 MiB 0.47 1445 11111 2879 6967 1265 62.6 MiB 0.11 0.00 7.83935 -165.421 -7.83935 7.83935 0.63 0.000977509 0.000904574 0.0540974 0.05001 28 4394 44 6.55708e+06 373705 500653. 1732.36 2.36 0.207488 0.181481 21310 115450 -1 3682 20 1754 5020 353252 92662 6.8405 6.8405 -162.584 -6.8405 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0401928 0.0352959 210 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.66 vpr 62.36 MiB -1 -1 0.26 17588 13 0.31 -1 -1 32660 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 23.8 MiB 0.33 1337 11046 2900 6780 1366 62.4 MiB 0.11 0.00 7.78297 -154.862 -7.78297 7.78297 0.65 0.000943375 0.00087297 0.0512421 0.0473791 36 3405 22 6.55708e+06 385760 612192. 2118.31 2.14 0.239535 0.208267 22750 144809 -1 2807 15 1168 3766 204246 48163 6.8411 6.8411 -146.675 -6.8411 0 0 782063. 2706.10 0.20 0.08 0.15 -1 -1 0.20 0.0313411 0.0276803 198 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 3.93 vpr 61.97 MiB -1 -1 0.14 17512 12 0.21 -1 -1 32508 -1 -1 27 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1022 8969 2278 5945 746 62.0 MiB 0.08 0.00 7.21391 -130.754 -7.21391 7.21391 0.69 0.000744894 0.000691066 0.0383272 0.0355106 30 2436 17 6.55708e+06 325485 526063. 1820.29 0.81 0.123241 0.108495 21886 126133 -1 2080 16 937 2522 114156 28302 6.43104 6.43104 -125.386 -6.43104 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0255822 0.022555 152 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 6.07 vpr 61.98 MiB -1 -1 0.24 17396 12 0.19 -1 -1 32728 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63472 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 23.5 MiB 0.20 1233 12733 3609 7498 1626 62.0 MiB 0.11 0.00 6.32286 -134.975 -6.32286 6.32286 0.69 0.000731381 0.000677603 0.0532902 0.0492864 36 3149 24 6.55708e+06 265210 612192. 2118.31 2.94 0.200974 0.175662 22750 144809 -1 2676 17 1207 3768 201034 45387 5.53052 5.53052 -132.576 -5.53052 0 0 782063. 2706.10 0.20 0.05 0.08 -1 -1 0.20 0.0153743 0.0138471 140 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.04 vpr 62.30 MiB -1 -1 0.24 17820 12 0.17 -1 -1 32636 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1203 13157 3412 7574 2171 62.3 MiB 0.11 0.00 6.35469 -136.224 -6.35469 6.35469 0.64 0.000753491 0.000697515 0.0531959 0.0492368 36 2772 21 6.55708e+06 313430 612192. 2118.31 1.87 0.203758 0.178128 22750 144809 -1 2370 14 985 2568 141811 32387 5.67826 5.67826 -129.27 -5.67826 0 0 782063. 2706.10 0.20 0.06 0.12 -1 -1 0.20 0.0238826 0.0211356 150 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 5.03 vpr 62.05 MiB -1 -1 0.23 17572 13 0.20 -1 -1 32664 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 23.5 MiB 0.29 1164 8207 1986 5229 992 62.0 MiB 0.08 0.00 7.79043 -163.222 -7.79043 7.79043 0.67 0.000814597 0.000754806 0.0361659 0.0334722 28 3341 23 6.55708e+06 301375 500653. 1732.36 1.79 0.142762 0.12533 21310 115450 -1 2943 16 1280 3583 227960 53199 6.58844 6.58844 -160.003 -6.58844 0 0 612192. 2118.31 0.17 0.08 0.12 -1 -1 0.17 0.0283229 0.0249606 157 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.55 vpr 62.11 MiB -1 -1 0.25 17452 12 0.18 -1 -1 32344 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 23.7 MiB 0.25 1043 7646 1812 5284 550 62.1 MiB 0.07 0.00 6.98257 -137.016 -6.98257 6.98257 0.64 0.000703158 0.000651618 0.0311417 0.0288199 28 2870 17 6.55708e+06 289320 500653. 1732.36 1.39 0.0994698 0.0879755 21310 115450 -1 2423 29 956 2599 287403 124368 5.86158 5.86158 -130.373 -5.86158 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0382854 0.0332743 132 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.13 vpr 61.93 MiB -1 -1 0.24 17364 12 0.18 -1 -1 32664 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 23.5 MiB 0.24 1210 6701 1475 4829 397 61.9 MiB 0.04 0.00 6.74278 -155.388 -6.74278 6.74278 0.70 0.00033776 0.000311305 0.0142202 0.0130933 28 3180 36 6.55708e+06 265210 500653. 1732.36 1.96 0.122122 0.106125 21310 115450 -1 2743 23 1051 2953 280355 102696 5.95786 5.95786 -150.76 -5.95786 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0337018 0.0294952 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 4.81 vpr 62.59 MiB -1 -1 0.16 17816 13 0.25 -1 -1 32504 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1329 9892 2541 6359 992 62.6 MiB 0.12 0.00 8.09466 -168.958 -8.09466 8.09466 0.63 0.00110939 0.00102855 0.0493349 0.0456504 28 3841 47 6.55708e+06 361650 500653. 1732.36 1.73 0.191144 0.167899 21310 115450 -1 3125 14 1275 3654 217111 49344 6.96836 6.96836 -162.422 -6.96836 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.029961 0.0265361 191 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 5.09 vpr 62.77 MiB -1 -1 0.25 17716 14 0.31 -1 -1 32804 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1640 11170 2650 7415 1105 62.8 MiB 0.12 0.00 9.0039 -186.596 -9.0039 9.0039 0.64 0.000971383 0.000899453 0.0550565 0.0508814 30 4087 23 6.55708e+06 361650 526063. 1820.29 1.39 0.175104 0.153815 21886 126133 -1 3325 19 1537 4514 224801 51116 7.64835 7.64835 -171.324 -7.64835 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0409182 0.0361608 210 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.33 vpr 62.07 MiB -1 -1 0.18 17348 11 0.19 -1 -1 32668 -1 -1 27 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 23.6 MiB 0.25 878 5158 949 3601 608 62.1 MiB 0.05 0.00 6.71354 -123.992 -6.71354 6.71354 0.63 0.000723461 0.000670134 0.021848 0.0202442 28 3083 35 6.55708e+06 325485 500653. 1732.36 1.29 0.127168 0.110536 21310 115450 -1 2258 18 1080 2942 164903 40606 6.13918 6.13918 -124.562 -6.13918 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.027411 0.0241001 147 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 6.99 vpr 62.71 MiB -1 -1 0.26 17592 12 0.27 -1 -1 32836 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 24.2 MiB 0.35 1420 10309 2435 6528 1346 62.7 MiB 0.11 0.00 7.45763 -153.823 -7.45763 7.45763 0.69 0.000991629 0.000919182 0.049887 0.0461754 34 4188 46 6.55708e+06 397815 585099. 2024.56 3.40 0.289113 0.251465 22462 138074 -1 3417 30 1712 6122 483902 135469 6.58278 6.58278 -149.989 -6.58278 0 0 742403. 2568.87 0.20 0.17 0.12 -1 -1 0.20 0.0544962 0.047436 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.62 vpr 62.55 MiB -1 -1 0.25 17832 14 0.26 -1 -1 32860 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1436 5553 1081 4073 399 62.6 MiB 0.07 0.00 7.42808 -156.41 -7.42808 7.42808 0.64 0.000907065 0.000838494 0.0275138 0.0254882 38 3267 17 6.55708e+06 349595 638502. 2209.35 2.29 0.202098 0.174494 23326 155178 -1 2853 17 1235 3687 188502 42656 6.46824 6.46824 -148.294 -6.46824 0 0 851065. 2944.86 0.21 0.08 0.14 -1 -1 0.21 0.0325326 0.0286036 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 4.87 vpr 61.95 MiB -1 -1 0.24 17456 12 0.16 -1 -1 32376 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63440 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 23.5 MiB 0.32 1097 11991 2937 7207 1847 62.0 MiB 0.12 0.00 7.19884 -160.926 -7.19884 7.19884 0.65 0.000745309 0.000689721 0.0528949 0.0485609 28 3171 46 6.55708e+06 277265 500653. 1732.36 1.63 0.173416 0.152056 21310 115450 -1 2530 17 1028 2794 175881 40837 6.01958 6.01958 -151.671 -6.01958 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0281932 0.0248797 140 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 3.52 vpr 61.36 MiB -1 -1 0.13 17268 10 0.12 -1 -1 32216 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62832 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 22.7 MiB 0.16 733 7548 1614 5464 470 61.4 MiB 0.06 0.00 5.36346 -120.328 -5.36346 5.36346 0.63 0.00056886 0.00052818 0.0274799 0.0255075 28 1940 22 6.55708e+06 192880 500653. 1732.36 0.81 0.100269 0.0877092 21310 115450 -1 1721 16 679 1685 92341 23056 4.61634 4.61634 -115.41 -4.61634 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0193292 0.0169096 91 87 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 4.75 vpr 62.06 MiB -1 -1 0.22 17540 13 0.18 -1 -1 32576 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 23.6 MiB 0.37 1075 12951 3421 7713 1817 62.1 MiB 0.11 0.00 6.90774 -144.707 -6.90774 6.90774 0.64 0.000714523 0.000657214 0.0532935 0.0492805 28 3088 32 6.55708e+06 289320 500653. 1732.36 1.50 0.158442 0.139474 21310 115450 -1 2418 21 1210 3242 183150 43715 6.49978 6.49978 -146.691 -6.49978 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0316506 0.0277484 144 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.31 vpr 62.87 MiB -1 -1 0.22 17896 13 0.27 -1 -1 32840 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 24.3 MiB 0.42 1429 6575 1166 5105 304 62.9 MiB 0.08 0.00 8.01121 -157.98 -8.01121 8.01121 0.65 0.00101117 0.00093888 0.0342334 0.031667 34 3477 22 6.55708e+06 373705 585099. 2024.56 1.80 0.223989 0.193768 22462 138074 -1 3110 20 1424 4228 228234 53308 7.2403 7.2403 -154.176 -7.2403 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0389581 0.0341969 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 18.40 vpr 62.47 MiB -1 -1 0.26 17588 13 0.29 -1 -1 32436 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 23.9 MiB 0.44 1433 6823 1289 5315 219 62.5 MiB 0.08 0.00 7.886 -165.604 -7.886 7.886 0.63 0.000931546 0.000863515 0.0350133 0.03243 36 4367 47 6.55708e+06 325485 612192. 2118.31 14.69 0.422041 0.362053 22750 144809 -1 3332 17 1366 4336 289824 66269 7.0397 7.0397 -158.876 -7.0397 0 0 782063. 2706.10 0.20 0.10 0.12 -1 -1 0.20 0.0355541 0.0314865 194 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.90 vpr 61.47 MiB -1 -1 0.20 17080 9 0.11 -1 -1 32184 -1 -1 24 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62948 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 22.8 MiB 0.18 744 10762 3120 6243 1399 61.5 MiB 0.07 0.00 5.06374 -98.4324 -5.06374 5.06374 0.65 0.000495841 0.000458958 0.0328293 0.0305036 26 1898 20 6.55708e+06 289320 477104. 1650.88 1.06 0.0938294 0.0825431 21022 109990 -1 1641 15 634 1522 95057 22191 4.8332 4.8332 -99.6652 -4.8332 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.017105 0.0150223 87 76 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 5.85 vpr 62.36 MiB -1 -1 0.11 17572 13 0.25 -1 -1 32648 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1381 10781 2930 5957 1894 62.4 MiB 0.11 0.00 7.83519 -151.249 -7.83519 7.83519 0.64 0.0009263 0.00085861 0.0539042 0.049952 30 4083 42 6.55708e+06 301375 526063. 1820.29 2.74 0.201279 0.176533 21886 126133 -1 3116 19 1424 4288 219011 50426 6.9633 6.9633 -149.742 -6.9633 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0359074 0.0314989 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 3.54 vpr 61.28 MiB -1 -1 0.15 17024 8 0.10 -1 -1 32720 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62748 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 22.6 MiB 0.15 553 7648 2806 3716 1126 61.3 MiB 0.06 0.00 4.12642 -89.8462 -4.12642 4.12642 0.63 0.000519194 0.000483024 0.0244382 0.0226942 30 1616 22 6.55708e+06 192880 526063. 1820.29 0.84 0.0871768 0.076154 21886 126133 -1 1260 14 548 1189 58527 16069 3.73148 3.73148 -90.4104 -3.73148 0 0 666494. 2306.21 0.18 0.04 0.11 -1 -1 0.18 0.0157602 0.0138246 77 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 5.52 vpr 62.49 MiB -1 -1 0.23 17456 15 0.23 -1 -1 32804 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1321 6923 1475 4903 545 62.5 MiB 0.07 0.00 8.32249 -162.146 -8.32249 8.32249 0.76 0.000626968 0.00056968 0.0272709 0.0250822 36 3269 25 6.55708e+06 337540 612192. 2118.31 2.08 0.202922 0.175179 22750 144809 -1 2787 16 1252 3638 203897 46010 7.4009 7.4009 -155.503 -7.4009 0 0 782063. 2706.10 0.20 0.08 0.13 -1 -1 0.20 0.0293646 0.0257905 165 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 10.19 vpr 62.38 MiB -1 -1 0.23 17816 13 0.29 -1 -1 32764 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 23.7 MiB 0.26 1319 5919 1133 4327 459 62.4 MiB 0.07 0.00 7.07675 -156.6 -7.07675 7.07675 0.65 0.000850948 0.000789225 0.0287711 0.026656 28 3679 22 6.55708e+06 313430 500653. 1732.36 6.83 0.293044 0.252913 21310 115450 -1 3055 23 1552 4783 319503 75123 6.44892 6.44892 -155.475 -6.44892 0 0 612192. 2118.31 0.17 0.12 0.12 -1 -1 0.17 0.0387261 0.0338122 168 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 4.52 vpr 62.42 MiB -1 -1 0.24 17736 13 0.26 -1 -1 32948 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.29 1276 11223 2538 6825 1860 62.4 MiB 0.11 0.00 7.85647 -160.581 -7.85647 7.85647 0.64 0.000919398 0.000853369 0.0525743 0.0487414 30 3320 24 6.55708e+06 349595 526063. 1820.29 1.22 0.168088 0.148005 21886 126133 -1 2648 15 1237 3758 172498 41897 6.7183 6.7183 -150.821 -6.7183 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0304651 0.0269186 187 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 6.05 vpr 62.02 MiB -1 -1 0.23 17336 12 0.16 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 23.5 MiB 0.31 1153 7191 1558 5291 342 62.0 MiB 0.07 0.00 6.57592 -147.41 -6.57592 6.57592 0.64 0.00075806 0.000701625 0.0312734 0.0289382 36 3148 35 6.55708e+06 277265 612192. 2118.31 2.84 0.20415 0.177274 22750 144809 -1 2589 16 1117 3275 186852 43337 5.60692 5.60692 -136.412 -5.60692 0 0 782063. 2706.10 0.21 0.07 0.14 -1 -1 0.21 0.0265405 0.0234325 147 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.13 vpr 61.92 MiB -1 -1 0.22 17452 11 0.16 -1 -1 32644 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 23.3 MiB 0.16 963 12919 3847 7319 1753 61.9 MiB 0.10 0.00 6.46503 -135.82 -6.46503 6.46503 0.64 0.000690025 0.000639917 0.0489722 0.0452813 28 2611 19 6.55708e+06 277265 500653. 1732.36 1.07 0.130341 0.11508 21310 115450 -1 2181 15 892 2397 136411 32401 5.86158 5.86158 -133.481 -5.86158 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0227488 0.020072 131 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 5.61 vpr 62.00 MiB -1 -1 0.23 17680 11 0.17 -1 -1 32708 -1 -1 28 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 23.5 MiB 0.39 1010 6913 1544 4325 1044 62.0 MiB 0.06 0.00 6.38158 -126.573 -6.38158 6.38158 0.66 0.000594672 0.000545237 0.0238069 0.0217726 26 3323 50 6.55708e+06 337540 477104. 1650.88 2.26 0.150318 0.130354 21022 109990 -1 2605 19 1204 3141 191966 45003 5.47906 5.47906 -126.663 -5.47906 0 0 585099. 2024.56 0.21 0.08 0.10 -1 -1 0.21 0.0311089 0.0275726 150 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 5.77 vpr 62.21 MiB -1 -1 0.21 17364 12 0.20 -1 -1 32724 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 23.5 MiB 0.25 1304 6321 1255 4617 449 62.2 MiB 0.05 0.00 7.16635 -157.812 -7.16635 7.16635 0.63 0.000396787 0.000364913 0.0226794 0.0209295 26 3817 49 6.55708e+06 313430 477104. 1650.88 2.48 0.170258 0.147196 21022 109990 -1 3145 19 1545 4159 251819 59845 6.4035 6.4035 -162.091 -6.4035 0 0 585099. 2024.56 0.25 0.10 0.11 -1 -1 0.25 0.0327543 0.0292721 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 5.07 vpr 62.04 MiB -1 -1 0.23 17672 12 0.16 -1 -1 32840 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63524 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 23.6 MiB 0.60 980 5567 1150 4291 126 62.0 MiB 0.06 0.00 7.18658 -144.693 -7.18658 7.18658 0.63 0.000748352 0.000692935 0.0249335 0.0231188 28 3147 34 6.55708e+06 277265 500653. 1732.36 1.79 0.132417 0.115295 21310 115450 -1 2468 29 1178 3073 296477 117738 6.07044 6.07044 -141.421 -6.07044 0 0 612192. 2118.31 0.18 0.14 0.07 -1 -1 0.18 0.0447219 0.0391917 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 4.00 vpr 61.98 MiB -1 -1 0.24 17512 10 0.17 -1 -1 32716 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63464 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 23.6 MiB 0.20 1013 6563 1489 4557 517 62.0 MiB 0.06 0.00 5.76546 -121.445 -5.76546 5.76546 0.69 0.00072126 0.000667915 0.0294293 0.0272516 30 2358 16 6.55708e+06 265210 526063. 1820.29 0.91 0.111032 0.0974338 21886 126133 -1 2081 16 885 2605 122669 28892 5.20346 5.20346 -117.311 -5.20346 0 0 666494. 2306.21 0.23 0.08 0.11 -1 -1 0.23 0.0296647 0.02616 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.23 vpr 62.73 MiB -1 -1 0.28 17912 13 0.29 -1 -1 32904 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 24.0 MiB 0.29 1488 10247 2366 6979 902 62.7 MiB 0.11 0.00 7.78037 -164.973 -7.78037 7.78037 0.66 0.00101415 0.000938323 0.0522587 0.0483277 32 4128 46 6.55708e+06 373705 554710. 1919.41 1.68 0.213974 0.18787 22174 131602 -1 3512 16 1530 4876 330660 74130 6.86804 6.86804 -154.58 -6.86804 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0359716 0.0317478 221 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 5.08 vpr 62.44 MiB -1 -1 0.23 17948 14 0.33 -1 -1 33256 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 23.9 MiB 0.46 1341 7544 1708 5122 714 62.4 MiB 0.08 0.00 7.48711 -165.315 -7.48711 7.48711 0.66 0.000932259 0.000864202 0.0380248 0.0352368 30 3756 44 6.55708e+06 337540 526063. 1820.29 1.58 0.185737 0.162177 21886 126133 -1 2987 18 1338 3927 186931 44346 6.65518 6.65518 -156.797 -6.65518 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0356917 0.031486 191 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.04 vpr 62.13 MiB -1 -1 0.14 17568 12 0.19 -1 -1 32584 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63624 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1061 14582 3956 8171 2455 62.1 MiB 0.12 0.00 7.55424 -147.694 -7.55424 7.55424 0.64 0.00053241 0.000482013 0.0524228 0.048038 36 2670 17 6.55708e+06 349595 612192. 2118.31 1.96 0.196438 0.171065 22750 144809 -1 2298 15 923 2506 139164 32090 6.4819 6.4819 -138 -6.4819 0 0 782063. 2706.10 0.21 0.07 0.14 -1 -1 0.21 0.0264527 0.023582 156 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.00 vpr 62.80 MiB -1 -1 0.28 17760 12 0.27 -1 -1 32864 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 24.0 MiB 0.45 1440 9951 2153 6171 1627 62.8 MiB 0.09 0.00 7.66392 -155.521 -7.66392 7.66392 0.63 0.000613184 0.000558982 0.0446412 0.0411656 30 3843 35 6.55708e+06 397815 526063. 1820.29 1.52 0.187569 0.164359 21886 126133 -1 3200 21 1554 4521 218190 52222 6.67144 6.67144 -150.22 -6.67144 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0414466 0.0363438 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.25 vpr 62.79 MiB -1 -1 0.28 18160 14 0.31 -1 -1 33136 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1368 10442 2445 6848 1149 62.8 MiB 0.11 0.00 8.27333 -162.102 -8.27333 8.27333 0.64 0.000960355 0.000890313 0.0521276 0.0482821 30 3476 48 6.55708e+06 349595 526063. 1820.29 1.66 0.211201 0.185979 21886 126133 -1 2944 17 1606 5087 230104 55320 7.34122 7.34122 -156.976 -7.34122 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0345171 0.030365 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.48 vpr 62.41 MiB -1 -1 0.28 18084 13 0.25 -1 -1 32732 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 23.9 MiB 0.36 1406 11311 2955 7221 1135 62.4 MiB 0.11 0.00 7.94497 -159.991 -7.94497 7.94497 0.63 0.000902976 0.000836846 0.0538069 0.0497417 36 3512 22 6.55708e+06 337540 612192. 2118.31 1.97 0.234022 0.203842 22750 144809 -1 3203 18 1469 4134 234682 53499 6.8411 6.8411 -151.707 -6.8411 0 0 782063. 2706.10 0.20 0.09 0.08 -1 -1 0.20 0.0345657 0.0304813 185 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 5.97 vpr 62.41 MiB -1 -1 0.17 17588 13 0.25 -1 -1 32828 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 23.9 MiB 0.34 1345 7613 1868 4862 883 62.4 MiB 0.08 0.00 7.08841 -141.492 -7.08841 7.08841 0.64 0.000888876 0.000823629 0.0370707 0.034293 34 3664 49 6.55708e+06 313430 585099. 2024.56 2.81 0.254318 0.220254 22462 138074 -1 3164 17 1313 4163 244724 55552 5.97978 5.97978 -133.201 -5.97978 0 0 742403. 2568.87 0.19 0.09 0.08 -1 -1 0.19 0.0323341 0.0284852 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 4.57 vpr 62.20 MiB -1 -1 0.24 17672 12 0.20 -1 -1 32728 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63688 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 23.6 MiB 0.20 1315 5548 1167 3981 400 62.2 MiB 0.06 0.00 7.00741 -145.329 -7.00741 7.00741 0.63 0.000829561 0.00076962 0.0277242 0.0257009 28 3273 27 6.55708e+06 289320 500653. 1732.36 1.43 0.134399 0.116907 21310 115450 -1 2880 18 1362 4073 243587 55099 6.10198 6.10198 -140.629 -6.10198 0 0 612192. 2118.31 0.18 0.09 0.11 -1 -1 0.18 0.031496 0.0275799 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 7.41 vpr 62.75 MiB -1 -1 0.31 18688 14 0.38 -1 -1 32828 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 24.3 MiB 0.38 1670 9383 2100 6642 641 62.8 MiB 0.11 0.00 8.23218 -176.173 -8.23218 8.23218 0.59 0.00104014 0.000961646 0.0496256 0.0458082 34 4632 43 6.55708e+06 373705 585099. 2024.56 3.75 0.244639 0.212879 22462 138074 -1 3783 16 1514 4948 301263 67057 7.28976 7.28976 -169.641 -7.28976 0 0 742403. 2568.87 0.20 0.11 0.12 -1 -1 0.20 0.0370763 0.0327778 230 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.43 vpr 62.34 MiB -1 -1 0.19 17568 11 0.23 -1 -1 32540 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.33 1051 8603 2089 5379 1135 62.3 MiB 0.09 0.00 6.74223 -137.589 -6.74223 6.74223 0.65 0.000808708 0.000749919 0.0380819 0.0352726 30 3212 35 6.55708e+06 313430 526063. 1820.29 1.24 0.151205 0.131835 21886 126133 -1 2521 17 1168 3379 157721 38187 6.06278 6.06278 -136.796 -6.06278 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.029275 0.0257464 163 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 5.08 vpr 62.54 MiB -1 -1 0.27 17632 13 0.27 -1 -1 33276 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1315 7435 1572 5156 707 62.5 MiB 0.08 0.00 8.06447 -154.642 -8.06447 8.06447 0.59 0.000904129 0.000848441 0.0368304 0.0340059 28 3730 45 6.55708e+06 337540 500653. 1732.36 1.92 0.181442 0.157636 21310 115450 -1 2993 18 1246 4009 311549 83022 7.29176 7.29176 -151.859 -7.29176 0 0 612192. 2118.31 0.23 0.11 0.10 -1 -1 0.23 0.0348589 0.0310441 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.86 vpr 62.81 MiB -1 -1 0.14 17776 12 0.26 -1 -1 32832 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 24.1 MiB 0.52 1532 15213 4154 8657 2402 62.8 MiB 0.15 0.00 7.13712 -150.826 -7.13712 7.13712 0.63 0.000968201 0.000896339 0.0747242 0.0689959 36 3865 38 6.55708e+06 349595 612192. 2118.31 3.30 0.295727 0.259192 22750 144809 -1 3379 23 1418 5004 458665 164388 6.19264 6.19264 -141.127 -6.19264 0 0 782063. 2706.10 0.20 0.15 0.13 -1 -1 0.20 0.0437089 0.0381922 210 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 4.10 vpr 62.45 MiB -1 -1 0.14 17556 13 0.25 -1 -1 32856 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1350 5133 911 3808 414 62.5 MiB 0.06 0.00 7.54057 -158.305 -7.54057 7.54057 0.63 0.000893515 0.000827381 0.0255727 0.0236916 30 3259 22 6.55708e+06 349595 526063. 1820.29 1.03 0.134814 0.11752 21886 126133 -1 2779 18 1243 3580 170868 40631 6.90724 6.90724 -155.01 -6.90724 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0336921 0.0296487 183 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 6.12 vpr 62.29 MiB -1 -1 0.22 17600 13 0.20 -1 -1 32780 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1371 12351 2891 7373 2087 62.3 MiB 0.11 0.00 7.1188 -155.865 -7.1188 7.1188 0.64 0.000680554 0.000621476 0.051316 0.0471237 36 3355 27 6.55708e+06 313430 612192. 2118.31 2.81 0.235124 0.204353 22750 144809 -1 2803 15 1125 3397 194744 43752 6.17898 6.17898 -146.024 -6.17898 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0290932 0.0256632 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 5.53 vpr 62.51 MiB -1 -1 0.26 17896 12 0.24 -1 -1 32772 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1446 11170 2757 7067 1346 62.5 MiB 0.11 0.00 7.31654 -157.818 -7.31654 7.31654 0.64 0.000929709 0.000860226 0.0521652 0.0481657 38 3284 17 6.55708e+06 361650 638502. 2209.35 1.98 0.231444 0.201471 23326 155178 -1 2853 15 1250 4137 194632 45234 6.26904 6.26904 -147.068 -6.26904 0 0 851065. 2944.86 0.22 0.08 0.13 -1 -1 0.22 0.0318218 0.0281035 197 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 5.82 vpr 63.04 MiB -1 -1 0.19 17908 13 0.29 -1 -1 32960 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 24.3 MiB 0.38 1513 7223 1461 5178 584 63.0 MiB 0.08 0.00 7.58438 -161.714 -7.58438 7.58438 0.63 0.000991599 0.000917959 0.0370962 0.034308 36 3945 19 6.55708e+06 373705 612192. 2118.31 2.39 0.230565 0.199808 22750 144809 -1 3296 18 1573 4871 256506 58577 6.70864 6.70864 -153.326 -6.70864 0 0 782063. 2706.10 0.20 0.10 0.13 -1 -1 0.20 0.0374623 0.0330326 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 4.92 vpr 62.40 MiB -1 -1 0.20 17336 14 0.27 -1 -1 32932 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1215 10813 2361 6891 1561 62.4 MiB 0.10 0.00 8.31609 -163.248 -8.31609 8.31609 0.66 0.000860088 0.000796071 0.0513005 0.0474652 30 3273 27 6.55708e+06 289320 526063. 1820.29 1.63 0.163702 0.143889 21886 126133 -1 2720 18 1271 3852 181225 42639 7.1187 7.1187 -154.864 -7.1187 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0325786 0.0286191 168 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 5.95 vpr 62.42 MiB -1 -1 0.24 17824 13 0.26 -1 -1 32720 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 23.9 MiB 0.36 1503 5206 957 3956 293 62.4 MiB 0.08 0.00 8.07478 -162.365 -8.07478 8.07478 0.63 0.001087 0.000998673 0.0301524 0.0277422 28 4195 32 6.55708e+06 361650 500653. 1732.36 2.60 0.160436 0.139416 21310 115450 -1 3466 19 1840 5622 342639 75414 7.0005 7.0005 -158.548 -7.0005 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0366031 0.0321564 198 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.95 vpr 62.46 MiB -1 -1 0.28 17936 13 0.32 -1 -1 32700 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1405 8401 1949 5780 672 62.5 MiB 0.09 0.00 7.80415 -160.841 -7.80415 7.80415 0.66 0.000966561 0.000888885 0.0421913 0.0389617 34 3777 50 6.55708e+06 373705 585099. 2024.56 2.57 0.282711 0.244107 22462 138074 -1 3251 15 1437 4206 244223 55741 6.8411 6.8411 -155.997 -6.8411 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0320292 0.0282573 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 4.61 vpr 62.47 MiB -1 -1 0.23 17652 12 0.32 -1 -1 32792 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1438 11641 3058 7283 1300 62.5 MiB 0.12 0.00 7.70272 -159.771 -7.70272 7.70272 0.63 0.000966548 0.0008948 0.0545895 0.0504425 30 3780 27 6.55708e+06 397815 526063. 1820.29 1.28 0.180135 0.159057 21886 126133 -1 2888 18 1519 4182 184934 45916 6.6419 6.6419 -150.702 -6.6419 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0369427 0.0326025 216 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 4.37 vpr 61.78 MiB -1 -1 0.22 17268 11 0.12 -1 -1 32632 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63260 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 23.1 MiB 0.29 1054 3998 719 2985 294 61.8 MiB 0.04 0.00 6.14869 -128.86 -6.14869 6.14869 0.64 0.00068613 0.000631873 0.0179147 0.0166002 26 2734 30 6.55708e+06 216990 477104. 1650.88 1.35 0.110965 0.0962569 21022 109990 -1 2325 17 931 2444 150962 34991 5.41032 5.41032 -130.798 -5.41032 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0248369 0.0218323 125 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 4.83 vpr 62.25 MiB -1 -1 0.20 17608 13 0.21 -1 -1 32680 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1266 7888 1808 5375 705 62.2 MiB 0.08 0.00 7.4424 -157.565 -7.4424 7.4424 0.63 0.00083038 0.00077039 0.0368154 0.0341134 28 3615 32 6.55708e+06 289320 500653. 1732.36 1.63 0.149972 0.130911 21310 115450 -1 2988 19 1194 3381 209369 47676 6.62764 6.62764 -152.575 -6.62764 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0330649 0.0290168 161 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 5.31 vpr 62.88 MiB -1 -1 0.28 18344 14 0.42 -1 -1 32920 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 24.3 MiB 0.25 1601 9199 2042 6426 731 62.9 MiB 0.11 0.00 8.66873 -176.87 -8.66873 8.66873 0.63 0.00111182 0.00102358 0.0502765 0.0464378 30 4285 34 6.55708e+06 397815 526063. 1820.29 1.76 0.203737 0.178472 21886 126133 -1 3448 17 1855 5819 263765 63459 7.36876 7.36876 -164.684 -7.36876 0 0 666494. 2306.21 0.18 0.10 0.12 -1 -1 0.18 0.0398915 0.0352571 245 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 5.53 vpr 62.47 MiB -1 -1 0.26 17608 13 0.32 -1 -1 32812 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.36 1376 4579 799 3553 227 62.5 MiB 0.06 0.00 8.02278 -172.696 -8.02278 8.02278 0.63 0.000905355 0.000830866 0.0235654 0.0218137 36 3334 17 6.55708e+06 325485 612192. 2118.31 2.10 0.174207 0.150621 22750 144809 -1 2862 16 1170 3389 185657 42603 7.0769 7.0769 -164.702 -7.0769 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0316358 0.0279219 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 5.03 vpr 61.90 MiB -1 -1 0.15 17432 11 0.16 -1 -1 32664 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63388 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 23.5 MiB 0.17 1035 10687 2518 6679 1490 61.9 MiB 0.09 0.00 6.59735 -138.464 -6.59735 6.59735 0.64 0.00087787 0.000814552 0.0436406 0.0403095 34 2502 23 6.55708e+06 277265 585099. 2024.56 2.05 0.189384 0.164689 22462 138074 -1 2257 17 992 2850 154109 36061 5.97918 5.97918 -135.235 -5.97918 0 0 742403. 2568.87 0.20 0.07 0.12 -1 -1 0.20 0.0261246 0.0229644 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 7.18 vpr 62.84 MiB -1 -1 0.30 18560 15 0.50 -1 -1 32856 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1771 9773 2274 6549 950 62.8 MiB 0.12 0.00 9.55013 -184.943 -9.55013 9.55013 0.70 0.00112311 0.00103818 0.0545978 0.0504585 36 4458 20 6.55708e+06 409870 612192. 2118.31 3.19 0.286556 0.249827 22750 144809 -1 3874 20 2194 7275 428147 94060 8.24735 8.24735 -174.541 -8.24735 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0463971 0.0407293 257 257 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 8.38 vpr 62.94 MiB -1 -1 0.25 17660 13 0.30 -1 -1 32868 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1402 7958 1933 5289 736 62.9 MiB 0.09 0.00 7.87358 -164.462 -7.87358 7.87358 0.64 0.000888595 0.000817115 0.0411948 0.0380676 30 3523 41 6.55708e+06 337540 526063. 1820.29 5.01 0.326059 0.28124 21886 126133 -1 2862 16 1203 3677 173554 41260 6.73256 6.73256 -152.703 -6.73256 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0336165 0.029693 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.23 vpr 61.85 MiB -1 -1 0.21 17268 11 0.13 -1 -1 32436 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63332 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 23.4 MiB 0.29 1082 11804 3066 7108 1630 61.8 MiB 0.10 0.00 6.28346 -137.062 -6.28346 6.28346 0.64 0.000730603 0.000676828 0.0483634 0.0447757 30 2616 26 6.55708e+06 265210 526063. 1820.29 1.10 0.141032 0.124313 21886 126133 -1 2211 13 935 2761 132039 31269 5.40772 5.40772 -129.072 -5.40772 0 0 666494. 2306.21 0.25 0.06 0.11 -1 -1 0.25 0.021796 0.0193213 141 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 13.06 vpr 62.73 MiB -1 -1 0.21 17772 12 0.29 -1 -1 32744 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1459 6058 1136 4425 497 62.7 MiB 0.07 0.00 7.4882 -153.189 -7.4882 7.4882 0.63 0.000960979 0.000887993 0.0311492 0.0288322 28 4439 38 6.55708e+06 361650 500653. 1732.36 9.35 0.35739 0.306707 21310 115450 -1 3721 57 4013 13613 1649164 568355 6.87004 6.87004 -155.733 -6.87004 0 0 612192. 2118.31 0.17 0.45 0.10 -1 -1 0.17 0.0930184 0.0797293 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 4.53 vpr 62.15 MiB -1 -1 0.21 17104 12 0.19 -1 -1 32720 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63644 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1183 11346 2851 6780 1715 62.2 MiB 0.10 0.00 7.37351 -152.427 -7.37351 7.37351 0.63 0.000789633 0.000732088 0.0477205 0.0442547 28 3250 31 6.55708e+06 313430 500653. 1732.36 1.33 0.153809 0.135088 21310 115450 -1 2869 17 1175 3234 203994 49738 6.78964 6.78964 -153.099 -6.78964 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0287753 0.0253382 153 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 5.04 vpr 61.95 MiB -1 -1 0.20 17344 12 0.23 -1 -1 32640 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 23.5 MiB 0.19 948 9803 2338 5714 1751 61.9 MiB 0.09 0.00 7.00946 -139.977 -7.00946 7.00946 0.63 0.000741495 0.000687044 0.0433646 0.0401003 26 3038 22 6.55708e+06 253155 477104. 1650.88 1.94 0.137295 0.121038 21022 109990 -1 2430 18 989 2837 210876 49947 6.39124 6.39124 -138.781 -6.39124 0 0 585099. 2024.56 0.23 0.10 0.10 -1 -1 0.23 0.0356974 0.0320201 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 10.63 vpr 62.26 MiB -1 -1 0.27 17896 12 0.26 -1 -1 32692 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1279 5474 1033 4128 313 62.3 MiB 0.06 0.00 6.7577 -128.343 -6.7577 6.7577 0.63 0.000916435 0.000850116 0.0277685 0.0257427 30 3505 36 6.55708e+06 373705 526063. 1820.29 7.22 0.301086 0.259454 21886 126133 -1 2899 27 1332 4449 354174 132887 5.94258 5.94258 -126.347 -5.94258 0 0 666494. 2306.21 0.23 0.14 0.12 -1 -1 0.23 0.0511593 0.0451008 191 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 5.59 vpr 62.72 MiB -1 -1 0.26 17796 13 0.43 -1 -1 32764 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 24.2 MiB 0.53 1641 6757 1409 4886 462 62.7 MiB 0.08 0.00 8.4108 -177.204 -8.4108 8.4108 0.63 0.00103866 0.00096184 0.0353468 0.0326995 30 4203 45 6.55708e+06 397815 526063. 1820.29 1.84 0.197469 0.171712 21886 126133 -1 3490 18 1679 4703 234223 54847 7.40996 7.40996 -168.236 -7.40996 0 0 666494. 2306.21 0.19 0.10 0.12 -1 -1 0.19 0.0390821 0.0344285 238 236 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 5.66 vpr 62.41 MiB -1 -1 0.26 17588 12 0.27 -1 -1 32816 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 23.9 MiB 0.44 1388 15645 4295 9025 2325 62.4 MiB 0.15 0.00 7.61066 -152.509 -7.61066 7.61066 0.63 0.00094641 0.000872945 0.0712624 0.0658114 30 3749 42 6.55708e+06 385760 526063. 1820.29 2.09 0.217175 0.190896 21886 126133 -1 3031 21 1582 4727 228631 54061 6.4819 6.4819 -145.643 -6.4819 0 0 666494. 2306.21 0.18 0.10 0.14 -1 -1 0.18 0.039802 0.0348552 200 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 4.27 vpr 61.77 MiB -1 -1 0.22 17560 12 0.18 -1 -1 32424 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63248 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 23.3 MiB 0.53 1058 4842 1062 3260 520 61.8 MiB 0.05 0.00 6.82123 -141.643 -6.82123 6.82123 0.63 0.000559608 0.000510727 0.0206815 0.0190925 30 2539 19 6.55708e+06 241100 526063. 1820.29 0.98 0.103203 0.0900578 21886 126133 -1 2201 25 907 2587 263239 114464 6.06078 6.06078 -140.148 -6.06078 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0336133 0.0293351 126 120 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.06 vpr 62.16 MiB -1 -1 0.25 17632 12 0.23 -1 -1 32436 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63648 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 23.6 MiB 0.34 1176 10455 2348 6392 1715 62.2 MiB 0.10 0.00 7.13387 -142.33 -7.13387 7.13387 0.65 0.00080301 0.000736554 0.0463731 0.0429175 28 3265 32 6.55708e+06 289320 500653. 1732.36 1.78 0.156435 0.137396 21310 115450 -1 2812 19 1179 3692 201624 47628 6.25938 6.25938 -140.101 -6.25938 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0365056 0.0320114 154 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 7.10 vpr 62.46 MiB -1 -1 0.21 17776 11 0.23 -1 -1 32648 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 24.0 MiB 0.19 1196 13547 4241 6931 2375 62.5 MiB 0.12 0.00 6.85121 -131.802 -6.85121 6.85121 0.78 0.000870052 0.000803406 0.0602416 0.0556347 36 3385 32 6.55708e+06 361650 612192. 2118.31 3.57 0.254014 0.221032 22750 144809 -1 2593 14 1189 3659 196963 46529 6.03324 6.03324 -126.201 -6.03324 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0282945 0.0250334 190 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.30 vpr 62.32 MiB -1 -1 0.22 17328 11 0.20 -1 -1 32732 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 23.6 MiB 0.17 1080 10647 2769 6876 1002 62.3 MiB 0.09 0.00 6.62889 -122.091 -6.62889 6.62889 0.74 0.00063506 0.000581468 0.039159 0.0357844 36 2842 24 6.55708e+06 325485 612192. 2118.31 2.01 0.20548 0.177653 22750 144809 -1 2368 21 1131 4148 217048 49040 6.02298 6.02298 -119.498 -6.02298 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0346683 0.030266 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 5.23 vpr 62.12 MiB -1 -1 0.23 17324 13 0.21 -1 -1 32720 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63608 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1040 5271 1036 3997 238 62.1 MiB 0.06 0.00 7.2482 -136.339 -7.2482 7.2482 0.68 0.000771735 0.000715037 0.0245464 0.0226815 36 2751 18 6.55708e+06 301375 612192. 2118.31 2.04 0.168727 0.146685 22750 144809 -1 2327 21 1020 3176 169142 39267 6.6027 6.6027 -137.49 -6.6027 0 0 782063. 2706.10 0.21 0.08 0.12 -1 -1 0.21 0.031966 0.0279204 148 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 5.15 vpr 62.28 MiB -1 -1 0.20 17740 12 0.18 -1 -1 32676 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1203 11270 2888 6672 1710 62.3 MiB 0.12 0.00 7.39203 -156.297 -7.39203 7.39203 0.68 0.000854172 0.000790632 0.0553627 0.0514326 30 3360 45 6.55708e+06 337540 526063. 1820.29 1.86 0.190245 0.166773 21886 126133 -1 2532 16 1227 3301 151329 37939 6.0821 6.0821 -146.499 -6.0821 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0285339 0.0256096 174 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 4.47 vpr 62.35 MiB -1 -1 0.20 17604 13 0.28 -1 -1 32736 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1314 8130 1959 5459 712 62.4 MiB 0.08 0.00 8.02027 -155.447 -8.02027 8.02027 0.66 0.000909159 0.000842698 0.0405243 0.0375494 30 3005 23 6.55708e+06 325485 526063. 1820.29 1.15 0.155258 0.135627 21886 126133 -1 2567 14 1027 3072 143954 34065 6.97036 6.97036 -146.48 -6.97036 0 0 666494. 2306.21 0.23 0.07 0.11 -1 -1 0.23 0.0289458 0.0256149 187 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 5.61 vpr 62.58 MiB -1 -1 0.22 17896 14 0.25 -1 -1 32804 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1224 14168 3595 8187 2386 62.6 MiB 0.14 0.00 8.42547 -164.88 -8.42547 8.42547 0.63 0.000938912 0.000867629 0.0680988 0.0629251 26 3972 40 6.55708e+06 337540 477104. 1650.88 2.37 0.212474 0.187082 21022 109990 -1 3159 21 1474 4041 259266 58930 7.73136 7.73136 -172.194 -7.73136 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0391546 0.034268 196 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 4.94 vpr 62.38 MiB -1 -1 0.27 18200 14 0.24 -1 -1 32984 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 23.9 MiB 0.27 1263 9791 2392 5641 1758 62.4 MiB 0.09 0.00 7.61341 -152.493 -7.61341 7.61341 0.60 0.000883697 0.00081819 0.0467791 0.0433476 30 3316 50 6.55708e+06 301375 526063. 1820.29 1.67 0.192514 0.168121 21886 126133 -1 2650 20 1165 3477 179637 41318 6.66744 6.66744 -146.271 -6.66744 0 0 666494. 2306.21 0.22 0.08 0.11 -1 -1 0.22 0.0323637 0.0288305 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 5.45 vpr 62.53 MiB -1 -1 0.23 18032 13 0.32 -1 -1 32808 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 24.0 MiB 0.30 1335 6813 1455 4737 621 62.5 MiB 0.08 0.00 7.97606 -158.638 -7.97606 7.97606 0.65 0.000961073 0.000889504 0.0349899 0.0324024 28 4023 34 6.55708e+06 349595 500653. 1732.36 2.03 0.168189 0.146324 21310 115450 -1 3244 31 2269 6914 508020 168235 6.97036 6.97036 -153.104 -6.97036 0 0 612192. 2118.31 0.17 0.18 0.10 -1 -1 0.17 0.05553 0.0482778 205 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 4.31 vpr 61.93 MiB -1 -1 0.19 17532 13 0.18 -1 -1 32376 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63412 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 23.4 MiB 0.39 1181 4811 970 3437 404 61.9 MiB 0.05 0.00 7.32681 -149.503 -7.32681 7.32681 0.64 0.000752414 0.000693348 0.0219869 0.0203296 28 2943 24 6.55708e+06 289320 500653. 1732.36 1.17 0.118601 0.103452 21310 115450 -1 2632 17 1167 3120 186389 43637 6.26704 6.26704 -144.792 -6.26704 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0272285 0.0239721 147 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 6.08 vpr 62.55 MiB -1 -1 0.19 17924 13 0.44 -1 -1 32904 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1409 6058 1135 4495 428 62.5 MiB 0.07 0.00 8.2444 -163.721 -8.2444 8.2444 0.63 0.000986105 0.000914713 0.032741 0.0303689 36 3519 23 6.55708e+06 385760 612192. 2118.31 2.67 0.230859 0.200283 22750 144809 -1 2977 16 1390 3881 195015 46713 7.28976 7.28976 -154.111 -7.28976 0 0 782063. 2706.10 0.20 0.08 0.13 -1 -1 0.20 0.0338734 0.0298847 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 5.47 vpr 62.42 MiB -1 -1 0.25 17780 14 0.32 -1 -1 32836 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 23.9 MiB 0.44 1264 7231 1520 5560 151 62.4 MiB 0.08 0.00 8.00109 -166.402 -8.00109 8.00109 0.79 0.000905152 0.000834002 0.0364219 0.0336322 30 3743 50 6.55708e+06 325485 526063. 1820.29 1.87 0.184969 0.160767 21886 126133 -1 2880 14 1293 4196 210862 49523 7.0815 7.0815 -162.389 -7.0815 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0288165 0.0254639 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 6.17 vpr 62.38 MiB -1 -1 0.22 17720 13 0.22 -1 -1 32760 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 24.0 MiB 0.39 1305 14323 3915 8229 2179 62.4 MiB 0.13 0.00 7.86768 -158.537 -7.86768 7.86768 0.63 0.00087121 0.000807574 0.0675021 0.0625652 38 3237 35 6.55708e+06 301375 638502. 2209.35 2.58 0.25872 0.226201 23326 155178 -1 2664 18 1430 4466 220129 49519 7.0795 7.0795 -153.488 -7.0795 0 0 851065. 2944.86 0.23 0.11 0.15 -1 -1 0.23 0.0400319 0.0350057 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 7.13 vpr 62.39 MiB -1 -1 0.27 17692 13 0.21 -1 -1 32744 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 23.7 MiB 0.33 1164 9989 2471 5804 1714 62.4 MiB 0.08 0.00 7.4808 -136.781 -7.4808 7.4808 0.64 0.000867177 0.000803666 0.032558 0.0298046 28 4049 33 6.55708e+06 325485 500653. 1732.36 3.77 0.157841 0.137209 21310 115450 -1 3203 18 1480 4256 294335 66993 6.8039 6.8039 -143.727 -6.8039 0 0 612192. 2118.31 0.24 0.10 0.10 -1 -1 0.24 0.0313235 0.0277301 178 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 8.00 vpr 62.74 MiB -1 -1 0.16 17612 14 0.34 -1 -1 32936 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 24.0 MiB 0.35 1476 8091 1866 5495 730 62.7 MiB 0.09 0.00 7.88885 -165.953 -7.88885 7.88885 0.63 0.00100812 0.000933366 0.0387456 0.0358911 30 3544 39 6.55708e+06 446035 526063. 1820.29 4.55 0.350649 0.302344 21886 126133 -1 2956 19 1495 4336 195157 47267 7.0377 7.0377 -158.211 -7.0377 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.039337 0.0345541 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 5.82 vpr 62.47 MiB -1 -1 0.29 17724 11 0.27 -1 -1 32716 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1160 8130 1856 5819 455 62.5 MiB 0.09 0.00 6.86478 -134.007 -6.86478 6.86478 0.70 0.000887622 0.000818824 0.039382 0.036347 28 3852 30 6.55708e+06 349595 500653. 1732.36 2.27 0.168528 0.147423 21310 115450 -1 3008 20 1623 4773 300015 69057 6.13918 6.13918 -134.59 -6.13918 0 0 612192. 2118.31 0.21 0.11 0.10 -1 -1 0.21 0.0364168 0.0319017 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.34 vpr 61.93 MiB -1 -1 0.18 17060 13 0.17 -1 -1 32612 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 23.5 MiB 0.25 1142 8083 2034 5178 871 61.9 MiB 0.04 0.00 7.01052 -158.499 -7.01052 7.01052 0.59 0.000323115 0.00029612 0.0155777 0.0142832 28 3461 48 6.55708e+06 289320 500653. 1732.36 2.45 0.133163 0.114959 21310 115450 -1 2810 19 1169 3029 212550 49762 6.13978 6.13978 -158.3 -6.13978 0 0 612192. 2118.31 0.23 0.09 0.11 -1 -1 0.23 0.0284807 0.0250328 138 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.49 vpr 62.25 MiB -1 -1 0.26 17896 14 0.30 -1 -1 32856 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 23.7 MiB 0.54 1316 5267 941 3849 477 62.3 MiB 0.06 0.00 8.08175 -166.146 -8.08175 8.08175 0.63 0.000878686 0.000815169 0.0261129 0.0241958 36 3344 49 6.55708e+06 337540 612192. 2118.31 3.90 0.240137 0.207451 22750 144809 -1 2858 19 1239 3732 213441 48577 7.1997 7.1997 -158.608 -7.1997 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0340415 0.0298988 179 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 14.19 vpr 62.91 MiB -1 -1 0.24 18280 15 0.50 -1 -1 32828 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 24.4 MiB 0.35 1738 9421 2028 6135 1258 62.9 MiB 0.11 0.00 9.11118 -191.695 -9.11118 9.11118 0.63 0.00107847 0.000998512 0.0497301 0.0460509 30 4813 25 6.55708e+06 397815 526063. 1820.29 10.53 0.339347 0.294745 21886 126133 -1 3846 17 1881 5477 280413 64438 7.85982 7.85982 -180.296 -7.85982 0 0 666494. 2306.21 0.21 0.11 0.11 -1 -1 0.21 0.0406614 0.0360204 241 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 4.94 vpr 61.80 MiB -1 -1 0.18 17364 11 0.21 -1 -1 32612 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63284 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 23.2 MiB 0.44 1015 8213 1831 5887 495 61.8 MiB 0.07 0.00 6.43354 -132.345 -6.43354 6.43354 0.64 0.000709664 0.000657825 0.0333795 0.0309252 26 2795 26 6.55708e+06 265210 477104. 1650.88 1.80 0.124338 0.108911 21022 109990 -1 2458 18 1052 3068 207681 46574 5.66498 5.66498 -136.662 -5.66498 0 0 585099. 2024.56 0.16 0.08 0.06 -1 -1 0.16 0.0266727 0.0233841 129 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 4.97 vpr 62.26 MiB -1 -1 0.22 17116 12 0.23 -1 -1 32920 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 23.6 MiB 0.25 1181 9395 2257 5715 1423 62.3 MiB 0.09 0.00 7.12111 -149.72 -7.12111 7.12111 0.76 0.000784101 0.000726786 0.0400481 0.0370684 34 3103 20 6.55708e+06 313430 585099. 2024.56 1.71 0.191288 0.166106 22462 138074 -1 2552 15 1140 3181 168184 39239 6.25678 6.25678 -144.527 -6.25678 0 0 742403. 2568.87 0.20 0.07 0.08 -1 -1 0.20 0.0260192 0.0229575 156 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 5.15 vpr 62.53 MiB -1 -1 0.27 17600 12 0.29 -1 -1 32732 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1374 9732 2347 6008 1377 62.5 MiB 0.10 0.00 7.22518 -156.32 -7.22518 7.22518 0.63 0.000987404 0.000913434 0.047494 0.0439283 30 3769 28 6.55708e+06 385760 526063. 1820.29 1.74 0.177063 0.154795 21886 126133 -1 2987 18 1457 4433 208409 50290 6.39384 6.39384 -155.293 -6.39384 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0373941 0.0328894 213 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 5.49 vpr 62.38 MiB -1 -1 0.27 17628 12 0.24 -1 -1 32860 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1295 7929 1664 5456 809 62.4 MiB 0.09 0.00 7.52995 -159.234 -7.52995 7.52995 0.63 0.000868922 0.000795895 0.0384175 0.035536 36 3430 23 6.55708e+06 313430 612192. 2118.31 2.09 0.215758 0.187098 22750 144809 -1 2916 14 1211 3646 201814 45483 6.7621 6.7621 -152.293 -6.7621 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0294248 0.0261497 181 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 8.53 vpr 62.90 MiB -1 -1 0.27 17980 14 0.56 -1 -1 32880 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 24.4 MiB 0.49 1613 7655 1578 5578 499 62.9 MiB 0.09 0.00 9.00229 -179.771 -9.00229 9.00229 0.64 0.00106775 0.000987724 0.0425373 0.0393225 36 4565 44 6.55708e+06 373705 612192. 2118.31 4.53 0.300757 0.260772 22750 144809 -1 3729 18 1683 5449 299007 67961 7.89841 7.89841 -172.649 -7.89841 0 0 782063. 2706.10 0.25 0.11 0.14 -1 -1 0.25 0.0408003 0.0360208 234 233 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 5.76 vpr 62.27 MiB -1 -1 0.26 17364 12 0.21 -1 -1 32688 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 23.6 MiB 0.48 1246 9687 2384 6348 955 62.3 MiB 0.09 0.00 7.02918 -135.408 -7.02918 7.02918 0.75 0.000677993 0.000620472 0.0441905 0.0407053 28 3571 33 6.55708e+06 301375 500653. 1732.36 2.15 0.156189 0.136988 21310 115450 -1 2944 17 1197 3745 226727 51186 6.13918 6.13918 -131.372 -6.13918 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.0176914 0.0159263 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.27 vpr 62.05 MiB -1 -1 0.22 17672 11 0.19 -1 -1 32624 -1 -1 26 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 23.6 MiB 0.29 833 9013 2082 5123 1808 62.0 MiB 0.08 0.00 7.08055 -122.398 -7.08055 7.08055 0.70 0.000712222 0.000659564 0.037363 0.0345959 28 2481 16 6.55708e+06 313430 500653. 1732.36 0.95 0.120802 0.106491 21310 115450 -1 2181 16 937 2681 144182 35896 6.27104 6.27104 -119.514 -6.27104 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0262979 0.0232706 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 8.67 vpr 62.98 MiB -1 -1 0.29 18536 13 0.41 -1 -1 32972 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 24.7 MiB 0.41 1984 9864 2435 6697 732 63.0 MiB 0.11 0.00 7.66038 -164.562 -7.66038 7.66038 0.63 0.00117282 0.00108413 0.0522674 0.0482588 36 4924 33 6.55708e+06 482200 612192. 2118.31 4.79 0.308698 0.267816 22750 144809 -1 4244 19 2022 6356 418528 101830 6.62764 6.62764 -158.176 -6.62764 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0472875 0.0416873 286 286 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 4.90 vpr 62.42 MiB -1 -1 0.22 17940 14 0.25 -1 -1 33200 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1315 7027 1431 4957 639 62.4 MiB 0.08 0.00 8.27869 -161.961 -8.27869 8.27869 0.63 0.000896298 0.000831276 0.0344007 0.0319053 28 3660 24 6.55708e+06 337540 500653. 1732.36 1.70 0.155301 0.136287 21310 115450 -1 3016 20 1268 3590 214832 51623 7.16956 7.16956 -155.951 -7.16956 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0364846 0.0319693 188 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 4.22 vpr 62.09 MiB -1 -1 0.24 17608 12 0.21 -1 -1 32372 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1196 5395 963 4230 202 62.1 MiB 0.05 0.00 7.24055 -154.388 -7.24055 7.24055 0.64 0.000587797 0.00053718 0.0198688 0.0182244 30 2856 20 6.55708e+06 325485 526063. 1820.29 1.03 0.109201 0.095004 21886 126133 -1 2294 15 868 2452 121146 28103 6.19064 6.19064 -145.709 -6.19064 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0288878 0.0259008 145 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 4.74 vpr 62.45 MiB -1 -1 0.26 17628 13 0.27 -1 -1 32900 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1201 6321 1371 4614 336 62.4 MiB 0.07 0.00 7.64034 -157.02 -7.64034 7.64034 0.69 0.000880549 0.000815455 0.0337812 0.0313537 30 3256 40 6.55708e+06 313430 526063. 1820.29 1.24 0.163496 0.142339 21886 126133 -1 2579 15 1081 3185 144508 34487 6.6419 6.6419 -144.865 -6.6419 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0304574 0.0270465 169 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 6.02 vpr 62.97 MiB -1 -1 0.26 18100 13 0.37 -1 -1 32820 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 24.4 MiB 0.26 1537 8423 1899 6115 409 63.0 MiB 0.09 0.00 7.71709 -159.898 -7.71709 7.71709 0.71 0.00102057 0.000944543 0.0424441 0.0392349 36 3879 25 6.55708e+06 421925 612192. 2118.31 2.57 0.260918 0.226219 22750 144809 -1 3339 18 1652 4918 259156 61816 6.7601 6.7601 -150.909 -6.7601 0 0 782063. 2706.10 0.20 0.06 0.10 -1 -1 0.20 0.022951 0.0207361 233 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 5.66 vpr 62.80 MiB -1 -1 0.25 17768 11 0.24 -1 -1 32684 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1421 8703 2291 5674 738 62.8 MiB 0.10 0.00 6.43018 -129.379 -6.43018 6.43018 0.65 0.000920913 0.00085366 0.0466386 0.0431736 38 3311 27 6.55708e+06 373705 638502. 2209.35 2.31 0.235314 0.204093 23326 155178 -1 2799 17 1264 4462 204067 47300 5.62318 5.62318 -122.284 -5.62318 0 0 851065. 2944.86 0.22 0.09 0.13 -1 -1 0.22 0.0338109 0.0298135 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 6.01 vpr 62.70 MiB -1 -1 0.28 17804 15 0.35 -1 -1 32684 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 24.0 MiB 0.47 1495 8283 1832 5858 593 62.7 MiB 0.09 0.00 9.21891 -185.491 -9.21891 9.21891 0.64 0.000958347 0.000885807 0.0419258 0.0387979 38 3387 17 6.55708e+06 349595 638502. 2209.35 2.29 0.227459 0.197566 23326 155178 -1 2848 14 1200 3863 181857 42467 7.93561 7.93561 -171.681 -7.93561 0 0 851065. 2944.86 0.23 0.08 0.13 -1 -1 0.23 0.0309697 0.0274712 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 11.31 vpr 62.52 MiB -1 -1 0.28 18088 13 0.31 -1 -1 32688 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1391 6271 1140 4757 374 62.5 MiB 0.07 0.00 8.07023 -173.04 -8.07023 8.07023 0.67 0.000743943 0.0006821 0.0262411 0.0241326 30 3593 20 6.55708e+06 361650 526063. 1820.29 7.73 0.277374 0.239094 21886 126133 -1 2903 17 1284 3905 184760 43217 7.10844 7.10844 -159.923 -7.10844 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0343961 0.0302981 194 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.58 vpr 62.13 MiB -1 -1 0.24 17508 12 0.20 -1 -1 32844 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63624 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 23.6 MiB 0.46 1116 9738 2558 6406 774 62.1 MiB 0.09 0.00 7.61081 -154.169 -7.61081 7.61081 0.63 0.000781222 0.000724484 0.0406666 0.0376605 30 3005 25 6.55708e+06 349595 526063. 1820.29 4.18 0.227645 0.197295 21886 126133 -1 2423 19 1255 3517 162640 39524 6.47024 6.47024 -141.633 -6.47024 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0302983 0.0266056 157 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 9.73 vpr 62.04 MiB -1 -1 0.20 17540 11 0.20 -1 -1 32664 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63524 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1023 14221 4533 7413 2275 62.0 MiB 0.12 0.00 6.85492 -138.928 -6.85492 6.85492 0.64 0.000733699 0.000679105 0.0588553 0.0544248 30 2928 46 6.55708e+06 253155 526063. 1820.29 6.51 0.298242 0.258627 21886 126133 -1 2286 18 1070 2867 167614 45871 6.07244 6.07244 -136.814 -6.07244 0 0 666494. 2306.21 0.21 0.07 0.12 -1 -1 0.21 0.0275551 0.0242017 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 7.09 vpr 62.54 MiB -1 -1 0.25 17600 13 0.31 -1 -1 32756 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 23.9 MiB 0.47 1413 7544 1727 4833 984 62.5 MiB 0.08 0.00 7.87899 -160.785 -7.87899 7.87899 0.65 0.000947523 0.00087614 0.0384111 0.0355323 36 4021 32 6.55708e+06 349595 612192. 2118.31 3.40 0.249496 0.21695 22750 144809 -1 3157 19 1672 5284 291593 66424 7.0005 7.0005 -155.01 -7.0005 0 0 782063. 2706.10 0.23 0.11 0.13 -1 -1 0.23 0.0377968 0.0331596 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.07 vpr 61.89 MiB -1 -1 0.23 17512 10 0.21 -1 -1 32588 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63376 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 23.5 MiB 0.20 868 12919 4781 6181 1957 61.9 MiB 0.11 0.00 5.78714 -114.742 -5.78714 5.78714 0.63 0.000714506 0.000655741 0.0519028 0.0479665 36 2361 20 6.55708e+06 289320 612192. 2118.31 1.97 0.195938 0.170685 22750 144809 -1 1801 14 878 2572 124831 31192 5.29412 5.29412 -108.344 -5.29412 0 0 782063. 2706.10 0.21 0.06 0.13 -1 -1 0.21 0.0225356 0.0199402 137 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 4.83 vpr 62.03 MiB -1 -1 0.22 17344 14 0.19 -1 -1 32628 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63520 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 23.5 MiB 0.48 1127 8083 1934 5578 571 62.0 MiB 0.08 0.00 7.89252 -162.804 -7.89252 7.89252 0.65 0.000769535 0.000712076 0.0347412 0.0321566 30 2792 49 6.55708e+06 289320 526063. 1820.29 1.50 0.159698 0.139173 21886 126133 -1 2526 20 1154 3443 174242 40924 7.06583 7.06583 -157.357 -7.06583 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0314272 0.0275588 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 4.97 vpr 62.29 MiB -1 -1 0.28 18056 13 0.28 -1 -1 32732 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1259 5343 1011 3807 525 62.3 MiB 0.06 0.00 7.51815 -158.387 -7.51815 7.51815 0.64 0.000859942 0.000796204 0.0252866 0.0234705 30 3403 50 6.55708e+06 361650 526063. 1820.29 1.62 0.167142 0.144715 21886 126133 -1 2708 19 1247 3492 163913 39290 6.63024 6.63024 -152.491 -6.63024 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0341109 0.0299565 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 5.90 vpr 61.98 MiB -1 -1 0.23 17380 12 0.20 -1 -1 32592 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63468 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 23.5 MiB 0.31 1126 6425 1245 4721 459 62.0 MiB 0.06 0.00 6.61153 -138.873 -6.61153 6.61153 0.66 0.000724375 0.000671539 0.0264456 0.0244954 26 3323 44 6.55708e+06 313430 477104. 1650.88 2.76 0.138588 0.120423 21022 109990 -1 2679 18 1132 2915 195041 44469 6.17132 6.17132 -140.754 -6.17132 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0274351 0.0240656 138 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 6.51 vpr 62.44 MiB -1 -1 0.21 17720 12 0.24 -1 -1 32968 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 24.0 MiB 0.29 1378 9336 2424 5781 1131 62.4 MiB 0.09 0.00 6.98257 -148.375 -6.98257 6.98257 0.69 0.000657391 0.000601924 0.0376873 0.0344535 28 3883 35 6.55708e+06 313430 500653. 1732.36 3.21 0.174672 0.152182 21310 115450 -1 3415 24 1639 5314 510743 142015 6.18298 6.18298 -150.989 -6.18298 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.043068 0.0374353 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 4.84 vpr 62.68 MiB -1 -1 0.24 18208 13 0.28 -1 -1 32748 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 24.1 MiB 0.45 1315 8372 1899 5332 1141 62.7 MiB 0.09 0.00 7.89081 -157.415 -7.89081 7.89081 0.63 0.000914525 0.000845925 0.0412714 0.0382094 30 3625 30 6.55708e+06 349595 526063. 1820.29 1.32 0.169378 0.148359 21886 126133 -1 3073 17 1352 4093 205925 47312 6.8797 6.8797 -151.217 -6.8797 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0341033 0.0300214 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 4.31 vpr 62.04 MiB -1 -1 0.23 17380 11 0.17 -1 -1 32668 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 23.6 MiB 0.23 1172 8405 1842 5723 840 62.0 MiB 0.08 0.00 6.25963 -142.54 -6.25963 6.25963 0.63 0.00076163 0.000696475 0.0344382 0.0318608 28 3065 24 6.55708e+06 301375 500653. 1732.36 1.25 0.129778 0.113739 21310 115450 -1 2690 15 1100 2962 178308 40669 5.57032 5.57032 -138.049 -5.57032 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0248129 0.021875 148 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 5.76 vpr 62.33 MiB -1 -1 0.24 17324 13 0.20 -1 -1 32756 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 23.7 MiB 0.28 1201 7888 1972 5242 674 62.3 MiB 0.08 0.00 7.53481 -156.077 -7.53481 7.53481 0.63 0.000830592 0.000769757 0.0365793 0.0338676 36 3071 27 6.55708e+06 289320 612192. 2118.31 2.60 0.213351 0.185131 22750 144809 -1 2681 15 1095 3271 177755 41392 6.66944 6.66944 -146.621 -6.66944 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0275581 0.0243411 164 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 4.96 vpr 62.33 MiB -1 -1 0.25 17660 13 0.26 -1 -1 33036 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 23.8 MiB 0.74 1318 8165 2007 5452 706 62.3 MiB 0.09 0.00 7.90343 -168.183 -7.90343 7.90343 0.65 0.000918547 0.000851292 0.0401702 0.0371416 30 3226 19 6.55708e+06 337540 526063. 1820.29 1.09 0.1467 0.128589 21886 126133 -1 2814 20 1363 3853 181964 43791 6.9979 6.9979 -160.968 -6.9979 0 0 666494. 2306.21 0.26 0.08 0.12 -1 -1 0.26 0.0332039 0.0296354 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 11.73 vpr 62.04 MiB -1 -1 0.25 17644 11 0.24 -1 -1 32716 -1 -1 27 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 23.5 MiB 0.19 1119 12568 3466 6955 2147 62.0 MiB 0.11 0.00 6.27069 -123.259 -6.27069 6.27069 0.68 0.000796484 0.000737787 0.0546023 0.0505123 30 2940 50 6.55708e+06 325485 526063. 1820.29 8.44 0.356377 0.306526 21886 126133 -1 2517 15 1008 3060 157394 36211 5.50298 5.50298 -118.863 -5.50298 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.0269436 0.023766 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 11.68 vpr 62.73 MiB -1 -1 0.29 18324 14 0.31 -1 -1 33224 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 24.3 MiB 0.35 1606 6711 1323 5111 277 62.7 MiB 0.08 0.00 8.36721 -183.374 -8.36721 8.36721 0.65 0.00102486 0.000947672 0.0344959 0.0319436 30 4329 37 6.55708e+06 421925 526063. 1820.29 8.12 0.32868 0.284636 21886 126133 -1 3550 24 1906 6091 351716 94716 7.38604 7.38604 -174.226 -7.38604 0 0 666494. 2306.21 0.20 0.13 0.14 -1 -1 0.20 0.0393313 0.0353088 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 4.87 vpr 61.95 MiB -1 -1 0.19 17232 12 0.15 -1 -1 32552 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63436 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 23.5 MiB 0.26 1117 4987 873 3940 174 61.9 MiB 0.05 0.00 6.95154 -148.876 -6.95154 6.95154 0.63 0.000724331 0.000671803 0.0204352 0.0189657 36 2672 44 6.55708e+06 337540 612192. 2118.31 1.90 0.185477 0.159989 22750 144809 -1 2387 13 875 2354 137817 31246 5.97978 5.97978 -139.331 -5.97978 0 0 782063. 2706.10 0.20 0.06 0.13 -1 -1 0.20 0.0217652 0.0193206 138 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 6.78 vpr 62.48 MiB -1 -1 0.27 18024 13 0.29 -1 -1 32920 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1370 8603 2025 5470 1108 62.5 MiB 0.09 0.00 7.91043 -160.998 -7.91043 7.91043 0.64 0.000918437 0.000850414 0.0435052 0.0402443 28 4265 49 6.55708e+06 301375 500653. 1732.36 3.27 0.199403 0.174719 21310 115450 -1 3442 17 1520 4590 286136 64967 6.7575 6.7575 -154.136 -6.7575 0 0 612192. 2118.31 0.17 0.11 0.11 -1 -1 0.17 0.0343638 0.0302617 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 4.16 vpr 62.10 MiB -1 -1 0.23 17728 13 0.17 -1 -1 32472 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1056 8130 1788 5768 574 62.1 MiB 0.08 0.00 7.50778 -157.173 -7.50778 7.50778 0.64 0.000760406 0.00070167 0.0336013 0.0310274 30 2704 18 6.55708e+06 313430 526063. 1820.29 0.96 0.121572 0.106554 21886 126133 -1 2313 16 1098 2983 138610 33886 6.4407 6.4407 -148.047 -6.4407 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0266043 0.0235058 151 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 5.66 vpr 62.36 MiB -1 -1 0.26 17564 12 0.21 -1 -1 32784 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1163 6723 1513 4783 427 62.4 MiB 0.07 0.00 6.89912 -149.425 -6.89912 6.89912 0.65 0.00088808 0.00082135 0.033233 0.030714 28 3528 41 6.55708e+06 313430 500653. 1732.36 2.40 0.174982 0.151967 21310 115450 -1 2778 17 1161 3524 204815 47103 6.14118 6.14118 -144.817 -6.14118 0 0 612192. 2118.31 0.22 0.06 0.10 -1 -1 0.22 0.0268275 0.0237434 176 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 17.83 vpr 62.72 MiB -1 -1 0.29 18192 15 0.47 -1 -1 33296 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1744 7060 1356 4899 805 62.7 MiB 0.09 0.00 8.47263 -171.112 -8.47263 8.47263 0.68 0.00113888 0.00105259 0.0395491 0.0365833 30 5706 47 6.55708e+06 433980 526063. 1820.29 14.03 0.405721 0.349834 21886 126133 -1 4008 29 2412 8168 612663 183661 7.6799 7.6799 -172.318 -7.6799 0 0 666494. 2306.21 0.18 0.20 0.11 -1 -1 0.18 0.0630638 0.0549973 256 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 4.35 vpr 61.52 MiB -1 -1 0.21 17184 10 0.11 -1 -1 32088 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62992 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 23.1 MiB 0.15 585 9368 2413 5125 1830 61.5 MiB 0.07 0.00 5.46394 -116.249 -5.46394 5.46394 0.63 0.000565513 0.000524361 0.0323319 0.0299492 34 2054 46 6.55708e+06 216990 585099. 2024.56 1.54 0.163501 0.141471 22462 138074 -1 1479 14 714 1708 96959 25712 5.08126 5.08126 -118.595 -5.08126 0 0 742403. 2568.87 0.21 0.03 0.12 -1 -1 0.21 0.0106667 0.00963732 90 84 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.77 vpr 62.02 MiB -1 -1 0.24 17540 13 0.18 -1 -1 32752 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 23.5 MiB 0.17 1072 8919 2278 5395 1246 62.0 MiB 0.08 0.00 7.24406 -148.604 -7.24406 7.24406 0.65 0.000751972 0.000696948 0.0378901 0.0351301 36 2670 24 6.55708e+06 301375 612192. 2118.31 1.67 0.188483 0.164096 22750 144809 -1 2343 16 922 2630 141884 33368 6.41738 6.41738 -142.598 -6.41738 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.026035 0.0230102 143 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 4.40 vpr 62.24 MiB -1 -1 0.18 17396 12 0.20 -1 -1 32828 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1142 5938 1144 4647 147 62.2 MiB 0.07 0.00 7.66077 -153.727 -7.66077 7.66077 0.63 0.000850854 0.000789001 0.0292442 0.0270897 28 3544 30 6.55708e+06 289320 500653. 1732.36 1.34 0.144068 0.125452 21310 115450 -1 2828 19 1483 4043 231278 55286 6.90984 6.90984 -156.407 -6.90984 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0336964 0.0294795 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 4.11 vpr 61.61 MiB -1 -1 0.21 17112 9 0.13 -1 -1 32588 -1 -1 22 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63088 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 23.0 MiB 0.16 820 8191 2009 5395 787 61.6 MiB 0.07 0.00 5.29417 -99.0147 -5.29417 5.29417 0.63 0.000620747 0.000575977 0.0319767 0.0296659 28 2275 34 6.55708e+06 265210 500653. 1732.36 1.18 0.117706 0.102746 21310 115450 -1 1826 18 849 2459 131345 31144 4.7914 4.7914 -98.7253 -4.7914 0 0 612192. 2118.31 0.17 0.06 0.14 -1 -1 0.17 0.0229447 0.0200984 111 110 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 6.75 vpr 62.74 MiB -1 -1 0.27 17720 12 0.25 -1 -1 32720 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 24.0 MiB 0.30 1501 7867 1766 5013 1088 62.7 MiB 0.08 0.00 7.24465 -156.602 -7.24465 7.24465 0.64 0.000958498 0.000887543 0.0378301 0.0350031 36 4232 25 6.55708e+06 397815 612192. 2118.31 3.26 0.205148 0.178354 22750 144809 -1 3544 18 1721 4955 296703 67997 6.47224 6.47224 -152.633 -6.47224 0 0 782063. 2706.10 0.29 0.11 0.14 -1 -1 0.29 0.0365336 0.0322191 212 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 5.04 vpr 62.54 MiB -1 -1 0.23 17924 13 0.30 -1 -1 32772 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1408 5343 959 3971 413 62.5 MiB 0.08 0.00 8.27458 -166.489 -8.27458 8.27458 0.71 0.000954636 0.00088339 0.0372846 0.0345073 30 3772 34 6.55708e+06 361650 526063. 1820.29 1.64 0.173169 0.151512 21886 126133 -1 3080 17 1417 4341 206664 49561 7.2801 7.2801 -159.365 -7.2801 0 0 666494. 2306.21 0.18 0.09 0.07 -1 -1 0.18 0.0348652 0.0307083 200 199 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.77 vpr 62.60 MiB -1 -1 0.20 17792 1 0.04 -1 -1 29972 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1124 13017 3784 8461 772 62.6 MiB 0.13 0.00 5.44269 -161.211 -5.44269 5.44269 0.64 0.000715108 0.000665402 0.0446369 0.0414901 32 2442 21 6.64007e+06 401856 554710. 1919.41 0.82 0.127216 0.112398 22834 132086 -1 2197 22 1375 2183 153641 35574 4.17168 4.17168 -144.286 -4.17168 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0298896 0.026078 154 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.82 vpr 62.80 MiB -1 -1 0.20 17900 1 0.03 -1 -1 30408 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 24.2 MiB 0.21 1017 14639 5117 7505 2017 62.8 MiB 0.15 0.00 4.98742 -150.865 -4.98742 4.98742 0.64 0.00071411 0.000663173 0.0574368 0.0533487 32 2368 24 6.64007e+06 301392 554710. 1919.41 0.86 0.144263 0.127817 22834 132086 -1 2072 21 1726 2597 175792 40973 4.22388 4.22388 -142.728 -4.22388 0 0 701300. 2426.64 0.19 0.08 0.15 -1 -1 0.19 0.0293314 0.0256167 139 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.10 vpr 62.34 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30204 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.7 MiB 0.24 982 7575 1808 5319 448 62.3 MiB 0.08 0.00 4.35696 -123.732 -4.35696 4.35696 0.63 0.000622767 0.000584088 0.0270145 0.0251309 26 2567 31 6.64007e+06 288834 477104. 1650.88 1.23 0.11292 0.0988938 21682 110474 -1 2183 21 1344 1867 149309 34880 3.78583 3.78583 -126.34 -3.78583 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0261028 0.0227748 126 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.52 vpr 62.19 MiB -1 -1 0.19 17244 1 0.04 -1 -1 30268 -1 -1 27 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63684 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.7 MiB 0.05 985 10228 2796 6251 1181 62.2 MiB 0.10 0.00 4.65835 -126.219 -4.65835 4.65835 0.63 0.000635111 0.000589893 0.0354783 0.0329869 32 2212 23 6.64007e+06 339066 554710. 1919.41 0.84 0.112039 0.0984495 22834 132086 -1 1983 21 1477 2736 183594 40068 3.57863 3.57863 -119.515 -3.57863 0 0 701300. 2426.64 0.19 0.08 0.10 -1 -1 0.19 0.026366 0.0229502 126 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.50 vpr 62.39 MiB -1 -1 0.15 17576 1 0.03 -1 -1 30228 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.8 MiB 0.08 1007 9687 2297 6508 882 62.4 MiB 0.10 0.00 4.57112 -133.029 -4.57112 4.57112 0.63 0.000685553 0.000637928 0.0369668 0.0344092 30 2231 22 6.64007e+06 288834 526063. 1820.29 0.84 0.119461 0.105286 22546 126617 -1 2005 18 1146 2272 118837 28404 3.55723 3.55723 -127.325 -3.55723 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0249203 0.0218348 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.19 vpr 62.47 MiB -1 -1 0.18 17900 1 0.03 -1 -1 30260 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 24.1 MiB 0.11 1031 10673 2804 7227 642 62.5 MiB 0.11 0.00 3.47522 -121.603 -3.47522 3.47522 0.67 0.000720224 0.000669161 0.0366703 0.0340659 26 2825 19 6.64007e+06 426972 477104. 1650.88 1.37 0.120069 0.105815 21682 110474 -1 2327 20 1354 2211 164800 38038 3.00717 3.00717 -119.334 -3.00717 0 0 585099. 2024.56 0.16 0.08 0.08 -1 -1 0.16 0.0286129 0.0249948 142 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.58 vpr 62.16 MiB -1 -1 0.11 17312 1 0.03 -1 -1 30664 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 23.6 MiB 0.10 589 11532 3345 7374 813 62.2 MiB 0.11 0.00 4.00878 -100.807 -4.00878 4.00878 0.68 0.00056006 0.00051829 0.0467099 0.043428 32 1498 22 6.64007e+06 238602 554710. 1919.41 0.79 0.114318 0.101236 22834 132086 -1 1201 19 858 1449 89869 22288 2.83977 2.83977 -92.5512 -2.83977 0 0 701300. 2426.64 0.19 0.05 0.14 -1 -1 0.19 0.0212322 0.0184908 93 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.52 vpr 62.21 MiB -1 -1 0.18 17156 1 0.03 -1 -1 30080 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.07 892 10318 2381 7361 576 62.2 MiB 0.09 0.00 3.4251 -99.9264 -3.4251 3.4251 0.63 0.000596582 0.0005557 0.0310054 0.0288281 28 2086 21 6.64007e+06 389298 500653. 1732.36 0.81 0.101315 0.0890007 21970 115934 -1 1808 19 967 1802 110205 25769 2.73877 2.73877 -95.7999 -2.73877 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.022673 0.0197983 115 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.58 vpr 62.54 MiB -1 -1 0.15 17772 1 0.03 -1 -1 30180 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 24.0 MiB 0.22 960 9623 2754 6116 753 62.5 MiB 0.09 0.00 3.62801 -120.96 -3.62801 3.62801 0.64 0.000637918 0.000593334 0.0361898 0.0336753 28 2163 20 6.64007e+06 251160 500653. 1732.36 0.79 0.110239 0.0970858 21970 115934 -1 1910 18 1014 1444 99492 23284 3.14783 3.14783 -117.396 -3.14783 0 0 612192. 2118.31 0.17 0.06 0.11 -1 -1 0.17 0.0237328 0.0208442 111 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.80 vpr 62.06 MiB -1 -1 0.12 17500 1 0.03 -1 -1 30080 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.6 MiB 0.17 841 12506 4273 6237 1996 62.1 MiB 0.12 0.00 3.87558 -126.558 -3.87558 3.87558 0.69 0.000617351 0.000571712 0.0466399 0.0433854 28 1979 19 6.64007e+06 213486 500653. 1732.36 0.88 0.113957 0.101028 21970 115934 -1 1831 18 1137 1856 132799 29714 2.85977 2.85977 -117.521 -2.85977 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.023396 0.0205072 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.78 vpr 62.18 MiB -1 -1 0.13 17464 1 0.03 -1 -1 30340 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63668 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.5 MiB 0.14 796 12078 3517 6936 1625 62.2 MiB 0.11 0.00 4.09995 -113.228 -4.09995 4.09995 0.66 0.00061672 0.000573424 0.0460834 0.0428695 32 1650 18 6.64007e+06 213486 554710. 1919.41 0.78 0.116359 0.102969 22834 132086 -1 1526 18 834 1316 89472 20060 2.80076 2.80076 -103.785 -2.80076 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0223267 0.019433 98 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.67 vpr 62.31 MiB -1 -1 0.19 17312 1 0.03 -1 -1 30108 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 23.8 MiB 0.20 811 8448 2011 5971 466 62.3 MiB 0.09 0.00 3.76138 -119.223 -3.76138 3.76138 0.65 0.000595625 0.000553916 0.0300347 0.0277524 32 2052 21 6.64007e+06 226044 554710. 1919.41 0.79 0.0993311 0.0869632 22834 132086 -1 1782 17 1005 1343 92897 22236 2.94117 2.94117 -111.84 -2.94117 0 0 701300. 2426.64 0.23 0.05 0.13 -1 -1 0.23 0.0211891 0.0185846 109 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.86 vpr 62.50 MiB -1 -1 0.20 17772 1 0.03 -1 -1 30424 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 24.1 MiB 0.20 1094 10228 2675 6918 635 62.5 MiB 0.11 0.00 4.45106 -144.281 -4.45106 4.45106 0.65 0.000694857 0.000645755 0.038396 0.0356676 28 2647 19 6.64007e+06 301392 500653. 1732.36 0.95 0.119458 0.105329 21970 115934 -1 2302 21 1517 2276 157265 35537 3.39957 3.39957 -130.65 -3.39957 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0288436 0.0251533 139 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.10 vpr 62.67 MiB -1 -1 0.16 17636 1 0.03 -1 -1 30280 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 24.0 MiB 0.15 940 8735 2013 6355 367 62.7 MiB 0.10 0.00 5.05578 -142.31 -5.05578 5.05578 0.65 0.000721625 0.000670063 0.0315537 0.0292718 26 2673 31 6.64007e+06 389298 477104. 1650.88 1.25 0.131309 0.115034 21682 110474 -1 2369 24 1700 2809 252365 57579 4.10303 4.10303 -143.708 -4.10303 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0264947 0.023045 134 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.54 vpr 61.96 MiB -1 -1 0.17 17508 1 0.03 -1 -1 30380 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.4 MiB 0.11 637 6668 1590 4651 427 62.0 MiB 0.07 0.00 3.28519 -90.5035 -3.28519 3.28519 0.70 0.000546239 0.000508512 0.0277072 0.0258924 28 1662 22 6.64007e+06 263718 500653. 1732.36 0.83 0.0932098 0.0819535 21970 115934 -1 1542 18 837 1409 97266 22395 2.87917 2.87917 -91.5222 -2.87917 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0198158 0.0172555 98 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.69 vpr 62.60 MiB -1 -1 0.19 17504 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 24.0 MiB 0.15 961 6890 1523 4904 463 62.6 MiB 0.08 0.00 4.06512 -124.686 -4.06512 4.06512 0.66 0.000720839 0.000669571 0.0289929 0.0269658 32 2268 21 6.64007e+06 276276 554710. 1919.41 0.86 0.114843 0.100645 22834 132086 -1 2137 19 1378 2491 165441 37726 3.26157 3.26157 -120.084 -3.26157 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0277771 0.0243553 133 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 3.80 vpr 62.58 MiB -1 -1 0.19 17624 1 0.03 -1 -1 30088 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1114 15447 4373 9239 1835 62.6 MiB 0.15 0.00 4.49004 -144.522 -4.49004 4.49004 0.64 0.000707714 0.000658878 0.0581151 0.0540047 30 2367 22 6.64007e+06 288834 526063. 1820.29 0.92 0.140926 0.125116 22546 126617 -1 2082 22 1283 1774 106684 24449 3.52743 3.52743 -132.363 -3.52743 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0293273 0.0256321 138 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.50 vpr 62.26 MiB -1 -1 0.09 17364 1 0.03 -1 -1 30288 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.8 MiB 0.10 723 8493 1892 6266 335 62.3 MiB 0.09 0.00 2.85064 -99.9956 -2.85064 2.85064 0.63 0.000655907 0.000607859 0.0284804 0.0264517 26 1971 23 6.64007e+06 364182 477104. 1650.88 0.92 0.106345 0.0930189 21682 110474 -1 1682 23 1157 1829 133991 31802 2.16631 2.16631 -95.695 -2.16631 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0286757 0.0248945 110 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.34 vpr 61.74 MiB -1 -1 0.14 17312 1 0.03 -1 -1 30160 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63220 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.1 MiB 0.06 681 12139 4399 6260 1480 61.7 MiB 0.09 0.00 2.38033 -81.64 -2.38033 2.38033 0.64 0.000494934 0.000459568 0.0383807 0.0356678 32 1405 20 6.64007e+06 188370 554710. 1919.41 0.73 0.0957291 0.0845742 22834 132086 -1 1332 19 687 974 77488 17623 2.11131 2.11131 -84.6627 -2.11131 0 0 701300. 2426.64 0.20 0.03 0.12 -1 -1 0.20 0.0105295 0.00931477 81 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.70 vpr 62.27 MiB -1 -1 0.19 17428 1 0.03 -1 -1 30448 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 23.8 MiB 0.22 706 14123 4873 6572 2678 62.3 MiB 0.12 0.00 4.95769 -142.332 -4.95769 4.95769 0.64 0.000614608 0.000571874 0.0503569 0.0468352 36 1838 20 6.64007e+06 251160 612192. 2118.31 1.77 0.165203 0.145008 23410 145293 -1 1478 17 801 1099 85912 22741 3.70143 3.70143 -127.634 -3.70143 0 0 782063. 2706.10 0.21 0.06 0.13 -1 -1 0.21 0.0215654 0.0189283 128 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.48 vpr 62.54 MiB -1 -1 0.15 17728 1 0.03 -1 -1 30388 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.9 MiB 0.06 905 8735 1899 5951 885 62.5 MiB 0.09 0.00 4.18572 -129.145 -4.18572 4.18572 0.67 0.000701475 0.000645104 0.0305489 0.0283647 30 2116 22 6.64007e+06 389298 526063. 1820.29 0.80 0.113734 0.0993768 22546 126617 -1 1860 21 1144 1874 106775 25052 3.51643 3.51643 -123.572 -3.51643 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0283488 0.0247594 135 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.83 vpr 62.95 MiB -1 -1 0.17 17792 1 0.03 -1 -1 30244 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 24.3 MiB 0.25 1203 12167 3358 7515 1294 63.0 MiB 0.13 0.00 4.64616 -143.706 -4.64616 4.64616 0.65 0.000728747 0.00067724 0.0476266 0.0442487 26 3212 23 6.64007e+06 313950 477104. 1650.88 1.81 0.137198 0.121241 21682 110474 -1 2759 22 1650 2668 239641 52048 4.42528 4.42528 -144.001 -4.42528 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0291194 0.0258586 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.48 vpr 61.70 MiB -1 -1 0.18 16976 1 0.02 -1 -1 30648 -1 -1 18 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63180 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.1 MiB 0.16 410 10636 4183 5187 1266 61.7 MiB 0.07 0.00 2.43955 -66.7065 -2.43955 2.43955 0.63 0.000430156 0.000399752 0.0301011 0.0279994 26 1192 25 6.64007e+06 226044 477104. 1650.88 0.78 0.0855527 0.0754868 21682 110474 -1 933 19 592 836 60371 15069 1.93811 1.93811 -66.8476 -1.93811 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0151801 0.0133364 77 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.59 vpr 62.23 MiB -1 -1 0.18 17184 1 0.03 -1 -1 30232 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.8 MiB 0.06 995 7897 1725 4978 1194 62.2 MiB 0.08 0.00 5.05066 -128.356 -5.05066 5.05066 0.66 0.000621641 0.000578795 0.0284151 0.0264605 28 2296 20 6.64007e+06 263718 500653. 1732.36 0.82 0.100861 0.0884325 21970 115934 -1 2002 19 1149 2144 141277 31796 3.76362 3.76362 -124.406 -3.76362 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0302627 0.0264445 118 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.24 vpr 61.64 MiB -1 -1 0.08 17004 1 0.02 -1 -1 30108 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63124 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.1 MiB 0.07 661 11200 3826 5626 1748 61.6 MiB 0.07 0.00 2.56853 -79.0193 -2.56853 2.56853 0.63 0.000423618 0.000393301 0.0298689 0.0277424 28 1267 14 6.64007e+06 175812 500653. 1732.36 0.72 0.0786409 0.0698868 21970 115934 -1 1189 14 407 458 37605 8621 2.02211 2.02211 -77.5953 -2.02211 0 0 612192. 2118.31 0.17 0.03 0.10 -1 -1 0.17 0.0130873 0.0115158 79 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.50 vpr 62.27 MiB -1 -1 0.18 17400 1 0.03 -1 -1 30436 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.8 MiB 0.06 831 10318 2723 6880 715 62.3 MiB 0.10 0.00 4.58015 -125.342 -4.58015 4.58015 0.63 0.000625513 0.000580529 0.0327761 0.0304523 28 2131 21 6.64007e+06 376740 500653. 1732.36 0.83 0.107341 0.0943208 21970 115934 -1 1845 18 1048 1710 106719 26161 3.57362 3.57362 -117.035 -3.57362 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0233594 0.0204135 123 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.60 vpr 62.24 MiB -1 -1 0.13 17248 1 0.03 -1 -1 30352 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.7 MiB 0.06 850 7439 1494 5462 483 62.2 MiB 0.07 0.00 3.82887 -106.637 -3.82887 3.82887 0.74 0.000495139 0.000453898 0.0194017 0.0178374 28 2324 24 6.64007e+06 389298 500653. 1732.36 0.87 0.0972265 0.0845006 21970 115934 -1 1818 19 1113 2008 106218 27824 2.96817 2.96817 -107.142 -2.96817 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0244515 0.0214183 128 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.17 vpr 62.36 MiB -1 -1 0.12 17848 1 0.03 -1 -1 30216 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 23.8 MiB 0.13 906 17635 6157 8662 2816 62.4 MiB 0.16 0.00 4.78135 -133.838 -4.78135 4.78135 0.65 0.000685258 0.000636188 0.0613465 0.0569353 28 2693 30 6.64007e+06 339066 500653. 1732.36 1.44 0.153206 0.135698 21970 115934 -1 2068 18 1181 2011 163906 36763 3.79863 3.79863 -128.222 -3.79863 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0250737 0.0219797 126 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.50 vpr 62.16 MiB -1 -1 0.11 17532 1 0.03 -1 -1 30028 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63648 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.09 735 5928 1206 4471 251 62.2 MiB 0.06 0.00 3.02179 -99.7239 -3.02179 3.02179 0.63 0.000605528 0.000563599 0.0225999 0.0210452 26 2048 22 6.64007e+06 200928 477104. 1650.88 0.90 0.0955974 0.0834544 21682 110474 -1 1729 20 1095 1740 122619 28865 3.06837 3.06837 -113.451 -3.06837 0 0 585099. 2024.56 0.17 0.09 0.12 -1 -1 0.17 0.0299786 0.0261106 101 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.54 vpr 61.95 MiB -1 -1 0.18 17504 1 0.03 -1 -1 30140 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.4 MiB 0.08 661 11617 2521 8405 691 61.9 MiB 0.09 0.00 3.24119 -97.0143 -3.24119 3.24119 0.64 0.000570344 0.00053096 0.0374839 0.0348677 28 1701 20 6.64007e+06 288834 500653. 1732.36 0.90 0.103819 0.0916309 21970 115934 -1 1547 17 853 1296 94316 21406 2.79497 2.79497 -96.8 -2.79497 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0197295 0.0172216 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.60 vpr 62.07 MiB -1 -1 0.18 17644 1 0.03 -1 -1 30064 -1 -1 23 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.5 MiB 0.07 583 14123 3845 8834 1444 62.1 MiB 0.11 0.00 3.43604 -94.4648 -3.43604 3.43604 0.63 0.00055454 0.000515695 0.0456054 0.0424057 28 1800 26 6.64007e+06 288834 500653. 1732.36 0.92 0.116046 0.102442 21970 115934 -1 1566 20 916 1539 109893 29879 2.74177 2.74177 -95.1293 -2.74177 0 0 612192. 2118.31 0.23 0.03 0.11 -1 -1 0.23 0.0122704 0.0108113 98 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.81 vpr 62.13 MiB -1 -1 0.16 17100 1 0.03 -1 -1 30260 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.5 MiB 0.06 702 4763 881 3747 135 62.1 MiB 0.05 0.00 3.98575 -113.461 -3.98575 3.98575 0.67 0.000629302 0.000586718 0.0170139 0.0158625 26 2390 34 6.64007e+06 238602 477104. 1650.88 1.12 0.095251 0.0826246 21682 110474 -1 1814 22 1363 2192 166936 41393 3.11217 3.11217 -116.399 -3.11217 0 0 585099. 2024.56 0.17 0.07 0.12 -1 -1 0.17 0.0256134 0.0224433 110 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.63 vpr 62.15 MiB -1 -1 0.14 17588 1 0.03 -1 -1 30144 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.5 MiB 0.06 705 6924 1381 5320 223 62.1 MiB 0.07 0.00 3.56847 -102.973 -3.56847 3.56847 0.67 0.00060865 0.000560695 0.0221444 0.0206066 26 2212 43 6.64007e+06 339066 477104. 1650.88 1.00 0.110175 0.0956717 21682 110474 -1 1683 19 1008 1700 120423 28387 2.97797 2.97797 -105.892 -2.97797 0 0 585099. 2024.56 0.16 0.06 0.07 -1 -1 0.16 0.0219971 0.0191803 103 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.56 vpr 62.34 MiB -1 -1 0.18 17536 1 0.03 -1 -1 30332 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 23.8 MiB 0.13 800 11799 3784 6073 1942 62.3 MiB 0.10 0.00 3.4791 -109.298 -3.4791 3.4791 0.64 0.000598207 0.000555751 0.038916 0.0361733 28 1940 18 6.64007e+06 326508 500653. 1732.36 0.78 0.106245 0.0937018 21970 115934 -1 1709 19 961 1369 109961 25852 2.36297 2.36297 -96.7073 -2.36297 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0227502 0.0198097 105 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 3.62 vpr 62.81 MiB -1 -1 0.18 17800 1 0.03 -1 -1 30384 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 24.3 MiB 0.10 1109 16524 4269 9768 2487 62.8 MiB 0.16 0.00 4.35696 -124.032 -4.35696 4.35696 0.65 0.000851818 0.000799641 0.0573464 0.0533602 32 2645 21 6.64007e+06 477204 554710. 1919.41 0.88 0.151745 0.134631 22834 132086 -1 2264 17 1243 2131 135685 30613 3.93102 3.93102 -119.547 -3.93102 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0267255 0.0235557 151 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.81 vpr 62.66 MiB -1 -1 0.19 17576 1 0.03 -1 -1 30272 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1062 10676 2654 7216 806 62.7 MiB 0.11 0.00 3.87558 -130.413 -3.87558 3.87558 0.64 0.000759471 0.000702595 0.0371107 0.0343898 26 2503 24 6.64007e+06 464646 477104. 1650.88 1.01 0.132045 0.116169 21682 110474 -1 2074 19 1563 2519 178447 39029 2.95717 2.95717 -121.371 -2.95717 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0286618 0.0250356 147 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.72 vpr 62.25 MiB -1 -1 0.18 17312 1 0.03 -1 -1 30140 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 23.8 MiB 0.23 894 10228 3268 4917 2043 62.3 MiB 0.10 0.00 4.39381 -127.308 -4.39381 4.39381 0.65 0.000593193 0.000551721 0.0358152 0.0331971 32 2018 21 6.64007e+06 238602 554710. 1919.41 0.84 0.105921 0.093155 22834 132086 -1 1748 19 1015 1433 93274 21875 3.15083 3.15083 -111.221 -3.15083 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0228558 0.0199305 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.75 vpr 62.59 MiB -1 -1 0.19 17608 1 0.03 -1 -1 30412 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 24.0 MiB 0.14 1026 15298 5172 7552 2574 62.6 MiB 0.15 0.00 4.30797 -133.38 -4.30797 4.30797 0.64 0.000718239 0.000667037 0.0589517 0.0547481 32 2288 22 6.64007e+06 313950 554710. 1919.41 0.84 0.144758 0.128306 22834 132086 -1 1951 22 1450 2591 173643 38508 2.89797 2.89797 -112.425 -2.89797 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.030585 0.0266518 138 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.09 vpr 62.53 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30244 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 24.4 MiB 0.36 1296 14996 4340 8343 2313 62.5 MiB 0.15 0.00 5.87616 -177.472 -5.87616 5.87616 0.66 0.00107137 0.00101535 0.0562414 0.0522572 32 3094 21 6.64007e+06 364182 554710. 1919.41 0.90 0.144053 0.127612 22834 132086 -1 2524 19 1742 2613 176076 40477 4.74615 4.74615 -163.707 -4.74615 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.028605 0.0250134 172 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.85 vpr 62.76 MiB -1 -1 0.13 17620 1 0.04 -1 -1 30388 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 24.2 MiB 0.29 1150 16974 4810 10660 1504 62.8 MiB 0.17 0.00 5.08852 -153.875 -5.08852 5.08852 0.64 0.000741348 0.000688796 0.0653868 0.0607044 28 3077 19 6.64007e+06 339066 500653. 1732.36 0.90 0.150853 0.134147 21970 115934 -1 2547 20 1680 2607 189567 42842 4.56048 4.56048 -155.741 -4.56048 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0293994 0.0257367 164 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.56 vpr 62.51 MiB -1 -1 0.19 17868 1 0.03 -1 -1 30400 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 23.9 MiB 0.14 1075 13513 3858 8482 1173 62.5 MiB 0.13 0.00 4.68524 -137.744 -4.68524 4.68524 0.63 0.00069934 0.00064989 0.0468313 0.0434887 30 2366 21 6.64007e+06 389298 526063. 1820.29 0.79 0.128986 0.113924 22546 126617 -1 1961 15 884 1464 71687 17433 3.23063 3.23063 -121.351 -3.23063 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0224408 0.0197664 135 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.92 vpr 62.34 MiB -1 -1 0.18 17420 1 0.03 -1 -1 30468 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 23.8 MiB 0.16 975 7767 1720 5470 577 62.3 MiB 0.08 0.00 4.38513 -117.551 -4.38513 4.38513 0.65 0.000621192 0.00057841 0.0272146 0.0252866 26 2701 24 6.64007e+06 288834 477104. 1650.88 1.15 0.104843 0.0919021 21682 110474 -1 2166 19 1317 1939 167610 36546 3.68463 3.68463 -121.244 -3.68463 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.023845 0.0208563 119 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.16 vpr 62.87 MiB -1 -1 0.20 17884 1 0.03 -1 -1 30436 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 24.6 MiB 0.20 1225 15720 4488 9844 1388 62.9 MiB 0.17 0.00 5.18355 -167.471 -5.18355 5.18355 0.64 0.00086579 0.00080435 0.0589895 0.0547534 26 3193 18 6.64007e+06 502320 477104. 1650.88 1.09 0.158329 0.140034 21682 110474 -1 2728 17 1590 2477 169182 38780 4.27989 4.27989 -152.775 -4.27989 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0304793 0.0266638 174 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.46 vpr 62.09 MiB -1 -1 0.11 17380 1 0.03 -1 -1 30184 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.5 MiB 0.08 755 11064 4559 5783 722 62.1 MiB 0.09 0.00 3.8227 -103.618 -3.8227 3.8227 0.64 0.000569251 0.000528786 0.0362618 0.0336749 30 1736 20 6.64007e+06 263718 526063. 1820.29 0.85 0.102595 0.0903289 22546 126617 -1 1480 21 908 1504 89570 21574 2.79977 2.79977 -98.5206 -2.79977 0 0 666494. 2306.21 0.20 0.06 0.13 -1 -1 0.20 0.0233839 0.0203418 101 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.95 vpr 62.45 MiB -1 -1 0.21 17576 1 0.03 -1 -1 30096 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1189 14518 4594 8025 1899 62.4 MiB 0.15 0.00 5.24081 -156.256 -5.24081 5.24081 0.64 0.00068598 0.000637791 0.0535827 0.0497969 28 3102 25 6.64007e+06 313950 500653. 1732.36 1.03 0.138755 0.122857 21970 115934 -1 2470 20 1224 1701 126371 27807 4.70968 4.70968 -150.995 -4.70968 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.027047 0.0239126 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.90 vpr 62.45 MiB -1 -1 0.15 17812 1 0.03 -1 -1 30268 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1030 10531 2414 7661 456 62.4 MiB 0.12 0.00 4.0171 -121.213 -4.0171 4.0171 0.66 0.00072362 0.00067412 0.0362372 0.0336762 26 3025 43 6.64007e+06 414414 477104. 1650.88 2.13 0.145621 0.127345 21682 110474 -1 2292 14 1163 2099 151082 34983 3.08816 3.08816 -118 -3.08816 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0216481 0.0190938 131 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.61 vpr 62.25 MiB -1 -1 0.17 17116 1 0.03 -1 -1 30060 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.8 MiB 0.06 891 13153 4464 6066 2623 62.3 MiB 0.12 0.00 4.20356 -126.138 -4.20356 4.20356 0.63 0.000633522 0.00058907 0.0448799 0.041756 32 2178 21 6.64007e+06 301392 554710. 1919.41 0.86 0.119764 0.10589 22834 132086 -1 1719 21 1074 2024 133293 30707 3.82482 3.82482 -119.413 -3.82482 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0261382 0.0228338 123 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.54 vpr 62.42 MiB -1 -1 0.19 17776 1 0.03 -1 -1 30308 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1089 13933 3596 8128 2209 62.4 MiB 0.14 0.00 4.81394 -142.313 -4.81394 4.81394 0.60 0.000700153 0.000650679 0.0525015 0.048778 26 2775 32 6.64007e+06 301392 477104. 1650.88 1.57 0.149476 0.131736 21682 110474 -1 2352 18 1152 1596 116971 26606 3.51742 3.51742 -126.978 -3.51742 0 0 585099. 2024.56 0.22 0.07 0.10 -1 -1 0.22 0.0258331 0.022654 138 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.71 vpr 62.85 MiB -1 -1 0.20 17796 1 0.03 -1 -1 30272 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 24.2 MiB 0.16 935 7980 1596 5688 696 62.9 MiB 0.08 0.00 3.76946 -120.7 -3.76946 3.76946 0.68 0.000726051 0.000668689 0.028641 0.0266203 30 2198 19 6.64007e+06 401856 526063. 1820.29 0.84 0.110496 0.096887 22546 126617 -1 1948 17 1065 1931 93576 23283 3.10117 3.10117 -113.819 -3.10117 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0248982 0.0218602 133 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.71 vpr 62.80 MiB -1 -1 0.19 17772 1 0.03 -1 -1 30256 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 24.1 MiB 0.15 901 8796 1803 6364 629 62.8 MiB 0.10 0.00 4.787 -140.677 -4.787 4.787 0.64 0.000745789 0.000692196 0.0304585 0.028289 32 2513 22 6.64007e+06 464646 554710. 1919.41 0.82 0.118929 0.104291 22834 132086 -1 1954 18 1106 1629 93353 23736 3.48203 3.48203 -125.684 -3.48203 0 0 701300. 2426.64 0.25 0.06 0.12 -1 -1 0.25 0.026882 0.0235501 145 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.65 vpr 62.27 MiB -1 -1 0.18 17608 1 0.03 -1 -1 30264 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.8 MiB 0.06 902 12903 3419 8175 1309 62.3 MiB 0.13 0.00 4.24273 -122.494 -4.24273 4.24273 0.75 0.000512073 0.000470057 0.0389235 0.0357683 32 1909 19 6.64007e+06 364182 554710. 1919.41 0.84 0.112757 0.0991028 22834 132086 -1 1739 19 1143 1869 117063 27589 3.64463 3.64463 -118.883 -3.64463 0 0 701300. 2426.64 0.19 0.06 0.08 -1 -1 0.19 0.0243922 0.0213178 122 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.85 vpr 62.51 MiB -1 -1 0.18 17580 1 0.03 -1 -1 30372 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 24.0 MiB 0.21 983 6913 1568 4936 409 62.5 MiB 0.08 0.00 5.07997 -139.694 -5.07997 5.07997 0.72 0.000642421 0.000595637 0.0255685 0.0237639 32 2406 21 6.64007e+06 301392 554710. 1919.41 0.82 0.103313 0.0904823 22834 132086 -1 2179 20 1491 2098 133320 32792 3.85003 3.85003 -128.971 -3.85003 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0261835 0.0229036 133 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.33 vpr 62.68 MiB -1 -1 0.19 17516 1 0.03 -1 -1 30348 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1148 9058 2364 5808 886 62.7 MiB 0.10 0.00 5.0113 -149.211 -5.0113 5.0113 0.68 0.000731018 0.000678776 0.0359504 0.0333048 26 3407 45 6.64007e+06 313950 477104. 1650.88 2.30 0.156583 0.136772 21682 110474 -1 2639 24 1898 3099 233977 51589 4.31263 4.31263 -142.786 -4.31263 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0331519 0.0288885 148 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.97 vpr 62.68 MiB -1 -1 0.21 17576 1 0.03 -1 -1 30256 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 24.2 MiB 0.16 977 15962 5144 8098 2720 62.7 MiB 0.16 0.00 4.21776 -130.397 -4.21776 4.21776 0.64 0.000739301 0.000685369 0.0650922 0.0603868 32 2870 23 6.64007e+06 276276 554710. 1919.41 0.98 0.154874 0.137368 22834 132086 -1 2220 15 1299 2324 157370 35871 3.78082 3.78082 -127.954 -3.78082 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0239374 0.02108 136 77 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.51 vpr 62.06 MiB -1 -1 0.16 17532 1 0.03 -1 -1 30152 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.4 MiB 0.06 763 11398 3223 7297 878 62.1 MiB 0.09 0.00 3.46744 -102.907 -3.46744 3.46744 0.63 0.000558953 0.000520841 0.0347023 0.0322915 26 1977 28 6.64007e+06 301392 477104. 1650.88 0.87 0.106557 0.093677 21682 110474 -1 1674 20 804 1237 85402 19533 2.71977 2.71977 -98.3296 -2.71977 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0221946 0.0193039 97 23 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.74 vpr 62.41 MiB -1 -1 0.19 17508 1 0.03 -1 -1 30440 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 23.8 MiB 0.22 982 8969 2347 6212 410 62.4 MiB 0.10 0.00 4.05536 -139.886 -4.05536 4.05536 0.66 0.000676919 0.00062881 0.0344285 0.0319859 30 2184 22 6.64007e+06 276276 526063. 1820.29 0.84 0.113829 0.100064 22546 126617 -1 1875 19 1272 1814 105981 24118 3.03143 3.03143 -122.855 -3.03143 0 0 666494. 2306.21 0.18 0.06 0.08 -1 -1 0.18 0.0256841 0.0224497 127 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.26 vpr 62.46 MiB -1 -1 0.17 17504 1 0.03 -1 -1 30256 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 24.3 MiB 0.23 1389 7443 1662 5262 519 62.5 MiB 0.10 0.00 5.61123 -170.011 -5.61123 5.61123 0.63 0.000764936 0.000711149 0.029874 0.0277767 28 3624 25 6.64007e+06 364182 500653. 1732.36 1.34 0.124912 0.109349 21970 115934 -1 2961 21 1866 2993 218466 47396 4.65768 4.65768 -159.09 -4.65768 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.031858 0.0278978 169 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.67 vpr 62.36 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30472 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 23.8 MiB 0.15 962 14988 4939 7718 2331 62.4 MiB 0.14 0.00 4.60549 -136.553 -4.60549 4.60549 0.63 0.000694692 0.000645246 0.049945 0.0464469 30 2140 21 6.64007e+06 401856 526063. 1820.29 0.81 0.131351 0.11633 22546 126617 -1 1783 17 1010 1711 104239 23066 2.88497 2.88497 -112.713 -2.88497 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0264284 0.0232124 133 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.43 vpr 62.13 MiB -1 -1 0.16 17368 1 0.03 -1 -1 30324 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63624 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.7 MiB 0.07 702 10423 3012 6489 922 62.1 MiB 0.09 0.00 3.51327 -104.848 -3.51327 3.51327 0.64 0.000594854 0.000553304 0.0340355 0.0316368 28 1807 22 6.64007e+06 326508 500653. 1732.36 0.77 0.106209 0.0935211 21970 115934 -1 1568 22 1108 1754 103440 24891 2.72357 2.72357 -100.219 -2.72357 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0250183 0.0217388 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.01 vpr 62.78 MiB -1 -1 0.20 17876 1 0.03 -1 -1 30340 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1216 15187 4686 7965 2536 62.8 MiB 0.17 0.00 6.49087 -185.665 -6.49087 6.49087 0.63 0.000831771 0.000773283 0.0633436 0.0588618 30 3247 27 6.64007e+06 339066 526063. 1820.29 0.88 0.135336 0.120732 22546 126617 -1 2515 22 1992 2989 190825 42741 4.92734 4.92734 -165.423 -4.92734 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0356343 0.0310874 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.94 vpr 62.63 MiB -1 -1 0.19 17604 1 0.03 -1 -1 30528 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 24.0 MiB 0.15 903 6979 1333 5401 245 62.6 MiB 0.08 0.00 4.64606 -138.337 -4.64606 4.64606 0.64 0.000688693 0.000640439 0.0240618 0.0223953 26 2639 42 6.64007e+06 414414 477104. 1650.88 1.14 0.127284 0.110607 21682 110474 -1 2098 19 1524 2359 164433 38859 3.75183 3.75183 -134.746 -3.75183 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0258701 0.0226108 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.37 vpr 61.98 MiB -1 -1 0.16 17116 1 0.03 -1 -1 30352 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63464 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.5 MiB 0.06 832 12375 4208 6622 1545 62.0 MiB 0.10 0.00 3.58247 -103.673 -3.58247 3.58247 0.64 0.000534391 0.00049757 0.0367471 0.0342109 28 2023 24 6.64007e+06 288834 500653. 1732.36 0.78 0.102637 0.0905276 21970 115934 -1 1729 19 808 1414 115942 25349 2.89797 2.89797 -102.799 -2.89797 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0203822 0.0177449 100 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.92 vpr 62.55 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30080 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.1 MiB 0.12 993 9098 1971 6187 940 62.5 MiB 0.09 0.00 5.56744 -134.001 -5.56744 5.56744 0.64 0.000716042 0.000665021 0.0313615 0.0291637 28 2715 23 6.64007e+06 426972 500653. 1732.36 1.16 0.119878 0.105339 21970 115934 -1 2155 22 1488 2892 193907 44774 4.78768 4.78768 -137.22 -4.78768 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0298208 0.0259943 139 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.47 vpr 61.97 MiB -1 -1 0.16 17132 1 0.03 -1 -1 30120 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63456 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.4 MiB 0.06 822 7770 1860 5212 698 62.0 MiB 0.08 0.00 3.4291 -106.218 -3.4291 3.4291 0.64 0.000561161 0.000523005 0.0267368 0.024882 26 1966 20 6.64007e+06 251160 477104. 1650.88 0.80 0.0921675 0.080851 21682 110474 -1 1794 20 1189 2015 145791 32533 2.96717 2.96717 -110.105 -2.96717 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0218856 0.0190208 104 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.60 vpr 62.15 MiB -1 -1 0.19 17532 1 0.03 -1 -1 30376 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63644 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.7 MiB 0.11 857 12839 3557 7998 1284 62.2 MiB 0.11 0.00 4.12483 -113.809 -4.12483 4.12483 0.64 0.000598645 0.000557152 0.0373807 0.0347601 26 1933 22 6.64007e+06 414414 477104. 1650.88 0.92 0.107972 0.0950287 21682 110474 -1 1626 17 791 1503 98783 21815 2.81177 2.81177 -102.96 -2.81177 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0203803 0.01778 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.75 vpr 62.52 MiB -1 -1 0.20 17776 1 0.03 -1 -1 30236 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1104 17175 4885 10433 1857 62.5 MiB 0.18 0.00 4.60024 -135.427 -4.60024 4.60024 0.64 0.000756615 0.000697243 0.0691796 0.0642894 28 2667 21 6.64007e+06 326508 500653. 1732.36 0.84 0.151786 0.135099 21970 115934 -1 2393 25 1500 2282 138739 32634 4.10842 4.10842 -132.907 -4.10842 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0328187 0.0285775 139 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.63 vpr 62.71 MiB -1 -1 0.15 17864 1 0.03 -1 -1 30280 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 24.2 MiB 0.12 772 4768 876 3724 168 62.7 MiB 0.06 0.00 4.51224 -132.005 -4.51224 4.51224 0.63 0.000706232 0.000655511 0.0196446 0.0182548 32 2190 25 6.64007e+06 301392 554710. 1919.41 0.90 0.108062 0.0941881 22834 132086 -1 1821 22 1657 2534 173073 42172 3.74782 3.74782 -128.311 -3.74782 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0303643 0.0265108 130 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.70 vpr 62.55 MiB -1 -1 0.18 17900 1 0.03 -1 -1 30012 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1030 11891 3350 7362 1179 62.5 MiB 0.12 0.00 4.72138 -141.993 -4.72138 4.72138 0.67 0.000711163 0.000660682 0.0429016 0.0398739 32 2311 18 6.64007e+06 351624 554710. 1919.41 0.84 0.122529 0.108161 22834 132086 -1 2022 18 1159 1995 135404 30180 3.52623 3.52623 -131.325 -3.52623 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0256644 0.0224968 133 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.76 vpr 62.21 MiB -1 -1 0.14 17372 1 0.03 -1 -1 30348 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 23.8 MiB 0.24 799 9356 2375 6010 971 62.2 MiB 0.09 0.00 4.79432 -131.982 -4.79432 4.79432 0.64 0.000603623 0.000561298 0.0338372 0.0314684 26 2160 21 6.64007e+06 213486 477104. 1650.88 0.94 0.104117 0.0915474 21682 110474 -1 1917 20 1110 1536 115013 27360 3.25803 3.25803 -118.562 -3.25803 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0244662 0.0213289 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.68 vpr 62.35 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30544 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 23.8 MiB 0.23 899 12898 4205 6789 1904 62.3 MiB 0.12 0.00 3.96736 -127.03 -3.96736 3.96736 0.63 0.000638233 0.00059284 0.0486761 0.0452454 32 2035 18 6.64007e+06 238602 554710. 1919.41 0.80 0.116056 0.102891 22834 132086 -1 1836 19 1223 1799 123742 27820 3.01863 3.01863 -117.895 -3.01863 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0251628 0.0219614 113 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.09 vpr 62.39 MiB -1 -1 0.17 17620 1 0.03 -1 -1 30356 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.8 MiB 0.12 857 8087 1703 5875 509 62.4 MiB 0.08 0.00 3.59243 -98.9543 -3.59243 3.59243 0.64 0.000671229 0.000624533 0.0267231 0.024854 26 2500 27 6.64007e+06 414414 477104. 1650.88 1.40 0.112613 0.0984252 21682 110474 -1 1945 19 1161 2050 166589 39629 2.76177 2.76177 -99.6151 -2.76177 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0250888 0.0218678 123 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.56 vpr 62.19 MiB -1 -1 0.21 17532 1 0.03 -1 -1 30400 -1 -1 35 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63684 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.7 MiB 0.09 873 14567 3705 9538 1324 62.2 MiB 0.11 0.00 4.33724 -105.319 -4.33724 4.33724 0.63 0.00059201 0.000550886 0.0420061 0.0390643 26 2165 27 6.64007e+06 439530 477104. 1650.88 0.80 0.117235 0.103276 21682 110474 -1 1828 19 946 1883 134782 28404 3.80183 3.80183 -107.35 -3.80183 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0225144 0.0196001 115 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.76 vpr 62.47 MiB -1 -1 0.19 17768 1 0.03 -1 -1 30340 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 24.0 MiB 0.14 857 12980 4441 6366 2173 62.5 MiB 0.12 0.00 4.19523 -120.389 -4.19523 4.19523 0.74 0.00063886 0.000594279 0.0502554 0.0467698 32 1926 20 6.64007e+06 226044 554710. 1919.41 0.82 0.123765 0.109579 22834 132086 -1 1769 19 1175 1932 148827 32317 3.06217 3.06217 -111.242 -3.06217 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0242153 0.0211386 108 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.76 vpr 62.43 MiB -1 -1 0.16 17852 1 0.03 -1 -1 30076 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1011 9385 2419 5667 1299 62.4 MiB 0.10 0.00 4.0237 -135.679 -4.0237 4.0237 0.65 0.000671971 0.000624542 0.0364479 0.0339058 32 2261 23 6.64007e+06 263718 554710. 1919.41 0.82 0.116565 0.102524 22834 132086 -1 2018 18 1093 1588 111076 24869 3.32603 3.32603 -130.745 -3.32603 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0241745 0.0211394 121 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.76 vpr 62.56 MiB -1 -1 0.19 17268 1 0.03 -1 -1 30380 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 24.0 MiB 0.06 926 9383 1965 6366 1052 62.6 MiB 0.09 0.00 4.61041 -129.144 -4.61041 4.61041 0.64 0.000636687 0.000592739 0.0299046 0.0278325 28 2322 28 6.64007e+06 401856 500653. 1732.36 1.11 0.113217 0.0993307 21970 115934 -1 1918 20 1309 2325 142579 33944 3.84183 3.84183 -122.709 -3.84183 0 0 612192. 2118.31 0.16 0.04 0.07 -1 -1 0.16 0.0138205 0.0122676 127 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 3.89 vpr 62.80 MiB -1 -1 0.19 17856 1 0.03 -1 -1 30544 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 24.1 MiB 0.26 1230 14128 4435 7821 1872 62.8 MiB 0.15 0.00 5.3267 -167.408 -5.3267 5.3267 0.63 0.000705439 0.000656018 0.0539561 0.050153 32 3153 21 6.64007e+06 301392 554710. 1919.41 0.88 0.137193 0.121719 22834 132086 -1 2670 20 1471 2127 203069 40274 4.46509 4.46509 -159.817 -4.46509 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0281014 0.0246216 146 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.10 vpr 62.73 MiB -1 -1 0.14 17516 1 0.03 -1 -1 30428 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 24.2 MiB 0.19 846 12473 3077 8180 1216 62.7 MiB 0.14 0.00 5.24026 -142.21 -5.24026 5.24026 0.70 0.000857417 0.000789723 0.0456586 0.0423259 30 2493 25 6.64007e+06 426972 526063. 1820.29 1.02 0.139185 0.122709 22546 126617 -1 1863 20 1088 2106 109487 27680 3.81508 3.81508 -134.95 -3.81508 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0289687 0.0253883 144 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.88 vpr 62.96 MiB -1 -1 0.11 17692 1 0.03 -1 -1 30280 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.5 MiB 0.17 1088 19136 5971 10565 2600 63.0 MiB 0.17 0.00 4.47484 -142.459 -4.47484 4.47484 0.67 0.000751473 0.000698061 0.0639017 0.0593053 28 2720 22 6.64007e+06 464646 500653. 1732.36 1.09 0.155785 0.1384 21970 115934 -1 2387 19 1473 2617 177636 39843 3.70543 3.70543 -136.956 -3.70543 0 0 612192. 2118.31 0.16 0.05 0.11 -1 -1 0.16 0.0157503 0.0140273 140 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.76 vpr 62.11 MiB -1 -1 0.19 17592 1 0.03 -1 -1 30148 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.5 MiB 0.11 810 10756 3573 5296 1887 62.1 MiB 0.10 0.00 3.86158 -115.559 -3.86158 3.86158 0.65 0.000585104 0.000544624 0.0374935 0.0347985 28 2024 20 6.64007e+06 238602 500653. 1732.36 0.79 0.107105 0.0935896 21970 115934 -1 1812 24 1223 2130 161484 35053 2.85977 2.85977 -104.747 -2.85977 0 0 612192. 2118.31 0.26 0.07 0.13 -1 -1 0.26 0.0245218 0.0216489 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.80 vpr 62.69 MiB -1 -1 0.15 17656 1 0.03 -1 -1 30612 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 24.0 MiB 0.16 996 11989 3165 6999 1825 62.7 MiB 0.13 0.00 4.82523 -141.177 -4.82523 4.82523 0.64 0.000728244 0.00067669 0.0459413 0.0423506 32 2408 19 6.64007e+06 288834 554710. 1919.41 0.89 0.130754 0.115218 22834 132086 -1 1994 21 1700 2635 168605 39469 3.73163 3.73163 -133.479 -3.73163 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0300323 0.0262765 138 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.11 vpr 62.52 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30416 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 24.0 MiB 0.16 1103 10743 2816 7025 902 62.5 MiB 0.11 0.00 5.45357 -158.764 -5.45357 5.45357 0.64 0.000695329 0.000646856 0.0394073 0.036608 26 2972 34 6.64007e+06 326508 477104. 1650.88 1.18 0.12453 0.109704 21682 110474 -1 2568 22 1724 2771 237679 51373 4.19368 4.19368 -144.555 -4.19368 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.0201585 0.0178034 140 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.85 vpr 62.55 MiB -1 -1 0.14 17772 1 0.04 -1 -1 30352 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1102 15423 4945 8075 2403 62.6 MiB 0.14 0.00 5.30601 -154.372 -5.30601 5.30601 0.63 0.000690762 0.000642675 0.0533531 0.0496074 28 3024 19 6.64007e+06 376740 500653. 1732.36 0.98 0.133155 0.118147 21970 115934 -1 2450 20 1449 2163 173727 36410 4.47448 4.47448 -149.944 -4.47448 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0274837 0.0240558 148 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.79 vpr 62.87 MiB -1 -1 0.19 17576 1 0.03 -1 -1 30468 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 24.3 MiB 0.20 960 11975 3127 7423 1425 62.9 MiB 0.12 0.00 4.52304 -132.575 -4.52304 4.52304 0.65 0.000728217 0.000676312 0.0427295 0.0396292 32 2201 21 6.64007e+06 414414 554710. 1919.41 0.86 0.128385 0.113013 22834 132086 -1 1847 18 942 1594 100135 23271 3.03543 3.03543 -114.645 -3.03543 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0263898 0.0230799 135 83 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.79 vpr 62.46 MiB -1 -1 0.16 17664 1 0.03 -1 -1 30312 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 23.9 MiB 0.14 891 9571 2183 6911 477 62.5 MiB 0.11 0.00 5.02278 -140.291 -5.02278 5.02278 0.63 0.000715214 0.000664569 0.0393129 0.0365273 30 2581 25 6.64007e+06 263718 526063. 1820.29 0.96 0.131346 0.115493 22546 126617 -1 2011 22 1227 2238 124501 30320 3.82963 3.82963 -134.319 -3.82963 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0304578 0.0265957 134 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.76 vpr 62.65 MiB -1 -1 0.20 17576 1 0.03 -1 -1 30320 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 24.0 MiB 0.16 875 11270 2503 8088 679 62.7 MiB 0.12 0.00 4.91881 -136.338 -4.91881 4.91881 0.65 0.000719081 0.000667388 0.0394595 0.0364711 32 2070 20 6.64007e+06 389298 554710. 1919.41 0.82 0.122765 0.107858 22834 132086 -1 1833 21 1140 1867 115580 27353 3.65943 3.65943 -125.768 -3.65943 0 0 701300. 2426.64 0.19 0.07 0.13 -1 -1 0.19 0.0295278 0.0256608 132 85 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.52 vpr 62.15 MiB -1 -1 0.15 17100 1 0.03 -1 -1 30396 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63644 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.6 MiB 0.05 680 10219 2541 6421 1257 62.2 MiB 0.09 0.00 3.88758 -112.502 -3.88758 3.88758 0.65 0.000549474 0.000511697 0.0353846 0.0329127 28 1667 19 6.64007e+06 188370 500653. 1732.36 0.88 0.100177 0.0885004 21970 115934 -1 1566 19 853 1297 89732 21195 2.92697 2.92697 -106.606 -2.92697 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.020541 0.0180068 96 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.31 vpr 62.64 MiB -1 -1 0.18 17748 1 0.03 -1 -1 30376 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1003 15426 4168 9105 2153 62.6 MiB 0.16 0.00 4.65236 -140.168 -4.65236 4.65236 0.89 0.00125965 0.00118657 0.0527027 0.0484376 28 2185 20 6.64007e+06 401856 500653. 1732.36 1.08 0.139328 0.122854 21970 115934 -1 1998 20 1322 2197 140567 32453 3.84903 3.84903 -133.976 -3.84903 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0289952 0.025299 132 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.98 vpr 62.79 MiB -1 -1 0.16 17796 1 0.03 -1 -1 30264 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 24.2 MiB 0.17 1074 11237 2615 7354 1268 62.8 MiB 0.12 0.00 4.84723 -152.835 -4.84723 4.84723 0.66 0.000777337 0.000722356 0.0484951 0.0451131 32 2517 24 6.64007e+06 276276 554710. 1919.41 0.95 0.145684 0.128587 22834 132086 -1 2165 24 1914 3076 222092 49372 3.86183 3.86183 -143.393 -3.86183 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0329674 0.0288742 148 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.88 vpr 62.14 MiB -1 -1 0.18 17604 1 0.03 -1 -1 30088 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 23.7 MiB 0.27 745 8136 1743 5584 809 62.1 MiB 0.07 0.00 4.31784 -119.848 -4.31784 4.31784 0.64 0.000589694 0.000548877 0.0281466 0.0261957 28 2436 31 6.64007e+06 251160 500653. 1732.36 1.01 0.105986 0.0927071 21970 115934 -1 1890 21 1141 1486 118566 29283 3.66597 3.66597 -125.385 -3.66597 0 0 612192. 2118.31 0.17 0.06 0.07 -1 -1 0.17 0.0239778 0.0208778 109 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.59 vpr 62.29 MiB -1 -1 0.18 17380 1 0.03 -1 -1 30292 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.7 MiB 0.06 720 11430 2918 7192 1320 62.3 MiB 0.10 0.00 3.81035 -108.914 -3.81035 3.81035 0.80 0.000560266 0.000513505 0.0345998 0.0321283 26 2000 23 6.64007e+06 263718 477104. 1650.88 0.79 0.10131 0.0891779 21682 110474 -1 1806 19 1161 1910 131605 30533 2.89397 2.89397 -108.713 -2.89397 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0213612 0.0186465 106 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.48 vpr 62.80 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30624 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1132 12753 3748 7734 1271 62.8 MiB 0.13 0.00 5.06147 -160.912 -5.06147 5.06147 0.64 0.000706986 0.000657166 0.0472128 0.0438917 26 3087 40 6.64007e+06 326508 477104. 1650.88 1.56 0.1536 0.135415 21682 110474 -1 2355 20 1868 2497 190002 41388 3.92229 3.92229 -146.247 -3.92229 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0277822 0.0242861 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.00 vpr 62.59 MiB -1 -1 0.16 17648 1 0.02 -1 -1 30280 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1035 16893 5570 8364 2959 62.6 MiB 0.15 0.00 5.02458 -149.361 -5.02458 5.02458 0.64 0.000706181 0.000656397 0.0594944 0.05526 32 2745 25 6.64007e+06 364182 554710. 1919.41 0.88 0.147976 0.131255 22834 132086 -1 2253 20 1492 2370 153128 36800 4.34809 4.34809 -142.117 -4.34809 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0257169 0.0228581 155 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.35 vpr 62.76 MiB -1 -1 0.16 17396 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.1 MiB 0.12 1057 12164 2729 8794 641 62.8 MiB 0.12 0.00 5.48474 -146.154 -5.48474 5.48474 0.64 0.000719401 0.000665888 0.0412908 0.0382209 28 3239 24 6.64007e+06 452088 500653. 1732.36 1.48 0.133919 0.118767 21970 115934 -1 2648 20 1616 2857 269688 60325 4.87389 4.87389 -152.412 -4.87389 0 0 612192. 2118.31 0.24 0.09 0.12 -1 -1 0.24 0.0253217 0.022463 153 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.78 vpr 62.36 MiB -1 -1 0.18 17696 1 0.03 -1 -1 30248 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 23.8 MiB 0.15 890 11170 2805 7440 925 62.4 MiB 0.12 0.00 3.51924 -105.227 -3.51924 3.51924 0.74 0.000642314 0.000597757 0.0397649 0.0368102 26 2070 19 6.64007e+06 401856 477104. 1650.88 0.82 0.115471 0.101602 21682 110474 -1 1811 19 1221 2143 148491 33695 2.80477 2.80477 -101.447 -2.80477 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0250533 0.0216291 121 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.41 vpr 62.03 MiB -1 -1 0.15 17356 1 0.02 -1 -1 30708 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63520 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.5 MiB 0.06 645 11948 3714 6556 1678 62.0 MiB 0.09 0.00 3.4543 -94.7001 -3.4543 3.4543 0.68 0.000548314 0.000510501 0.0400654 0.03729 26 1652 20 6.64007e+06 263718 477104. 1650.88 0.81 0.107687 0.0950436 21682 110474 -1 1462 20 950 1369 109801 25165 2.92817 2.92817 -95.5092 -2.92817 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0219605 0.0190682 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 62.93 MiB -1 -1 0.21 17664 1 0.03 -1 -1 30300 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.8 MiB 0.19 1270 10743 2480 7803 460 62.9 MiB 0.12 0.00 4.37195 -138.919 -4.37195 4.37195 0.63 0.000809491 0.000752218 0.0461627 0.0428952 32 3375 24 6.64007e+06 326508 554710. 1919.41 1.04 0.128629 0.114139 22834 132086 -1 2791 23 2060 3365 248010 55326 3.84783 3.84783 -138.713 -3.84783 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0357618 0.0311961 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.86 vpr 62.65 MiB -1 -1 0.21 17800 1 0.04 -1 -1 30232 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 24.1 MiB 0.31 989 14828 4611 8220 1997 62.7 MiB 0.14 0.00 5.41669 -159.225 -5.41669 5.41669 0.66 0.00071023 0.000660037 0.0585085 0.0543891 28 2481 23 6.64007e+06 288834 500653. 1732.36 0.85 0.14291 0.126949 21970 115934 -1 2153 20 1535 2472 159921 37576 4.54748 4.54748 -151.702 -4.54748 0 0 612192. 2118.31 0.17 0.08 0.07 -1 -1 0.17 0.028775 0.0251933 152 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.84 vpr 62.29 MiB -1 -1 0.19 17504 1 0.03 -1 -1 30360 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 23.8 MiB 0.30 825 13583 3778 7563 2242 62.3 MiB 0.13 0.00 4.65475 -131.833 -4.65475 4.65475 0.64 0.000657303 0.00061095 0.0519701 0.04829 30 1948 20 6.64007e+06 238602 526063. 1820.29 0.84 0.134105 0.118951 22546 126617 -1 1626 18 802 1237 72373 16961 3.52843 3.52843 -124.473 -3.52843 0 0 666494. 2306.21 0.19 0.05 0.12 -1 -1 0.19 0.0253092 0.0222849 128 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.95 vpr 62.48 MiB -1 -1 0.16 17240 1 0.03 -1 -1 30432 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.9 MiB 0.07 911 16708 5166 8976 2566 62.5 MiB 0.15 0.00 5.41998 -135.015 -5.41998 5.41998 0.64 0.000672471 0.000625111 0.0552309 0.0513016 28 2820 28 6.64007e+06 376740 500653. 1732.36 1.25 0.140752 0.124677 21970 115934 -1 2215 20 1177 1920 157877 36958 3.85082 3.85082 -126.566 -3.85082 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0263475 0.0230392 126 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.34 vpr 62.65 MiB -1 -1 0.15 17812 1 0.03 -1 -1 30216 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 24.2 MiB 0.14 1048 7423 1517 5297 609 62.6 MiB 0.09 0.00 5.01701 -136.816 -5.01701 5.01701 0.64 0.000738087 0.000683191 0.0272552 0.0253411 26 2859 33 6.64007e+06 426972 477104. 1650.88 1.55 0.132451 0.115939 21682 110474 -1 2296 20 1422 2465 203490 44242 3.76082 3.76082 -129.287 -3.76082 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0291294 0.025487 145 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.69 vpr 62.36 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30116 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.8 MiB 0.13 829 7233 1598 5117 518 62.4 MiB 0.07 0.00 3.67989 -107.648 -3.67989 3.67989 0.63 0.000654189 0.000606873 0.0249233 0.0231433 30 2144 22 6.64007e+06 389298 526063. 1820.29 0.89 0.103767 0.0906129 22546 126617 -1 1628 20 1009 1796 99734 24777 2.92597 2.92597 -101.5 -2.92597 0 0 666494. 2306.21 0.22 0.07 0.11 -1 -1 0.22 0.0274135 0.0240456 124 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.83 vpr 62.86 MiB -1 -1 0.19 17516 1 0.03 -1 -1 30340 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1174 10979 2913 7012 1054 62.9 MiB 0.12 0.00 5.12747 -161.736 -5.12747 5.12747 0.63 0.000708682 0.000658963 0.0420086 0.0390671 26 3490 36 6.64007e+06 313950 477104. 1650.88 1.90 0.14334 0.125956 21682 110474 -1 2650 20 1925 2965 218244 49499 4.12068 4.12068 -148.064 -4.12068 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.028161 0.0246536 148 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.83 vpr 62.65 MiB -1 -1 0.13 17908 1 0.03 -1 -1 30084 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1093 17036 4934 9564 2538 62.6 MiB 0.16 0.00 4.75546 -148.188 -4.75546 4.75546 0.64 0.000756673 0.000702616 0.0568535 0.0527537 28 2591 20 6.64007e+06 452088 500653. 1732.36 0.94 0.144197 0.127811 21970 115934 -1 2227 17 1227 1962 128843 29850 3.51922 3.51922 -129.458 -3.51922 0 0 612192. 2118.31 0.18 0.07 0.12 -1 -1 0.18 0.0250233 0.0220306 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.44 vpr 62.06 MiB -1 -1 0.19 17488 1 0.03 -1 -1 30504 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.4 MiB 0.06 731 10536 4018 5581 937 62.1 MiB 0.09 0.00 3.74538 -111.28 -3.74538 3.74538 0.72 0.000573231 0.000533171 0.0382983 0.035651 30 1443 17 6.64007e+06 213486 526063. 1820.29 0.75 0.103052 0.091061 22546 126617 -1 1262 17 750 1088 62961 14826 2.68977 2.68977 -98.4877 -2.68977 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.020887 0.018283 91 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.67 vpr 62.33 MiB -1 -1 0.11 17796 1 0.03 -1 -1 30388 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 23.8 MiB 0.18 882 13849 5109 6856 1884 62.3 MiB 0.12 0.00 4.03956 -127.808 -4.03956 4.03956 0.64 0.000628502 0.000583756 0.0490118 0.0455531 28 2218 24 6.64007e+06 263718 500653. 1732.36 0.89 0.126124 0.111463 21970 115934 -1 1895 23 1297 1769 147915 33084 3.22483 3.22483 -120.552 -3.22483 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0284818 0.0247356 117 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.67 vpr 62.54 MiB -1 -1 0.19 17776 1 0.03 -1 -1 30412 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 23.9 MiB 0.08 954 14020 3601 8035 2384 62.5 MiB 0.12 0.00 4.80044 -128.284 -4.80044 4.80044 0.64 0.000670238 0.000622963 0.0429836 0.0398841 32 2139 23 6.64007e+06 464646 554710. 1919.41 0.84 0.12354 0.108955 22834 132086 -1 2014 21 1419 2451 173087 38123 3.85382 3.85382 -125.331 -3.85382 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0278252 0.0243081 129 33 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.76 vpr 62.34 MiB -1 -1 0.12 17428 1 0.03 -1 -1 30364 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 23.9 MiB 0.26 763 7103 1547 5010 546 62.3 MiB 0.07 0.00 4.32884 -114.709 -4.32884 4.32884 0.64 0.000565121 0.000526739 0.0242338 0.0225833 26 2139 24 6.64007e+06 276276 477104. 1650.88 0.96 0.0939803 0.0820802 21682 110474 -1 1766 20 1098 1421 93712 22469 3.56143 3.56143 -115.197 -3.56143 0 0 585099. 2024.56 0.16 0.05 0.10 -1 -1 0.16 0.0208274 0.0182042 109 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.71 vpr 62.05 MiB -1 -1 0.16 17252 1 0.03 -1 -1 30000 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 23.4 MiB 0.14 634 12856 3328 7254 2274 62.0 MiB 0.11 0.00 3.90075 -115.478 -3.90075 3.90075 0.66 0.000603739 0.000562652 0.04625 0.0430354 28 2041 24 6.64007e+06 213486 500653. 1732.36 0.83 0.119072 0.105243 21970 115934 -1 1792 22 1362 2294 161189 38138 3.12337 3.12337 -112.776 -3.12337 0 0 612192. 2118.31 0.17 0.08 0.13 -1 -1 0.17 0.0258087 0.022495 108 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.63 vpr 62.63 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30124 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 24.2 MiB 0.09 1014 15147 3968 9710 1469 62.6 MiB 0.14 0.00 4.15695 -125.813 -4.15695 4.15695 0.64 0.000727913 0.000676775 0.0509695 0.0473116 32 1987 18 6.64007e+06 452088 554710. 1919.41 0.81 0.132967 0.117744 22834 132086 -1 1806 17 1104 1789 117607 26569 2.98336 2.98336 -111.526 -2.98336 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0254188 0.0222887 136 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.50 vpr 62.22 MiB -1 -1 0.18 17372 1 0.03 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63712 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 23.8 MiB 0.18 920 10163 2724 6503 936 62.2 MiB 0.09 0.00 4.05252 -124.711 -4.05252 4.05252 0.64 0.000576257 0.000536722 0.0348557 0.0324404 30 1979 19 6.64007e+06 251160 526063. 1820.29 0.77 0.101032 0.0890048 22546 126617 -1 1733 20 812 1183 75670 17017 2.96343 2.96343 -112.059 -2.96343 0 0 666494. 2306.21 0.18 0.06 0.09 -1 -1 0.18 0.0227775 0.0198235 107 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.86 vpr 62.41 MiB -1 -1 0.19 17644 1 0.03 -1 -1 30124 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 23.7 MiB 0.13 987 10827 2770 6959 1098 62.4 MiB 0.11 0.00 3.75038 -118.864 -3.75038 3.75038 0.69 0.000707778 0.000658712 0.0367867 0.0341863 26 2424 21 6.64007e+06 401856 477104. 1650.88 1.03 0.118897 0.104631 21682 110474 -1 2057 21 1289 2282 165102 37170 2.73977 2.73977 -108.013 -2.73977 0 0 585099. 2024.56 0.19 0.08 0.10 -1 -1 0.19 0.0285091 0.0248723 127 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.94 vpr 62.59 MiB -1 -1 0.21 17516 1 0.03 -1 -1 30280 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.2 MiB 0.30 927 10247 2394 7169 684 62.6 MiB 0.11 0.00 4.34696 -134.379 -4.34696 4.34696 0.63 0.000746171 0.000693189 0.0382338 0.0355107 32 2248 20 6.64007e+06 401856 554710. 1919.41 0.85 0.133471 0.117551 22834 132086 -1 1950 20 1313 1831 120295 29232 3.33903 3.33903 -128.306 -3.33903 0 0 701300. 2426.64 0.24 0.09 0.12 -1 -1 0.24 0.0358379 0.0315019 138 91 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.57 vpr 62.06 MiB -1 -1 0.14 17552 1 0.03 -1 -1 30224 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.4 MiB 0.16 835 12681 3362 7951 1368 62.1 MiB 0.11 0.00 3.3851 -106.107 -3.3851 3.3851 0.64 0.000623789 0.000579651 0.0473723 0.0440087 26 2103 18 6.64007e+06 213486 477104. 1650.88 0.85 0.118076 0.104563 21682 110474 -1 1822 21 1002 1582 127645 28263 2.76677 2.76677 -106.335 -2.76677 0 0 585099. 2024.56 0.17 0.07 0.12 -1 -1 0.17 0.0267148 0.0232157 104 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.74 vpr 62.26 MiB -1 -1 0.15 17300 1 0.03 -1 -1 30220 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 23.7 MiB 0.25 876 14407 4775 7452 2180 62.3 MiB 0.13 0.00 4.41384 -136.056 -4.41384 4.41384 0.65 0.000609475 0.000567148 0.0494112 0.0459448 30 2137 20 6.64007e+06 263718 526063. 1820.29 0.81 0.12075 0.107097 22546 126617 -1 1844 19 1079 1610 102910 23440 3.19163 3.19163 -119.952 -3.19163 0 0 666494. 2306.21 0.21 0.06 0.11 -1 -1 0.21 0.0234924 0.0205418 117 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.71 vpr 62.37 MiB -1 -1 0.18 17508 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1070 9111 2300 6161 650 62.4 MiB 0.10 0.00 4.68344 -140.114 -4.68344 4.68344 0.66 0.00065576 0.000610001 0.0336073 0.0312472 32 2486 17 6.64007e+06 288834 554710. 1919.41 0.82 0.110182 0.0971981 22834 132086 -1 2124 20 1344 1810 132646 30744 3.78882 3.78882 -132.22 -3.78882 0 0 701300. 2426.64 0.18 0.04 0.13 -1 -1 0.18 0.0147641 0.0131498 130 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.60 vpr 62.36 MiB -1 -1 0.16 17576 1 0.03 -1 -1 30280 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 23.8 MiB 0.17 969 13959 4223 8147 1589 62.4 MiB 0.12 0.00 4.71146 -123.714 -4.71146 4.71146 0.63 0.000640351 0.000593764 0.0477533 0.0443891 32 1988 20 6.64007e+06 364182 554710. 1919.41 0.78 0.124322 0.110042 22834 132086 -1 1799 14 777 1319 84447 19201 3.07743 3.07743 -106.617 -3.07743 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0201121 0.0177341 122 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.00 vpr 63.14 MiB -1 -1 0.16 17796 1 0.03 -1 -1 30480 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 24.4 MiB 0.26 1164 12568 3311 8092 1165 63.1 MiB 0.14 0.00 5.44678 -170.492 -5.44678 5.44678 0.64 0.000756051 0.000702809 0.0515184 0.047846 28 3017 24 6.64007e+06 301392 500653. 1732.36 0.99 0.142808 0.126463 21970 115934 -1 2587 19 1713 2544 209427 46081 4.52369 4.52369 -158.217 -4.52369 0 0 612192. 2118.31 0.17 0.09 0.13 -1 -1 0.17 0.029164 0.0255591 154 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.50 vpr 62.11 MiB -1 -1 0.18 17160 1 0.03 -1 -1 30512 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63604 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.6 MiB 0.05 802 9356 2223 6300 833 62.1 MiB 0.08 0.00 3.65167 -102.287 -3.65167 3.65167 0.66 0.000533601 0.000497088 0.0304749 0.028402 32 1738 16 6.64007e+06 226044 554710. 1919.41 0.79 0.0853531 0.0753248 22834 132086 -1 1550 18 717 1200 83961 19380 2.89017 2.89017 -97.9917 -2.89017 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0195931 0.017117 96 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.94 vpr 62.63 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30276 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1014 15173 4325 8191 2657 62.6 MiB 0.14 0.00 4.24115 -141.749 -4.24115 4.24115 0.63 0.000772499 0.000716203 0.0550165 0.0510705 32 2563 27 6.64007e+06 426972 554710. 1919.41 0.93 0.154172 0.136318 22834 132086 -1 2184 19 1571 2371 170912 38410 3.72983 3.72983 -138.118 -3.72983 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0297903 0.0260507 145 90 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.88 vpr 62.55 MiB -1 -1 0.18 17772 1 0.03 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.1 MiB 0.28 854 11456 4252 5499 1705 62.5 MiB 0.11 0.00 3.5233 -125.693 -3.5233 3.5233 0.66 0.000718867 0.000667113 0.0491952 0.0456921 32 1976 23 6.64007e+06 213486 554710. 1919.41 0.84 0.134818 0.118986 22834 132086 -1 1747 19 1250 1820 139253 29466 2.95177 2.95177 -122.552 -2.95177 0 0 701300. 2426.64 0.23 0.07 0.12 -1 -1 0.23 0.0270269 0.0235739 114 96 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.02 vpr 62.51 MiB -1 -1 0.20 17644 1 0.03 -1 -1 30256 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 23.9 MiB 0.13 993 15864 4238 9461 2165 62.5 MiB 0.15 0.00 4.43584 -134.986 -4.43584 4.43584 0.74 0.000712962 0.000661026 0.0536841 0.0497677 26 2557 24 6.64007e+06 401856 477104. 1650.88 1.05 0.144223 0.127582 21682 110474 -1 2081 15 926 1423 96949 22387 3.21363 3.21363 -116.31 -3.21363 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0231331 0.0203709 131 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.37 vpr 62.68 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30340 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1309 17635 5897 9510 2228 62.7 MiB 0.20 0.00 6.39084 -191.431 -6.39084 6.39084 0.66 0.000784591 0.000728948 0.0706394 0.0655589 28 3357 19 6.64007e+06 339066 500653. 1732.36 1.21 0.168723 0.15057 21970 115934 -1 2809 20 1792 2549 197016 42830 5.36314 5.36314 -177.542 -5.36314 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0312642 0.0274405 170 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.60 vpr 61.95 MiB -1 -1 0.17 17588 1 0.02 -1 -1 30060 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 23.4 MiB 0.16 697 8680 1945 6222 513 61.9 MiB 0.07 0.00 3.31307 -102.387 -3.31307 3.31307 0.67 0.000506989 0.000471992 0.0274071 0.025497 28 1666 19 6.64007e+06 226044 500653. 1732.36 0.83 0.0856716 0.0753047 21970 115934 -1 1432 14 605 760 77617 18525 2.39717 2.39717 -94.9129 -2.39717 0 0 612192. 2118.31 0.17 0.05 0.12 -1 -1 0.17 0.0156957 0.0137983 87 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.59 vpr 62.02 MiB -1 -1 0.14 17664 1 0.03 -1 -1 30368 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.4 MiB 0.10 791 11864 3247 7177 1440 62.0 MiB 0.10 0.00 4.38638 -124.628 -4.38638 4.38638 0.66 0.000597516 0.000555325 0.0447479 0.0416283 32 1680 15 6.64007e+06 200928 554710. 1919.41 0.78 0.111586 0.0988361 22834 132086 -1 1479 22 920 1506 118207 25985 3.18337 3.18337 -111.753 -3.18337 0 0 701300. 2426.64 0.26 0.07 0.14 -1 -1 0.26 0.0248858 0.0219925 92 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.61 vpr 62.07 MiB -1 -1 0.18 17588 1 0.04 -1 -1 30372 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.7 MiB 0.09 807 14407 3847 9113 1447 62.1 MiB 0.13 0.00 3.46104 -112.673 -3.46104 3.46104 0.65 0.00062727 0.000582313 0.0510193 0.0473981 28 2067 23 6.64007e+06 263718 500653. 1732.36 0.80 0.12665 0.112173 21970 115934 -1 1884 21 1265 2247 152707 35374 2.75777 2.75777 -107.934 -2.75777 0 0 612192. 2118.31 0.20 0.08 0.10 -1 -1 0.20 0.0256826 0.0223786 115 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.43 vpr 61.93 MiB -1 -1 0.15 17588 1 0.02 -1 -1 30204 -1 -1 27 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.4 MiB 0.07 469 9234 3273 3848 2113 61.9 MiB 0.06 0.00 3.37029 -77.6943 -3.37029 3.37029 0.64 0.000477927 0.000443335 0.0257001 0.023812 30 1496 25 6.64007e+06 339066 526063. 1820.29 0.88 0.0893111 0.0781578 22546 126617 -1 1146 17 610 1009 61629 15763 2.92917 2.92917 -76.4452 -2.92917 0 0 666494. 2306.21 0.20 0.04 0.12 -1 -1 0.20 0.0174321 0.0152557 89 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.60 vpr 62.57 MiB -1 -1 0.17 17516 1 0.03 -1 -1 30448 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 23.9 MiB 0.16 937 9571 2534 6630 407 62.6 MiB 0.10 0.00 4.28889 -129.632 -4.28889 4.28889 0.63 0.000727441 0.000675838 0.0399595 0.0371239 30 2291 20 6.64007e+06 263718 526063. 1820.29 0.77 0.113522 0.100361 22546 126617 -1 1909 19 1147 2018 101105 24783 3.56243 3.56243 -125.04 -3.56243 0 0 666494. 2306.21 0.20 0.07 0.11 -1 -1 0.20 0.0279715 0.0245055 136 72 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.87 vpr 62.71 MiB -1 -1 0.21 17664 1 0.03 -1 -1 30356 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1018 17423 5293 9473 2657 62.7 MiB 0.16 0.00 4.47881 -144.552 -4.47881 4.47881 0.63 0.000765895 0.000710983 0.0619942 0.0575305 32 2355 20 6.64007e+06 439530 554710. 1919.41 0.83 0.150415 0.13339 22834 132086 -1 1953 21 1310 2040 144978 31263 3.34137 3.34137 -129.49 -3.34137 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0315018 0.027493 143 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.05 vpr 62.60 MiB -1 -1 0.15 17808 1 0.03 -1 -1 30240 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 24.1 MiB 0.33 962 17134 5020 8898 3216 62.6 MiB 0.16 0.00 5.27972 -153.369 -5.27972 5.27972 0.64 0.000704748 0.000654599 0.058954 0.0547221 32 2793 32 6.65987e+06 380340 554710. 1919.41 0.96 0.1542 0.136493 22834 132086 -1 2266 23 1794 2718 200976 48039 4.74857 4.74857 -148.259 -4.74857 0 0 701300. 2426.64 0.26 0.09 0.10 -1 -1 0.26 0.0290435 0.0258217 152 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.87 vpr 62.61 MiB -1 -1 0.19 17644 1 0.03 -1 -1 30392 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1040 12361 3404 6762 2195 62.6 MiB 0.13 0.00 4.63676 -143.523 -4.63676 4.63676 0.63 0.000714149 0.000663615 0.0499558 0.0464684 32 2391 26 6.65987e+06 291594 554710. 1919.41 0.85 0.138386 0.122332 22834 132086 -1 2137 22 1808 2733 205071 46641 4.06963 4.06963 -142.287 -4.06963 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0309925 0.0271593 138 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.16 vpr 62.18 MiB -1 -1 0.18 17916 1 0.03 -1 -1 30336 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63668 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.5 MiB 0.15 1057 9111 2109 6460 542 62.2 MiB 0.09 0.00 4.05544 -117.725 -4.05544 4.05544 0.66 0.000632208 0.000588004 0.0321911 0.0299501 26 2909 26 6.65987e+06 291594 477104. 1650.88 1.37 0.114425 0.100592 21682 110474 -1 2304 21 1445 2010 175906 39220 3.52151 3.52151 -120.603 -3.52151 0 0 585099. 2024.56 0.18 0.10 0.10 -1 -1 0.18 0.0345186 0.0300281 126 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.57 vpr 62.10 MiB -1 -1 0.11 17544 1 0.02 -1 -1 30320 -1 -1 27 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.5 MiB 0.10 995 11593 2944 7290 1359 62.1 MiB 0.11 0.00 4.34155 -118.133 -4.34155 4.34155 0.65 0.000643859 0.000591726 0.0400953 0.0372243 32 2314 24 6.65987e+06 342306 554710. 1919.41 0.83 0.118372 0.104135 22834 132086 -1 2116 20 1335 2441 194474 43071 3.76777 3.76777 -117.12 -3.76777 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0254095 0.022192 126 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.45 vpr 62.18 MiB -1 -1 0.19 17508 1 0.03 -1 -1 30248 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.6 MiB 0.11 1007 8919 2464 5628 827 62.2 MiB 0.10 0.00 4.36781 -127.596 -4.36781 4.36781 0.68 0.000690942 0.000642842 0.0343999 0.0319892 34 2558 26 6.65987e+06 291594 585099. 2024.56 1.52 0.175613 0.152766 23122 138558 -1 2077 21 1475 2816 191677 44850 3.43891 3.43891 -123.186 -3.43891 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0277277 0.0243858 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.56 vpr 62.59 MiB -1 -1 0.11 17792 1 0.03 -1 -1 30328 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1045 18079 5207 10774 2098 62.6 MiB 0.17 0.00 3.41904 -120.465 -3.41904 3.41904 0.64 0.000593104 0.000544404 0.0501273 0.0459581 30 2159 22 6.65987e+06 418374 526063. 1820.29 0.83 0.134965 0.118698 22546 126617 -1 1847 19 1124 1809 96785 23008 2.73771 2.73771 -111.043 -2.73771 0 0 666494. 2306.21 0.17 0.03 0.07 -1 -1 0.17 0.0154161 0.0137925 141 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.52 vpr 61.81 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30788 -1 -1 18 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 23.2 MiB 0.16 496 10509 2613 7281 615 61.8 MiB 0.09 0.00 3.88752 -95.8054 -3.88752 3.88752 0.64 0.000552535 0.000514342 0.0375571 0.0349621 30 1262 24 6.65987e+06 228204 526063. 1820.29 0.78 0.106996 0.0938216 22546 126617 -1 1045 21 680 1162 59254 15105 2.61651 2.61651 -82.9205 -2.61651 0 0 666494. 2306.21 0.20 0.05 0.11 -1 -1 0.20 0.0229307 0.0199522 94 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.47 vpr 62.04 MiB -1 -1 0.18 17276 1 0.03 -1 -1 30100 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.4 MiB 0.06 903 9466 2130 6738 598 62.0 MiB 0.09 0.00 3.22661 -96.4595 -3.22661 3.22661 0.65 0.000603666 0.000560647 0.0286062 0.0265573 30 1887 19 6.65987e+06 393018 526063. 1820.29 0.80 0.0972312 0.0852996 22546 126617 -1 1660 17 761 1366 74007 17618 2.51331 2.51331 -91.8345 -2.51331 0 0 666494. 2306.21 0.18 0.05 0.12 -1 -1 0.18 0.0214929 0.0188426 115 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.69 vpr 62.30 MiB -1 -1 0.20 17772 1 0.03 -1 -1 30236 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 23.7 MiB 0.15 765 13788 3701 7917 2170 62.3 MiB 0.12 0.00 3.4209 -112.776 -3.4209 3.4209 0.64 0.000637765 0.00059322 0.0519872 0.0483553 32 2114 22 6.65987e+06 240882 554710. 1919.41 0.80 0.129208 0.11461 22834 132086 -1 1728 17 1058 1542 110918 26906 2.81811 2.81811 -106.836 -2.81811 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0251894 0.0217122 111 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.78 vpr 62.06 MiB -1 -1 0.15 17428 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.6 MiB 0.24 876 13906 4295 8097 1514 62.1 MiB 0.13 0.00 3.72312 -122.883 -3.72312 3.72312 0.66 0.000632058 0.000587849 0.0525519 0.0488367 32 2018 21 6.65987e+06 215526 554710. 1919.41 0.82 0.126471 0.112216 22834 132086 -1 1742 20 1225 1923 138608 31820 2.76451 2.76451 -111.5 -2.76451 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0302335 0.0262756 113 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.59 vpr 61.97 MiB -1 -1 0.19 17252 1 0.03 -1 -1 30508 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63456 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.6 MiB 0.24 696 7008 1825 4747 436 62.0 MiB 0.07 0.00 4.00989 -109.174 -4.00989 4.00989 0.63 0.000618201 0.000575347 0.0277909 0.0258784 30 1525 18 6.65987e+06 215526 526063. 1820.29 0.76 0.0979135 0.0859388 22546 126617 -1 1365 17 574 884 51942 12389 2.68271 2.68271 -96.6812 -2.68271 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0217589 0.0190897 98 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.70 vpr 62.01 MiB -1 -1 0.18 17532 1 0.03 -1 -1 30072 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 23.5 MiB 0.23 721 6381 1297 4466 618 62.0 MiB 0.06 0.00 3.89466 -119.961 -3.89466 3.89466 0.64 0.000594902 0.000553789 0.0237471 0.0221179 32 2079 21 6.65987e+06 215526 554710. 1919.41 0.83 0.0944944 0.0827499 22834 132086 -1 1739 22 1249 1676 130638 32083 2.71505 2.71505 -108.626 -2.71505 0 0 701300. 2426.64 0.19 0.08 0.09 -1 -1 0.19 0.0271031 0.0236843 106 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.93 vpr 62.62 MiB -1 -1 0.19 17664 1 0.03 -1 -1 30448 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1056 16468 6105 8420 1943 62.6 MiB 0.16 0.00 4.37712 -140.294 -4.37712 4.37712 0.64 0.000693143 0.000644146 0.0613342 0.0569826 32 2620 22 6.65987e+06 304272 554710. 1919.41 0.87 0.146747 0.130579 22834 132086 -1 2184 21 1699 2549 188889 42181 3.20051 3.20051 -125.325 -3.20051 0 0 701300. 2426.64 0.21 0.09 0.12 -1 -1 0.21 0.029354 0.0256971 139 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.75 vpr 62.32 MiB -1 -1 0.16 17868 1 0.03 -1 -1 30292 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 23.9 MiB 0.18 951 14365 3991 8802 1572 62.3 MiB 0.14 0.00 4.63803 -131.953 -4.63803 4.63803 0.63 0.000716238 0.000665642 0.0508577 0.0472535 28 2495 26 6.65987e+06 380340 500653. 1732.36 0.90 0.140971 0.124698 21970 115934 -1 2246 23 1604 2513 195977 44240 3.75925 3.75925 -131.777 -3.75925 0 0 612192. 2118.31 0.20 0.09 0.09 -1 -1 0.20 0.0315723 0.0275192 133 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.40 vpr 61.85 MiB -1 -1 0.18 17364 1 0.03 -1 -1 30068 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63336 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.2 MiB 0.10 640 7914 1978 5337 599 61.9 MiB 0.07 0.00 3.16393 -88.5429 -3.16393 3.16393 0.64 0.000389442 0.000354138 0.0260038 0.0241942 28 1656 19 6.65987e+06 266238 500653. 1732.36 0.75 0.0884431 0.0775046 21970 115934 -1 1539 18 815 1389 99319 23560 2.82385 2.82385 -89.4422 -2.82385 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0202422 0.017697 98 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.03 vpr 62.48 MiB -1 -1 0.19 17648 1 0.03 -1 -1 30352 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1044 14035 4479 7571 1985 62.5 MiB 0.14 0.00 3.91387 -124.268 -3.91387 3.91387 0.70 0.000739892 0.000672823 0.0574538 0.0533791 32 2474 22 6.65987e+06 266238 554710. 1919.41 0.85 0.145477 0.129122 22834 132086 -1 2152 20 1401 2504 176126 40482 3.25057 3.25057 -119.253 -3.25057 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0291381 0.0255022 132 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.03 vpr 62.37 MiB -1 -1 0.18 17796 1 0.02 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 23.9 MiB 0.21 1069 12919 3925 6776 2218 62.4 MiB 0.13 0.00 4.31458 -139.268 -4.31458 4.31458 0.69 0.000697703 0.000644088 0.0505984 0.0470387 28 2604 25 6.65987e+06 266238 500653. 1732.36 1.06 0.136604 0.120876 21970 115934 -1 2350 23 1620 2389 184014 41533 3.34617 3.34617 -124.198 -3.34617 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0308195 0.0269322 137 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.49 vpr 62.21 MiB -1 -1 0.17 17384 1 0.03 -1 -1 30236 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.7 MiB 0.17 695 9543 2025 7276 242 62.2 MiB 0.09 0.00 2.85064 -99.0938 -2.85064 2.85064 0.63 0.000649437 0.000602781 0.0317814 0.0295204 30 1712 20 6.65987e+06 367662 526063. 1820.29 0.77 0.106968 0.0938905 22546 126617 -1 1441 15 777 1258 62201 16037 2.15051 2.15051 -92.0519 -2.15051 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0208128 0.0182668 110 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.26 vpr 61.59 MiB -1 -1 0.16 17556 1 0.03 -1 -1 30076 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63072 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.2 MiB 0.11 717 11976 4624 5984 1368 61.6 MiB 0.09 0.00 2.25907 -80.296 -2.25907 2.25907 0.63 0.000582822 0.000541158 0.0391084 0.0363432 26 1528 21 6.65987e+06 190170 477104. 1650.88 0.69 0.0983352 0.0868881 21682 110474 -1 1374 17 625 877 65267 15370 1.85605 1.85605 -80.6905 -1.85605 0 0 585099. 2024.56 0.16 0.05 0.08 -1 -1 0.16 0.017573 0.0153749 81 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.84 vpr 62.16 MiB -1 -1 0.13 17544 1 0.03 -1 -1 30368 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 23.6 MiB 0.37 848 12008 3931 5654 2423 62.2 MiB 0.12 0.00 4.81535 -141.646 -4.81535 4.81535 0.63 0.000771743 0.00071184 0.0441231 0.0410427 32 2106 20 6.65987e+06 240882 554710. 1919.41 0.83 0.115919 0.10263 22834 132086 -1 1880 20 1338 1882 162953 37212 3.56017 3.56017 -127.18 -3.56017 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0246845 0.0215607 127 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.64 vpr 62.32 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30472 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.9 MiB 0.06 910 8087 1796 5473 818 62.3 MiB 0.08 0.00 4.13176 -127.852 -4.13176 4.13176 0.68 0.000692299 0.000643685 0.0284175 0.026402 28 2425 21 6.65987e+06 393018 500653. 1732.36 0.87 0.11035 0.0967346 21970 115934 -1 2103 20 1357 2130 169483 37977 3.47643 3.47643 -125.531 -3.47643 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0281168 0.0246299 135 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.83 vpr 62.71 MiB -1 -1 0.20 17816 1 0.03 -1 -1 30312 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1181 9303 2469 6067 767 62.7 MiB 0.10 0.00 4.32644 -135.633 -4.32644 4.32644 0.65 0.000730705 0.000679472 0.0381954 0.0355027 30 2631 22 6.65987e+06 291594 526063. 1820.29 0.88 0.129703 0.114095 22546 126617 -1 2153 23 1289 2094 130332 28525 3.28937 3.28937 -120.165 -3.28937 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.034662 0.0303641 142 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.47 vpr 61.58 MiB -1 -1 0.13 17624 1 0.02 -1 -1 30532 -1 -1 18 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63060 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 22.9 MiB 0.23 356 10636 3977 4816 1843 61.6 MiB 0.07 0.00 2.4343 -65.7683 -2.4343 2.4343 0.64 0.000431153 0.000401117 0.029871 0.0277607 30 997 16 6.65987e+06 228204 526063. 1820.29 0.76 0.0788397 0.0697166 22546 126617 -1 741 16 447 580 26686 7955 2.19451 2.19451 -64.9642 -2.19451 0 0 666494. 2306.21 0.19 0.03 0.11 -1 -1 0.19 0.0147102 0.0129192 77 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.64 vpr 62.00 MiB -1 -1 0.18 17232 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.5 MiB 0.10 978 9571 2391 5607 1573 62.0 MiB 0.10 0.00 4.9364 -125.004 -4.9364 4.9364 0.64 0.000617679 0.00057493 0.0349201 0.0325098 32 2187 34 6.65987e+06 266238 554710. 1919.41 0.90 0.119667 0.105042 22834 132086 -1 1928 19 1077 2024 137083 32628 3.70177 3.70177 -117.838 -3.70177 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.024416 0.0214414 118 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.22 vpr 61.69 MiB -1 -1 0.15 16984 1 0.02 -1 -1 30008 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63172 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.1 MiB 0.04 681 11200 3514 6177 1509 61.7 MiB 0.07 0.00 2.44727 -77.3331 -2.44727 2.44727 0.64 0.00042169 0.000391925 0.0302624 0.0281113 26 1411 15 6.65987e+06 177492 477104. 1650.88 0.72 0.076924 0.0680889 21682 110474 -1 1284 15 508 576 57479 12943 1.93211 1.93211 -77.6137 -1.93211 0 0 585099. 2024.56 0.16 0.04 0.10 -1 -1 0.16 0.0139574 0.0122721 79 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.53 vpr 62.14 MiB -1 -1 0.15 17428 1 0.03 -1 -1 30004 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.6 MiB 0.10 819 10531 2694 7192 645 62.1 MiB 0.10 0.00 4.34174 -119.601 -4.34174 4.34174 0.65 0.000634799 0.00059023 0.0349834 0.0325715 32 2048 22 6.65987e+06 380340 554710. 1919.41 0.83 0.11458 0.100941 22834 132086 -1 1821 18 1090 1817 127223 31545 3.42805 3.42805 -113.683 -3.42805 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0235003 0.0206074 123 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.75 vpr 62.29 MiB -1 -1 0.15 17240 1 0.03 -1 -1 30468 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.6 MiB 0.11 841 8087 1664 5850 573 62.3 MiB 0.08 0.00 3.58635 -102.903 -3.58635 3.58635 0.64 0.000641197 0.00059634 0.0262601 0.0243889 28 2267 21 6.65987e+06 393018 500653. 1732.36 1.11 0.103193 0.0906049 21970 115934 -1 2021 19 1195 2217 144338 35484 2.86871 2.86871 -103.513 -2.86871 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0247138 0.0217011 128 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.74 vpr 62.33 MiB -1 -1 0.19 17768 1 0.03 -1 -1 30312 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1047 15165 4413 8666 2086 62.3 MiB 0.17 0.00 4.3944 -130.237 -4.3944 4.3944 0.64 0.000850628 0.000792141 0.0645201 0.0599381 32 2492 25 6.65987e+06 329628 554710. 1919.41 0.87 0.150136 0.133501 22834 132086 -1 2137 19 1363 2369 169359 39834 3.31885 3.31885 -121.57 -3.31885 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0260983 0.0228677 125 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.44 vpr 61.93 MiB -1 -1 0.15 17400 1 0.03 -1 -1 30224 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63412 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.06 780 6100 1392 4485 223 61.9 MiB 0.07 0.00 2.90053 -100.349 -2.90053 2.90053 0.64 0.000600602 0.00055846 0.0233207 0.0216904 32 1965 19 6.65987e+06 202848 554710. 1919.41 0.79 0.0939238 0.082148 22834 132086 -1 1697 21 1091 1759 139787 33032 2.67165 2.67165 -101.934 -2.67165 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0249767 0.021753 101 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.72 vpr 61.95 MiB -1 -1 0.19 17532 1 0.03 -1 -1 30140 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63436 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.4 MiB 0.10 630 9199 2049 6385 765 61.9 MiB 0.08 0.00 2.99867 -92.259 -2.99867 2.99867 0.64 0.000574568 0.000534157 0.0300709 0.0279132 32 1813 20 6.65987e+06 291594 554710. 1919.41 0.79 0.0966983 0.0849187 22834 132086 -1 1461 21 1012 1572 113500 26995 2.90791 2.90791 -95.8313 -2.90791 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0233315 0.0202782 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.59 vpr 61.96 MiB -1 -1 0.11 17536 1 0.03 -1 -1 30188 -1 -1 23 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.3 MiB 0.05 575 14123 3775 8918 1430 62.0 MiB 0.11 0.00 3.31478 -91.535 -3.31478 3.31478 0.64 0.000559298 0.000519857 0.0456117 0.0422948 32 1755 23 6.65987e+06 291594 554710. 1919.41 0.83 0.114616 0.101244 22834 132086 -1 1402 21 1087 1837 130276 32833 2.67565 2.67565 -90.39 -2.67565 0 0 701300. 2426.64 0.22 0.06 0.14 -1 -1 0.22 0.0232196 0.0201817 98 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.63 vpr 62.19 MiB -1 -1 0.18 17184 1 0.03 -1 -1 30248 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.8 MiB 0.11 714 4763 885 3714 164 62.2 MiB 0.05 0.00 3.74323 -109.194 -3.74323 3.74323 0.67 0.000564653 0.000524779 0.0170156 0.0158448 30 1851 22 6.65987e+06 240882 526063. 1820.29 0.91 0.0868361 0.0757019 22546 126617 -1 1562 20 1047 1749 98103 23919 2.62751 2.62751 -102.66 -2.62751 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0309905 0.0269963 110 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.51 vpr 62.01 MiB -1 -1 0.19 17256 1 0.03 -1 -1 30224 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.6 MiB 0.11 740 8130 1715 6151 264 62.0 MiB 0.07 0.00 3.32595 -98.9982 -3.32595 3.32595 0.65 0.000595418 0.000554417 0.0254263 0.0236563 32 1842 22 6.65987e+06 342306 554710. 1919.41 0.81 0.0988369 0.0866466 22834 132086 -1 1570 20 1022 1665 112884 27377 2.72051 2.72051 -99.0807 -2.72051 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0231552 0.0201451 103 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.71 vpr 62.02 MiB -1 -1 0.18 17400 1 0.03 -1 -1 30496 -1 -1 25 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 23.5 MiB 0.25 874 10103 2597 6479 1027 62.0 MiB 0.09 0.00 3.27578 -104.365 -3.27578 3.27578 0.64 0.000603122 0.000561405 0.0343499 0.0319794 32 1837 16 6.65987e+06 316950 554710. 1919.41 0.82 0.102237 0.090286 22834 132086 -1 1643 19 1041 1556 109533 25783 2.40005 2.40005 -98.5579 -2.40005 0 0 701300. 2426.64 0.21 0.06 0.12 -1 -1 0.21 0.0229651 0.0201139 105 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 3.80 vpr 62.68 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30432 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 24.0 MiB 0.27 1205 9971 2413 6766 792 62.7 MiB 0.10 0.00 4.35696 -124.779 -4.35696 4.35696 0.64 0.000741696 0.000689822 0.0343894 0.0319824 30 2470 20 6.65987e+06 469086 526063. 1820.29 0.82 0.120567 0.106603 22546 126617 -1 2143 21 987 1859 103605 23151 3.67963 3.67963 -120.47 -3.67963 0 0 666494. 2306.21 0.29 0.07 0.11 -1 -1 0.29 0.0309795 0.0271685 150 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.11 vpr 62.59 MiB -1 -1 0.20 17620 1 0.03 -1 -1 30424 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1009 12860 3291 8398 1171 62.6 MiB 0.17 0.00 3.75432 -126.947 -3.75432 3.75432 0.72 0.000759951 0.000706002 0.057412 0.053107 26 2525 36 6.65987e+06 456408 477104. 1650.88 0.98 0.14462 0.127966 21682 110474 -1 2140 19 1553 2391 155367 36688 2.97837 2.97837 -123.475 -2.97837 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0298993 0.0263047 146 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.76 vpr 62.10 MiB -1 -1 0.13 17548 1 0.03 -1 -1 30092 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 23.5 MiB 0.24 731 8852 2206 5531 1115 62.1 MiB 0.09 0.00 4.21752 -119.384 -4.21752 4.21752 0.64 0.000594183 0.000553018 0.0326864 0.0304389 28 2061 26 6.65987e+06 215526 500653. 1732.36 0.94 0.107845 0.0946282 21970 115934 -1 1827 20 1090 1500 104657 25299 3.14271 3.14271 -113.213 -3.14271 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.023938 0.0209153 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.87 vpr 62.68 MiB -1 -1 0.21 17676 1 0.03 -1 -1 30472 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 24.1 MiB 0.19 838 9687 2447 6341 899 62.7 MiB 0.11 0.00 4.30117 -127.913 -4.30117 4.30117 0.64 0.000722212 0.000670446 0.0391258 0.0363579 28 2472 25 6.65987e+06 304272 500653. 1732.36 0.96 0.129062 0.113427 21970 115934 -1 2020 21 1371 2445 169274 40806 3.06817 3.06817 -116.785 -3.06817 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0304579 0.0266577 137 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.91 vpr 62.23 MiB -1 -1 0.17 17644 1 0.03 -1 -1 30272 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63728 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1313 13758 3781 7541 2436 62.2 MiB 0.15 0.00 5.77198 -171.36 -5.77198 5.77198 0.63 0.000732187 0.000679961 0.0530304 0.0492907 32 3132 21 6.65987e+06 342306 554710. 1919.41 0.88 0.140028 0.124061 22834 132086 -1 2551 22 2197 3203 211784 51203 4.70894 4.70894 -163.62 -4.70894 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0317277 0.0277713 170 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.87 vpr 62.77 MiB -1 -1 0.17 17772 1 0.03 -1 -1 30560 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 24.1 MiB 1.11 956 15103 4666 7688 2749 62.8 MiB 0.15 0.00 4.78629 -143.571 -4.78629 4.78629 0.64 0.000741923 0.000688116 0.0600777 0.0557568 32 2967 29 6.65987e+06 316950 554710. 1919.41 0.99 0.157118 0.13908 22834 132086 -1 2196 20 1644 2482 193336 43970 3.98337 3.98337 -138.614 -3.98337 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0267723 0.0238554 162 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.11 vpr 62.50 MiB -1 -1 0.20 17852 1 0.03 -1 -1 30560 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 24.0 MiB 0.22 864 6095 1129 4612 354 62.5 MiB 0.08 0.00 4.47092 -130.094 -4.47092 4.47092 0.64 0.000708118 0.000658498 0.0232673 0.0216556 28 2546 32 6.65987e+06 367662 500653. 1732.36 1.19 0.121098 0.105697 21970 115934 -1 2020 21 1236 1940 117144 30484 3.23625 3.23625 -120.221 -3.23625 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.02895 0.0253095 133 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.94 vpr 62.04 MiB -1 -1 0.18 17360 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63524 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 23.5 MiB 0.19 918 12371 3407 6390 2574 62.0 MiB 0.11 0.00 4.0455 -110.07 -4.0455 4.0455 0.68 0.00061861 0.000575629 0.0428319 0.039817 28 2605 20 6.65987e+06 278916 500653. 1732.36 1.08 0.117556 0.103966 21970 115934 -1 2180 19 1317 1949 158383 36532 3.51625 3.51625 -115.535 -3.51625 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0241227 0.0211519 118 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.28 vpr 62.62 MiB -1 -1 0.21 18164 1 0.04 -1 -1 30368 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1184 10336 2301 7496 539 62.6 MiB 0.14 0.01 5.18869 -164.242 -5.18869 5.18869 0.67 0.0028986 0.00269315 0.0434371 0.0403099 26 3457 39 6.65987e+06 481764 477104. 1650.88 1.97 0.181324 0.1605 21682 110474 -1 2828 25 2036 3190 320818 89509 4.52437 4.52437 -157.469 -4.52437 0 0 585099. 2024.56 0.16 0.12 0.11 -1 -1 0.16 0.0410122 0.0357347 172 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.53 vpr 61.87 MiB -1 -1 0.11 17508 1 0.03 -1 -1 30140 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63356 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.2 MiB 0.10 660 11064 4480 5786 798 61.9 MiB 0.09 0.00 3.61218 -99.209 -3.61218 3.61218 0.64 0.0006575 0.00061565 0.0378042 0.0351312 32 1891 29 6.65987e+06 266238 554710. 1919.41 0.84 0.114316 0.10043 22834 132086 -1 1581 22 1137 1828 142459 35231 2.90705 2.90705 -99.775 -2.90705 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0245812 0.0213393 101 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.05 vpr 62.54 MiB -1 -1 0.16 17516 1 0.03 -1 -1 30236 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1031 5756 1118 4418 220 62.5 MiB 0.04 0.00 5.03726 -146.602 -5.03726 5.03726 0.65 0.000306906 0.000283044 0.011477 0.0106156 28 2854 46 6.65987e+06 291594 500653. 1732.36 1.38 0.121313 0.104903 21970 115934 -1 2278 23 1392 1970 136323 32335 4.47728 4.47728 -144.286 -4.47728 0 0 612192. 2118.31 0.16 0.04 0.09 -1 -1 0.16 0.0170027 0.0151315 142 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.10 vpr 62.40 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30292 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 23.9 MiB 0.14 975 10087 2133 7508 446 62.4 MiB 0.10 0.00 3.91407 -118.639 -3.91407 3.91407 0.63 0.000705127 0.00065601 0.0344889 0.0320793 28 2750 43 6.65987e+06 418374 500653. 1732.36 1.26 0.143201 0.125425 21970 115934 -1 2171 17 1119 1988 146167 33613 3.02611 3.02611 -112.426 -3.02611 0 0 612192. 2118.31 0.25 0.06 0.11 -1 -1 0.25 0.0221547 0.0197924 131 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.92 vpr 62.02 MiB -1 -1 0.18 17100 1 0.03 -1 -1 30104 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63504 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.4 MiB 0.09 889 13153 5130 6680 1343 62.0 MiB 0.12 0.00 4.00941 -121.212 -4.00941 4.00941 0.69 0.00062903 0.000585334 0.0443727 0.0412423 32 2460 38 6.65987e+06 304272 554710. 1919.41 1.02 0.135126 0.119001 22834 132086 -1 1936 29 1457 2672 381718 164248 3.53945 3.53945 -118.826 -3.53945 0 0 701300. 2426.64 0.19 0.14 0.12 -1 -1 0.19 0.0338402 0.0293566 123 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.88 vpr 62.42 MiB -1 -1 0.20 17852 1 0.03 -1 -1 30212 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1135 8213 1899 5522 792 62.4 MiB 0.09 0.00 4.53182 -135.539 -4.53182 4.53182 0.64 0.000701984 0.000652867 0.0332084 0.0308712 26 2769 24 6.65987e+06 278916 477104. 1650.88 1.02 0.120688 0.105988 21682 110474 -1 2364 24 1365 1922 145357 33034 3.40711 3.40711 -122.846 -3.40711 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0319934 0.0279884 136 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.25 vpr 62.39 MiB -1 -1 0.16 17796 1 0.03 -1 -1 30264 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 23.9 MiB 0.35 1054 11759 3077 7738 944 62.4 MiB 0.12 0.00 3.70469 -122.012 -3.70469 3.70469 0.68 0.000716721 0.000666386 0.0419932 0.0390316 26 2570 22 6.65987e+06 393018 477104. 1650.88 1.15 0.130667 0.115261 21682 110474 -1 2258 22 1408 2255 183580 40530 3.17031 3.17031 -120.881 -3.17031 0 0 585099. 2024.56 0.19 0.08 0.10 -1 -1 0.19 0.0309487 0.0270545 132 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.21 vpr 62.56 MiB -1 -1 0.20 17504 1 0.04 -1 -1 30428 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1080 10772 2746 7404 622 62.6 MiB 0.11 0.00 4.49669 -137.938 -4.49669 4.49669 0.64 0.000742796 0.000690076 0.0374908 0.034727 26 2751 23 6.65987e+06 456408 477104. 1650.88 1.05 0.12648 0.111126 21682 110474 -1 2424 22 1401 2036 158685 36651 3.54111 3.54111 -130.601 -3.54111 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0320442 0.0279973 144 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.66 vpr 62.17 MiB -1 -1 0.17 17240 1 0.03 -1 -1 30248 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63660 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.6 MiB 0.10 888 10593 2829 7083 681 62.2 MiB 0.10 0.00 3.98836 -118.206 -3.98836 3.98836 0.66 0.000640659 0.000595764 0.0345144 0.0320523 32 2021 22 6.65987e+06 367662 554710. 1919.41 0.84 0.111075 0.0977541 22834 132086 -1 1760 21 1196 1953 123809 29858 3.27785 3.27785 -112.011 -3.27785 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0265818 0.0232021 122 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.63 vpr 62.67 MiB -1 -1 0.16 17852 1 0.03 -1 -1 30388 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 24.1 MiB 0.10 1026 6999 1560 5055 384 62.7 MiB 0.08 0.00 4.76946 -136.875 -4.76946 4.76946 0.68 0.000661349 0.000614469 0.0264729 0.0246281 32 2525 24 6.65987e+06 291594 554710. 1919.41 0.86 0.107686 0.0941953 22834 132086 -1 2194 21 1650 2343 161923 39181 3.74371 3.74371 -130.276 -3.74371 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0276597 0.0242159 133 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 3.95 vpr 62.76 MiB -1 -1 0.20 17900 1 0.03 -1 -1 30416 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1149 15584 5177 7856 2551 62.8 MiB 0.17 0.00 4.99307 -147.134 -4.99307 4.99307 0.63 0.000733225 0.000681085 0.0626627 0.0581992 32 3017 27 6.65987e+06 291594 554710. 1919.41 0.91 0.154916 0.137378 22834 132086 -1 2440 19 1556 2391 183308 41041 3.88823 3.88823 -134.888 -3.88823 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0281602 0.0245561 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.77 vpr 62.46 MiB -1 -1 0.20 17520 1 0.03 -1 -1 30364 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 23.9 MiB 0.18 1089 11245 3394 6770 1081 62.5 MiB 0.12 0.00 3.85398 -125.73 -3.85398 3.85398 0.64 0.00074555 0.000692384 0.0476985 0.044288 32 2804 22 6.65987e+06 266238 554710. 1919.41 0.90 0.139162 0.123142 22834 132086 -1 2365 24 1758 3197 231748 53117 3.42705 3.42705 -123.815 -3.42705 0 0 701300. 2426.64 0.18 0.06 0.08 -1 -1 0.18 0.0199393 0.0176189 135 77 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.58 vpr 61.92 MiB -1 -1 0.08 17536 1 0.03 -1 -1 30164 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.3 MiB 0.09 769 15493 4232 9363 1898 61.9 MiB 0.12 0.00 3.34618 -101.012 -3.34618 3.34618 0.67 0.000566877 0.00052757 0.0465615 0.0433176 30 1787 28 6.65987e+06 304272 526063. 1820.29 0.85 0.118613 0.104877 22546 126617 -1 1499 16 624 950 65432 14963 2.40711 2.40711 -90.0172 -2.40711 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0187807 0.0165045 97 23 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.79 vpr 62.24 MiB -1 -1 0.18 17772 1 0.03 -1 -1 30400 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 23.8 MiB 0.13 904 12345 3635 7531 1179 62.2 MiB 0.12 0.00 3.9733 -136.305 -3.9733 3.9733 0.68 0.000686313 0.000638485 0.0485171 0.0450938 28 2501 21 6.65987e+06 253560 500653. 1732.36 0.96 0.12837 0.113521 21970 115934 -1 2099 21 1493 2105 171768 38779 3.41097 3.41097 -132.539 -3.41097 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0280301 0.0244753 125 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.02 vpr 62.46 MiB -1 -1 0.20 17696 1 0.03 -1 -1 30292 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1234 10649 2580 7238 831 62.5 MiB 0.13 0.00 5.507 -161.149 -5.507 5.507 0.63 0.000776215 0.000722064 0.0424831 0.0395106 32 3101 24 6.65987e+06 354984 554710. 1919.41 0.96 0.139119 0.122837 22834 132086 -1 2718 20 2087 3366 237751 56336 4.94897 4.94897 -152.371 -4.94897 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0313697 0.027588 168 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.66 vpr 62.44 MiB -1 -1 0.17 17512 1 0.03 -1 -1 30360 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 23.9 MiB 0.26 868 6791 1309 5265 217 62.4 MiB 0.08 0.00 4.3812 -128.187 -4.3812 4.3812 0.63 0.000689209 0.000640979 0.0241759 0.0224797 30 2033 20 6.65987e+06 393018 526063. 1820.29 0.79 0.105199 0.0921474 22546 126617 -1 1762 20 952 1627 85645 20883 2.86291 2.86291 -109.937 -2.86291 0 0 666494. 2306.21 0.18 0.06 0.12 -1 -1 0.18 0.0278792 0.0244527 133 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.69 vpr 62.04 MiB -1 -1 0.16 17528 1 0.03 -1 -1 30504 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.5 MiB 0.05 691 10228 2870 6479 879 62.0 MiB 0.09 0.00 3.33678 -100.638 -3.33678 3.33678 0.63 0.000590529 0.000549754 0.0330236 0.0307361 26 1949 23 6.65987e+06 329628 477104. 1650.88 1.02 0.104325 0.0915417 21682 110474 -1 1713 22 1236 2017 169711 40616 2.71771 2.71771 -101.15 -2.71771 0 0 585099. 2024.56 0.18 0.08 0.11 -1 -1 0.18 0.0253964 0.0220549 104 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.27 vpr 62.60 MiB -1 -1 0.21 17768 1 0.03 -1 -1 30268 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 24.2 MiB 0.32 1262 6623 1301 4680 642 62.6 MiB 0.10 0.00 6.41663 -184.149 -6.41663 6.41663 0.64 0.000711927 0.000655168 0.0324282 0.0301175 30 3204 25 6.65987e+06 316950 526063. 1820.29 1.25 0.13925 0.122015 22546 126617 -1 2549 21 1554 2249 144381 31759 4.98034 4.98034 -166.106 -4.98034 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0346893 0.0306326 168 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.01 vpr 62.37 MiB -1 -1 0.17 17868 1 0.03 -1 -1 30376 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 23.7 MiB 0.30 921 16959 4303 11211 1445 62.4 MiB 0.15 0.00 4.44175 -133.512 -4.44175 4.44175 0.71 0.000686753 0.000638961 0.0557759 0.0518798 26 2186 24 6.65987e+06 405696 477104. 1650.88 0.87 0.140859 0.125016 21682 110474 -1 1832 22 1113 1842 133668 30945 3.44211 3.44211 -120.204 -3.44211 0 0 585099. 2024.56 0.16 0.07 0.11 -1 -1 0.16 0.0295175 0.0257902 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.41 vpr 61.69 MiB -1 -1 0.14 17372 1 0.03 -1 -1 30504 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63172 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.1 MiB 0.05 793 12375 3802 6579 1994 61.7 MiB 0.10 0.00 3.21869 -96.935 -3.21869 3.21869 0.63 0.000539173 0.00050233 0.0364165 0.0339235 30 1766 15 6.65987e+06 291594 526063. 1820.29 0.81 0.100785 0.0890078 22546 126617 -1 1544 16 659 1107 76228 16685 2.40211 2.40211 -91.256 -2.40211 0 0 666494. 2306.21 0.18 0.05 0.12 -1 -1 0.18 0.0180659 0.0158245 100 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.86 vpr 62.64 MiB -1 -1 0.17 17900 1 0.04 -1 -1 30160 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.0 MiB 0.12 997 10448 2232 7093 1123 62.6 MiB 0.10 0.00 5.44618 -130.736 -5.44618 5.44618 0.64 0.000713311 0.000662719 0.0357604 0.0332467 30 2483 23 6.65987e+06 431052 526063. 1820.29 0.98 0.122749 0.10815 22546 126617 -1 1969 22 1092 2125 114624 28201 4.42602 4.42602 -126.911 -4.42602 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0304247 0.0266053 139 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.53 vpr 61.93 MiB -1 -1 0.17 17368 1 0.03 -1 -1 30160 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63420 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.3 MiB 0.09 805 9600 2394 6142 1064 61.9 MiB 0.09 0.00 3.39504 -104.25 -3.39504 3.39504 0.63 0.000556067 0.000517791 0.0311112 0.028948 30 1773 21 6.65987e+06 253560 526063. 1820.29 0.84 0.0972155 0.0855191 22546 126617 -1 1584 19 861 1470 82710 19276 2.61951 2.61951 -101.603 -2.61951 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0215431 0.0188395 104 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.00 vpr 62.08 MiB -1 -1 0.19 17312 1 0.03 -1 -1 30376 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.6 MiB 0.17 870 16295 4607 9720 1968 62.1 MiB 0.13 0.00 3.88231 -108.178 -3.88231 3.88231 0.73 0.000594076 0.000553148 0.0465786 0.0432809 26 1911 26 6.65987e+06 418374 477104. 1650.88 1.05 0.122299 0.107975 21682 110474 -1 1673 16 662 1152 76214 17335 2.61725 2.61725 -99.6073 -2.61725 0 0 585099. 2024.56 0.16 0.05 0.10 -1 -1 0.16 0.0199234 0.0174714 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.09 vpr 62.70 MiB -1 -1 0.16 17772 1 0.03 -1 -1 30468 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1186 15151 5050 8219 1882 62.7 MiB 0.15 0.00 4.37661 -129.138 -4.37661 4.37661 0.65 0.000694275 0.000645305 0.0590446 0.0549076 28 2757 20 6.65987e+06 304272 500653. 1732.36 1.14 0.142319 0.1265 21970 115934 -1 2326 20 1558 2342 169332 38302 3.29317 3.29317 -116.352 -3.29317 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0280023 0.0244891 138 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.82 vpr 62.25 MiB -1 -1 0.10 17816 1 0.04 -1 -1 30352 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 23.6 MiB 0.20 884 5548 1103 3958 487 62.3 MiB 0.08 0.00 4.37207 -129.772 -4.37207 4.37207 0.66 0.000716914 0.000666741 0.0315796 0.0295335 32 2141 21 6.65987e+06 304272 554710. 1919.41 0.84 0.11508 0.101319 22834 132086 -1 1854 20 1282 1951 132992 31888 3.70757 3.70757 -130.332 -3.70757 0 0 701300. 2426.64 0.22 0.07 0.13 -1 -1 0.22 0.028411 0.0248028 130 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.82 vpr 62.34 MiB -1 -1 0.15 17796 1 0.03 -1 -1 30000 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 23.9 MiB 0.21 1040 15391 4199 8930 2262 62.3 MiB 0.19 0.00 4.54089 -136.701 -4.54089 4.54089 0.64 0.00145075 0.0013486 0.0645074 0.0597496 32 2316 24 6.65987e+06 342306 554710. 1919.41 0.84 0.151875 0.134859 22834 132086 -1 2093 18 1106 1900 131883 30619 3.67131 3.67131 -128.131 -3.67131 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0263382 0.0231392 132 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.56 vpr 61.91 MiB -1 -1 0.13 17532 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 23.5 MiB 0.26 821 7476 1923 4958 595 61.9 MiB 0.04 0.00 4.66411 -131.468 -4.66411 4.66411 0.65 0.000268522 0.000247063 0.0133875 0.0123654 30 1841 19 6.65987e+06 202848 526063. 1820.29 0.76 0.0858076 0.0745663 22546 126617 -1 1650 18 685 936 56545 13237 3.08625 3.08625 -110.111 -3.08625 0 0 666494. 2306.21 0.20 0.05 0.12 -1 -1 0.20 0.0219255 0.0191949 103 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.61 vpr 62.37 MiB -1 -1 0.14 17808 1 0.04 -1 -1 30340 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 23.8 MiB 0.19 768 7736 1918 4969 849 62.4 MiB 0.08 0.00 3.69598 -115.422 -3.69598 3.69598 0.63 0.000638307 0.000592616 0.029934 0.0278047 30 1988 17 6.65987e+06 240882 526063. 1820.29 0.80 0.10127 0.0888009 22546 126617 -1 1656 20 991 1482 85033 20146 2.94771 2.94771 -106.549 -2.94771 0 0 666494. 2306.21 0.19 0.06 0.12 -1 -1 0.19 0.0255815 0.0223264 111 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.93 vpr 62.21 MiB -1 -1 0.19 17872 1 0.03 -1 -1 30396 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63704 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.6 MiB 0.18 822 9815 2052 6788 975 62.2 MiB 0.08 0.00 3.34001 -95.394 -3.34001 3.34001 0.63 0.000658534 0.000611671 0.0322888 0.0300252 28 2190 24 6.65987e+06 418374 500653. 1732.36 1.19 0.113535 0.0994473 21970 115934 -1 1852 15 1072 1834 124485 30633 2.76159 2.76159 -95.2544 -2.76159 0 0 612192. 2118.31 0.17 0.06 0.11 -1 -1 0.17 0.021531 0.0189502 123 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.19 vpr 62.07 MiB -1 -1 0.19 17256 1 0.03 -1 -1 30304 -1 -1 35 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63556 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.5 MiB 0.12 864 12623 3003 8699 921 62.1 MiB 0.10 0.00 4.17801 -101.983 -4.17801 4.17801 0.68 0.000593272 0.000552174 0.037397 0.0347458 26 2268 22 6.65987e+06 443730 477104. 1650.88 1.33 0.113139 0.0998039 21682 110474 -1 1937 20 1051 2141 185449 39228 3.47031 3.47031 -104.035 -3.47031 0 0 585099. 2024.56 0.17 0.07 0.11 -1 -1 0.17 0.0260453 0.0231838 115 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.71 vpr 61.99 MiB -1 -1 0.19 17836 1 0.03 -1 -1 30372 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63480 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 23.5 MiB 0.19 739 8360 2842 3913 1605 62.0 MiB 0.09 0.00 4.07397 -113.958 -4.07397 4.07397 0.64 0.000637661 0.000592599 0.0337256 0.0313844 32 2126 22 6.65987e+06 215526 554710. 1919.41 0.85 0.109921 0.0964776 22834 132086 -1 1845 20 1326 2233 191342 43480 3.06691 3.06691 -111.388 -3.06691 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0251881 0.0219659 108 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.24 vpr 62.26 MiB -1 -1 0.19 17868 1 0.03 -1 -1 30052 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 23.7 MiB 0.19 854 4110 634 3368 108 62.3 MiB 0.06 0.00 3.78604 -125.597 -3.78604 3.78604 0.64 0.000674829 0.000627612 0.0173504 0.0161734 26 2393 26 6.65987e+06 253560 477104. 1650.88 1.29 0.107294 0.0935161 21682 110474 -1 1995 20 1275 1873 148398 35276 3.03351 3.03351 -122.493 -3.03351 0 0 585099. 2024.56 0.16 0.07 0.09 -1 -1 0.16 0.0268601 0.0233554 120 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.76 vpr 62.23 MiB -1 -1 0.19 17304 1 0.03 -1 -1 30420 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.6 MiB 0.09 847 5711 1070 3973 668 62.2 MiB 0.06 0.00 4.49904 -123.598 -4.49904 4.49904 0.64 0.000632663 0.000588321 0.0189213 0.0176025 30 2337 22 6.65987e+06 405696 526063. 1820.29 0.91 0.0944913 0.0824075 22546 126617 -1 1888 24 1168 2212 131068 32744 3.69257 3.69257 -118.678 -3.69257 0 0 666494. 2306.21 0.21 0.07 0.12 -1 -1 0.21 0.0288576 0.0251325 127 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.02 vpr 62.65 MiB -1 -1 0.17 17772 1 0.03 -1 -1 30380 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1096 14639 4278 7910 2451 62.6 MiB 0.17 0.00 5.13815 -159.632 -5.13815 5.13815 0.66 0.000702481 0.000652804 0.0583243 0.0539059 32 3087 25 6.65987e+06 278916 554710. 1919.41 0.89 0.147101 0.130112 22834 132086 -1 2460 21 1795 2659 205239 47320 4.22151 4.22151 -146.209 -4.22151 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0294427 0.0257909 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.03 vpr 62.86 MiB -1 -1 0.18 17644 1 0.03 -1 -1 30244 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 24.2 MiB 0.28 1097 14331 4044 8499 1788 62.9 MiB 0.14 0.00 4.9662 -142.984 -4.9662 4.9662 0.64 0.000787381 0.00071603 0.0522839 0.0485364 28 2572 22 6.65987e+06 405696 500653. 1732.36 1.00 0.14137 0.125145 21970 115934 -1 2172 17 1073 1895 133148 29668 3.78603 3.78603 -131.107 -3.78603 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.026523 0.0233458 142 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.23 vpr 62.50 MiB -1 -1 0.19 17520 1 0.03 -1 -1 30236 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1087 19136 6054 10420 2662 62.5 MiB 0.17 0.00 4.23232 -136.463 -4.23232 4.23232 0.64 0.000751658 0.000697935 0.0641519 0.0594746 28 2899 28 6.65987e+06 469086 500653. 1732.36 1.18 0.162816 0.144321 21970 115934 -1 2417 25 1675 2949 230320 50849 3.47891 3.47891 -134.175 -3.47891 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0351721 0.0306412 140 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.67 vpr 61.95 MiB -1 -1 0.18 17240 1 0.03 -1 -1 30148 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63440 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.6 MiB 0.19 753 14081 4985 6810 2286 62.0 MiB 0.12 0.00 3.61906 -107.365 -3.61906 3.61906 0.63 0.000583674 0.000543015 0.049158 0.0456631 32 1967 21 6.65987e+06 240882 554710. 1919.41 0.80 0.117929 0.104482 22834 132086 -1 1733 22 1136 1898 162835 35973 2.77265 2.77265 -98.3726 -2.77265 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0248239 0.0215885 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.88 vpr 62.60 MiB -1 -1 0.20 17692 1 0.03 -1 -1 30464 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 23.9 MiB 0.23 993 13583 3880 7603 2100 62.6 MiB 0.14 0.00 4.75724 -141.541 -4.75724 4.75724 0.64 0.000728366 0.000676059 0.0571087 0.0529817 32 2250 20 6.65987e+06 266238 554710. 1919.41 0.87 0.142183 0.126089 22834 132086 -1 2011 20 1613 2556 171997 40019 3.57237 3.57237 -133.43 -3.57237 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.028961 0.0253585 137 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.06 vpr 62.54 MiB -1 -1 0.19 17504 1 0.04 -1 -1 30300 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 23.9 MiB 0.26 984 6328 1212 4906 210 62.5 MiB 0.08 0.00 5.08874 -146.537 -5.08874 5.08874 0.65 0.000686748 0.000638265 0.024705 0.022972 30 2772 46 6.65987e+06 304272 526063. 1820.29 1.07 0.133684 0.116338 22546 126617 -1 2211 20 1228 1907 136054 30889 3.73165 3.73165 -133.157 -3.73165 0 0 666494. 2306.21 0.23 0.07 0.11 -1 -1 0.23 0.0283532 0.0249038 138 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.94 vpr 62.57 MiB -1 -1 0.16 17796 1 0.03 -1 -1 30380 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1115 15391 3929 9868 1594 62.6 MiB 0.16 0.00 5.2191 -153.261 -5.2191 5.2191 0.64 0.000757881 0.000698838 0.0496936 0.0456658 32 2703 22 6.65987e+06 354984 554710. 1919.41 0.86 0.132016 0.116288 22834 132086 -1 2398 21 1413 2244 171506 39576 4.49237 4.49237 -149.522 -4.49237 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0308503 0.027255 146 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.52 vpr 62.46 MiB -1 -1 0.20 17580 1 0.03 -1 -1 30124 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 24.0 MiB 1.00 822 9963 2514 6047 1402 62.5 MiB 0.11 0.00 4.35758 -125.649 -4.35758 4.35758 0.64 0.000724418 0.00067348 0.037253 0.0346508 30 1914 20 6.65987e+06 393018 526063. 1820.29 0.82 0.122579 0.10778 22546 126617 -1 1609 18 981 1672 88324 22522 2.81791 2.81791 -106.668 -2.81791 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0268726 0.0235811 133 83 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.96 vpr 62.47 MiB -1 -1 0.17 17812 1 0.03 -1 -1 30336 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 24.0 MiB 0.19 1042 15822 5317 8613 1892 62.5 MiB 0.16 0.00 4.76549 -137.992 -4.76549 4.76549 0.67 0.000725994 0.000674637 0.0656753 0.0610691 30 2491 20 6.65987e+06 253560 526063. 1820.29 0.91 0.143795 0.128346 22546 126617 -1 2119 19 1152 2004 130735 29222 3.60711 3.60711 -129.356 -3.60711 0 0 666494. 2306.21 0.28 0.06 0.11 -1 -1 0.28 0.0249352 0.0222199 133 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.30 vpr 62.46 MiB -1 -1 0.17 17812 1 0.03 -1 -1 30244 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 24.0 MiB 0.33 913 8934 2134 6274 526 62.5 MiB 0.10 0.00 4.51892 -126.294 -4.51892 4.51892 0.63 0.000735969 0.000683983 0.034832 0.0323781 26 2602 20 6.65987e+06 367662 477104. 1650.88 1.36 0.120772 0.106048 21682 110474 -1 2145 20 1380 2178 169956 39900 3.37797 3.37797 -123.439 -3.37797 0 0 585099. 2024.56 0.16 0.08 0.07 -1 -1 0.16 0.0285932 0.0249585 131 85 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.54 vpr 61.84 MiB -1 -1 0.15 17188 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63320 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.3 MiB 0.09 724 12416 3530 7132 1754 61.8 MiB 0.11 0.00 3.74649 -112.139 -3.74649 3.74649 0.63 0.00055351 0.000514366 0.0426826 0.0396684 32 1726 22 6.65987e+06 190170 554710. 1919.41 0.79 0.110012 0.0974881 22834 132086 -1 1519 18 897 1350 107597 25022 2.71465 2.71465 -102.628 -2.71465 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0206079 0.0180472 96 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.86 vpr 62.58 MiB -1 -1 0.15 17800 1 0.03 -1 -1 30232 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 24.2 MiB 0.25 989 15430 4612 8155 2663 62.6 MiB 0.14 0.00 4.41154 -133.367 -4.41154 4.41154 0.64 0.000735954 0.000683715 0.0550803 0.0511072 32 2429 22 6.65987e+06 380340 554710. 1919.41 0.89 0.143227 0.126745 22834 132086 -1 2063 21 1487 2519 184259 42773 3.84791 3.84791 -129.508 -3.84791 0 0 701300. 2426.64 0.19 0.08 0.11 -1 -1 0.19 0.029874 0.0261111 130 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.88 vpr 62.51 MiB -1 -1 0.16 17504 1 0.03 -1 -1 30416 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 24.0 MiB 0.25 902 8685 2007 6399 279 62.5 MiB 0.11 0.00 4.76517 -143.598 -4.76517 4.76517 0.63 0.000770538 0.000715214 0.0393245 0.036504 32 2497 24 6.65987e+06 253560 554710. 1919.41 0.89 0.134928 0.118882 22834 132086 -1 2183 21 1883 2973 209659 50687 3.93397 3.93397 -140.255 -3.93397 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0319837 0.0280189 147 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.14 vpr 62.12 MiB -1 -1 0.17 17528 1 0.03 -1 -1 30152 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 23.6 MiB 0.20 946 12143 3182 7420 1541 62.1 MiB 0.11 0.00 4.15372 -120.605 -4.15372 4.15372 0.63 0.000580299 0.000539256 0.041136 0.0382046 26 2395 43 6.65987e+06 240882 477104. 1650.88 1.33 0.129117 0.113268 21682 110474 -1 2067 28 1364 1766 225074 80275 3.06105 3.06105 -114.874 -3.06105 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0302092 0.0261948 111 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.38 vpr 61.84 MiB -1 -1 0.17 17268 1 0.03 -1 -1 30436 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63320 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.1 MiB 0.07 732 8685 2467 5468 750 61.8 MiB 0.08 0.00 3.75938 -108.757 -3.75938 3.75938 0.64 0.000552648 0.000514651 0.0279605 0.0260058 30 1655 19 6.65987e+06 266238 526063. 1820.29 0.77 0.0922423 0.0810629 22546 126617 -1 1544 21 996 1668 101042 23801 2.51311 2.51311 -96.4545 -2.51311 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0228562 0.0199226 106 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.06 vpr 62.57 MiB -1 -1 0.19 17636 1 0.03 -1 -1 30424 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 23.9 MiB 0.14 1015 15533 4784 8284 2465 62.6 MiB 0.15 0.00 4.92983 -152.714 -4.92983 4.92983 0.63 0.000701762 0.000652268 0.0576584 0.0536286 28 3244 30 6.65987e+06 316950 500653. 1732.36 1.12 0.151321 0.13407 21970 115934 -1 2307 22 1749 2275 179013 42202 4.61143 4.61143 -159.431 -4.61143 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0302505 0.0264273 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.80 vpr 62.39 MiB -1 -1 0.20 17856 1 0.03 -1 -1 30032 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 23.9 MiB 0.50 1191 12305 3278 8039 988 62.4 MiB 0.12 0.00 4.93544 -150.743 -4.93544 4.93544 0.64 0.000719859 0.000662811 0.0456271 0.0424112 26 3110 25 6.65987e+06 354984 477104. 1650.88 1.32 0.133465 0.118765 21682 110474 -1 2621 25 1874 2959 275210 79170 4.19577 4.19577 -144.583 -4.19577 0 0 585099. 2024.56 0.23 0.12 0.11 -1 -1 0.23 0.0355072 0.0311193 151 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.21 vpr 62.61 MiB -1 -1 0.15 17532 1 0.03 -1 -1 30152 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 23.8 MiB 0.06 1117 11004 2566 7834 604 62.6 MiB 0.11 0.00 5.28255 -141.369 -5.28255 5.28255 0.64 0.000726403 0.000675156 0.0368641 0.034207 26 3370 49 6.65987e+06 456408 477104. 1650.88 2.32 0.159731 0.139848 21682 110474 -1 2670 20 1658 2923 254838 56451 4.40303 4.40303 -143.411 -4.40303 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0292646 0.0256987 153 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.93 vpr 62.13 MiB -1 -1 0.15 17576 1 0.03 -1 -1 30068 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63624 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 23.6 MiB 0.24 750 7863 1674 5072 1117 62.1 MiB 0.08 0.00 3.28175 -94.6726 -3.28175 3.28175 0.64 0.000642724 0.00059755 0.0261842 0.0243401 30 1756 22 6.65987e+06 393018 526063. 1820.29 0.85 0.102459 0.0896681 22546 126617 -1 1506 19 933 1598 77376 19176 2.62125 2.62125 -90.575 -2.62125 0 0 666494. 2306.21 0.22 0.06 0.11 -1 -1 0.22 0.0248834 0.021794 120 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.30 vpr 62.00 MiB -1 -1 0.15 17484 1 0.03 -1 -1 30600 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.4 MiB 0.05 638 11948 3525 6694 1729 62.0 MiB 0.09 0.00 3.4543 -94.1654 -3.4543 3.4543 0.64 0.000549818 0.00051219 0.0399699 0.0372221 28 1599 22 6.65987e+06 266238 500653. 1732.36 0.75 0.105436 0.0930724 21970 115934 -1 1335 20 856 1254 87240 20842 2.77577 2.77577 -90.3712 -2.77577 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0219562 0.0190642 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.42 vpr 62.68 MiB -1 -1 0.20 17636 1 0.03 -1 -1 30336 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1319 10542 2869 6884 789 62.7 MiB 0.12 0.00 4.22384 -138.261 -4.22384 4.22384 0.71 0.00079704 0.00074469 0.0451586 0.0419595 28 3615 24 6.65987e+06 329628 500653. 1732.36 1.41 0.146648 0.129144 21970 115934 -1 3006 22 1865 2973 215904 49606 3.64757 3.64757 -137.164 -3.64757 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0346968 0.0303347 170 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.51 vpr 62.44 MiB -1 -1 0.19 17560 1 0.03 -1 -1 30288 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 23.9 MiB 0.93 967 9417 2580 6478 359 62.4 MiB 0.10 0.00 5.3126 -152.671 -5.3126 5.3126 0.64 0.000716782 0.000666096 0.039088 0.0363086 30 2413 22 6.65987e+06 266238 526063. 1820.29 0.87 0.124497 0.109619 22546 126617 -1 1915 21 1038 1600 92361 21367 4.28602 4.28602 -139.252 -4.28602 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0296175 0.0259426 150 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.29 vpr 62.26 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 23.7 MiB 0.80 910 12186 3808 6300 2078 62.3 MiB 0.12 0.00 4.17204 -128.915 -4.17204 4.17204 0.63 0.000661136 0.000614265 0.0476864 0.0443468 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.80 0.126669 0.112159 22546 126617 -1 1758 18 928 1406 83079 19030 3.13577 3.13577 -122.213 -3.13577 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0245689 0.0215455 126 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.57 vpr 62.26 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30440 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.7 MiB 0.10 997 13726 4134 8495 1097 62.3 MiB 0.13 0.00 4.87399 -127.071 -4.87399 4.87399 0.64 0.000657619 0.000608055 0.0457822 0.0424462 30 2100 21 6.65987e+06 380340 526063. 1820.29 0.80 0.125275 0.110751 22546 126617 -1 1834 17 818 1333 78781 18665 3.24665 3.24665 -110.551 -3.24665 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0238182 0.0209644 126 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.39 vpr 62.61 MiB -1 -1 0.20 17576 1 0.03 -1 -1 30156 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1094 9732 2284 6801 647 62.6 MiB 0.11 0.00 4.71929 -136.272 -4.71929 4.71929 0.64 0.000737997 0.000685994 0.0354473 0.0329888 26 2676 39 6.65987e+06 418374 477104. 1650.88 1.40 0.142241 0.124542 21682 110474 -1 2326 19 1471 2455 178546 41726 3.76783 3.76783 -132.157 -3.76783 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0282117 0.0247189 144 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.63 vpr 62.55 MiB -1 -1 0.18 17636 1 0.03 -1 -1 30124 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.9 MiB 0.15 968 12693 2914 8596 1183 62.6 MiB 0.13 0.00 3.66981 -110.801 -3.66981 3.66981 0.64 0.000662621 0.000615604 0.0418715 0.0388767 32 2261 19 6.65987e+06 393018 554710. 1919.41 0.83 0.117578 0.103737 22834 132086 -1 1967 20 1164 2022 141932 31880 2.86191 2.86191 -102.093 -2.86191 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0261012 0.0228294 124 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.96 vpr 62.82 MiB -1 -1 0.17 17788 1 0.03 -1 -1 30296 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 24.1 MiB 0.16 1162 15493 5220 7522 2751 62.8 MiB 0.15 0.00 4.81692 -150.127 -4.81692 4.81692 0.70 0.000705196 0.000655497 0.058788 0.0546448 32 3110 26 6.65987e+06 304272 554710. 1919.41 0.95 0.147421 0.130952 22834 132086 -1 2544 24 2121 3234 262327 57912 4.17571 4.17571 -147.371 -4.17571 0 0 701300. 2426.64 0.19 0.11 0.14 -1 -1 0.19 0.0317431 0.0280114 147 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.49 vpr 62.55 MiB -1 -1 0.19 17644 1 0.03 -1 -1 30184 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1013 10448 2457 7443 548 62.6 MiB 0.12 0.00 4.61703 -140.056 -4.61703 4.61703 0.66 0.000758659 0.000704848 0.0376082 0.0349359 26 2952 23 6.65987e+06 431052 477104. 1650.88 1.40 0.131853 0.115839 21682 110474 -1 2326 22 1350 2117 162283 37175 3.41651 3.41651 -129.627 -3.41651 0 0 585099. 2024.56 0.23 0.07 0.11 -1 -1 0.23 0.0280804 0.0248476 143 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.49 vpr 61.92 MiB -1 -1 0.18 17588 1 0.03 -1 -1 30356 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.3 MiB 0.12 669 12030 4965 6160 905 61.9 MiB 0.10 0.00 3.76255 -110.557 -3.76255 3.76255 0.63 0.000573335 0.000533235 0.0435472 0.040524 32 1475 20 6.65987e+06 215526 554710. 1919.41 0.77 0.11101 0.098317 22834 132086 -1 1382 19 921 1285 116578 25787 2.80197 2.80197 -99.1743 -2.80197 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0225579 0.0197286 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.72 vpr 62.11 MiB -1 -1 0.17 17532 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 23.5 MiB 0.25 897 13992 5018 7267 1707 62.1 MiB 0.13 0.00 3.93547 -124.701 -3.93547 3.93547 0.64 0.000633091 0.00058737 0.0508198 0.0471816 28 2149 19 6.65987e+06 253560 500653. 1732.36 0.81 0.124241 0.110116 21970 115934 -1 1871 22 1402 1872 148824 33300 3.11557 3.11557 -115.482 -3.11557 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0277561 0.0243395 116 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.47 vpr 62.45 MiB -1 -1 0.13 17576 1 0.03 -1 -1 30460 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 23.9 MiB 0.08 945 14020 3581 8011 2428 62.4 MiB 0.12 0.00 4.66818 -124.475 -4.66818 4.66818 0.63 0.000668964 0.000621666 0.0427353 0.0397137 32 2224 21 6.65987e+06 469086 554710. 1919.41 0.83 0.121738 0.107489 22834 132086 -1 1970 23 1500 2561 184931 41768 3.57631 3.57631 -118.353 -3.57631 0 0 701300. 2426.64 0.23 0.08 0.12 -1 -1 0.23 0.0297765 0.0259755 129 33 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.14 vpr 61.83 MiB -1 -1 0.18 17528 1 0.03 -1 -1 30452 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63312 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 23.4 MiB 0.19 809 8448 1963 6049 436 61.8 MiB 0.08 0.00 4.16472 -111.492 -4.16472 4.16472 0.64 0.000564912 0.000525789 0.0286936 0.026731 26 2404 34 6.65987e+06 266238 477104. 1650.88 1.31 0.107803 0.0942981 21682 110474 -1 1953 21 1368 1776 170413 41923 3.16857 3.16857 -106.139 -3.16857 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.023463 0.0204317 110 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.70 vpr 62.02 MiB -1 -1 0.14 17532 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 23.6 MiB 0.20 618 8852 1890 6315 647 62.0 MiB 0.08 0.00 3.69503 -110.464 -3.69503 3.69503 0.64 0.000597692 0.000556373 0.0327667 0.0305045 32 2025 24 6.65987e+06 202848 554710. 1919.41 0.86 0.106369 0.0935412 22834 132086 -1 1568 21 1327 2272 160443 39596 2.88191 2.88191 -106.381 -2.88191 0 0 701300. 2426.64 0.26 0.07 0.12 -1 -1 0.26 0.0215032 0.0189514 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.87 vpr 62.69 MiB -1 -1 0.19 17772 1 0.03 -1 -1 30144 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 24.1 MiB 0.23 938 16973 4485 9905 2583 62.7 MiB 0.15 0.00 4.16177 -122.328 -4.16177 4.16177 0.67 0.000727514 0.000676489 0.0576836 0.0535794 32 2086 22 6.65987e+06 443730 554710. 1919.41 0.83 0.144947 0.128612 22834 132086 -1 1855 19 1333 2075 132666 31802 2.96496 2.96496 -111.053 -2.96496 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0280438 0.0246174 135 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.61 vpr 62.07 MiB -1 -1 0.20 17588 1 0.03 -1 -1 30328 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 23.6 MiB 0.14 818 9872 2327 5876 1669 62.1 MiB 0.09 0.00 3.9535 -119.787 -3.9535 3.9535 0.63 0.000573753 0.00053417 0.034367 0.0319772 28 2135 19 6.65987e+06 240882 500653. 1732.36 0.84 0.101001 0.0889808 21970 115934 -1 1848 18 1008 1481 115769 26162 3.05777 3.05777 -111.219 -3.05777 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0211817 0.018517 108 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.11 vpr 62.29 MiB -1 -1 0.15 17664 1 0.03 -1 -1 30040 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 23.6 MiB 0.25 854 7007 1324 4687 996 62.3 MiB 0.07 0.00 3.67932 -112.828 -3.67932 3.67932 0.63 0.000695505 0.000645676 0.0250294 0.0232507 26 2878 47 6.65987e+06 393018 477104. 1650.88 2.20 0.134019 0.116399 21682 110474 -1 2129 16 1129 1978 190866 57352 3.04511 3.04511 -112.46 -3.04511 0 0 585099. 2024.56 0.17 0.09 0.13 -1 -1 0.17 0.0278106 0.0244426 126 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.40 vpr 62.57 MiB -1 -1 0.19 17812 1 0.02 -1 -1 30452 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.1 MiB 0.77 956 13055 3385 8531 1139 62.6 MiB 0.13 0.00 4.2257 -136.613 -4.2257 4.2257 0.67 0.000741568 0.000687713 0.0476881 0.0442345 32 2142 21 6.65987e+06 405696 554710. 1919.41 0.90 0.136023 0.120407 22834 132086 -1 1950 20 1403 1904 129517 30385 3.45123 3.45123 -132.174 -3.45123 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0296691 0.0259779 138 91 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.70 vpr 62.10 MiB -1 -1 0.15 17400 1 0.03 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.7 MiB 0.28 770 8481 2112 5900 469 62.1 MiB 0.08 0.00 3.26384 -102.093 -3.26384 3.26384 0.68 0.000626935 0.000582822 0.0324408 0.0301745 30 1814 29 6.65987e+06 215526 526063. 1820.29 0.82 0.10783 0.0946756 22546 126617 -1 1464 17 761 1208 72569 16667 2.62051 2.62051 -96.4977 -2.62051 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0219261 0.0192926 104 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.62 vpr 62.30 MiB -1 -1 0.15 17252 1 0.03 -1 -1 30292 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 23.7 MiB 0.16 877 7823 1725 5526 572 62.3 MiB 0.08 0.00 4.21052 -129.412 -4.21052 4.21052 0.67 0.000615584 0.000573503 0.0288106 0.0268309 28 2168 19 6.65987e+06 240882 500653. 1732.36 0.82 0.099488 0.0874187 21970 115934 -1 2030 21 1304 1913 146005 33733 3.07585 3.07585 -118.205 -3.07585 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0254452 0.0222095 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.97 vpr 62.42 MiB -1 -1 0.18 17504 1 0.03 -1 -1 30440 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1033 8591 2028 5962 601 62.4 MiB 0.10 0.00 4.5425 -136.752 -4.5425 4.5425 0.65 0.000665216 0.000619046 0.0357455 0.0330954 26 2706 26 6.65987e+06 278916 477104. 1650.88 1.15 0.119933 0.105464 21682 110474 -1 2297 18 1566 2196 158849 37891 3.71871 3.71871 -131.764 -3.71871 0 0 585099. 2024.56 0.16 0.07 0.11 -1 -1 0.16 0.0246855 0.0216694 130 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.71 vpr 62.39 MiB -1 -1 0.16 17900 1 0.03 -1 -1 30128 -1 -1 28 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 23.7 MiB 0.36 878 11177 3323 6945 909 62.4 MiB 0.11 0.00 4.7062 -118.142 -4.7062 4.7062 0.67 0.000653816 0.000608378 0.0392962 0.0365428 30 1916 16 6.65987e+06 354984 526063. 1820.29 0.76 0.111256 0.0983502 22546 126617 -1 1653 15 665 1217 61911 15512 3.29783 3.29783 -104.746 -3.29783 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0211737 0.018649 121 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.84 vpr 62.37 MiB -1 -1 0.15 17640 1 0.03 -1 -1 30452 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1007 9495 2407 6691 397 62.4 MiB 0.11 0.00 5.16517 -161.462 -5.16517 5.16517 0.63 0.000761924 0.000707605 0.040445 0.037587 32 2658 22 6.65987e+06 291594 554710. 1919.41 0.88 0.133454 0.117678 22834 132086 -1 2234 22 1802 2507 169937 41350 3.82117 3.82117 -143.64 -3.82117 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0326736 0.0285887 153 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.46 vpr 62.00 MiB -1 -1 0.19 17080 1 0.03 -1 -1 30392 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.4 MiB 0.09 794 9181 2203 6150 828 62.0 MiB 0.08 0.00 3.53041 -99.5418 -3.53041 3.53041 0.69 0.000536862 0.000500345 0.0299814 0.0279442 32 1764 19 6.65987e+06 228204 554710. 1919.41 0.75 0.0916865 0.0807126 22834 132086 -1 1564 17 692 1110 76497 18243 2.71371 2.71371 -96.112 -2.71371 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0196275 0.0171774 96 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.94 vpr 62.58 MiB -1 -1 0.18 17796 1 0.04 -1 -1 30280 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 24.0 MiB 0.39 947 7201 1402 5250 549 62.6 MiB 0.08 0.00 4.0805 -134.669 -4.0805 4.0805 0.63 0.000733459 0.000676153 0.0278018 0.0257911 32 2497 24 6.65987e+06 418374 554710. 1919.41 0.85 0.121886 0.106517 22834 132086 -1 2184 22 1638 2272 171887 40530 3.68557 3.68557 -133.353 -3.68557 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.0332167 0.0290265 144 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.77 vpr 62.37 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 23.8 MiB 0.22 692 9368 2494 5834 1040 62.4 MiB 0.10 0.00 3.5233 -119.857 -3.5233 3.5233 0.64 0.000714689 0.000663149 0.0412209 0.0382782 32 1730 23 6.65987e+06 202848 554710. 1919.41 0.83 0.127899 0.112634 22834 132086 -1 1559 23 1459 2083 162526 37135 2.97497 2.97497 -117.069 -2.97497 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0318821 0.0278196 115 96 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.03 vpr 62.37 MiB -1 -1 0.18 17644 1 0.03 -1 -1 30284 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 23.7 MiB 0.35 963 9383 2362 6118 903 62.4 MiB 0.10 0.00 4.19332 -127.565 -4.19332 4.19332 0.65 0.000711843 0.000661739 0.0340217 0.0316241 32 2293 25 6.65987e+06 393018 554710. 1919.41 0.80 0.110085 0.0970461 22834 132086 -1 1851 21 1044 1529 88698 22539 3.09931 3.09931 -109.457 -3.09931 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0300339 0.0262307 130 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.36 vpr 62.49 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30360 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 24.3 MiB 0.37 1323 16127 4193 10390 1544 62.5 MiB 0.21 0.00 6.49946 -194.782 -6.49946 6.49946 0.79 0.000774499 0.000718908 0.075628 0.0704876 28 3840 36 6.65987e+06 316950 500653. 1732.36 2.00 0.189538 0.168566 21970 115934 -1 2990 21 1959 2728 227624 50018 5.35994 5.35994 -179.572 -5.35994 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0328751 0.0288628 168 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.53 vpr 61.85 MiB -1 -1 0.14 17532 1 0.03 -1 -1 30108 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63336 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 23.3 MiB 0.16 701 10895 2966 6376 1553 61.9 MiB 0.09 0.00 3.19181 -99.2246 -3.19181 3.19181 0.67 0.000504402 0.0004699 0.034222 0.0318637 32 1552 19 6.65987e+06 215526 554710. 1919.41 0.75 0.0918316 0.0810976 22834 132086 -1 1399 21 714 923 72542 17195 2.17571 2.17571 -87.784 -2.17571 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0207805 0.0180709 86 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.63 vpr 62.00 MiB -1 -1 0.18 17532 1 0.03 -1 -1 30100 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.4 MiB 0.11 559 11200 4645 5368 1187 62.0 MiB 0.11 0.00 4.03052 -111.683 -4.03052 4.03052 0.64 0.000606082 0.000563109 0.0523247 0.0486096 32 1719 26 6.65987e+06 202848 554710. 1919.41 0.89 0.123319 0.10939 22834 132086 -1 1381 33 1516 2373 220958 51242 2.94085 2.94085 -104.913 -2.94085 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0355558 0.0306064 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.61 vpr 62.05 MiB -1 -1 0.18 17388 1 0.03 -1 -1 29952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63544 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.6 MiB 0.06 882 13663 3967 7775 1921 62.1 MiB 0.13 0.00 3.38183 -111.047 -3.38183 3.38183 0.69 0.000624881 0.000575782 0.047758 0.0444007 32 2232 25 6.65987e+06 266238 554710. 1919.41 0.84 0.125362 0.110872 22834 132086 -1 1983 21 1389 2472 214229 47394 2.78771 2.78771 -108.095 -2.78771 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0257419 0.0224335 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.03 vpr 61.66 MiB -1 -1 0.10 17484 1 0.02 -1 -1 30352 -1 -1 27 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63144 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.1 MiB 0.08 461 9234 2985 4025 2224 61.7 MiB 0.06 0.00 3.09981 -73.1644 -3.09981 3.09981 0.68 0.000481448 0.000447166 0.0257622 0.0239461 38 1143 33 6.65987e+06 342306 638502. 2209.35 1.35 0.127073 0.109894 23986 155662 -1 888 17 513 851 43957 11516 2.24185 2.24185 -63.6531 -2.24185 0 0 851065. 2944.86 0.24 0.04 0.13 -1 -1 0.24 0.017045 0.0149281 89 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.89 vpr 62.73 MiB -1 -1 0.18 17664 1 0.03 -1 -1 30348 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 24.1 MiB 0.18 1082 15273 5386 7964 1923 62.7 MiB 0.16 0.00 3.97418 -128.905 -3.97418 3.97418 0.64 0.000739123 0.000686993 0.0647446 0.060132 32 2803 23 6.65987e+06 253560 554710. 1919.41 0.89 0.15251 0.135424 22834 132086 -1 2459 23 1634 2959 236870 51536 3.44305 3.44305 -126.805 -3.44305 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0323923 0.0282712 135 72 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.93 vpr 62.71 MiB -1 -1 0.21 17900 1 0.03 -1 -1 30420 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 24.0 MiB 0.34 841 9951 2183 7152 616 62.7 MiB 0.11 0.00 4.37472 -138.365 -4.37472 4.37472 0.69 0.000616454 0.000564312 0.0382039 0.0353979 32 2335 20 6.65987e+06 418374 554710. 1919.41 0.87 0.128906 0.113262 22834 132086 -1 1838 17 1307 1888 108740 27817 3.30177 3.30177 -122.786 -3.30177 0 0 701300. 2426.64 0.19 0.07 0.08 -1 -1 0.19 0.0270313 0.0237707 142 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 7.85 vpr 63.26 MiB -1 -1 0.18 17516 1 0.03 -1 -1 30236 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 24.7 MiB 2.13 849 12139 5116 6732 291 63.3 MiB 0.11 0.00 5.4594 -159.287 -5.4594 5.4594 0.69 0.000711151 0.000660793 0.0553456 0.0514466 44 2778 24 6.95648e+06 188184 787024. 2723.27 2.66 0.199522 0.175067 27778 195446 -1 2100 22 1620 2390 205020 42905 4.50786 4.50786 -152.69 -4.50786 0 0 997811. 3452.63 0.25 0.09 0.18 -1 -1 0.25 0.0309786 0.0271579 81 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 6.90 vpr 63.27 MiB -1 -1 0.20 17664 1 0.03 -1 -1 30372 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 24.7 MiB 1.93 750 10998 3991 5243 1764 63.3 MiB 0.10 0.00 4.63092 -138.355 -4.63092 4.63092 0.68 0.000671164 0.000628994 0.0505176 0.047005 40 2398 38 6.95648e+06 217135 706193. 2443.58 2.02 0.186395 0.162871 26914 176310 -1 2062 23 1948 2706 287194 61968 4.57081 4.57081 -154.872 -4.57081 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.031848 0.0278319 80 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 6.65 vpr 63.27 MiB -1 -1 0.13 17252 1 0.03 -1 -1 30272 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 24.8 MiB 1.06 1011 6839 1853 4585 401 63.3 MiB 0.07 0.00 3.76508 -124.296 -3.76508 3.76508 0.67 0.000633253 0.000589235 0.0286755 0.0267324 38 2570 30 6.95648e+06 217135 678818. 2348.85 2.81 0.166286 0.144488 26626 170182 -1 2196 20 1226 1684 137441 28682 3.69172 3.69172 -129.324 -3.69172 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0254155 0.0222392 76 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.61 vpr 62.91 MiB -1 -1 0.18 17312 1 0.03 -1 -1 30332 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 24.5 MiB 0.39 653 13152 5791 6666 695 62.9 MiB 0.11 0.00 4.18338 -115.281 -4.18338 4.18338 0.65 0.000635274 0.000590126 0.051036 0.0474001 46 2265 28 6.95648e+06 275038 828058. 2865.25 2.39 0.182425 0.159412 28066 200906 -1 1624 19 1137 1874 144677 33493 3.65242 3.65242 -117.329 -3.65242 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0246308 0.0215743 71 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.95 vpr 63.10 MiB -1 -1 0.15 17696 1 0.03 -1 -1 30344 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 24.5 MiB 0.73 735 12120 5042 6627 451 63.1 MiB 0.11 0.00 4.33299 -127.984 -4.33299 4.33299 0.65 0.000683732 0.000635163 0.0507399 0.0471609 46 2384 49 6.95648e+06 231611 828058. 2865.25 3.38 0.214836 0.187207 28066 200906 -1 1865 19 1283 2160 165504 35743 4.11991 4.11991 -134.678 -4.11991 0 0 1.01997e+06 3529.29 0.25 0.07 0.20 -1 -1 0.25 0.0264762 0.0232156 73 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 6.29 vpr 63.10 MiB -1 -1 0.19 17576 1 0.03 -1 -1 30296 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 24.5 MiB 0.94 762 14779 6278 7942 559 63.1 MiB 0.12 0.00 3.0584 -114.242 -3.0584 3.0584 0.68 0.000728652 0.000676185 0.0599483 0.0556427 46 2130 23 6.95648e+06 303989 828058. 2865.25 2.46 0.202671 0.177639 28066 200906 -1 1614 21 1350 1975 141226 31692 3.17337 3.17337 -118.004 -3.17337 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0306388 0.0268009 79 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 8.57 vpr 62.86 MiB -1 -1 0.18 17404 1 0.03 -1 -1 30656 -1 -1 13 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 24.5 MiB 4.05 400 8118 3296 4253 569 62.9 MiB 0.07 0.00 3.56899 -93.1575 -3.56899 3.56899 0.65 0.000550309 0.00051152 0.0322747 0.0300558 40 1513 27 6.95648e+06 188184 706193. 2443.58 1.72 0.149207 0.129223 26914 176310 -1 1345 20 1051 1528 151147 38012 3.12397 3.12397 -102.326 -3.12397 0 0 926341. 3205.33 0.28 0.04 0.15 -1 -1 0.28 0.0138504 0.0123415 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 5.59 vpr 62.95 MiB -1 -1 0.19 17160 1 0.03 -1 -1 30204 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.5 MiB 0.35 691 11983 4028 5840 2115 62.9 MiB 0.10 0.00 3.0166 -94.5957 -3.0166 3.0166 0.66 0.000605604 0.000563423 0.0409873 0.0380828 38 2198 34 6.95648e+06 361892 678818. 2348.85 2.43 0.170338 0.148003 26626 170182 -1 1562 21 1128 1795 124372 27855 2.92072 2.92072 -102.496 -2.92072 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0248082 0.0216613 69 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 6.47 vpr 62.97 MiB -1 -1 0.19 17580 1 0.03 -1 -1 30124 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 24.6 MiB 1.78 579 9684 3905 5251 528 63.0 MiB 0.09 0.00 3.39469 -115.112 -3.39469 3.39469 0.65 0.000634704 0.000589781 0.0419442 0.0390098 48 1811 26 6.95648e+06 159232 865456. 2994.66 1.86 0.169373 0.147502 28354 207349 -1 1465 22 1268 1776 142283 33598 3.24576 3.24576 -115.708 -3.24576 0 0 1.05005e+06 3633.38 0.25 0.07 0.12 -1 -1 0.25 0.0272541 0.0237499 66 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 5.17 vpr 62.77 MiB -1 -1 0.14 17240 1 0.03 -1 -1 30240 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 24.2 MiB 0.91 566 8134 3343 4546 245 62.8 MiB 0.08 0.00 3.30928 -114.291 -3.30928 3.30928 0.65 0.00062459 0.000580626 0.0350523 0.0326251 42 1921 24 6.95648e+06 144757 744469. 2576.02 1.53 0.159074 0.138235 27202 183097 -1 1447 19 1086 1482 106699 25377 2.97372 2.97372 -113.7 -2.97372 0 0 949917. 3286.91 0.23 0.06 0.15 -1 -1 0.23 0.0241922 0.0212204 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 5.93 vpr 62.84 MiB -1 -1 0.13 17544 1 0.03 -1 -1 30332 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 24.2 MiB 1.66 471 10304 4280 5549 475 62.8 MiB 0.09 0.00 3.43453 -102.366 -3.43453 3.43453 0.68 0.000619707 0.000575675 0.0433629 0.0403114 44 1644 41 6.95648e+06 173708 787024. 2723.27 1.53 0.179783 0.156092 27778 195446 -1 1210 19 1006 1391 107894 26111 2.87247 2.87247 -102.182 -2.87247 0 0 997811. 3452.63 0.25 0.06 0.16 -1 -1 0.25 0.023621 0.0206284 55 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 7.18 vpr 62.86 MiB -1 -1 0.18 17508 1 0.03 -1 -1 30200 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 24.2 MiB 1.46 590 10614 3394 4881 2339 62.9 MiB 0.10 0.00 3.37833 -114.652 -3.37833 3.37833 0.65 0.000692799 0.000638656 0.0438232 0.0407749 48 2065 26 6.95648e+06 144757 865456. 2994.66 2.85 0.166094 0.144813 28354 207349 -1 1594 22 1339 1737 177767 43429 2.98202 2.98202 -113.691 -2.98202 0 0 1.05005e+06 3633.38 0.26 0.07 0.17 -1 -1 0.26 0.0257135 0.0224352 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 19.34 vpr 63.22 MiB -1 -1 0.13 17620 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 24.6 MiB 1.71 833 13261 5618 7295 348 63.2 MiB 0.12 0.00 3.96008 -134.144 -3.96008 3.96008 0.65 0.000696444 0.000646684 0.0576148 0.0534019 46 2758 33 6.95648e+06 217135 828058. 2865.25 14.64 0.353175 0.306036 28066 200906 -1 2047 22 1722 2490 195693 41961 3.39476 3.39476 -130.85 -3.39476 0 0 1.01997e+06 3529.29 0.32 0.09 0.20 -1 -1 0.32 0.0306544 0.0268618 83 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 5.51 vpr 63.18 MiB -1 -1 0.13 17800 1 0.03 -1 -1 30288 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 24.6 MiB 0.82 789 9158 3216 4675 1267 63.2 MiB 0.08 0.00 4.48063 -134.265 -4.48063 4.48063 0.65 0.000714952 0.000663649 0.0372043 0.0345929 46 2203 26 6.95648e+06 318465 828058. 2865.25 1.92 0.179265 0.155841 28066 200906 -1 1694 24 1812 2595 197759 43223 4.00836 4.00836 -134.618 -4.00836 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0326451 0.028468 75 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 5.83 vpr 62.59 MiB -1 -1 0.13 17344 1 0.03 -1 -1 30324 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 24.1 MiB 1.17 470 8444 3456 4562 426 62.6 MiB 0.07 0.00 3.10275 -88.0296 -3.10275 3.10275 0.65 0.000567425 0.000528907 0.0325698 0.0303778 40 2005 31 6.95648e+06 188184 706193. 2443.58 1.97 0.149222 0.129702 26914 176310 -1 1534 23 1125 1652 175061 53068 3.19337 3.19337 -104.765 -3.19337 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0241339 0.020942 55 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 5.94 vpr 63.19 MiB -1 -1 0.19 17816 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 24.6 MiB 1.02 736 13381 4767 6091 2523 63.2 MiB 0.11 0.00 3.0625 -113.087 -3.0625 3.0625 0.65 0.000722052 0.000670349 0.0579789 0.053856 46 2125 28 6.95648e+06 246087 828058. 2865.25 1.99 0.205529 0.179748 28066 200906 -1 1730 22 1527 2399 181497 42649 3.74967 3.74967 -124.464 -3.74967 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.03129 0.027305 76 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 7.59 vpr 63.21 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30104 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 24.6 MiB 1.87 821 11698 3981 5913 1804 63.2 MiB 0.11 0.00 4.42651 -139.682 -4.42651 4.42651 0.69 0.000685107 0.000636399 0.0505079 0.0469561 38 2675 39 6.95648e+06 202660 678818. 2348.85 2.84 0.208158 0.181837 26626 170182 -1 1811 21 1515 2020 132332 30505 3.72352 3.72352 -135.958 -3.72352 0 0 902133. 3121.57 0.22 0.07 0.12 -1 -1 0.22 0.0288801 0.0253088 79 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 6.43 vpr 62.91 MiB -1 -1 0.17 17764 1 0.03 -1 -1 30224 -1 -1 9 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 24.2 MiB 0.80 568 11625 5013 6229 383 62.9 MiB 0.10 0.00 2.28966 -90.0891 -2.28966 2.28966 0.66 0.000653757 0.0006067 0.0517858 0.0480985 46 1756 36 6.95648e+06 130281 828058. 2865.25 2.78 0.19462 0.169858 28066 200906 -1 1389 19 1155 1674 145929 33652 2.63568 2.63568 -100.632 -2.63568 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0248199 0.0217118 57 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.57 vpr 62.41 MiB -1 -1 0.17 17316 1 0.02 -1 -1 30112 -1 -1 9 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 23.8 MiB 0.31 438 9707 4039 5351 317 62.4 MiB 0.07 0.00 2.22846 -79.3536 -2.22846 2.22846 0.65 0.000492665 0.000461096 0.0346168 0.0322012 38 1481 49 6.95648e+06 130281 678818. 2348.85 1.56 0.151792 0.131363 26626 170182 -1 1061 20 614 712 71220 16884 2.33013 2.33013 -81.3837 -2.33013 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0198487 0.0173049 43 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 6.77 vpr 62.77 MiB -1 -1 0.19 17372 1 0.03 -1 -1 30440 -1 -1 12 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 24.3 MiB 2.03 900 8449 3439 4770 240 62.8 MiB 0.07 0.00 4.11557 -135.517 -4.11557 4.11557 0.67 0.000621364 0.000577667 0.0345888 0.032184 40 2181 21 6.95648e+06 173708 706193. 2443.58 1.97 0.159264 0.138641 26914 176310 -1 1992 22 1613 2157 226592 45321 3.91426 3.91426 -139.471 -3.91426 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0265893 0.0232089 69 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 6.29 vpr 63.14 MiB -1 -1 0.16 17644 1 0.03 -1 -1 30408 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 24.5 MiB 0.62 691 13626 5075 6512 2039 63.1 MiB 0.11 0.00 3.69419 -120.83 -3.69419 3.69419 0.65 0.000695095 0.000645299 0.0542781 0.0503966 44 2266 33 6.95648e+06 289514 787024. 2723.27 2.84 0.209783 0.183661 27778 195446 -1 1704 27 1869 2560 192832 46024 3.96461 3.96461 -128.435 -3.96461 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0349995 0.0304375 75 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 20.74 vpr 63.35 MiB -1 -1 0.17 17516 1 0.03 -1 -1 30360 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 24.7 MiB 1.34 803 10868 4396 5912 560 63.3 MiB 0.10 0.00 4.7576 -138.082 -4.7576 4.7576 0.66 0.000727766 0.000675393 0.0499145 0.0463329 48 2894 42 6.95648e+06 202660 865456. 2994.66 16.37 0.391403 0.337617 28354 207349 -1 2151 23 1823 2679 262855 61699 4.41832 4.41832 -141.927 -4.41832 0 0 1.05005e+06 3633.38 0.31 0.10 0.17 -1 -1 0.31 0.0324325 0.0283793 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 4.69 vpr 62.40 MiB -1 -1 0.14 17500 1 0.03 -1 -1 30596 -1 -1 13 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 23.8 MiB 0.82 416 8539 3544 4471 524 62.4 MiB 0.06 0.00 2.23646 -66.7931 -2.23646 2.23646 0.65 0.000428041 0.000397757 0.0263601 0.0244784 34 1152 47 6.95648e+06 188184 618332. 2139.56 1.25 0.127594 0.110486 25762 151098 -1 988 17 605 766 68818 15227 2.23768 2.23768 -73.5335 -2.23768 0 0 787024. 2723.27 0.20 0.04 0.13 -1 -1 0.20 0.0154227 0.0134854 44 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 6.29 vpr 62.88 MiB -1 -1 0.18 17164 1 0.03 -1 -1 30436 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 24.4 MiB 0.68 670 9543 3600 4533 1410 62.9 MiB 0.08 0.00 4.68425 -117.235 -4.68425 4.68425 0.67 0.000620444 0.0005767 0.037287 0.0346967 44 2456 40 6.95648e+06 217135 787024. 2723.27 2.80 0.175548 0.152616 27778 195446 -1 1660 19 1265 2070 156131 39900 3.85601 3.85601 -120.654 -3.85601 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0303391 0.0263894 66 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.62 vpr 62.31 MiB -1 -1 0.15 16928 1 0.02 -1 -1 30016 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 23.7 MiB 0.28 360 10055 3887 4514 1654 62.3 MiB 0.07 0.00 2.15326 -68.8392 -2.15326 2.15326 0.65 0.000424398 0.000394018 0.0301036 0.0279628 38 1061 21 6.95648e+06 115805 678818. 2348.85 1.58 0.116207 0.101122 26626 170182 -1 856 18 639 743 50732 13412 2.21378 2.21378 -75.1525 -2.21378 0 0 902133. 3121.57 0.22 0.04 0.16 -1 -1 0.22 0.0159718 0.013987 42 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 9.54 vpr 62.91 MiB -1 -1 0.16 17604 1 0.03 -1 -1 30024 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 24.4 MiB 0.84 746 14106 6043 7637 426 62.9 MiB 0.06 0.00 4.49111 -123.956 -4.49111 4.49111 0.69 0.000283536 0.000259771 0.0256876 0.0235959 38 2858 40 6.95648e+06 217135 678818. 2348.85 5.94 0.161709 0.139823 26626 170182 -1 1958 20 1322 2077 204584 45406 3.88096 3.88096 -125.216 -3.88096 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0257897 0.0225571 68 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 5.50 vpr 62.93 MiB -1 -1 0.19 17120 1 0.03 -1 -1 30400 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.5 MiB 0.48 675 10873 4420 6034 419 62.9 MiB 0.09 0.00 2.9573 -100.116 -2.9573 2.9573 0.69 0.000636281 0.000590745 0.0409086 0.0379791 46 2093 50 6.95648e+06 303989 828058. 2865.25 2.14 0.191378 0.166343 28066 200906 -1 1505 24 1382 2103 153787 35418 3.03882 3.03882 -108.679 -3.03882 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0295683 0.0257386 74 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 5.96 vpr 63.03 MiB -1 -1 0.20 17772 1 0.03 -1 -1 30256 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 24.5 MiB 0.74 795 15383 6700 8206 477 63.0 MiB 0.13 0.00 4.43549 -130.994 -4.43549 4.43549 0.70 0.000680516 0.000632505 0.0599764 0.0556889 48 2092 29 6.95648e+06 275038 865456. 2994.66 2.26 0.200019 0.175252 28354 207349 -1 1795 22 1236 2056 165591 37261 3.80591 3.80591 -130.105 -3.80591 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0292952 0.0255059 72 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 5.29 vpr 62.68 MiB -1 -1 0.18 17524 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 24.1 MiB 0.84 836 12164 3915 6903 1346 62.7 MiB 0.10 0.00 3.08875 -104.395 -3.08875 3.08875 0.65 0.000613621 0.000571219 0.0498631 0.0463952 38 2054 21 6.95648e+06 144757 678818. 2348.85 1.60 0.169124 0.148225 26626 170182 -1 1837 18 886 1354 126118 25389 3.02302 3.02302 -114.587 -3.02302 0 0 902133. 3121.57 0.31 0.06 0.17 -1 -1 0.31 0.0204742 0.0181331 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 4.57 vpr 62.70 MiB -1 -1 0.12 17296 1 0.03 -1 -1 30128 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 24.1 MiB 0.23 486 10916 4488 5855 573 62.7 MiB 0.08 0.00 3.37953 -96.5612 -3.37953 3.37953 0.65 0.0005694 0.000529416 0.0382305 0.0355411 42 1738 31 6.95648e+06 260562 744469. 2576.02 1.59 0.156601 0.13607 27202 183097 -1 1225 18 886 1222 106438 28327 2.85672 2.85672 -97.7201 -2.85672 0 0 949917. 3286.91 0.25 0.06 0.16 -1 -1 0.25 0.0230209 0.0201654 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 5.40 vpr 62.75 MiB -1 -1 0.18 17400 1 0.02 -1 -1 30148 -1 -1 16 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 24.2 MiB 0.45 447 10796 4457 5651 688 62.7 MiB 0.08 0.00 2.9532 -88.5671 -2.9532 2.9532 0.65 0.000560787 0.000521631 0.0401211 0.0373657 44 1895 36 6.95648e+06 231611 787024. 2723.27 2.22 0.158346 0.137661 27778 195446 -1 1197 20 998 1532 108720 27757 2.78922 2.78922 -94.3932 -2.78922 0 0 997811. 3452.63 0.25 0.06 0.13 -1 -1 0.25 0.022521 0.0196317 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 11.61 vpr 62.71 MiB -1 -1 0.17 17232 1 0.02 -1 -1 30340 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.2 MiB 0.42 490 8754 2672 4372 1710 62.7 MiB 0.07 0.00 3.37459 -106.603 -3.37459 3.37459 0.66 0.000575354 0.000535734 0.0344164 0.0320483 46 1609 38 6.95648e+06 144757 828058. 2865.25 8.60 0.306364 0.262879 28066 200906 -1 1166 19 1064 1493 99508 25826 3.01962 3.01962 -108.184 -3.01962 0 0 1.01997e+06 3529.29 0.24 0.03 0.11 -1 -1 0.24 0.0125197 0.0111523 58 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 5.72 vpr 62.66 MiB -1 -1 0.11 17488 1 0.03 -1 -1 30216 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 24.1 MiB 0.39 514 10050 3328 4861 1861 62.7 MiB 0.08 0.00 3.16614 -99.0057 -3.16614 3.16614 0.66 0.000592319 0.000549061 0.0354803 0.032883 44 1932 39 6.95648e+06 275038 787024. 2723.27 2.55 0.166952 0.144845 27778 195446 -1 1339 24 1230 1923 229518 85397 2.94462 2.94462 -105.107 -2.94462 0 0 997811. 3452.63 0.25 0.09 0.18 -1 -1 0.25 0.0266682 0.0231869 61 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 6.83 vpr 62.77 MiB -1 -1 0.18 17548 1 0.03 -1 -1 30404 -1 -1 12 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 24.1 MiB 1.12 761 12537 5784 6209 544 62.8 MiB 0.10 0.00 2.98425 -104.866 -2.98425 2.98425 0.67 0.000600188 0.000557402 0.0516219 0.047971 40 1951 35 6.95648e+06 173708 706193. 2443.58 2.89 0.183383 0.160001 26914 176310 -1 1632 19 1072 1486 183744 40499 2.73002 2.73002 -103.333 -2.73002 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0231761 0.020268 61 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 6.58 vpr 63.27 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30448 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 24.6 MiB 0.68 827 14593 4666 7411 2516 63.3 MiB 0.13 0.00 4.22723 -122.469 -4.22723 4.22723 0.67 0.000735051 0.000682715 0.0604865 0.0561151 40 2898 29 6.95648e+06 303989 706193. 2443.58 3.01 0.215817 0.189168 26914 176310 -1 2212 23 1637 2779 247978 54617 4.10856 4.10856 -135.648 -4.10856 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0333062 0.0291427 84 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.34 vpr 63.13 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30356 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 24.5 MiB 1.05 745 13738 4997 6870 1871 63.1 MiB 0.12 0.00 3.2962 -117.206 -3.2962 3.2962 0.66 0.000756935 0.000700374 0.0561521 0.0519884 40 2441 27 6.95648e+06 347416 706193. 2443.58 2.42 0.207023 0.181084 26914 176310 -1 2016 22 1949 2778 252661 56579 3.50372 3.50372 -130.751 -3.50372 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0334099 0.0293047 82 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 13.07 vpr 62.88 MiB -1 -1 0.18 17392 1 0.03 -1 -1 30108 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 24.2 MiB 1.71 860 8754 2885 4850 1019 62.9 MiB 0.08 0.00 4.04047 -132.719 -4.04047 4.04047 0.69 0.000607923 0.000566227 0.0361842 0.0337216 40 2120 31 6.95648e+06 159232 706193. 2443.58 8.54 0.286697 0.246404 26914 176310 -1 2014 22 1310 1843 197131 38779 3.56322 3.56322 -132.421 -3.56322 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0257061 0.0224192 63 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 6.82 vpr 63.00 MiB -1 -1 0.13 17748 1 0.03 -1 -1 30380 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 24.5 MiB 0.79 747 9036 3143 4486 1407 63.0 MiB 0.09 0.00 3.76434 -122.812 -3.76434 3.76434 0.66 0.000717059 0.000665703 0.0412693 0.0383672 38 2983 41 6.95648e+06 231611 678818. 2348.85 3.29 0.207537 0.18044 26626 170182 -1 1920 21 1589 2334 190137 42056 3.83572 3.83572 -127.733 -3.83572 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.03015 0.0263963 76 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 7.27 vpr 63.26 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30344 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 24.7 MiB 2.08 943 12585 5266 6878 441 63.3 MiB 0.12 0.00 5.54066 -172.627 -5.54066 5.54066 0.65 0.000743037 0.000690219 0.0575184 0.053443 56 2573 26 6.95648e+06 231611 973134. 3367.25 2.13 0.203599 0.176771 29794 239141 -1 2149 23 2164 3113 326462 68110 5.0776 5.0776 -172.61 -5.0776 0 0 1.19926e+06 4149.71 0.29 0.11 0.20 -1 -1 0.29 0.0327672 0.0286803 97 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 7.32 vpr 63.22 MiB -1 -1 0.20 17708 1 0.03 -1 -1 30552 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 24.8 MiB 2.53 938 15120 6700 8021 399 63.2 MiB 0.14 0.00 4.47954 -148.558 -4.47954 4.47954 0.61 0.000746312 0.000693405 0.0693479 0.064426 40 2977 25 6.95648e+06 231611 706193. 2443.58 1.86 0.222669 0.195583 26914 176310 -1 2471 20 1757 2550 249964 52119 4.78676 4.78676 -162.397 -4.78676 0 0 926341. 3205.33 0.23 0.09 0.17 -1 -1 0.23 0.0298102 0.0260686 88 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.31 vpr 62.98 MiB -1 -1 0.10 17796 1 0.03 -1 -1 30548 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 24.4 MiB 1.21 806 12733 4192 6306 2235 63.0 MiB 0.11 0.00 4.14583 -131.471 -4.14583 4.14583 0.65 0.000700857 0.000651395 0.0506607 0.0471394 44 2580 41 6.95648e+06 318465 787024. 2723.27 2.27 0.209928 0.183245 27778 195446 -1 1877 20 1310 1980 158921 34446 3.55827 3.55827 -129.134 -3.55827 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0281384 0.0246822 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 6.55 vpr 62.86 MiB -1 -1 0.18 17508 1 0.03 -1 -1 30428 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 24.4 MiB 1.19 717 8212 2161 5077 974 62.9 MiB 0.08 0.00 4.19005 -113.386 -4.19005 4.19005 0.65 0.000626146 0.000582854 0.0330292 0.0307453 46 1942 38 6.95648e+06 202660 828058. 2865.25 2.54 0.169388 0.146875 28066 200906 -1 1539 18 1104 1571 122247 26899 4.11171 4.11171 -112.642 -4.11171 0 0 1.01997e+06 3529.29 0.25 0.06 0.17 -1 -1 0.25 0.0230741 0.020245 71 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 7.36 vpr 63.71 MiB -1 -1 0.21 18076 1 0.03 -1 -1 30352 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 24.9 MiB 1.57 969 15017 6294 8197 526 63.7 MiB 0.15 0.00 4.79262 -158.033 -4.79262 4.79262 0.66 0.000870034 0.000808023 0.0722496 0.0670813 44 3004 31 6.95648e+06 318465 787024. 2723.27 2.80 0.256534 0.224373 27778 195446 -1 2405 22 1887 2737 214564 46299 4.79321 4.79321 -170.997 -4.79321 0 0 997811. 3452.63 0.27 0.10 0.17 -1 -1 0.27 0.0369729 0.0322359 93 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 5.14 vpr 62.71 MiB -1 -1 0.18 17508 1 0.03 -1 -1 30148 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 24.2 MiB 0.72 451 10702 3732 4796 2174 62.7 MiB 0.08 0.00 3.25706 -97.1743 -3.25706 3.25706 0.65 0.000564676 0.000525261 0.0384554 0.0357761 42 1868 35 6.95648e+06 217135 744469. 2576.02 1.58 0.160913 0.139818 27202 183097 -1 1192 34 1368 1970 146199 37137 3.39987 3.39987 -104.41 -3.39987 0 0 949917. 3286.91 0.24 0.08 0.15 -1 -1 0.24 0.0357774 0.0309543 56 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.04 vpr 63.25 MiB -1 -1 0.19 17668 1 0.03 -1 -1 30180 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 24.6 MiB 1.24 1043 13358 5192 6540 1626 63.2 MiB 0.13 0.00 4.83562 -153.036 -4.83562 4.83562 0.65 0.000684874 0.000636808 0.0583439 0.0542992 40 2908 41 6.95648e+06 217135 706193. 2443.58 3.09 0.222162 0.192466 26914 176310 -1 2542 19 1727 2534 265189 51613 4.58201 4.58201 -157.296 -4.58201 0 0 926341. 3205.33 0.22 0.05 0.10 -1 -1 0.22 0.015261 0.0136813 84 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 17.07 vpr 63.07 MiB -1 -1 0.11 17796 1 0.03 -1 -1 30444 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 24.5 MiB 1.04 832 15481 6850 8276 355 63.1 MiB 0.13 0.00 3.22585 -113.908 -3.22585 3.22585 0.66 0.000706404 0.000646665 0.0640674 0.0594879 40 2681 28 6.95648e+06 246087 706193. 2443.58 13.24 0.3548 0.307335 26914 176310 -1 2155 23 1599 2614 231061 49102 3.24022 3.24022 -125.665 -3.24022 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0309639 0.0270147 73 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 6.13 vpr 63.05 MiB -1 -1 0.15 17132 1 0.03 -1 -1 30084 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 24.6 MiB 0.92 692 9712 3251 4487 1974 63.0 MiB 0.08 0.00 4.55274 -121.613 -4.55274 4.55274 0.68 0.000628705 0.000584448 0.0381845 0.035547 44 2409 26 6.95648e+06 231611 787024. 2723.27 2.36 0.170932 0.149068 27778 195446 -1 1628 24 1132 1964 152907 34365 4.40427 4.40427 -132.423 -4.40427 0 0 997811. 3452.63 0.24 0.07 0.19 -1 -1 0.24 0.0291258 0.0253996 68 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 14.98 vpr 63.12 MiB -1 -1 0.19 17516 1 0.04 -1 -1 30332 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 24.6 MiB 2.51 796 11532 3820 5366 2346 63.1 MiB 0.11 0.00 4.43423 -134.57 -4.43423 4.43423 0.65 0.000703427 0.000653831 0.0514793 0.0478927 40 2553 40 6.95648e+06 202660 706193. 2443.58 9.63 0.360223 0.311113 26914 176310 -1 2106 22 1511 2049 167648 37819 3.63736 3.63736 -132.097 -3.63736 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0303123 0.0265025 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 8.73 vpr 63.13 MiB -1 -1 0.11 17828 1 0.03 -1 -1 30340 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 24.6 MiB 1.64 763 10406 4042 5595 769 63.1 MiB 0.10 0.00 3.235 -115.411 -3.235 3.235 0.65 0.000715813 0.000664492 0.0453468 0.0421604 38 2855 46 6.95648e+06 246087 678818. 2348.85 4.40 0.222824 0.194096 26626 170182 -1 2142 20 1537 2371 191337 42253 3.59617 3.59617 -130.946 -3.59617 0 0 902133. 3121.57 0.22 0.08 0.11 -1 -1 0.22 0.0288342 0.0252709 75 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 6.15 vpr 63.35 MiB -1 -1 0.14 17644 1 0.03 -1 -1 30344 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 24.7 MiB 0.91 832 13758 4740 6643 2375 63.3 MiB 0.13 0.00 4.17869 -135.166 -4.17869 4.17869 0.66 0.0010225 0.000940379 0.0548246 0.0508591 46 2399 24 6.95648e+06 376368 828058. 2865.25 2.32 0.204425 0.178817 28066 200906 -1 1874 24 1346 1983 166800 36204 3.73146 3.73146 -135.163 -3.73146 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0339334 0.0296052 83 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 5.65 vpr 63.08 MiB -1 -1 0.18 17532 1 0.03 -1 -1 30200 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 24.6 MiB 0.97 704 11804 4117 5540 2147 63.1 MiB 0.09 0.00 4.32723 -118.436 -4.32723 4.32723 0.68 0.0006416 0.000595601 0.0426413 0.0396 42 2228 31 6.95648e+06 318465 744469. 2576.02 1.88 0.177031 0.154127 27202 183097 -1 1785 19 1216 1934 174304 44453 3.88152 3.88152 -124.857 -3.88152 0 0 949917. 3286.91 0.23 0.08 0.16 -1 -1 0.23 0.0248025 0.0217213 69 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 7.75 vpr 62.97 MiB -1 -1 0.13 17624 1 0.03 -1 -1 30388 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 2.23 822 10020 3444 5308 1268 63.0 MiB 0.10 0.00 4.15778 -128.101 -4.15778 4.15778 0.66 0.000658658 0.000612123 0.0429054 0.0399146 40 2642 40 6.95648e+06 188184 706193. 2443.58 2.71 0.182267 0.159134 26914 176310 -1 2078 24 1882 2531 224754 51701 4.42162 4.42162 -143.712 -4.42162 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.03099 0.0270017 79 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 8.46 vpr 63.33 MiB -1 -1 0.20 17868 1 0.03 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 24.6 MiB 1.35 847 12030 5014 6584 432 63.3 MiB 0.12 0.00 4.57287 -144.308 -4.57287 4.57287 0.65 0.000724907 0.000672986 0.0552937 0.0513688 46 3239 34 6.95648e+06 217135 828058. 2865.25 4.20 0.216353 0.18926 28066 200906 -1 2319 21 1807 2822 246652 51934 4.03581 4.03581 -139.978 -4.03581 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0303822 0.0265866 85 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 8.14 vpr 63.05 MiB -1 -1 0.13 17644 1 0.03 -1 -1 30284 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 24.5 MiB 2.18 757 13443 5119 6395 1929 63.0 MiB 0.12 0.00 4.08826 -130.07 -4.08826 4.08826 0.66 0.000739571 0.000686709 0.0639239 0.0593671 50 2778 50 6.95648e+06 188184 902133. 3121.57 3.01 0.24258 0.212059 28642 213929 -1 2045 30 1669 2787 309493 86950 4.42046 4.42046 -143.572 -4.42046 0 0 1.08113e+06 3740.92 0.27 0.12 0.18 -1 -1 0.27 0.0410783 0.0356638 76 77 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 10.98 vpr 62.72 MiB -1 -1 0.17 17604 1 0.04 -1 -1 30120 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 24.2 MiB 0.25 503 12542 4062 6070 2410 62.7 MiB 0.09 0.00 3.14908 -92.6386 -3.14908 3.14908 0.66 0.000559735 0.00052012 0.041585 0.0386641 44 1782 30 6.95648e+06 260562 787024. 2723.27 7.90 0.264169 0.22756 27778 195446 -1 1231 37 1182 1770 242494 107698 2.83957 2.83957 -96.0143 -2.83957 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0366439 0.0316026 57 23 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 6.27 vpr 63.11 MiB -1 -1 0.16 17900 1 0.03 -1 -1 30528 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 24.6 MiB 1.29 674 9676 3990 5312 374 63.1 MiB 0.09 0.00 3.76865 -134.987 -3.76865 3.76865 0.66 0.000673631 0.00062522 0.0433643 0.0402968 60 1835 21 6.95648e+06 173708 1.01997e+06 3529.29 1.97 0.175095 0.152661 30658 258169 -1 1517 23 1426 1989 172709 39333 3.73911 3.73911 -132.853 -3.73911 0 0 1.27783e+06 4421.56 0.36 0.09 0.22 -1 -1 0.36 0.0316685 0.027598 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 7.05 vpr 63.22 MiB -1 -1 0.20 17856 1 0.03 -1 -1 30300 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 24.8 MiB 1.72 1197 6788 1593 4785 410 63.2 MiB 0.08 0.00 4.81732 -154.887 -4.81732 4.81732 0.71 0.00076689 0.000712869 0.0333847 0.0310947 56 2745 25 6.95648e+06 231611 973134. 3367.25 2.27 0.183875 0.159976 29794 239141 -1 2575 20 1810 2734 267843 53538 4.69936 4.69936 -158.923 -4.69936 0 0 1.19926e+06 4149.71 0.29 0.10 0.21 -1 -1 0.29 0.0312555 0.0274626 97 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 6.13 vpr 63.26 MiB -1 -1 0.14 17852 1 0.03 -1 -1 30384 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 24.7 MiB 0.93 755 11806 4947 6514 345 63.3 MiB 0.11 0.00 4.55181 -144.133 -4.55181 4.55181 0.65 0.000691022 0.000642074 0.0492244 0.0457633 46 2302 50 6.95648e+06 246087 828058. 2865.25 2.40 0.213801 0.18654 28066 200906 -1 1809 22 1405 1916 184870 41973 3.26946 3.26946 -129.646 -3.26946 0 0 1.01997e+06 3529.29 0.25 0.08 0.18 -1 -1 0.25 0.0297459 0.0260238 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.81 vpr 62.78 MiB -1 -1 0.15 17512 1 0.03 -1 -1 30316 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 24.2 MiB 0.48 536 11296 4661 6055 580 62.8 MiB 0.09 0.00 2.9714 -97.779 -2.9714 2.9714 0.68 0.000591172 0.000548198 0.0395504 0.0367301 46 1687 48 6.95648e+06 289514 828058. 2865.25 2.48 0.180385 0.156092 28066 200906 -1 1196 22 1101 1627 118419 28041 2.94567 2.94567 -98.2229 -2.94567 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0221161 0.0194858 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 9.34 vpr 63.40 MiB -1 -1 0.20 18076 1 0.03 -1 -1 30332 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 24.9 MiB 1.74 1154 14782 4940 8104 1738 63.4 MiB 0.16 0.00 6.12641 -181.225 -6.12641 6.12641 0.65 0.000829629 0.000771076 0.0762296 0.0708945 46 2972 48 6.95648e+06 217135 828058. 2865.25 4.29 0.281434 0.246625 28066 200906 -1 2375 24 1979 3061 252430 53962 5.06025 5.06025 -172.023 -5.06025 0 0 1.01997e+06 3529.29 0.37 0.10 0.20 -1 -1 0.37 0.0346116 0.0306345 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.23 vpr 63.09 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 24.5 MiB 1.23 717 11799 3733 5850 2216 63.1 MiB 0.10 0.00 4.62806 -129.887 -4.62806 4.62806 0.70 0.000685892 0.000636192 0.0448714 0.041569 40 2137 23 6.95648e+06 332941 706193. 2443.58 2.02 0.184764 0.161162 26914 176310 -1 1846 22 1420 2105 204275 43664 4.24312 4.24312 -135.251 -4.24312 0 0 926341. 3205.33 0.23 0.09 0.19 -1 -1 0.23 0.0306914 0.026915 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 4.68 vpr 62.50 MiB -1 -1 0.17 17100 1 0.03 -1 -1 30516 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 24.1 MiB 0.25 514 10509 3980 5034 1495 62.5 MiB 0.08 0.00 2.96656 -92.2738 -2.96656 2.96656 0.64 0.000534005 0.00049723 0.0362112 0.0337229 44 1513 24 6.95648e+06 188184 787024. 2723.27 1.63 0.143345 0.125004 27778 195446 -1 1051 16 699 1093 64585 17611 2.96762 2.96762 -95.8174 -2.96762 0 0 997811. 3452.63 0.27 0.05 0.19 -1 -1 0.27 0.0184391 0.0161947 51 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 10.02 vpr 63.14 MiB -1 -1 0.12 17840 1 0.03 -1 -1 30224 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 24.5 MiB 0.52 1076 14908 4738 8798 1372 63.1 MiB 0.13 0.00 4.96917 -138.118 -4.96917 4.96917 0.65 0.000719054 0.000667867 0.0571509 0.0531079 38 3145 48 6.95648e+06 347416 678818. 2348.85 6.63 0.23477 0.205533 26626 170182 -1 2507 21 1570 2770 270498 50404 4.65836 4.65836 -145.067 -4.65836 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0295138 0.0257964 80 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 5.28 vpr 62.68 MiB -1 -1 0.17 17132 1 0.03 -1 -1 30236 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 24.2 MiB 0.91 492 11034 4564 6063 407 62.7 MiB 0.08 0.00 2.9972 -99.2597 -2.9972 2.9972 0.65 0.000554559 0.000515541 0.0387657 0.0360448 40 1961 39 6.95648e+06 202660 706193. 2443.58 1.68 0.162261 0.141005 26914 176310 -1 1516 22 1349 1863 169744 49562 3.32157 3.32157 -117.016 -3.32157 0 0 926341. 3205.33 0.23 0.08 0.10 -1 -1 0.23 0.0244759 0.0213203 57 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 6.43 vpr 62.73 MiB -1 -1 0.19 17380 1 0.03 -1 -1 30264 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 24.1 MiB 0.88 565 8867 3613 4967 287 62.7 MiB 0.08 0.00 3.45473 -106.167 -3.45473 3.45473 0.65 0.000590649 0.000548914 0.0331125 0.0308357 38 1930 30 6.95648e+06 246087 678818. 2348.85 2.79 0.158073 0.137157 26626 170182 -1 1481 19 1147 1674 130098 28883 3.05892 3.05892 -108.48 -3.05892 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0228396 0.0198974 60 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 6.83 vpr 63.21 MiB -1 -1 0.14 17776 1 0.03 -1 -1 30276 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 24.6 MiB 1.41 851 11487 4862 6149 476 63.2 MiB 0.11 0.00 3.95502 -124.066 -3.95502 3.95502 0.65 0.000708392 0.000656479 0.0525957 0.0487832 44 2861 40 6.95648e+06 231611 787024. 2723.27 2.58 0.209221 0.18252 27778 195446 -1 2114 22 1724 2612 186740 39662 3.67666 3.67666 -128.24 -3.67666 0 0 997811. 3452.63 0.25 0.08 0.18 -1 -1 0.25 0.0301075 0.0262749 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 5.99 vpr 63.15 MiB -1 -1 0.10 17852 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 24.6 MiB 1.19 719 14528 6712 7344 472 63.1 MiB 0.12 0.00 4.55468 -132.882 -4.55468 4.55468 0.65 0.00070734 0.000656694 0.0624181 0.0579504 44 2547 35 6.95648e+06 231611 787024. 2723.27 1.97 0.214046 0.187367 27778 195446 -1 1688 23 1524 2201 168711 38196 4.09482 4.09482 -137.998 -4.09482 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0363648 0.0317619 72 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 6.80 vpr 63.09 MiB -1 -1 0.18 17748 1 0.03 -1 -1 30124 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 24.5 MiB 1.76 751 11200 4198 5153 1849 63.1 MiB 0.11 0.00 4.43749 -136.856 -4.43749 4.43749 0.67 0.000709798 0.000659969 0.0506409 0.0471251 46 2439 25 6.95648e+06 202660 828058. 2865.25 2.20 0.193066 0.168881 28066 200906 -1 1911 21 1356 2100 167493 35963 4.25946 4.25946 -140.254 -4.25946 0 0 1.01997e+06 3529.29 0.25 0.08 0.13 -1 -1 0.25 0.0304493 0.0266989 73 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 7.70 vpr 62.82 MiB -1 -1 0.11 17428 1 0.03 -1 -1 30336 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 24.2 MiB 2.92 640 8909 3664 5023 222 62.8 MiB 0.08 0.00 4.07418 -127.444 -4.07418 4.07418 0.65 0.000592583 0.000551219 0.0362871 0.0337584 40 2228 26 6.95648e+06 144757 706193. 2443.58 2.15 0.155398 0.135064 26914 176310 -1 1908 20 1236 1636 170227 43620 3.49292 3.49292 -123.985 -3.49292 0 0 926341. 3205.33 0.23 0.07 0.10 -1 -1 0.23 0.0238783 0.0208694 61 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 6.59 vpr 63.01 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30376 -1 -1 12 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 24.5 MiB 1.90 607 11925 5002 6435 488 63.0 MiB 0.10 0.00 3.79972 -120.636 -3.79972 3.79972 0.67 0.00063889 0.0005937 0.0507212 0.0471509 48 1984 29 6.95648e+06 173708 865456. 2994.66 1.85 0.183276 0.160035 28354 207349 -1 1536 22 1367 1944 159821 37228 3.32686 3.32686 -118.238 -3.32686 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0276389 0.0240801 68 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 6.46 vpr 62.99 MiB -1 -1 0.19 17576 1 0.03 -1 -1 30376 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 24.5 MiB 0.77 673 11064 3726 5225 2113 63.0 MiB 0.10 0.00 3.0162 -94.6102 -3.0162 3.0162 0.66 0.000659684 0.000612073 0.0440426 0.0408688 38 2318 31 6.95648e+06 318465 678818. 2348.85 2.89 0.183979 0.160175 26626 170182 -1 1666 22 1207 1932 150045 33191 3.07097 3.07097 -103.367 -3.07097 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.028405 0.0247519 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 5.27 vpr 62.78 MiB -1 -1 0.18 17428 1 0.03 -1 -1 30348 -1 -1 28 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 24.4 MiB 0.45 661 10813 4387 5735 691 62.8 MiB 0.08 0.00 3.6526 -99.519 -3.6526 3.6526 0.65 0.000587334 0.000545207 0.0350415 0.0325801 42 1918 35 6.95648e+06 405319 744469. 2576.02 2.10 0.16241 0.14078 27202 183097 -1 1492 19 1112 1848 158479 34720 3.42886 3.42886 -104.154 -3.42886 0 0 949917. 3286.91 0.23 0.07 0.17 -1 -1 0.23 0.0225936 0.0197048 72 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 5.73 vpr 63.25 MiB -1 -1 0.19 17712 1 0.03 -1 -1 30348 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 24.6 MiB 0.80 539 10769 4210 5259 1300 63.2 MiB 0.10 0.00 3.44073 -108.225 -3.44073 3.44073 0.66 0.000637297 0.00059244 0.0468682 0.0436157 48 1688 34 6.95648e+06 173708 865456. 2994.66 2.03 0.185596 0.159988 28354 207349 -1 1454 20 1284 1813 161942 38490 2.90237 2.90237 -113.138 -2.90237 0 0 1.05005e+06 3633.38 0.27 0.07 0.17 -1 -1 0.27 0.0255828 0.0223288 60 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 6.67 vpr 62.86 MiB -1 -1 0.18 17576 1 0.03 -1 -1 30272 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 24.3 MiB 1.35 645 12715 5333 6940 442 62.9 MiB 0.06 0.00 3.42769 -121.093 -3.42769 3.42769 0.67 0.000296782 0.00027199 0.0256023 0.023568 50 2241 50 6.95648e+06 159232 902133. 3121.57 2.54 0.180161 0.155158 28642 213929 -1 1593 19 1335 1900 145307 35353 3.38763 3.38763 -126.727 -3.38763 0 0 1.08113e+06 3740.92 0.26 0.07 0.15 -1 -1 0.26 0.0256567 0.0224833 72 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 7.43 vpr 62.85 MiB -1 -1 0.16 17284 1 0.03 -1 -1 30372 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.3 MiB 0.40 742 11799 3162 6813 1824 62.9 MiB 0.10 0.00 4.51778 -120.862 -4.51778 4.51778 0.65 0.000633674 0.000587345 0.0411768 0.0382653 38 2757 47 6.95648e+06 347416 678818. 2348.85 4.27 0.191682 0.166826 26626 170182 -1 1955 22 1406 2365 210396 43684 4.28086 4.28086 -136.346 -4.28086 0 0 902133. 3121.57 0.22 0.08 0.16 -1 -1 0.22 0.0273601 0.0238882 74 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 7.46 vpr 63.24 MiB -1 -1 0.15 17664 1 0.03 -1 -1 30336 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 24.6 MiB 1.59 848 13606 5964 7217 425 63.2 MiB 0.13 0.00 4.62557 -150.036 -4.62557 4.62557 0.65 0.000706143 0.000655334 0.0615269 0.0572063 48 2886 26 6.95648e+06 188184 865456. 2994.66 3.00 0.206053 0.180711 28354 207349 -1 2378 21 1719 2506 253013 54190 4.45496 4.45496 -155.997 -4.45496 0 0 1.05005e+06 3633.38 0.27 0.09 0.17 -1 -1 0.27 0.0296261 0.0259707 82 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 8.50 vpr 63.40 MiB -1 -1 0.17 17900 1 0.03 -1 -1 30368 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 24.7 MiB 1.42 797 15688 5451 7649 2588 63.4 MiB 0.14 0.00 4.33979 -134.933 -4.33979 4.33979 0.70 0.000735847 0.000681569 0.0624982 0.057941 46 2516 45 6.95648e+06 347416 828058. 2865.25 4.14 0.235154 0.20534 28066 200906 -1 1814 21 1369 2331 203557 42476 3.90176 3.90176 -141.076 -3.90176 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0307788 0.026884 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 6.34 vpr 63.25 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30356 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 24.6 MiB 0.79 866 12951 5370 7312 269 63.3 MiB 0.12 0.00 4.06852 -135.722 -4.06852 4.06852 0.65 0.000760681 0.000706479 0.0538713 0.0500471 46 2675 25 6.95648e+06 332941 828058. 2865.25 2.65 0.205194 0.179475 28066 200906 -1 2147 24 1837 3034 242444 50740 3.80186 3.80186 -138.053 -3.80186 0 0 1.01997e+06 3529.29 0.28 0.09 0.17 -1 -1 0.28 0.0339317 0.0296036 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.09 vpr 62.68 MiB -1 -1 0.12 17368 1 0.03 -1 -1 30192 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 24.1 MiB 0.71 535 10769 4485 5866 418 62.7 MiB 0.09 0.00 3.76076 -107.124 -3.76076 3.76076 0.65 0.000586035 0.000545107 0.0425411 0.0396 40 1903 31 6.95648e+06 173708 706193. 2443.58 1.73 0.165224 0.143579 26914 176310 -1 1524 19 1178 1778 168955 37421 2.97232 2.97232 -106.451 -2.97232 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0224319 0.0195958 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 6.22 vpr 63.08 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30420 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 24.5 MiB 0.98 646 9676 4013 5115 548 63.1 MiB 0.09 0.00 4.36203 -132.758 -4.36203 4.36203 0.66 0.000728372 0.000676738 0.0469684 0.0436945 48 2052 23 6.95648e+06 202660 865456. 2994.66 2.09 0.193998 0.169519 28354 207349 -1 1617 22 1735 2408 175230 42504 4.01936 4.01936 -135.967 -4.01936 0 0 1.05005e+06 3633.38 0.27 0.08 0.17 -1 -1 0.27 0.0312258 0.0272383 76 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 19.17 vpr 63.10 MiB -1 -1 0.14 17644 1 0.03 -1 -1 30264 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 24.5 MiB 1.47 811 10204 3614 5065 1525 63.1 MiB 0.10 0.00 4.885 -145.205 -4.885 4.885 0.65 0.000690716 0.000641303 0.0449295 0.0418004 48 2507 26 6.95648e+06 202660 865456. 2994.66 14.74 0.329033 0.284209 28354 207349 -1 2034 21 1699 2745 250883 55251 4.29192 4.29192 -147.488 -4.29192 0 0 1.05005e+06 3633.38 0.27 0.09 0.17 -1 -1 0.27 0.0289523 0.0253829 80 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 17.51 vpr 63.09 MiB -1 -1 0.16 17772 1 0.03 -1 -1 30360 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 24.5 MiB 1.89 840 10509 4398 5789 322 63.1 MiB 0.10 0.00 5.54805 -153.523 -5.54805 5.54805 0.65 0.000681341 0.000632994 0.0465425 0.0432883 40 2695 24 6.95648e+06 202660 706193. 2443.58 12.88 0.327768 0.283394 26914 176310 -1 2048 21 1310 1986 181257 39768 4.92101 4.92101 -156.505 -4.92101 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0286243 0.02507 79 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 6.86 vpr 63.20 MiB -1 -1 0.12 17692 1 0.03 -1 -1 30380 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 24.6 MiB 1.55 981 8543 2209 4916 1418 63.2 MiB 0.05 0.00 4.87546 -153.661 -4.87546 4.87546 0.81 0.000724219 0.000672815 0.0189053 0.0174926 38 2411 22 6.95648e+06 303989 678818. 2348.85 2.46 0.1613 0.139156 26626 170182 -1 1934 18 1044 1554 112841 23684 4.18706 4.18706 -148.99 -4.18706 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.026511 0.0232314 74 83 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 6.07 vpr 63.10 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30236 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 24.6 MiB 1.05 757 8390 3202 4298 890 63.1 MiB 0.08 0.00 4.41913 -136.437 -4.41913 4.41913 0.73 0.000568669 0.000522016 0.0318708 0.0292868 44 2553 27 6.95648e+06 188184 787024. 2723.27 2.07 0.181088 0.156792 27778 195446 -1 1842 22 1553 2635 192052 41288 3.91902 3.91902 -136.724 -3.91902 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0308823 0.0269341 72 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 12.76 vpr 63.16 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30328 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 24.6 MiB 1.13 676 7412 2307 3688 1417 63.2 MiB 0.07 0.00 4.03938 -124.354 -4.03938 4.03938 0.65 0.000722134 0.00067069 0.0352608 0.0327771 40 1915 29 6.95648e+06 231611 706193. 2443.58 8.69 0.328935 0.282639 26914 176310 -1 1850 28 1578 2394 351685 123617 3.69672 3.69672 -129.056 -3.69672 0 0 926341. 3205.33 0.24 0.13 0.15 -1 -1 0.24 0.0385674 0.0334623 73 85 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 6.08 vpr 62.52 MiB -1 -1 0.13 17116 1 0.03 -1 -1 30416 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 24.1 MiB 0.78 565 8134 3323 4613 198 62.5 MiB 0.07 0.00 3.56099 -106.975 -3.56099 3.56099 0.65 0.000553924 0.000515348 0.0312464 0.0290873 38 2071 30 6.95648e+06 144757 678818. 2348.85 2.64 0.147629 0.128291 26626 170182 -1 1519 20 1088 1614 126966 28362 3.22832 3.22832 -114.337 -3.22832 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0222787 0.0194679 53 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 7.90 vpr 63.45 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30232 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 24.8 MiB 3.01 780 14679 6171 7995 513 63.4 MiB 0.12 0.00 4.81946 -134.729 -4.81946 4.81946 0.66 0.000732851 0.000680207 0.0590425 0.0548395 52 2232 23 6.95648e+06 332941 926341. 3205.33 1.97 0.203937 0.17874 29218 227130 -1 1621 23 1130 1780 152505 32527 4.34076 4.34076 -127.201 -4.34076 0 0 1.14541e+06 3963.36 0.27 0.08 0.17 -1 -1 0.27 0.0320954 0.0280104 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 6.13 vpr 63.20 MiB -1 -1 0.20 17692 1 0.03 -1 -1 30432 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 24.6 MiB 0.69 707 10672 3433 5510 1729 63.2 MiB 0.11 0.00 4.24958 -138.057 -4.24958 4.24958 0.65 0.000765754 0.000711032 0.0529107 0.049155 46 2101 39 6.95648e+06 188184 828058. 2865.25 2.47 0.220684 0.192476 28066 200906 -1 1652 20 1609 2296 152828 36988 4.14472 4.14472 -138.713 -4.14472 0 0 1.01997e+06 3529.29 0.25 0.08 0.20 -1 -1 0.25 0.0315986 0.027727 78 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 12.38 vpr 62.79 MiB -1 -1 0.16 17528 1 0.03 -1 -1 30168 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 24.1 MiB 1.38 678 11925 5137 6457 331 62.8 MiB 0.10 0.00 4.05037 -122.042 -4.05037 4.05037 0.65 0.000575891 0.000534537 0.0456379 0.0424081 44 1982 25 6.95648e+06 159232 787024. 2723.27 8.22 0.272725 0.235216 27778 195446 -1 1574 22 1167 1476 132878 28622 3.52322 3.52322 -118.138 -3.52322 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.024899 0.0217358 68 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 5.54 vpr 62.63 MiB -1 -1 0.16 17368 1 0.03 -1 -1 30344 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 24.1 MiB 1.01 478 11916 5026 6437 453 62.6 MiB 0.09 0.00 3.32523 -101.355 -3.32523 3.32523 0.65 0.000551008 0.000512249 0.0432004 0.0401767 44 1783 23 6.95648e+06 188184 787024. 2723.27 1.73 0.152441 0.133158 27778 195446 -1 1359 24 1243 1747 125414 30386 3.03797 3.03797 -110.211 -3.03797 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0265155 0.0230968 57 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.47 vpr 63.19 MiB -1 -1 0.18 17576 1 0.03 -1 -1 30440 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 24.6 MiB 1.48 850 12416 5241 6727 448 63.2 MiB 0.13 0.00 4.62707 -149.564 -4.62707 4.62707 0.67 0.00125206 0.0011631 0.0638828 0.0594109 46 2722 26 6.95648e+06 217135 828058. 2865.25 3.05 0.206195 0.181651 28066 200906 -1 2074 21 1865 2438 193182 44797 4.40371 4.40371 -157.748 -4.40371 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0293192 0.0257009 85 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 7.59 vpr 63.18 MiB -1 -1 0.21 17772 1 0.03 -1 -1 30296 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 24.6 MiB 1.04 1128 10536 3281 5855 1400 63.2 MiB 0.10 0.00 4.81844 -154.124 -4.81844 4.81844 0.65 0.000702643 0.000652495 0.0473039 0.0439684 38 3024 27 6.95648e+06 202660 678818. 2348.85 3.66 0.193784 0.169344 26626 170182 -1 2569 28 1789 2629 367783 104626 4.56931 4.56931 -159.679 -4.56931 0 0 902133. 3121.57 0.22 0.13 0.14 -1 -1 0.22 0.0369168 0.0321498 82 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 7.10 vpr 63.18 MiB -1 -1 0.18 17532 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.6 MiB 0.43 843 11456 4360 5763 1333 63.2 MiB 0.11 0.00 4.93982 -142.75 -4.93982 4.93982 0.65 0.000715971 0.000665168 0.049617 0.0461452 46 2871 42 6.95648e+06 246087 828058. 2865.25 3.76 0.215024 0.187562 28066 200906 -1 1957 23 1780 2859 219432 52826 4.6493 4.6493 -149.515 -4.6493 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0324624 0.0284236 83 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 5.26 vpr 63.21 MiB -1 -1 0.19 17876 1 0.03 -1 -1 30136 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 24.7 MiB 0.84 630 11063 3050 5652 2361 63.2 MiB 0.09 0.00 3.41127 -97.5363 -3.41127 3.41127 0.65 0.000643694 0.000598549 0.0419032 0.038976 40 1835 26 6.95648e+06 303989 706193. 2443.58 1.71 0.170408 0.148299 26914 176310 -1 1460 22 1308 2138 157545 37153 3.03682 3.03682 -102.64 -3.03682 0 0 926341. 3205.33 0.23 0.07 0.10 -1 -1 0.23 0.0275467 0.0239991 69 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 4.75 vpr 62.54 MiB -1 -1 0.17 17524 1 0.03 -1 -1 30516 -1 -1 14 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 24.1 MiB 0.45 487 8585 3718 4335 532 62.5 MiB 0.07 0.00 2.94405 -89.6154 -2.94405 2.94405 0.65 0.000554434 0.000515934 0.0329656 0.0306859 38 1494 30 6.95648e+06 202660 678818. 2348.85 1.70 0.147471 0.128031 26626 170182 -1 1118 22 1017 1284 84491 21005 3.22642 3.22642 -98.2028 -3.22642 0 0 902133. 3121.57 0.22 0.06 0.10 -1 -1 0.22 0.0235636 0.0204899 54 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 6.42 vpr 63.45 MiB -1 -1 0.22 17772 1 0.03 -1 -1 30288 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 24.8 MiB 1.15 1018 15904 6884 8410 610 63.4 MiB 0.16 0.00 3.84665 -134.608 -3.84665 3.84665 0.65 0.000810015 0.000751803 0.0777036 0.072194 50 3513 31 6.95648e+06 231611 902133. 3121.57 2.27 0.246988 0.216983 28642 213929 -1 2746 23 2119 3360 318996 69446 4.29822 4.29822 -148.875 -4.29822 0 0 1.08113e+06 3740.92 0.27 0.11 0.18 -1 -1 0.27 0.0364794 0.0318759 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 10.91 vpr 63.16 MiB -1 -1 0.20 17620 1 0.03 -1 -1 30240 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 24.6 MiB 4.38 805 13026 5515 7018 493 63.2 MiB 0.12 0.00 5.43776 -152.039 -5.43776 5.43776 0.65 0.000713941 0.000663266 0.0590357 0.0548631 46 2740 36 6.95648e+06 217135 828058. 2865.25 3.64 0.220013 0.19267 28066 200906 -1 2126 23 1586 2402 285851 56911 4.81541 4.81541 -158.107 -4.81541 0 0 1.01997e+06 3529.29 0.26 0.10 0.16 -1 -1 0.26 0.0292825 0.0259551 82 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 8.54 vpr 63.20 MiB -1 -1 0.15 17648 1 0.03 -1 -1 30336 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 24.5 MiB 3.19 636 10029 4132 5585 312 63.2 MiB 0.09 0.00 3.67834 -124.027 -3.67834 3.67834 0.66 0.000660582 0.000613163 0.0449093 0.0417532 48 2185 28 6.95648e+06 159232 865456. 2994.66 2.49 0.181872 0.15845 28354 207349 -1 1586 19 1295 1849 150992 36406 3.53836 3.53836 -135.928 -3.53836 0 0 1.05005e+06 3633.38 0.26 0.07 0.17 -1 -1 0.26 0.0254882 0.0223149 70 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.23 vpr 63.09 MiB -1 -1 0.14 17800 1 0.03 -1 -1 30420 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 24.5 MiB 0.32 731 15206 6549 8090 567 63.1 MiB 0.12 0.00 4.25273 -121.678 -4.25273 4.25273 0.65 0.000668671 0.000620532 0.0563166 0.0523071 48 2298 32 6.95648e+06 318465 865456. 2994.66 2.12 0.197129 0.172651 28354 207349 -1 1836 22 1173 1814 166694 37685 3.80451 3.80451 -123.316 -3.80451 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0288928 0.0252277 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.29 vpr 63.19 MiB -1 -1 0.09 17792 1 0.03 -1 -1 30140 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 24.6 MiB 0.85 751 14323 4212 7223 2888 63.2 MiB 0.12 0.00 4.42633 -128.985 -4.42633 4.42633 0.66 0.000730882 0.000678487 0.0559876 0.0519445 40 2622 38 6.95648e+06 361892 706193. 2443.58 2.68 0.222632 0.194459 26914 176310 -1 1848 21 1476 2267 182833 41978 4.24412 4.24412 -133.401 -4.24412 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0303727 0.0265464 83 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 7.80 vpr 63.06 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30536 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 24.6 MiB 0.96 713 11034 4424 5642 968 63.1 MiB 0.10 0.00 3.35027 -102.373 -3.35027 3.35027 0.66 0.000659869 0.000608738 0.0459779 0.0427236 38 2733 50 6.95648e+06 231611 678818. 2348.85 3.99 0.207473 0.180386 26626 170182 -1 1933 23 1526 2555 207027 44479 3.45197 3.45197 -114.871 -3.45197 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0295839 0.0258069 68 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 7.74 vpr 63.23 MiB -1 -1 0.13 17812 1 0.04 -1 -1 30232 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 24.6 MiB 1.39 907 11200 3286 6600 1314 63.2 MiB 0.11 0.00 4.64467 -151.435 -4.64467 4.64467 0.81 0.000708323 0.000657645 0.0504692 0.0469352 48 2706 42 6.95648e+06 202660 865456. 2994.66 3.30 0.21182 0.184973 28354 207349 -1 2215 23 1973 2902 294986 61193 4.36766 4.36766 -149.121 -4.36766 0 0 1.05005e+06 3633.38 0.28 0.10 0.18 -1 -1 0.28 0.0313796 0.0276375 88 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 15.87 vpr 63.16 MiB -1 -1 0.17 17664 1 0.03 -1 -1 30020 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 24.5 MiB 0.93 748 12542 5225 6709 608 63.2 MiB 0.12 0.00 4.47033 -145.191 -4.47033 4.47033 0.68 0.000753998 0.000699721 0.0562892 0.052328 48 2531 41 6.95648e+06 260562 865456. 2994.66 11.78 0.417632 0.35997 28354 207349 -1 1938 24 1584 2112 216788 50249 4.07261 4.07261 -144.703 -4.07261 0 0 1.05005e+06 3633.38 0.36 0.10 0.20 -1 -1 0.36 0.0329089 0.0288684 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 8.48 vpr 62.60 MiB -1 -1 0.18 17380 1 0.03 -1 -1 30292 -1 -1 12 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 24.1 MiB 4.02 466 10105 4186 5463 456 62.6 MiB 0.08 0.00 3.92822 -103.3 -3.92822 3.92822 0.65 0.000573555 0.000533193 0.0402406 0.037473 36 1523 22 6.95648e+06 173708 648988. 2245.63 1.76 0.153215 0.133556 26050 158493 -1 1228 15 778 1009 83744 19223 2.99102 2.99102 -101.074 -2.99102 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0212084 0.0187953 53 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 5.77 vpr 63.09 MiB -1 -1 0.18 17516 1 0.03 -1 -1 30324 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 24.4 MiB 1.02 606 9397 3361 4720 1316 63.1 MiB 0.08 0.00 3.68935 -126.523 -3.68935 3.68935 0.65 0.000628805 0.000584068 0.039702 0.0369057 42 2317 35 6.95648e+06 159232 744469. 2576.02 1.97 0.17603 0.152741 27202 183097 -1 1631 21 1234 1585 161332 35156 3.67372 3.67372 -130.834 -3.67372 0 0 949917. 3286.91 0.23 0.07 0.15 -1 -1 0.23 0.0261565 0.022813 64 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 6.19 vpr 62.86 MiB -1 -1 0.15 17920 1 0.03 -1 -1 30452 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 24.4 MiB 0.85 743 11993 4026 5805 2162 62.9 MiB 0.10 0.00 4.14331 -121.523 -4.14331 4.14331 0.65 0.000669773 0.000621473 0.0449726 0.0417766 44 2597 32 6.95648e+06 332941 787024. 2723.27 2.59 0.186581 0.1626 27778 195446 -1 1579 21 1324 2035 146086 33880 3.91111 3.91111 -121.462 -3.91111 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0276749 0.0242023 77 33 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 5.82 vpr 62.66 MiB -1 -1 0.15 17384 1 0.03 -1 -1 30472 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 24.1 MiB 1.41 616 10459 4329 5659 471 62.7 MiB 0.09 0.00 4.04737 -116.055 -4.04737 4.04737 0.65 0.00056569 0.000526132 0.0402796 0.0374848 42 2143 50 6.95648e+06 188184 744469. 2576.02 1.73 0.173164 0.150282 27202 183097 -1 1571 22 1189 1496 121997 26928 3.32882 3.32882 -111.78 -3.32882 0 0 949917. 3286.91 0.23 0.07 0.10 -1 -1 0.23 0.027278 0.0238507 67 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 10.66 vpr 62.73 MiB -1 -1 0.15 17252 1 0.03 -1 -1 30052 -1 -1 9 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 24.2 MiB 1.26 561 11321 4813 6209 299 62.7 MiB 0.10 0.00 3.85356 -111.135 -3.85356 3.85356 0.65 0.000601665 0.000559752 0.0471938 0.043867 40 1771 25 6.95648e+06 130281 706193. 2443.58 6.56 0.269242 0.232217 26914 176310 -1 1463 37 1552 2418 363039 142367 3.13687 3.13687 -111.746 -3.13687 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0387793 0.0334343 56 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 5.53 vpr 63.17 MiB -1 -1 0.21 17792 1 0.03 -1 -1 30260 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 24.6 MiB 1.01 696 13719 4819 6392 2508 63.2 MiB 0.12 0.00 3.46983 -115.227 -3.46983 3.46983 0.66 0.000732537 0.000679221 0.0546501 0.0507584 44 2085 27 6.95648e+06 347416 787024. 2723.27 1.63 0.201263 0.175924 27778 195446 -1 1582 23 1647 2194 169180 36742 3.00057 3.00057 -113.892 -3.00057 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0322461 0.0280983 79 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.08 vpr 62.79 MiB -1 -1 0.15 17400 1 0.03 -1 -1 30344 -1 -1 12 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 24.2 MiB 2.28 587 9081 3433 3891 1757 62.8 MiB 0.08 0.00 3.99537 -118.981 -3.99537 3.99537 0.68 0.000572852 0.000532843 0.0351489 0.032706 44 2307 34 6.95648e+06 173708 787024. 2723.27 1.95 0.146461 0.127286 27778 195446 -1 1553 21 1133 1566 124116 28356 3.46822 3.46822 -116.107 -3.46822 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.0241094 0.0210356 64 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.37 vpr 63.32 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30196 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 24.8 MiB 1.40 827 13505 5541 6681 1283 63.3 MiB 0.12 0.00 3.208 -113.036 -3.208 3.208 0.65 0.000697409 0.000646763 0.052045 0.0483385 40 2180 23 6.95648e+06 318465 706193. 2443.58 2.08 0.182403 0.159849 26914 176310 -1 1944 22 1395 2260 237037 48189 3.27047 3.27047 -118.143 -3.27047 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0300314 0.0262667 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 12.73 vpr 63.33 MiB -1 -1 0.17 17748 1 0.03 -1 -1 30284 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 24.8 MiB 1.85 717 9706 3985 5340 381 63.3 MiB 0.10 0.00 3.995 -134.818 -3.995 3.995 0.66 0.000750151 0.000695667 0.0467054 0.0433918 40 2180 49 6.95648e+06 217135 706193. 2443.58 8.12 0.370641 0.319297 26914 176310 -1 1785 21 1473 1992 159433 36664 3.82681 3.82681 -135.82 -3.82681 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0308506 0.0269709 73 91 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 6.19 vpr 62.76 MiB -1 -1 0.16 17384 1 0.03 -1 -1 30292 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 24.2 MiB 1.20 546 10149 3579 4930 1640 62.8 MiB 0.09 0.00 2.9023 -96.8242 -2.9023 2.9023 0.66 0.000620783 0.000576793 0.0428319 0.0398382 46 1638 37 6.95648e+06 144757 828058. 2865.25 2.21 0.180608 0.157182 28066 200906 -1 1065 31 1105 1702 170168 64073 2.92452 2.92452 -98.2858 -2.92452 0 0 1.01997e+06 3529.29 0.25 0.09 0.16 -1 -1 0.25 0.0347854 0.0300585 57 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 6.19 vpr 62.80 MiB -1 -1 0.19 17508 1 0.03 -1 -1 30284 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 24.4 MiB 1.31 688 11293 4712 6328 253 62.8 MiB 0.10 0.00 4.09973 -130.941 -4.09973 4.09973 0.65 0.000612306 0.000569525 0.0463918 0.0431701 46 2135 28 6.95648e+06 159232 828058. 2865.25 2.05 0.173172 0.151269 28066 200906 -1 1698 23 1365 1978 168465 36966 3.48812 3.48812 -125.856 -3.48812 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0274162 0.0238661 70 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.84 vpr 62.98 MiB -1 -1 0.15 17900 1 0.03 -1 -1 30284 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 24.4 MiB 2.13 759 11034 4566 6063 405 63.0 MiB 0.10 0.00 4.18668 -129.57 -4.18668 4.18668 0.65 0.00065731 0.00061006 0.0470595 0.0437359 40 2605 27 6.95648e+06 202660 706193. 2443.58 2.92 0.183581 0.160448 26914 176310 -1 2030 28 2034 2690 321469 108944 4.18692 4.18692 -144.182 -4.18692 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0343902 0.0299018 79 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 5.84 vpr 63.20 MiB -1 -1 0.11 17852 1 0.03 -1 -1 30124 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 24.7 MiB 1.09 716 10228 3612 4706 1910 63.2 MiB 0.09 0.00 4.16289 -113.847 -4.16289 4.16289 0.65 0.000651684 0.000605773 0.0399302 0.0371575 40 2239 28 6.95648e+06 303989 706193. 2443.58 2.06 0.174298 0.151588 26914 176310 -1 1916 21 1219 1919 167378 38434 3.83102 3.83102 -120.807 -3.83102 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0270612 0.0235779 71 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 6.84 vpr 63.37 MiB -1 -1 0.19 17648 1 0.03 -1 -1 30444 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 24.9 MiB 1.40 846 13524 5903 7163 458 63.4 MiB 0.13 0.00 4.885 -157.826 -4.885 4.885 0.71 0.000758611 0.000704125 0.0646907 0.060133 56 2698 26 6.95648e+06 202660 973134. 3367.25 2.35 0.218336 0.19153 29794 239141 -1 2164 24 2275 3274 346015 70595 4.53181 4.53181 -153.712 -4.53181 0 0 1.19926e+06 4149.71 0.32 0.12 0.20 -1 -1 0.32 0.0352502 0.0308107 89 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 5.84 vpr 62.71 MiB -1 -1 0.17 17232 1 0.03 -1 -1 30396 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 24.2 MiB 1.28 501 12076 4244 5318 2514 62.7 MiB 0.08 0.00 3.74884 -94.0057 -3.74884 3.74884 0.66 0.000405556 0.000370242 0.0413969 0.0384571 40 1910 34 6.95648e+06 188184 706193. 2443.58 1.86 0.157114 0.136809 26914 176310 -1 1432 21 999 1536 124979 30089 3.24152 3.24152 -100.677 -3.24152 0 0 926341. 3205.33 0.23 0.06 0.16 -1 -1 0.23 0.0224647 0.0196092 54 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.32 vpr 63.67 MiB -1 -1 0.18 17576 1 0.03 -1 -1 30268 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 25.0 MiB 1.06 1008 14543 5389 7197 1957 63.7 MiB 0.13 0.00 3.70954 -138.278 -3.70954 3.70954 0.65 0.000775732 0.000717393 0.059727 0.055205 40 2412 20 6.95648e+06 361892 706193. 2443.58 2.41 0.211717 0.185414 26914 176310 -1 2154 19 1653 2182 212075 52958 3.94551 3.94551 -149.35 -3.94551 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0296428 0.0260042 81 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.51 vpr 63.04 MiB -1 -1 0.11 17620 1 0.03 -1 -1 30124 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 2.75 599 11389 4446 5401 1542 63.0 MiB 0.11 0.00 2.96105 -112.244 -2.96105 2.96105 0.72 0.000713953 0.000661914 0.0549607 0.0510375 38 1957 49 6.95648e+06 144757 678818. 2348.85 2.97 0.227989 0.198562 26626 170182 -1 1545 21 1439 1962 170499 37127 3.32342 3.32342 -127.868 -3.32342 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0293941 0.0256569 61 96 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 6.13 vpr 63.20 MiB -1 -1 0.20 17748 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 24.6 MiB 1.14 728 11993 4280 5583 2130 63.2 MiB 0.12 0.00 4.11943 -125.672 -4.11943 4.11943 0.66 0.000629413 0.000577862 0.0565471 0.0525645 44 2660 42 6.95648e+06 318465 787024. 2723.27 2.05 0.221043 0.193575 27778 195446 -1 1849 23 1170 1786 148503 34066 3.72046 3.72046 -123.66 -3.72046 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0313019 0.0272787 75 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 9.08 vpr 63.44 MiB -1 -1 0.12 17796 1 0.03 -1 -1 30344 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 1.65 1133 13599 5570 7048 981 63.4 MiB 0.14 0.00 6.01533 -177.28 -6.01533 6.01533 0.65 0.000782345 0.000726413 0.0655167 0.0608605 46 3137 40 6.95648e+06 217135 828058. 2865.25 4.53 0.247595 0.217646 28066 200906 -1 2522 22 2092 2983 241006 49112 4.93995 4.93995 -170.158 -4.93995 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0341662 0.0299909 95 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 6.71 vpr 62.50 MiB -1 -1 0.14 17428 1 0.03 -1 -1 30180 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 24.1 MiB 2.30 506 10409 4642 5419 348 62.5 MiB 0.08 0.00 2.68965 -94.6691 -2.68965 2.68965 0.65 0.000497957 0.000463347 0.0360833 0.0335831 38 1556 24 6.95648e+06 159232 678818. 2348.85 1.75 0.135718 0.118044 26626 170182 -1 1195 19 802 1041 94426 20467 2.45462 2.45462 -95.1551 -2.45462 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0194995 0.0170282 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 6.30 vpr 62.79 MiB -1 -1 0.17 17336 1 0.03 -1 -1 30092 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 24.2 MiB 1.29 453 9649 4016 5181 452 62.8 MiB 0.08 0.00 3.70034 -111.62 -3.70034 3.70034 0.65 0.000599326 0.000557058 0.0403097 0.0375021 46 1640 50 6.95648e+06 159232 828058. 2865.25 2.23 0.183932 0.159615 28066 200906 -1 1226 20 1006 1462 125465 30002 3.05703 3.05703 -110.049 -3.05703 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0240189 0.0209265 54 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 5.66 vpr 62.81 MiB -1 -1 0.17 17588 1 0.03 -1 -1 30328 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 24.2 MiB 0.45 657 10304 4396 5657 251 62.8 MiB 0.09 0.00 3.0756 -108.291 -3.0756 3.0756 0.66 0.000622949 0.000579266 0.043702 0.0406679 48 2011 23 6.95648e+06 144757 865456. 2994.66 2.39 0.167332 0.145994 28354 207349 -1 1649 24 1360 2172 225132 50412 3.10392 3.10392 -114.589 -3.10392 0 0 1.05005e+06 3633.38 0.27 0.09 0.17 -1 -1 0.27 0.0285511 0.024828 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 5.21 vpr 62.55 MiB -1 -1 0.16 17372 1 0.03 -1 -1 30184 -1 -1 18 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 24.1 MiB 0.42 433 7975 3255 4078 642 62.5 MiB 0.06 0.00 3.29759 -76.2304 -3.29759 3.29759 0.65 0.000475371 0.000442208 0.0259151 0.0241298 38 1530 37 6.95648e+06 260562 678818. 2348.85 2.00 0.134129 0.115721 26626 170182 -1 1053 23 716 1101 70310 18227 2.97562 2.97562 -82.152 -2.97562 0 0 902133. 3121.57 0.32 0.04 0.16 -1 -1 0.32 0.0140964 0.0124832 53 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 10.33 vpr 63.16 MiB -1 -1 0.20 17676 1 0.03 -1 -1 30216 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 24.6 MiB 1.63 736 10796 3697 5176 1923 63.2 MiB 0.10 0.00 3.75962 -125.032 -3.75962 3.75962 0.65 0.000740279 0.000687672 0.0522149 0.048514 46 3469 47 6.95648e+06 173708 828058. 2865.25 5.69 0.228212 0.198813 28066 200906 -1 2274 26 1722 2861 316286 80992 4.55982 4.55982 -147.737 -4.55982 0 0 1.01997e+06 3529.29 0.28 0.13 0.17 -1 -1 0.28 0.0395094 0.0345485 73 72 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.83 vpr 63.30 MiB -1 -1 0.13 17516 1 0.03 -1 -1 30236 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 24.6 MiB 1.09 761 10744 4472 5806 466 63.3 MiB 0.10 0.00 4.07648 -139.886 -4.07648 4.07648 0.65 0.000777763 0.000721569 0.0513405 0.047688 40 2524 30 6.95648e+06 246087 706193. 2443.58 2.83 0.214045 0.186602 26914 176310 -1 2082 24 1894 2565 277033 61234 3.75172 3.75172 -141.408 -3.75172 0 0 926341. 3205.33 0.26 0.11 0.19 -1 -1 0.26 0.0351576 0.0306181 80 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 18.57 vpr 62.96 MiB -1 -1 0.20 17600 1 0.03 -1 -1 30280 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 24.4 MiB 1.44 820 12416 4576 5562 2278 63.0 MiB 0.11 0.00 5.01635 -146.768 -5.01635 5.01635 0.65 0.000589787 0.000538986 0.0530153 0.0490407 46 2906 37 6.99608e+06 220735 828058. 2865.25 14.13 0.355297 0.306063 28066 200906 -1 1988 21 1560 2181 170932 41761 4.40451 4.40451 -147.033 -4.40451 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0293116 0.0256771 88 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 7.00 vpr 62.88 MiB -1 -1 0.20 17668 1 0.03 -1 -1 30388 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 24.6 MiB 1.25 962 11233 3707 5934 1592 62.9 MiB 0.11 0.00 5.03284 -151.156 -5.03284 5.03284 0.65 0.000710814 0.000659744 0.0499474 0.0464076 48 2930 36 6.99608e+06 250167 865456. 2994.66 2.81 0.20511 0.178802 28354 207349 -1 2454 22 2109 3060 320643 66754 4.64259 4.64259 -159.254 -4.64259 0 0 1.05005e+06 3633.38 0.26 0.11 0.18 -1 -1 0.26 0.0306402 0.0267643 99 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 17.36 vpr 62.78 MiB -1 -1 0.18 17420 1 0.02 -1 -1 30224 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 24.3 MiB 0.71 839 12196 5162 6681 353 62.8 MiB 0.10 0.00 3.55379 -113.123 -3.55379 3.55379 0.66 0.000628947 0.000584638 0.0486023 0.0451899 42 2585 35 6.99608e+06 206020 744469. 2576.02 13.60 0.337699 0.291575 27202 183097 -1 1882 23 1419 1986 154978 35763 3.65286 3.65286 -116.181 -3.65286 0 0 949917. 3286.91 0.25 0.07 0.16 -1 -1 0.25 0.0278961 0.0242684 76 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 6.16 vpr 62.85 MiB -1 -1 0.19 17636 1 0.03 -1 -1 30276 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 24.3 MiB 1.17 700 12302 4830 6041 1431 62.8 MiB 0.11 0.00 4.05128 -116.185 -4.05128 4.05128 0.65 0.00063263 0.000587723 0.0503029 0.046777 44 2703 50 6.99608e+06 235451 787024. 2723.27 2.14 0.202105 0.176093 27778 195446 -1 1833 21 1187 1876 151742 33849 3.80801 3.80801 -121.421 -3.80801 0 0 997811. 3452.63 0.25 0.07 0.17 -1 -1 0.25 0.0269985 0.0236629 78 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 8.88 vpr 63.08 MiB -1 -1 0.18 17644 1 0.03 -1 -1 30248 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 24.6 MiB 2.22 903 10204 4241 5732 231 63.1 MiB 0.10 0.00 4.44731 -141.413 -4.44731 4.44731 0.66 0.000796444 0.000735068 0.0446521 0.0414665 40 3203 32 6.99608e+06 206020 706193. 2443.58 3.73 0.195362 0.170674 26914 176310 -1 2582 26 1925 3211 395909 108698 4.57915 4.57915 -156.213 -4.57915 0 0 926341. 3205.33 0.24 0.13 0.16 -1 -1 0.24 0.0340941 0.0297637 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 8.06 vpr 63.03 MiB -1 -1 0.17 17812 1 0.03 -1 -1 30312 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 24.3 MiB 2.58 903 12506 4545 6575 1386 63.0 MiB 0.12 0.00 3.38924 -119.322 -3.38924 3.38924 0.66 0.000722632 0.000671393 0.0539658 0.050095 50 2568 40 6.99608e+06 250167 902133. 3121.57 2.60 0.214287 0.18699 28642 213929 -1 2051 19 1572 2359 183553 42134 3.37616 3.37616 -126.643 -3.37616 0 0 1.08113e+06 3740.92 0.27 0.08 0.18 -1 -1 0.27 0.0277759 0.0243647 97 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 7.12 vpr 62.43 MiB -1 -1 0.17 17428 1 0.03 -1 -1 30688 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 23.9 MiB 1.35 527 10769 4406 5481 882 62.4 MiB 0.09 0.00 3.89582 -110.808 -3.89582 3.89582 0.65 0.000552724 0.000514098 0.0403215 0.0375213 36 2292 38 6.99608e+06 220735 648988. 2245.63 3.05 0.165319 0.143618 26050 158493 -1 1359 21 1244 1818 169708 37451 3.29456 3.29456 -109.219 -3.29456 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0231778 0.0201729 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 5.40 vpr 62.67 MiB -1 -1 0.19 17136 1 0.02 -1 -1 30100 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.0 MiB 0.31 664 11203 3028 6067 2108 62.7 MiB 0.09 0.00 2.75465 -88.1636 -2.75465 2.75465 0.65 0.000596878 0.000554547 0.0369359 0.0343117 40 2155 26 6.99608e+06 367892 706193. 2443.58 2.30 0.158794 0.138154 26914 176310 -1 1692 20 1158 1910 156293 36151 2.88741 2.88741 -100.184 -2.88741 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0235847 0.0205493 69 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 6.98 vpr 62.82 MiB -1 -1 0.17 17872 1 0.03 -1 -1 30092 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 24.2 MiB 0.85 886 12302 5141 6872 289 62.8 MiB 0.11 0.00 3.35914 -124.887 -3.35914 3.35914 0.66 0.000636463 0.000591143 0.0506287 0.0470579 38 2606 25 6.99608e+06 206020 678818. 2348.85 3.29 0.183094 0.159972 26626 170182 -1 2055 25 1818 2460 203278 42148 3.45687 3.45687 -127.895 -3.45687 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0302884 0.0263048 87 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 9.74 vpr 62.79 MiB -1 -1 0.17 17640 1 0.03 -1 -1 30152 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 24.4 MiB 0.80 886 11650 3739 6142 1769 62.8 MiB 0.10 0.00 3.93292 -137.573 -3.93292 3.93292 0.66 0.00074457 0.000692694 0.0471706 0.0438975 40 2221 25 6.99608e+06 191304 706193. 2443.58 6.21 0.289922 0.25029 26914 176310 -1 1877 19 1373 1734 139655 29281 3.35756 3.35756 -128.359 -3.35756 0 0 926341. 3205.33 0.23 0.07 0.10 -1 -1 0.23 0.0242107 0.0212019 75 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 5.78 vpr 62.77 MiB -1 -1 0.19 17372 1 0.03 -1 -1 30368 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 24.3 MiB 0.73 675 11436 3956 5372 2108 62.8 MiB 0.10 0.00 3.86033 -123.728 -3.86033 3.86033 0.65 0.000616095 0.000572464 0.0464509 0.0431826 44 2557 34 6.99608e+06 206020 787024. 2723.27 2.20 0.178379 0.155297 27778 195446 -1 1641 23 1524 2109 158603 37910 3.9203 3.9203 -128.16 -3.9203 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0272158 0.0236301 83 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 12.90 vpr 62.70 MiB -1 -1 0.18 17576 1 0.03 -1 -1 30064 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 24.1 MiB 0.64 784 8133 1910 6031 192 62.7 MiB 0.08 0.00 3.27288 -116.653 -3.27288 3.27288 0.66 0.000586028 0.000544474 0.0322971 0.0300487 38 2394 39 6.99608e+06 161872 678818. 2348.85 9.47 0.313154 0.26924 26626 170182 -1 1832 20 1203 1524 136412 27823 2.83937 2.83937 -113.586 -2.83937 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0238431 0.0208082 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.03 vpr 62.91 MiB -1 -1 0.19 17772 1 0.03 -1 -1 30376 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 24.4 MiB 0.75 822 13937 5978 7482 477 62.9 MiB 0.13 0.00 3.95082 -133.749 -3.95082 3.95082 0.65 0.000703775 0.000653066 0.0601516 0.0559281 44 2826 40 6.99608e+06 220735 787024. 2723.27 2.25 0.217678 0.190478 27778 195446 -1 2114 22 1906 2780 212010 46158 3.47486 3.47486 -129.119 -3.47486 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.029933 0.0261734 87 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 8.67 vpr 63.46 MiB -1 -1 0.20 17796 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 24.7 MiB 1.27 975 9706 2651 5494 1561 63.5 MiB 0.10 0.00 4.79397 -141.28 -4.79397 4.79397 0.66 0.000718969 0.000667985 0.0427886 0.0398274 40 3303 38 6.99608e+06 250167 706193. 2443.58 4.39 0.205617 0.1791 26914 176310 -1 2620 23 2520 3437 448745 95617 4.80751 4.80751 -162.56 -4.80751 0 0 926341. 3205.33 0.23 0.13 0.15 -1 -1 0.23 0.0317509 0.0277165 97 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 7.52 vpr 62.43 MiB -1 -1 0.15 17256 1 0.03 -1 -1 30372 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 23.9 MiB 2.49 630 8909 3655 4893 361 62.4 MiB 0.07 0.00 3.0564 -89.3526 -3.0564 3.0564 0.66 0.000545752 0.000507644 0.0334219 0.0310963 38 2055 28 6.99608e+06 191304 678818. 2348.85 2.35 0.147991 0.128438 26626 170182 -1 1643 20 1092 1545 126544 27809 2.99782 2.99782 -99.322 -2.99782 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0216198 0.0188189 64 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.37 vpr 63.06 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 24.4 MiB 1.23 999 13840 5885 7630 325 63.1 MiB 0.13 0.00 3.63599 -124.523 -3.63599 3.63599 0.65 0.000727513 0.000675786 0.0614215 0.0570519 42 3382 43 6.99608e+06 235451 744469. 2576.02 2.30 0.234721 0.205448 27202 183097 -1 2337 22 1991 3046 222901 49590 3.85421 3.85421 -132.716 -3.85421 0 0 949917. 3286.91 0.24 0.09 0.13 -1 -1 0.24 0.0314076 0.0274286 96 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 6.01 vpr 62.77 MiB -1 -1 0.19 17564 1 0.03 -1 -1 30088 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 24.3 MiB 0.72 791 13092 5076 6583 1433 62.8 MiB 0.12 0.00 4.34151 -134.806 -4.34151 4.34151 0.66 0.000687402 0.000638612 0.0558908 0.0519683 46 2501 32 6.99608e+06 220735 828058. 2865.25 2.44 0.201721 0.17627 28066 200906 -1 1778 18 1408 1828 128340 29719 3.24426 3.24426 -123.925 -3.24426 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0255575 0.0224393 84 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 6.22 vpr 62.91 MiB -1 -1 0.19 17428 1 0.03 -1 -1 30324 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 24.3 MiB 0.74 778 13261 3730 7601 1930 62.9 MiB 0.12 0.00 3.17504 -117.557 -3.17504 3.17504 0.65 0.000651425 0.000605466 0.0536418 0.0498961 50 2131 33 6.99608e+06 220735 902133. 3121.57 2.56 0.193122 0.168806 28642 213929 -1 1590 21 1617 2041 147949 35563 3.02106 3.02106 -117.33 -3.02106 0 0 1.08113e+06 3740.92 0.26 0.08 0.18 -1 -1 0.26 0.0273641 0.0239378 89 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 5.80 vpr 62.32 MiB -1 -1 0.13 17416 1 0.02 -1 -1 30084 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 23.7 MiB 1.65 513 10949 4743 5895 311 62.3 MiB 0.08 0.00 2.33546 -88.3817 -2.33546 2.33546 0.65 0.000499163 0.000464337 0.0379831 0.0353257 40 1324 27 6.99608e+06 147157 706193. 2443.58 1.48 0.145752 0.126979 26914 176310 -1 1181 23 764 860 93166 20453 2.25983 2.25983 -86.0791 -2.25983 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0219292 0.0190238 52 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 7.00 vpr 62.75 MiB -1 -1 0.19 17380 1 0.03 -1 -1 30136 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 24.0 MiB 1.91 843 8236 2227 5366 643 62.8 MiB 0.08 0.00 3.78247 -126.288 -3.78247 3.78247 0.66 0.000611533 0.000568574 0.0350667 0.0326315 38 2536 29 6.99608e+06 191304 678818. 2348.85 2.27 0.162358 0.14107 26626 170182 -1 2106 23 1547 2212 217668 42716 3.58136 3.58136 -136.48 -3.58136 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0271511 0.0236362 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 6.00 vpr 62.90 MiB -1 -1 0.18 17868 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 24.4 MiB 1.21 802 15273 5455 7440 2378 62.9 MiB 0.13 0.00 3.98218 -132.203 -3.98218 3.98218 0.66 0.000696333 0.000644477 0.0567516 0.0522826 44 2430 42 6.99608e+06 294314 787024. 2723.27 1.90 0.210441 0.183411 27778 195446 -1 2006 22 2002 2886 210270 47858 3.85615 3.85615 -138.988 -3.85615 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0298214 0.0260843 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 9.67 vpr 63.13 MiB -1 -1 0.14 17772 1 0.03 -1 -1 30216 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 24.7 MiB 2.02 1225 15044 5236 8229 1579 63.1 MiB 0.14 0.00 4.6726 -146.803 -4.6726 4.6726 0.66 0.000731398 0.000678663 0.067029 0.0622993 40 3256 42 6.99608e+06 235451 706193. 2443.58 4.79 0.23958 0.210237 26914 176310 -1 2959 22 2174 3170 324163 61807 4.397 4.397 -154.131 -4.397 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0316332 0.0276442 100 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.98 vpr 62.21 MiB -1 -1 0.13 17324 1 0.03 -1 -1 30696 -1 -1 13 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 23.4 MiB 1.91 422 8539 3493 4523 523 62.2 MiB 0.06 0.00 2.7298 -77.3475 -2.7298 2.7298 0.65 0.000430225 0.000399841 0.0271182 0.0252412 38 1230 26 6.99608e+06 191304 678818. 2348.85 1.45 0.114103 0.0988812 26626 170182 -1 988 17 660 740 59916 14111 2.52491 2.52491 -76.7508 -2.52491 0 0 902133. 3121.57 0.22 0.04 0.14 -1 -1 0.22 0.0153494 0.0134321 53 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 5.51 vpr 62.64 MiB -1 -1 0.10 17264 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 24.0 MiB 0.87 692 10050 3569 4878 1603 62.6 MiB 0.09 0.00 4.56174 -113.848 -4.56174 4.56174 0.65 0.000618709 0.000575837 0.0390741 0.0364104 40 2097 25 6.99608e+06 220735 706193. 2443.58 1.91 0.162892 0.141948 26914 176310 -1 1605 23 1263 2079 137488 34805 3.61236 3.61236 -117.368 -3.61236 0 0 926341. 3205.33 0.23 0.07 0.16 -1 -1 0.23 0.0274064 0.0238741 66 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.51 vpr 62.16 MiB -1 -1 0.16 16984 1 0.03 -1 -1 29996 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63652 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 23.7 MiB 0.20 399 10055 4241 5582 232 62.2 MiB 0.07 0.00 2.06111 -67.7592 -2.06111 2.06111 0.65 0.000423783 0.000393376 0.0299726 0.0278495 36 1381 35 6.99608e+06 117725 648988. 2245.63 1.63 0.123234 0.10727 26050 158493 -1 935 18 613 680 59062 14806 1.90102 1.90102 -72.2718 -1.90102 0 0 828058. 2865.25 0.24 0.06 0.14 -1 -1 0.24 0.0217574 0.0194172 42 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 6.75 vpr 62.90 MiB -1 -1 0.17 17636 1 0.03 -1 -1 30112 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 24.5 MiB 1.12 805 13358 5696 7249 413 62.9 MiB 0.11 0.00 4.47086 -121.677 -4.47086 4.47086 0.65 0.000633212 0.000588433 0.0534467 0.0496924 38 2634 33 6.99608e+06 206020 678818. 2348.85 2.86 0.179235 0.156737 26626 170182 -1 2001 18 1258 1814 144356 32185 4.05506 4.05506 -129.534 -4.05506 0 0 902133. 3121.57 0.21 0.05 0.10 -1 -1 0.21 0.0207965 0.0184245 73 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 5.40 vpr 62.68 MiB -1 -1 0.17 17244 1 0.04 -1 -1 30476 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.0 MiB 0.45 715 11617 3653 5870 2094 62.7 MiB 0.10 0.00 2.89821 -97.4108 -2.89821 2.89821 0.67 0.000637666 0.000593237 0.0421677 0.0392063 40 2334 43 6.99608e+06 309029 706193. 2443.58 2.16 0.186863 0.162504 26914 176310 -1 1764 22 1317 2198 155518 39145 2.91362 2.91362 -107.306 -2.91362 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0278753 0.0243094 74 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 8.60 vpr 62.93 MiB -1 -1 0.11 17752 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 24.4 MiB 1.35 800 6839 1729 4140 970 62.9 MiB 0.07 0.00 4.20669 -125.419 -4.20669 4.20669 0.65 0.000678913 0.000631073 0.0298671 0.0277761 46 2866 37 6.99608e+06 220735 828058. 2865.25 4.39 0.186298 0.161664 28066 200906 -1 1963 27 1930 2965 207915 54574 3.98026 3.98026 -130.663 -3.98026 0 0 1.01997e+06 3529.29 0.26 0.10 0.17 -1 -1 0.26 0.0343832 0.0299487 87 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 6.47 vpr 62.56 MiB -1 -1 0.11 17372 1 0.03 -1 -1 30092 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 24.1 MiB 2.08 688 11116 4644 6232 240 62.6 MiB 0.11 0.00 3.13575 -107.33 -3.13575 3.13575 0.66 0.00060428 0.000561779 0.0542066 0.0504363 40 2069 25 6.99608e+06 176588 706193. 2443.58 1.58 0.174744 0.152964 26914 176310 -1 1705 19 1205 1671 144211 32934 2.85647 2.85647 -115.13 -2.85647 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0214679 0.0188742 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 7.16 vpr 62.60 MiB -1 -1 0.15 17528 1 0.03 -1 -1 30476 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 24.1 MiB 1.28 579 8876 3271 4297 1308 62.6 MiB 0.07 0.00 3.70857 -107.816 -3.70857 3.70857 0.65 0.000571018 0.000531104 0.0335408 0.0311965 46 2274 40 6.99608e+06 206020 828058. 2865.25 3.11 0.16087 0.139393 28066 200906 -1 1494 18 1131 1685 141949 32817 3.31781 3.31781 -110.058 -3.31781 0 0 1.01997e+06 3529.29 0.25 0.06 0.18 -1 -1 0.25 0.0209057 0.0182897 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 5.52 vpr 62.57 MiB -1 -1 0.17 17512 1 0.03 -1 -1 30160 -1 -1 18 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 24.0 MiB 0.70 581 9540 3893 5214 433 62.6 MiB 0.08 0.00 3.25804 -101.918 -3.25804 3.25804 0.67 0.00055774 0.000518787 0.0339713 0.0315977 40 1989 36 6.99608e+06 264882 706193. 2443.58 2.09 0.156232 0.135292 26914 176310 -1 1716 21 1169 1835 175888 37843 3.24451 3.24451 -111.764 -3.24451 0 0 926341. 3205.33 0.23 0.07 0.12 -1 -1 0.23 0.0233008 0.0202391 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 5.34 vpr 62.37 MiB -1 -1 0.18 17124 1 0.03 -1 -1 30276 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 23.9 MiB 0.33 677 11234 4696 6284 254 62.4 MiB 0.09 0.00 3.31833 -109.934 -3.31833 3.31833 0.65 0.000570039 0.000530094 0.0434023 0.040418 38 2069 49 6.99608e+06 147157 678818. 2348.85 2.28 0.180239 0.157241 26626 170182 -1 1632 22 1173 1750 152835 32234 3.08097 3.08097 -114.127 -3.08097 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0242196 0.021089 58 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 7.88 vpr 62.59 MiB -1 -1 0.19 17588 1 0.03 -1 -1 30236 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 24.0 MiB 0.71 656 7596 1857 5260 479 62.6 MiB 0.07 0.00 3.30918 -105.476 -3.30918 3.30918 0.65 0.000581269 0.000540049 0.0298331 0.0277739 36 2831 44 6.99608e+06 191304 648988. 2245.63 4.49 0.169873 0.146982 26050 158493 -1 1963 22 1288 1769 137287 33344 3.28422 3.28422 -119.957 -3.28422 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0247293 0.0215313 69 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 7.23 vpr 62.71 MiB -1 -1 0.19 17356 1 0.03 -1 -1 30436 -1 -1 15 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 24.3 MiB 2.29 919 9036 2362 6094 580 62.7 MiB 0.08 0.00 2.93125 -106.214 -2.93125 2.93125 0.65 0.000599553 0.000557819 0.0358315 0.0333743 38 2275 29 6.99608e+06 220735 678818. 2348.85 2.20 0.160573 0.139395 26626 170182 -1 1906 20 1248 1666 131418 27524 2.54072 2.54072 -103.379 -2.54072 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0241256 0.0210397 77 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 6.30 vpr 63.09 MiB -1 -1 0.20 17852 1 0.03 -1 -1 30500 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 24.4 MiB 1.06 980 13324 5630 7408 286 63.1 MiB 0.13 0.00 4.30703 -125.875 -4.30703 4.30703 0.65 0.000710701 0.000656862 0.0597547 0.0555019 48 2769 27 6.99608e+06 235451 865456. 2994.66 2.31 0.209841 0.183906 28354 207349 -1 2305 21 1566 2487 218085 46245 3.85107 3.85107 -126.186 -3.85107 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.030632 0.0268359 92 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 7.46 vpr 63.14 MiB -1 -1 0.19 17556 1 0.03 -1 -1 30348 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 24.6 MiB 1.37 1014 12683 4657 5804 2222 63.1 MiB 0.13 0.00 4.21676 -146.737 -4.21676 4.21676 0.67 0.000757846 0.000702727 0.0563138 0.0522856 40 3377 27 6.99608e+06 279598 706193. 2443.58 3.26 0.214158 0.187747 26914 176310 -1 2683 22 2481 3505 303631 63000 4.1642 4.1642 -153.469 -4.1642 0 0 926341. 3205.33 0.23 0.11 0.14 -1 -1 0.23 0.0326596 0.028586 106 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 6.02 vpr 62.72 MiB -1 -1 0.20 17224 1 0.03 -1 -1 30144 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 24.1 MiB 1.13 880 9374 3265 4936 1173 62.7 MiB 0.08 0.00 3.62727 -120.557 -3.62727 3.62727 0.67 0.000597165 0.000555757 0.038331 0.035701 38 2274 42 6.99608e+06 161872 678818. 2348.85 2.20 0.172618 0.149955 26626 170182 -1 1870 21 1290 1839 154887 30757 3.07597 3.07597 -117.571 -3.07597 0 0 902133. 3121.57 0.24 0.04 0.14 -1 -1 0.24 0.013593 0.0120469 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 7.00 vpr 63.00 MiB -1 -1 0.19 17820 1 0.03 -1 -1 30336 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 24.3 MiB 1.41 969 14528 6235 7667 626 63.0 MiB 0.13 0.00 3.54759 -121.928 -3.54759 3.54759 0.65 0.000731267 0.00067358 0.0653388 0.0606558 44 3091 40 6.99608e+06 250167 787024. 2723.27 2.67 0.229408 0.200643 27778 195446 -1 2114 23 1808 2557 218723 48461 3.43406 3.43406 -125.843 -3.43406 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0329064 0.0287835 99 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.80 vpr 63.23 MiB -1 -1 0.21 17640 1 0.04 -1 -1 30276 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 24.8 MiB 1.39 989 9196 3129 4406 1661 63.2 MiB 0.09 0.00 5.24281 -163.942 -5.24281 5.24281 0.66 0.00072925 0.000676716 0.0419016 0.0389197 46 3107 34 6.99608e+06 250167 828058. 2865.25 3.43 0.201737 0.175578 28066 200906 -1 2427 24 2260 3261 322064 66079 4.9951 4.9951 -167.895 -4.9951 0 0 1.01997e+06 3529.29 0.27 0.11 0.17 -1 -1 0.27 0.0342895 0.0300129 104 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 8.67 vpr 63.34 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30560 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 24.6 MiB 2.80 930 9881 4037 5524 320 63.3 MiB 0.10 0.00 5.08213 -159.731 -5.08213 5.08213 0.70 0.000743378 0.000688872 0.044819 0.0416111 44 3191 49 6.99608e+06 264882 787024. 2723.27 2.86 0.21916 0.190455 27778 195446 -1 2262 22 1979 2791 227435 48423 4.92804 4.92804 -168.151 -4.92804 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0316742 0.0276781 103 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 17.58 vpr 63.05 MiB -1 -1 0.17 17652 1 0.03 -1 -1 30372 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 24.5 MiB 1.82 879 13768 5339 6393 2036 63.1 MiB 0.13 0.00 3.89582 -126.245 -3.89582 3.89582 0.66 0.000889752 0.000819347 0.0607543 0.0564047 48 2742 24 6.99608e+06 235451 865456. 2994.66 12.57 0.371755 0.321202 28354 207349 -1 2238 24 1769 2292 241247 52052 3.50102 3.50102 -127.38 -3.50102 0 0 1.05005e+06 3633.38 0.26 0.10 0.17 -1 -1 0.26 0.0322002 0.0280768 93 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 6.64 vpr 62.83 MiB -1 -1 0.17 17636 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 24.4 MiB 0.89 818 11864 4957 6528 379 62.8 MiB 0.10 0.00 3.99218 -112.33 -3.99218 3.99218 0.65 0.00061615 0.000572757 0.0463461 0.0431229 40 2655 45 6.99608e+06 206020 706193. 2443.58 3.00 0.191452 0.166815 26914 176310 -1 2076 22 1484 2121 208966 48190 3.79596 3.79596 -122.324 -3.79596 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0265654 0.0231381 72 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 6.50 vpr 63.28 MiB -1 -1 0.17 18060 1 0.03 -1 -1 30368 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 25.0 MiB 1.22 1337 8083 1871 5905 307 63.3 MiB 0.11 0.00 5.02 -170.696 -5.02 5.02 0.65 0.000867354 0.000806082 0.0409791 0.0381295 50 3572 29 6.99608e+06 309029 902133. 3121.57 2.27 0.220069 0.191265 28642 213929 -1 3217 19 2341 3402 287769 59163 5.59054 5.59054 -190.004 -5.59054 0 0 1.08113e+06 3740.92 0.27 0.11 0.18 -1 -1 0.27 0.0334943 0.0294083 129 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 7.25 vpr 62.50 MiB -1 -1 0.17 17640 1 0.03 -1 -1 30104 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 24.0 MiB 2.75 589 8599 2844 4344 1411 62.5 MiB 0.07 0.00 3.01 -97.4254 -3.01 3.01 0.65 0.000565415 0.000525496 0.0334081 0.0311007 40 1560 21 6.99608e+06 161872 706193. 2443.58 1.78 0.145154 0.126143 26914 176310 -1 1412 22 1176 1593 130059 30761 2.93162 2.93162 -102.009 -2.93162 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0242087 0.0210279 65 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.20 vpr 62.97 MiB -1 -1 0.21 17620 1 0.03 -1 -1 30160 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 24.5 MiB 0.64 792 13524 5096 6588 1840 63.0 MiB 0.12 0.00 4.60267 -142.66 -4.60267 4.60267 0.67 0.000709298 0.000656601 0.0586344 0.0544908 52 2817 39 6.99608e+06 220735 926341. 3205.33 2.49 0.212219 0.185639 29218 227130 -1 1873 23 1635 2275 182344 41764 4.12671 4.12671 -138.837 -4.12671 0 0 1.14541e+06 3963.36 0.28 0.08 0.19 -1 -1 0.28 0.0304021 0.0265221 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 6.63 vpr 62.99 MiB -1 -1 0.18 17772 1 0.03 -1 -1 30364 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 24.4 MiB 1.21 1020 12416 4555 6119 1742 63.0 MiB 0.12 0.00 3.83208 -127.177 -3.83208 3.83208 0.66 0.000700482 0.000651015 0.0538553 0.0500216 42 3450 36 6.99608e+06 220735 744469. 2576.02 2.53 0.205946 0.179989 27202 183097 -1 2539 19 1614 2491 229704 48395 3.46042 3.46042 -128.596 -3.46042 0 0 949917. 3286.91 0.23 0.09 0.14 -1 -1 0.23 0.0269522 0.0236179 91 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 6.59 vpr 62.82 MiB -1 -1 0.17 17120 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 24.2 MiB 0.75 673 10228 2970 5232 2026 62.8 MiB 0.09 0.00 4.31309 -118.378 -4.31309 4.31309 0.66 0.000629725 0.000585216 0.0413503 0.0384792 40 2459 37 6.99608e+06 235451 706193. 2443.58 3.02 0.179494 0.156409 26914 176310 -1 1893 23 1363 2339 206113 46973 4.01142 4.01142 -127.274 -4.01142 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0281411 0.0245433 68 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 14.02 vpr 62.92 MiB -1 -1 0.16 17576 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 24.3 MiB 1.26 915 11571 4863 6343 365 62.9 MiB 0.11 0.00 4.31005 -133.816 -4.31005 4.31005 0.66 0.000699585 0.000650196 0.0511905 0.0475875 40 2850 30 6.99608e+06 220735 706193. 2443.58 9.74 0.339468 0.292667 26914 176310 -1 2174 25 1722 2282 317601 125270 3.58916 3.58916 -127.554 -3.58916 0 0 926341. 3205.33 0.23 0.13 0.19 -1 -1 0.23 0.0335984 0.0293302 90 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.01 vpr 63.00 MiB -1 -1 0.20 17612 1 0.03 -1 -1 30296 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 24.4 MiB 1.57 1099 13430 4920 6010 2500 63.0 MiB 0.13 0.00 3.65969 -129.38 -3.65969 3.65969 0.64 0.00071918 0.000668346 0.0595415 0.0553569 40 2995 22 6.99608e+06 220735 706193. 2443.58 2.53 0.201385 0.176702 26914 176310 -1 2604 43 2315 3605 725612 310216 3.48731 3.48731 -133.555 -3.48731 0 0 926341. 3205.33 0.23 0.23 0.15 -1 -1 0.23 0.0526645 0.0455027 92 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 9.09 vpr 63.14 MiB -1 -1 0.19 17636 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 24.6 MiB 2.19 1101 15216 5672 7066 2478 63.1 MiB 0.16 0.00 3.74401 -128.073 -3.74401 3.74401 0.67 0.000741785 0.000689112 0.0756486 0.0701656 38 3558 41 6.99608e+06 235451 678818. 2348.85 3.98 0.24546 0.215182 26626 170182 -1 2765 18 1860 2465 189085 40352 3.60011 3.60011 -137.797 -3.60011 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0277996 0.0244629 101 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 6.58 vpr 62.68 MiB -1 -1 0.15 17420 1 0.03 -1 -1 30340 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 24.2 MiB 0.92 743 11034 4121 5253 1660 62.7 MiB 0.10 0.00 4.35583 -118.93 -4.35583 4.35583 0.66 0.000647386 0.000601633 0.0446885 0.0415612 40 2999 39 6.99608e+06 206020 706193. 2443.58 2.86 0.188125 0.163717 26914 176310 -1 2275 23 1507 2283 235552 56739 4.97157 4.97157 -142.8 -4.97157 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0286541 0.0249902 74 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 6.76 vpr 62.86 MiB -1 -1 0.14 17692 1 0.04 -1 -1 30548 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 24.3 MiB 1.92 793 9042 2962 4450 1630 62.9 MiB 0.08 0.00 4.21168 -126.242 -4.21168 4.21168 0.65 0.000664396 0.000618019 0.0389467 0.0362381 42 3421 45 6.99608e+06 191304 744469. 2576.02 2.11 0.191406 0.166327 27202 183097 -1 2058 21 1737 2434 191590 46230 4.02242 4.02242 -132.286 -4.02242 0 0 949917. 3286.91 0.23 0.08 0.16 -1 -1 0.23 0.0274427 0.0239946 81 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 8.03 vpr 62.99 MiB -1 -1 0.16 17516 1 0.03 -1 -1 30432 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 24.7 MiB 1.13 950 10726 4120 5384 1222 63.0 MiB 0.11 0.00 4.31211 -136.261 -4.31211 4.31211 0.68 0.000721862 0.000670106 0.0485786 0.0451099 48 3520 36 6.99608e+06 235451 865456. 2994.66 3.87 0.212224 0.185312 28354 207349 -1 2537 37 2842 4365 548908 166410 4.26266 4.26266 -143.635 -4.26266 0 0 1.05005e+06 3633.38 0.26 0.18 0.18 -1 -1 0.26 0.0470767 0.0407036 99 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 7.44 vpr 63.28 MiB -1 -1 0.20 17904 1 0.03 -1 -1 30268 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 24.7 MiB 1.23 977 12980 5460 6998 522 63.3 MiB 0.11 0.00 3.94476 -129.858 -3.94476 3.94476 0.76 0.000578821 0.00053036 0.0458723 0.0420673 54 3499 42 6.99608e+06 235451 949917. 3286.91 3.09 0.218195 0.189577 29506 232905 -1 2498 22 2198 3206 290016 64071 3.76882 3.76882 -135.138 -3.76882 0 0 1.17392e+06 4061.99 0.28 0.10 0.19 -1 -1 0.28 0.0322722 0.0282144 104 77 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 5.62 vpr 62.59 MiB -1 -1 0.14 17484 1 0.03 -1 -1 30092 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 24.1 MiB 0.56 645 10769 4489 5977 303 62.6 MiB 0.09 0.00 3.21628 -99.3334 -3.21628 3.21628 0.69 0.000561109 0.000522329 0.0406853 0.0378772 38 1991 25 6.99608e+06 147157 678818. 2348.85 2.38 0.152694 0.13314 26626 170182 -1 1530 21 1168 1592 107224 24373 2.80227 2.80227 -98.3658 -2.80227 0 0 902133. 3121.57 0.22 0.06 0.12 -1 -1 0.22 0.0231136 0.02015 60 23 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.29 vpr 63.00 MiB -1 -1 0.11 17624 1 0.03 -1 -1 30440 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 24.4 MiB 0.84 827 10726 4440 5997 289 63.0 MiB 0.09 0.00 4.06528 -146.791 -4.06528 4.06528 0.65 0.000546015 0.000500797 0.040435 0.0373449 46 2656 31 6.99608e+06 220735 828058. 2865.25 2.40 0.184348 0.160138 28066 200906 -1 1977 20 1982 2630 211157 45567 3.77505 3.77505 -141.677 -3.77505 0 0 1.01997e+06 3529.29 0.25 0.09 0.20 -1 -1 0.25 0.0272795 0.0238617 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 7.37 vpr 63.00 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30344 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 24.3 MiB 0.92 950 12808 5316 6896 596 63.0 MiB 0.12 0.00 4.80548 -149.393 -4.80548 4.80548 0.87 0.00077026 0.000715053 0.0587294 0.054464 50 3454 27 6.99608e+06 235451 902133. 3121.57 3.18 0.218544 0.191526 28642 213929 -1 2403 29 2499 3801 392900 102108 5.00186 5.00186 -162.712 -5.00186 0 0 1.08113e+06 3740.92 0.27 0.14 0.18 -1 -1 0.27 0.0409383 0.0355878 98 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.03 vpr 62.94 MiB -1 -1 0.12 17568 1 0.03 -1 -1 30416 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 24.4 MiB 0.58 849 13599 4722 6429 2448 62.9 MiB 0.13 0.00 4.35389 -139.539 -4.35389 4.35389 0.76 0.000690674 0.000641614 0.0583264 0.0542541 38 2795 34 6.99608e+06 220735 678818. 2348.85 3.38 0.206331 0.180893 26626 170182 -1 1911 22 1727 2347 177407 38768 3.50386 3.50386 -131.231 -3.50386 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0299123 0.0261727 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 7.01 vpr 62.63 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30340 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 23.9 MiB 1.18 640 11474 4735 6197 542 62.6 MiB 0.09 0.00 3.65345 -112.727 -3.65345 3.65345 0.69 0.00059455 0.000551853 0.0404086 0.0375798 48 1940 24 6.99608e+06 294314 865456. 2994.66 2.98 0.163032 0.142375 28354 207349 -1 1580 19 1112 1760 198312 48286 3.25871 3.25871 -116.61 -3.25871 0 0 1.05005e+06 3633.38 0.26 0.07 0.17 -1 -1 0.26 0.0227545 0.0198725 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 9.68 vpr 63.56 MiB -1 -1 0.13 17916 1 0.03 -1 -1 30364 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 24.8 MiB 1.49 1528 15924 5227 8931 1766 63.6 MiB 0.16 0.00 6.09323 -187.636 -6.09323 6.09323 0.65 0.000829382 0.00077073 0.0778385 0.072384 40 4257 42 6.99608e+06 264882 706193. 2443.58 5.27 0.272487 0.239116 26914 176310 -1 3547 23 2806 4085 457786 97175 5.74254 5.74254 -196.746 -5.74254 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0371468 0.0324564 116 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 6.53 vpr 63.02 MiB -1 -1 0.17 17532 1 0.03 -1 -1 30328 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 24.5 MiB 0.58 768 13524 5053 6623 1848 63.0 MiB 0.12 0.00 4.76624 -142.397 -4.76624 4.76624 0.65 0.000685789 0.000636029 0.058438 0.0542837 46 2785 27 6.99608e+06 206020 828058. 2865.25 3.10 0.203429 0.178504 28066 200906 -1 1845 20 1494 2008 149110 34618 4.17065 4.17065 -143.287 -4.17065 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0274727 0.0240803 83 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 5.19 vpr 62.34 MiB -1 -1 0.16 17276 1 0.03 -1 -1 30448 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 23.7 MiB 0.24 516 10672 4080 5320 1272 62.3 MiB 0.08 0.00 2.96036 -91.6204 -2.96036 2.96036 0.67 0.000544158 0.000503769 0.0372841 0.034722 40 1546 38 6.99608e+06 191304 706193. 2443.58 2.19 0.156999 0.136448 26914 176310 -1 1189 18 859 1340 90198 25029 2.86132 2.86132 -98.2156 -2.86132 0 0 926341. 3205.33 0.23 0.05 0.16 -1 -1 0.23 0.0198135 0.017302 51 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 7.79 vpr 62.93 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30284 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 24.4 MiB 1.19 903 15560 6646 7056 1858 62.9 MiB 0.13 0.00 4.75332 -131.249 -4.75332 4.75332 0.65 0.000717682 0.000666165 0.0674404 0.0626237 48 2982 46 6.99608e+06 235451 865456. 2994.66 3.66 0.225944 0.198543 28354 207349 -1 2202 23 1722 2767 230689 51369 4.63516 4.63516 -141.993 -4.63516 0 0 1.05005e+06 3633.38 0.26 0.09 0.18 -1 -1 0.26 0.0314793 0.0275181 85 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.65 vpr 62.47 MiB -1 -1 0.19 17044 1 0.03 -1 -1 30120 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 24.0 MiB 0.80 493 9540 2740 5276 1524 62.5 MiB 0.08 0.00 2.966 -97.1273 -2.966 2.966 0.65 0.000560359 0.00052166 0.0349643 0.032559 38 1851 39 6.99608e+06 206020 678818. 2348.85 2.24 0.158163 0.137311 26626 170182 -1 1279 23 1077 1568 111684 26906 3.55017 3.55017 -109.108 -3.55017 0 0 902133. 3121.57 0.22 0.06 0.11 -1 -1 0.22 0.0247727 0.0215445 57 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 6.40 vpr 62.58 MiB -1 -1 0.18 17244 1 0.02 -1 -1 30408 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 24.0 MiB 0.55 768 9081 3737 5047 297 62.6 MiB 0.08 0.00 3.80347 -118.428 -3.80347 3.80347 0.66 0.000592428 0.000550704 0.0360511 0.0335471 38 2446 44 6.99608e+06 191304 678818. 2348.85 3.01 0.17141 0.14857 26626 170182 -1 1772 21 1331 1863 163805 32644 3.34751 3.34751 -114.704 -3.34751 0 0 902133. 3121.57 0.31 0.07 0.17 -1 -1 0.31 0.0216845 0.019161 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.78 vpr 62.96 MiB -1 -1 0.14 17624 1 0.03 -1 -1 30304 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 24.4 MiB 1.57 956 12416 5112 6468 836 63.0 MiB 0.12 0.00 4.12666 -129.088 -4.12666 4.12666 0.66 0.000692613 0.000643637 0.0535127 0.0497225 38 3346 46 6.99608e+06 264882 678818. 2348.85 4.37 0.221922 0.193697 26626 170182 -1 2546 22 1925 2830 259948 53297 4.4105 4.4105 -145.109 -4.4105 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0299975 0.0261567 97 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 7.50 vpr 62.97 MiB -1 -1 0.20 17900 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 24.4 MiB 1.31 974 13599 5339 6861 1399 63.0 MiB 0.13 0.00 4.25698 -140.266 -4.25698 4.25698 0.65 0.000709473 0.000658853 0.0596651 0.0554408 38 3070 41 6.99608e+06 220735 678818. 2348.85 3.31 0.221161 0.193626 26626 170182 -1 2342 23 1928 2638 217168 45954 4.67035 4.67035 -156.564 -4.67035 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0320562 0.0280404 93 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 8.59 vpr 63.12 MiB -1 -1 0.15 17856 1 0.03 -1 -1 30268 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 24.5 MiB 1.96 1087 13768 5458 5698 2612 63.1 MiB 0.13 0.00 4.58577 -147.33 -4.58577 4.58577 0.65 0.000702658 0.000652663 0.0599024 0.0556844 38 3125 30 6.99608e+06 220735 678818. 2348.85 3.84 0.210445 0.184512 26626 170182 -1 2517 19 1814 2602 203364 41786 4.42561 4.42561 -152.77 -4.42561 0 0 902133. 3121.57 0.22 0.09 0.17 -1 -1 0.22 0.0278125 0.0244508 90 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 6.57 vpr 62.51 MiB -1 -1 0.14 17548 1 0.03 -1 -1 30292 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 23.9 MiB 1.79 854 11609 4663 6043 903 62.5 MiB 0.10 0.00 3.95082 -130.122 -3.95082 3.95082 0.65 0.000591156 0.000550138 0.0459206 0.0427933 38 2338 24 6.99608e+06 161872 678818. 2348.85 2.06 0.165587 0.144644 26626 170182 -1 1952 23 1202 1634 138008 27635 3.34956 3.34956 -121.518 -3.34956 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0263044 0.0229032 67 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 6.08 vpr 63.09 MiB -1 -1 0.19 17692 1 0.03 -1 -1 30456 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 24.5 MiB 0.86 785 11813 4965 6422 426 63.1 MiB 0.06 0.00 3.70143 -122.026 -3.70143 3.70143 0.64 0.000289401 0.000265986 0.0230175 0.0212171 46 2466 44 6.99608e+06 206020 828058. 2865.25 2.44 0.164862 0.142171 28066 200906 -1 1742 24 1592 2267 169951 39702 3.57132 3.57132 -119.748 -3.57132 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0293753 0.0255684 86 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 6.42 vpr 62.93 MiB -1 -1 0.10 17664 1 0.03 -1 -1 30292 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 24.3 MiB 1.17 809 10756 2943 5618 2195 62.9 MiB 0.10 0.00 3.4598 -111.751 -3.4598 3.4598 0.71 0.000663789 0.00061684 0.0431356 0.0401287 46 2326 24 6.99608e+06 279598 828058. 2865.25 2.45 0.178412 0.155705 28066 200906 -1 1700 21 1475 2174 152653 35067 3.29957 3.29957 -109.769 -3.29957 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0275002 0.0239915 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 5.67 vpr 62.71 MiB -1 -1 0.19 17428 1 0.03 -1 -1 30540 -1 -1 17 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 24.0 MiB 0.41 678 13280 5850 6635 795 62.7 MiB 0.10 0.00 3.68935 -104.602 -3.68935 3.68935 0.65 0.000589552 0.000548237 0.0504742 0.0469753 42 2430 50 6.99608e+06 250167 744469. 2576.02 2.41 0.191404 0.166867 27202 183097 -1 1806 21 1391 2073 190827 45683 3.81422 3.81422 -114.081 -3.81422 0 0 949917. 3286.91 0.24 0.08 0.16 -1 -1 0.24 0.024622 0.0214837 71 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 7.06 vpr 62.93 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30436 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 24.4 MiB 1.78 779 10020 4070 5537 413 62.9 MiB 0.09 0.00 4.56081 -142.799 -4.56081 4.56081 0.66 0.000637531 0.000591586 0.0414039 0.0384751 44 2750 43 6.99608e+06 220735 787024. 2723.27 2.43 0.186711 0.162136 27778 195446 -1 1920 23 1788 2373 198004 44117 3.97955 3.97955 -138.289 -3.97955 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0293046 0.0255495 87 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.32 vpr 62.83 MiB -1 -1 0.10 17816 1 0.03 -1 -1 30120 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 24.3 MiB 0.82 988 11366 4377 5078 1911 62.8 MiB 0.11 0.00 3.4477 -126.272 -3.4477 3.4477 0.67 0.000671154 0.00062365 0.0490727 0.0456342 40 3223 42 6.99608e+06 206020 706193. 2443.58 3.67 0.205865 0.179496 26914 176310 -1 2772 21 2024 2787 332780 64435 3.28857 3.28857 -136.411 -3.28857 0 0 926341. 3205.33 0.25 0.10 0.15 -1 -1 0.25 0.0275186 0.0240232 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.23 vpr 62.65 MiB -1 -1 0.16 17160 1 0.03 -1 -1 30372 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.2 MiB 0.36 735 13335 5144 6746 1445 62.7 MiB 0.10 0.00 4.50448 -121.497 -4.50448 4.50448 0.69 0.000634984 0.000590302 0.0463856 0.0431034 46 2320 24 6.99608e+06 353176 828058. 2865.25 2.97 0.173968 0.15204 28066 200906 -1 1726 19 1053 1905 137788 31995 3.80592 3.80592 -119.773 -3.80592 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0240112 0.0210261 74 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 7.02 vpr 62.98 MiB -1 -1 0.19 17772 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 24.4 MiB 1.81 849 9872 4071 5471 330 63.0 MiB 0.10 0.00 4.41391 -145.413 -4.41391 4.41391 0.68 0.00071632 0.000666525 0.0446559 0.0415213 44 3096 30 6.99608e+06 206020 787024. 2723.27 2.28 0.191446 0.16701 27778 195446 -1 2236 23 1920 2868 210913 47371 4.3396 4.3396 -149.501 -4.3396 0 0 997811. 3452.63 0.24 0.09 0.20 -1 -1 0.24 0.0315453 0.0275922 86 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 8.89 vpr 63.16 MiB -1 -1 0.13 17900 1 0.03 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 24.7 MiB 0.72 1031 9706 3955 5323 428 63.2 MiB 0.12 0.00 5.10216 -163.017 -5.10216 5.10216 0.66 0.000748305 0.000695048 0.0540048 0.0501096 48 3809 38 6.99608e+06 250167 865456. 2994.66 5.23 0.224254 0.196219 28354 207349 -1 2651 28 2478 3481 495235 132429 5.38994 5.38994 -176.091 -5.38994 0 0 1.05005e+06 3633.38 0.26 0.16 0.18 -1 -1 0.26 0.0388176 0.033795 102 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 6.39 vpr 63.29 MiB -1 -1 0.18 17620 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 24.8 MiB 0.78 1043 9881 4045 5563 273 63.3 MiB 0.10 0.00 4.39921 -147.12 -4.39921 4.39921 0.65 0.000761078 0.000707069 0.0451104 0.0419196 46 3556 37 6.99608e+06 250167 828058. 2865.25 2.65 0.207131 0.180254 28066 200906 -1 2542 22 1921 2813 246127 50838 4.2931 4.2931 -151.36 -4.2931 0 0 1.01997e+06 3529.29 0.25 0.10 0.19 -1 -1 0.25 0.032777 0.0286597 104 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.46 vpr 62.95 MiB -1 -1 0.11 17380 1 0.03 -1 -1 30124 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 24.3 MiB 0.83 639 8765 3407 4448 910 62.9 MiB 0.08 0.00 4.31695 -124.149 -4.31695 4.31695 0.65 0.000582253 0.000541545 0.0343352 0.0319435 42 2236 38 6.99608e+06 191304 744469. 2576.02 1.98 0.1631 0.141388 27202 183097 -1 1564 19 1116 1583 126166 28470 3.33556 3.33556 -115.866 -3.33556 0 0 949917. 3286.91 0.23 0.08 0.16 -1 -1 0.23 0.025839 0.0226659 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 6.28 vpr 63.16 MiB -1 -1 0.18 17556 1 0.03 -1 -1 30408 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 24.8 MiB 0.93 919 12808 4622 5804 2382 63.2 MiB 0.11 0.00 5.00926 -154.589 -5.00926 5.00926 0.65 0.000736725 0.000681778 0.0573959 0.0533348 48 2897 47 6.99608e+06 264882 865456. 2994.66 2.38 0.227945 0.199108 28354 207349 -1 2329 23 2356 3266 309320 75619 4.83874 4.83874 -164.15 -4.83874 0 0 1.05005e+06 3633.38 0.26 0.11 0.17 -1 -1 0.26 0.0327655 0.0286383 104 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 7.03 vpr 62.82 MiB -1 -1 0.10 17516 1 0.03 -1 -1 30324 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 24.3 MiB 1.03 773 12860 5275 6775 810 62.8 MiB 0.12 0.00 4.8046 -140.908 -4.8046 4.8046 0.65 0.000692563 0.000643458 0.0553573 0.0514097 48 2906 29 6.99608e+06 206020 865456. 2994.66 3.08 0.199428 0.174578 28354 207349 -1 2232 21 1751 2784 284527 71100 4.13436 4.13436 -142.551 -4.13436 0 0 1.05005e+06 3633.38 0.26 0.10 0.17 -1 -1 0.26 0.0287989 0.025203 82 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 18.19 vpr 63.17 MiB -1 -1 0.19 17808 1 0.03 -1 -1 30468 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 24.6 MiB 1.16 794 10228 3166 5486 1576 63.2 MiB 0.10 0.00 5.19565 -143.212 -5.19565 5.19565 0.65 0.000684069 0.000636139 0.0432192 0.0402109 38 3224 38 6.99608e+06 250167 678818. 2348.85 14.14 0.337744 0.291274 26626 170182 -1 2195 21 1511 2171 195678 43019 4.59296 4.59296 -149.718 -4.59296 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0287242 0.0251584 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 9.32 vpr 63.41 MiB -1 -1 0.19 17584 1 0.03 -1 -1 30348 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 24.9 MiB 1.93 966 13788 4937 6208 2643 63.4 MiB 0.12 0.00 4.24398 -133.079 -4.24398 4.24398 0.66 0.00072295 0.000671863 0.058792 0.0546187 46 3311 48 6.99608e+06 294314 828058. 2865.25 4.42 0.234065 0.204525 28066 200906 -1 2374 27 2588 3623 402761 112973 4.3885 4.3885 -146.75 -4.3885 0 0 1.01997e+06 3529.29 0.26 0.14 0.16 -1 -1 0.26 0.0365895 0.0317944 108 83 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 7.62 vpr 63.11 MiB -1 -1 0.19 17772 1 0.03 -1 -1 30216 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 24.5 MiB 1.51 1164 15481 5166 8845 1470 63.1 MiB 0.14 0.00 4.66597 -153.274 -4.66597 4.66597 0.65 0.000727627 0.000676486 0.066696 0.0618882 40 3016 25 6.99608e+06 250167 706193. 2443.58 3.14 0.212622 0.187156 26914 176310 -1 2766 22 2077 3028 306564 59776 4.30941 4.30941 -157.067 -4.30941 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0307928 0.0269057 95 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 20.05 vpr 63.16 MiB -1 -1 0.21 17656 1 0.03 -1 -1 30380 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 24.7 MiB 2.24 970 14431 6168 7633 630 63.2 MiB 0.13 0.00 3.80498 -123.528 -3.80498 3.80498 0.65 0.000718963 0.000667622 0.0632767 0.0587034 46 3095 47 6.99608e+06 294314 828058. 2865.25 14.76 0.376855 0.325647 28066 200906 -1 2327 21 1984 2580 225360 47479 3.58866 3.58866 -125.19 -3.58866 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0306293 0.0268444 109 85 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 5.63 vpr 62.44 MiB -1 -1 0.16 17188 1 0.02 -1 -1 30312 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 23.8 MiB 1.06 673 8289 1936 5635 718 62.4 MiB 0.07 0.00 3.54309 -104.459 -3.54309 3.54309 0.67 0.0005535 0.000515542 0.0315083 0.0293754 36 2073 30 6.99608e+06 147157 648988. 2245.63 1.82 0.147728 0.128257 26050 158493 -1 1713 23 1167 1811 179356 40626 3.29327 3.29327 -116.101 -3.29327 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0243935 0.0212382 54 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 7.60 vpr 63.27 MiB -1 -1 0.20 17852 1 0.03 -1 -1 30380 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 24.6 MiB 0.63 998 13731 5201 6084 2446 63.3 MiB 0.13 0.00 5.23946 -166.614 -5.23946 5.23946 0.66 0.000730774 0.000678447 0.05997 0.0556821 46 3007 25 6.99608e+06 250167 828058. 2865.25 3.92 0.213896 0.187485 28066 200906 -1 2369 22 2125 3007 423869 125683 4.61914 4.61914 -158.329 -4.61914 0 0 1.01997e+06 3529.29 0.25 0.13 0.17 -1 -1 0.25 0.0327452 0.0287837 100 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 8.23 vpr 63.02 MiB -1 -1 0.19 17588 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 24.5 MiB 0.90 1023 11631 4065 5883 1683 63.0 MiB 0.12 0.00 4.8947 -165.145 -4.8947 4.8947 0.65 0.000765973 0.000710989 0.0536444 0.0498572 40 3825 35 6.99608e+06 250167 706193. 2443.58 4.39 0.219319 0.191464 26914 176310 -1 3090 21 2784 3862 393065 81021 5.40114 5.40114 -190.623 -5.40114 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0319974 0.0280209 109 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 5.89 vpr 62.53 MiB -1 -1 0.17 17420 1 0.02 -1 -1 30184 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 23.9 MiB 0.91 649 12083 5091 6584 408 62.5 MiB 0.10 0.00 3.80367 -112.996 -3.80367 3.80367 0.65 0.000580979 0.000540557 0.0464168 0.0431791 42 2423 39 6.99608e+06 161872 744469. 2576.02 2.26 0.175892 0.153248 27202 183097 -1 1721 23 1462 1873 165965 39160 3.57511 3.57511 -118.197 -3.57511 0 0 949917. 3286.91 0.27 0.08 0.14 -1 -1 0.27 0.0258517 0.0224824 69 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 5.07 vpr 62.37 MiB -1 -1 0.17 17408 1 0.02 -1 -1 30352 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 23.9 MiB 0.45 500 9836 4038 5376 422 62.4 MiB 0.08 0.00 3.32523 -100.829 -3.32523 3.32523 0.65 0.000559886 0.000520829 0.0368674 0.0343381 44 1930 39 6.99608e+06 191304 787024. 2723.27 1.91 0.160423 0.139435 27778 195446 -1 1352 25 1156 1781 120042 29179 3.25447 3.25447 -106.844 -3.25447 0 0 997811. 3452.63 0.25 0.07 0.12 -1 -1 0.25 0.0263046 0.0228483 56 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 5.76 vpr 63.05 MiB -1 -1 0.16 17852 1 0.06 -1 -1 30460 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 24.4 MiB 0.76 868 11909 4701 5758 1450 63.1 MiB 0.11 0.00 4.58703 -149.04 -4.58703 4.58703 0.65 0.000698327 0.000648675 0.0518935 0.0482489 46 2684 28 6.99608e+06 220735 828058. 2865.25 1.96 0.194394 0.169904 28066 200906 -1 1970 30 1883 2462 174865 39592 4.33525 4.33525 -150.653 -4.33525 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0467776 0.0414591 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 7.42 vpr 63.10 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30372 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 24.5 MiB 1.59 896 11571 3933 6047 1591 63.1 MiB 0.11 0.00 4.54977 -137.477 -4.54977 4.54977 0.65 0.000706966 0.0006571 0.0510134 0.0474163 46 2917 48 6.99608e+06 220735 828058. 2865.25 2.96 0.222071 0.193837 28066 200906 -1 2011 23 1738 2395 192670 42992 4.31425 4.31425 -142.349 -4.31425 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0315714 0.0276024 95 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 16.93 vpr 62.98 MiB -1 -1 0.13 17344 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.5 MiB 0.38 847 13556 4796 7036 1724 63.0 MiB 0.13 0.00 4.71017 -139.049 -4.71017 4.71017 0.67 0.000864048 0.000803232 0.0599087 0.0557304 44 3122 48 6.99608e+06 250167 787024. 2723.27 13.63 0.365547 0.316877 27778 195446 -1 2155 23 1937 3243 335429 101756 4.32031 4.32031 -143.248 -4.32031 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0318997 0.0278578 83 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 6.02 vpr 62.84 MiB -1 -1 0.17 17832 1 0.04 -1 -1 30216 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 24.3 MiB 1.05 742 9042 3157 4137 1748 62.8 MiB 0.08 0.00 3.64737 -104.512 -3.64737 3.64737 0.67 0.000639431 0.000593899 0.0376378 0.0350457 48 2323 27 6.99608e+06 235451 865456. 2994.66 2.09 0.17116 0.148798 28354 207349 -1 2005 21 1525 2217 196585 45075 3.21422 3.21422 -112.086 -3.21422 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0265794 0.0231833 86 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 6.52 vpr 62.57 MiB -1 -1 0.19 17508 1 0.02 -1 -1 30604 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 24.0 MiB 0.84 490 9374 3097 4710 1567 62.6 MiB 0.07 0.00 3.44679 -100.328 -3.44679 3.44679 0.68 0.000537039 0.00049877 0.0353775 0.0329614 38 1628 40 6.99608e+06 220735 678818. 2348.85 2.93 0.162662 0.141151 26626 170182 -1 1015 22 964 1436 85969 21901 3.78332 3.78332 -105.678 -3.78332 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.023488 0.020372 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 9.21 vpr 63.32 MiB -1 -1 0.11 17808 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 24.8 MiB 0.74 1154 16102 6967 8731 404 63.3 MiB 0.16 0.00 4.18254 -144.202 -4.18254 4.18254 0.67 0.000806097 0.000748724 0.0764043 0.0708309 46 4050 36 6.99608e+06 264882 828058. 2865.25 5.68 0.256807 0.225143 28066 200906 -1 2908 20 2381 3583 293313 62159 4.25831 4.25831 -148.246 -4.25831 0 0 1.01997e+06 3529.29 0.24 0.06 0.11 -1 -1 0.24 0.0182358 0.0162626 111 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 8.61 vpr 63.32 MiB -1 -1 0.13 17644 1 0.03 -1 -1 30376 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 24.5 MiB 1.64 1126 13496 4705 6380 2411 63.3 MiB 0.13 0.00 5.49463 -159.408 -5.49463 5.49463 0.66 0.000719749 0.000669065 0.0587228 0.0545707 38 3177 46 6.99608e+06 250167 678818. 2348.85 4.10 0.227872 0.19924 26626 170182 -1 2724 25 2603 3642 402783 105038 4.74444 4.74444 -164.451 -4.74444 0 0 902133. 3121.57 0.23 0.13 0.14 -1 -1 0.23 0.0338388 0.0295318 100 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 5.53 vpr 62.82 MiB -1 -1 0.15 17776 1 0.03 -1 -1 30356 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 24.3 MiB 0.86 926 14354 6182 7861 311 62.8 MiB 0.12 0.00 4.28347 -151.804 -4.28347 4.28347 0.65 0.000654957 0.000607485 0.0590367 0.0548058 48 2248 21 6.99608e+06 206020 865456. 2994.66 1.82 0.186872 0.16381 28354 207349 -1 1928 19 1425 1785 146446 31779 3.62281 3.62281 -138.169 -3.62281 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0259765 0.0227984 91 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 5.65 vpr 62.88 MiB -1 -1 0.18 17888 1 0.03 -1 -1 30480 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 24.4 MiB 0.64 1057 13599 5180 6238 2181 62.9 MiB 0.12 0.00 4.11318 -134.456 -4.11318 4.11318 0.66 0.00067425 0.000627042 0.0569133 0.0529213 38 2724 25 6.99608e+06 220735 678818. 2348.85 2.21 0.19093 0.167798 26626 170182 -1 2270 21 1412 1911 157008 31445 3.87982 3.87982 -137.691 -3.87982 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0279591 0.0244681 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 6.57 vpr 62.94 MiB -1 -1 0.14 17668 1 0.03 -1 -1 30172 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 24.3 MiB 1.33 870 12120 4959 6494 667 62.9 MiB 0.11 0.00 4.09557 -123.875 -4.09557 4.09557 0.66 0.000737891 0.000684914 0.0547459 0.0508733 42 3474 41 6.99608e+06 250167 744469. 2576.02 2.40 0.219824 0.192279 27202 183097 -1 2179 21 2026 2841 215668 48460 4.10972 4.10972 -131.468 -4.10972 0 0 949917. 3286.91 0.24 0.09 0.16 -1 -1 0.24 0.0316806 0.027742 97 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 6.59 vpr 63.04 MiB -1 -1 0.17 17644 1 0.03 -1 -1 30356 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 24.5 MiB 1.33 825 9205 3109 4150 1946 63.0 MiB 0.09 0.00 3.47679 -109.391 -3.47679 3.47679 0.66 0.000660169 0.000612546 0.0396477 0.0368606 46 2602 31 6.99608e+06 250167 828058. 2865.25 2.41 0.184165 0.160412 28066 200906 -1 1955 25 1736 2700 204746 44982 2.98316 2.98316 -108.983 -2.98316 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0314945 0.0273849 88 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.15 vpr 62.98 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30464 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 24.4 MiB 0.77 918 10536 3621 5008 1907 63.0 MiB 0.11 0.00 4.39601 -144.18 -4.39601 4.39601 0.66 0.000704054 0.000654508 0.0471635 0.0437528 46 3353 30 6.99608e+06 206020 828058. 2865.25 3.42 0.199608 0.174559 28066 200906 -1 2447 22 1820 2659 238030 50430 4.86281 4.86281 -154.129 -4.86281 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0306618 0.0268286 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 21.24 vpr 63.11 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30088 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 24.7 MiB 2.17 942 12292 4666 5756 1870 63.1 MiB 0.12 0.00 3.70017 -126.602 -3.70017 3.70017 0.68 0.000761869 0.000708274 0.0570406 0.0530425 48 3168 40 6.99608e+06 235451 865456. 2994.66 15.99 0.382548 0.330747 28354 207349 -1 2445 29 2504 3455 343966 87145 3.56046 3.56046 -132.854 -3.56046 0 0 1.05005e+06 3633.38 0.26 0.13 0.19 -1 -1 0.26 0.040649 0.0354074 103 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 5.69 vpr 62.69 MiB -1 -1 0.18 17548 1 0.03 -1 -1 30240 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 24.1 MiB 1.18 638 10503 3616 4659 2228 62.7 MiB 0.09 0.00 4.33189 -121.838 -4.33189 4.33189 0.65 0.000575905 0.000535691 0.0404157 0.0376168 38 1692 24 6.99608e+06 206020 678818. 2348.85 1.72 0.155547 0.135678 26626 170182 -1 1377 20 1243 1634 118973 26855 3.32456 3.32456 -115.376 -3.32456 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0231687 0.0202194 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.38 vpr 62.74 MiB -1 -1 0.18 17680 1 0.03 -1 -1 30440 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 24.3 MiB 1.94 733 10370 4308 5800 262 62.7 MiB 0.09 0.00 4.00228 -133.8 -4.00228 4.00228 0.66 0.000635374 0.000590174 0.0421286 0.0391478 44 2610 40 6.99608e+06 206020 787024. 2723.27 2.42 0.187646 0.163477 27778 195446 -1 1795 22 1481 2009 156084 34478 3.77925 3.77925 -136.622 -3.77925 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.0242727 0.0214624 79 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 6.61 vpr 62.82 MiB -1 -1 0.18 17908 1 0.02 -1 -1 30448 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 24.3 MiB 0.71 764 12362 5067 6494 801 62.8 MiB 0.11 0.00 4.07608 -123.99 -4.07608 4.07608 0.65 0.000667751 0.000620434 0.0521797 0.0484842 46 2867 29 6.99608e+06 220735 828058. 2865.25 3.07 0.190327 0.166434 28066 200906 -1 1915 24 1817 2659 234904 53092 3.84482 3.84482 -130.987 -3.84482 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0309852 0.0270389 80 33 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 5.83 vpr 62.52 MiB -1 -1 0.10 17312 1 0.03 -1 -1 30524 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 24.0 MiB 0.88 586 8909 3659 4796 454 62.5 MiB 0.07 0.00 3.79267 -108.98 -3.79267 3.79267 0.65 0.000566038 0.000526625 0.0344108 0.0320221 44 2352 39 6.99608e+06 191304 787024. 2723.27 2.26 0.158684 0.137481 27778 195446 -1 1570 31 1378 1749 242201 105330 3.57531 3.57531 -110.334 -3.57531 0 0 997811. 3452.63 0.26 0.11 0.17 -1 -1 0.26 0.0320436 0.0276748 68 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 6.13 vpr 62.95 MiB -1 -1 0.18 17240 1 0.03 -1 -1 30068 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 24.3 MiB 0.73 860 12076 5115 6633 328 62.9 MiB 0.10 0.00 4.30315 -133.848 -4.30315 4.30315 0.65 0.000597701 0.000556001 0.0473594 0.0441048 38 2379 33 6.99608e+06 176588 678818. 2348.85 2.57 0.17367 0.151548 26626 170182 -1 1900 19 1328 1759 137489 29036 3.73446 3.73446 -133.615 -3.73446 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0244098 0.0215808 73 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 6.12 vpr 63.13 MiB -1 -1 0.20 17796 1 0.03 -1 -1 30092 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 24.6 MiB 0.84 1156 13840 5407 6744 1689 63.1 MiB 0.13 0.00 4.42187 -150.582 -4.42187 4.42187 0.65 0.000721087 0.000668948 0.0613659 0.0570262 46 2902 21 6.99608e+06 250167 828058. 2865.25 2.26 0.208269 0.183014 28066 200906 -1 2353 23 2067 2872 231612 47712 3.75905 3.75905 -142.095 -3.75905 0 0 1.01997e+06 3529.29 0.35 0.09 0.17 -1 -1 0.35 0.0298852 0.0265672 101 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 6.57 vpr 62.62 MiB -1 -1 0.17 17432 1 0.03 -1 -1 30492 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 24.0 MiB 0.70 820 12876 4559 5981 2336 62.6 MiB 0.11 0.00 3.74867 -118.743 -3.74867 3.74867 0.67 0.000575118 0.000535276 0.0483476 0.045019 36 2421 43 6.99608e+06 191304 648988. 2245.63 3.08 0.179208 0.156066 26050 158493 -1 2079 20 1267 1781 176497 34895 3.12421 3.12421 -119.163 -3.12421 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0232652 0.0203011 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 5.85 vpr 63.00 MiB -1 -1 0.20 17508 1 0.03 -1 -1 30032 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 24.4 MiB 0.97 889 10726 4477 5918 331 63.0 MiB 0.10 0.00 3.49879 -116.053 -3.49879 3.49879 0.65 0.00069501 0.000644931 0.0465834 0.0432775 48 2372 28 6.99608e+06 220735 865456. 2994.66 1.97 0.19004 0.165944 28354 207349 -1 1864 16 1347 1780 128094 30206 3.22856 3.22856 -116.238 -3.22856 0 0 1.05005e+06 3633.38 0.26 0.06 0.18 -1 -1 0.26 0.0255461 0.0226224 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 27.23 vpr 63.34 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30432 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 24.6 MiB 2.34 1223 9263 3795 5242 226 63.3 MiB 0.10 0.00 4.74537 -163.238 -4.74537 4.74537 0.66 0.000755872 0.000701784 0.0417619 0.0388187 48 3333 47 6.99608e+06 294314 865456. 2994.66 21.75 0.390164 0.33724 28354 207349 -1 2908 35 3164 4392 767405 233701 4.54929 4.54929 -166.714 -4.54929 0 0 1.05005e+06 3633.38 0.26 0.22 0.17 -1 -1 0.26 0.0465995 0.0404152 113 91 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 7.80 vpr 62.88 MiB -1 -1 0.11 17528 1 0.03 -1 -1 30312 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 24.4 MiB 1.66 727 10316 3968 5326 1022 62.9 MiB 0.09 0.00 3.38944 -114.889 -3.38944 3.38944 0.66 0.000625748 0.000581255 0.0415061 0.0385042 46 2548 48 6.99608e+06 176588 828058. 2865.25 3.33 0.188752 0.16374 28066 200906 -1 1774 21 1715 2269 170442 39233 3.16641 3.16641 -116.986 -3.16641 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0262661 0.0229458 80 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 7.09 vpr 62.65 MiB -1 -1 0.19 17356 1 0.03 -1 -1 30248 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 23.9 MiB 0.65 695 11609 4409 5699 1501 62.6 MiB 0.10 0.00 3.88892 -124.254 -3.88892 3.88892 0.66 0.000611437 0.000568271 0.0472141 0.0438773 40 2563 29 6.99608e+06 161872 706193. 2443.58 3.57 0.179081 0.156351 26914 176310 -1 2106 19 1525 2213 231571 51201 3.43886 3.43886 -127.129 -3.43886 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0238569 0.0208693 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 6.96 vpr 62.79 MiB -1 -1 0.19 17628 1 0.03 -1 -1 30468 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 24.3 MiB 1.30 729 11034 3646 5163 2225 62.8 MiB 0.11 0.00 4.07043 -123.448 -4.07043 4.07043 0.68 0.000656517 0.000610244 0.0550328 0.0511814 46 2576 50 6.99608e+06 206020 828058. 2865.25 2.77 0.216446 0.189195 28066 200906 -1 1832 30 1790 2581 175346 42302 4.16472 4.16472 -129.342 -4.16472 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0373394 0.0324004 79 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 7.89 vpr 62.94 MiB -1 -1 0.20 17872 1 0.03 -1 -1 30056 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 24.4 MiB 1.39 807 9881 4044 5289 548 62.9 MiB 0.09 0.00 3.78147 -112.033 -3.78147 3.78147 0.65 0.00119538 0.00111163 0.0413282 0.0384495 40 2561 37 6.99608e+06 264882 706193. 2443.58 3.65 0.188205 0.163784 26914 176310 -1 2185 21 1573 2240 248384 59453 3.75971 3.75971 -116.507 -3.75971 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0271533 0.0237313 88 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 9.31 vpr 63.12 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30404 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 24.7 MiB 1.33 1189 13031 5003 6393 1635 63.1 MiB 0.13 0.00 5.55394 -180.701 -5.55394 5.55394 0.65 0.000760319 0.000705729 0.0595657 0.0553644 40 3527 35 6.99608e+06 250167 706193. 2443.58 5.11 0.227687 0.1994 26914 176310 -1 3144 23 2649 3987 436819 84814 4.9 4.9 -177.886 -4.9 0 0 926341. 3205.33 0.24 0.14 0.10 -1 -1 0.24 0.0341803 0.0299247 105 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 4.89 vpr 62.58 MiB -1 -1 0.17 17396 1 0.02 -1 -1 30360 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 23.9 MiB 0.78 678 10796 4152 4483 2161 62.6 MiB 0.08 0.00 3.34663 -92.0539 -3.34663 3.34663 0.66 0.000526843 0.000489963 0.0372329 0.0346276 34 1899 26 6.99608e+06 191304 618332. 2139.56 1.46 0.14479 0.126028 25762 151098 -1 1532 19 951 1531 115611 24412 2.79811 2.79811 -101.114 -2.79811 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0203337 0.0177334 54 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 7.62 vpr 63.52 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 24.8 MiB 2.44 1002 14907 4915 7817 2175 63.5 MiB 0.14 0.00 4.76623 -160.299 -4.76623 4.76623 0.69 0.000774844 0.000719035 0.0659522 0.061215 48 2884 23 6.99608e+06 294314 865456. 2994.66 2.14 0.221397 0.194498 28354 207349 -1 2440 20 2323 2954 285538 61481 4.9593 4.9593 -167.879 -4.9593 0 0 1.05005e+06 3633.38 0.26 0.12 0.18 -1 -1 0.26 0.0395598 0.0346876 116 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 7.36 vpr 63.41 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.8 MiB 0.71 1317 10744 3615 5258 1871 63.4 MiB 0.10 0.00 4.50112 -167.331 -4.50112 4.50112 0.66 0.000712018 0.000660995 0.0473671 0.0439801 40 3495 26 6.99608e+06 235451 706193. 2443.58 3.79 0.201605 0.17628 26914 176310 -1 2926 24 3276 4138 494202 92561 4.85739 4.85739 -181.953 -4.85739 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0332053 0.0289414 110 96 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 7.26 vpr 63.12 MiB -1 -1 0.18 17900 1 0.03 -1 -1 30468 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 24.4 MiB 1.30 944 9712 3948 5370 394 63.1 MiB 0.10 0.00 3.79657 -123.64 -3.79657 3.79657 0.66 0.000710163 0.000659281 0.0437958 0.0407098 44 3075 49 6.99608e+06 220735 787024. 2723.27 3.13 0.223364 0.194713 27778 195446 -1 1984 21 1585 2040 163763 38450 3.46081 3.46081 -119.657 -3.46081 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0294203 0.0257039 94 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 7.73 vpr 63.22 MiB -1 -1 0.16 17600 1 0.03 -1 -1 30516 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 24.8 MiB 0.90 1078 15796 7109 8306 381 63.2 MiB 0.16 0.00 5.81442 -170.312 -5.81442 5.81442 0.66 0.000778449 0.000722309 0.0760601 0.0706765 46 3303 43 6.99608e+06 220735 828058. 2865.25 3.94 0.257372 0.225958 28066 200906 -1 2519 19 2001 2996 241064 50553 4.8635 4.8635 -169.634 -4.8635 0 0 1.01997e+06 3529.29 0.25 0.09 0.16 -1 -1 0.25 0.0300825 0.0264579 98 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 4.64 vpr 62.50 MiB -1 -1 0.17 17524 1 0.03 -1 -1 30060 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 23.9 MiB 0.65 501 9684 3375 4762 1547 62.5 MiB 0.08 0.00 2.78575 -96.9119 -2.78575 2.78575 0.66 0.000506007 0.000471321 0.0351718 0.0327541 38 1487 22 6.99608e+06 176588 678818. 2348.85 1.44 0.133058 0.115701 26626 170182 -1 1249 19 785 987 89017 19309 2.57072 2.57072 -92.9223 -2.57072 0 0 902133. 3121.57 0.21 0.03 0.10 -1 -1 0.21 0.0109561 0.00971046 53 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 7.49 vpr 62.48 MiB -1 -1 0.11 17312 1 0.03 -1 -1 30088 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63980 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 23.9 MiB 3.01 598 11756 4032 5894 1830 62.5 MiB 0.09 0.00 3.77712 -117.524 -3.77712 3.77712 0.66 0.000600384 0.000558301 0.0464988 0.0432674 38 1780 24 6.99608e+06 206020 678818. 2348.85 1.63 0.167636 0.146174 26626 170182 -1 1431 21 1164 1714 139245 30323 3.30746 3.30746 -119.712 -3.30746 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0251084 0.0218919 68 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 6.06 vpr 62.69 MiB -1 -1 0.19 17312 1 0.03 -1 -1 29976 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 24.2 MiB 0.56 791 12331 4777 6250 1304 62.7 MiB 0.10 0.00 3.68644 -122.952 -3.68644 3.68644 0.65 0.000616793 0.000572872 0.0456741 0.0424252 44 2873 41 6.99608e+06 250167 787024. 2723.27 2.65 0.188015 0.163624 27778 195446 -1 2087 19 1489 2342 241451 50537 3.70196 3.70196 -133.232 -3.70196 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0248139 0.0217282 78 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.83 vpr 62.36 MiB -1 -1 0.19 17240 1 0.02 -1 -1 30184 -1 -1 16 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 23.9 MiB 0.93 448 7369 2953 3764 652 62.4 MiB 0.05 0.00 3.31959 -76.8944 -3.31959 3.31959 0.65 0.000477051 0.000443653 0.024769 0.023052 38 1742 32 6.99608e+06 235451 678818. 2348.85 2.24 0.125319 0.108193 26626 170182 -1 1067 18 820 1065 70792 18815 2.98797 2.98797 -80.5539 -2.98797 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0180819 0.0157832 59 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 7.86 vpr 63.27 MiB -1 -1 0.13 17808 1 0.03 -1 -1 30460 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 24.6 MiB 2.56 1245 8306 2489 4423 1394 63.3 MiB 0.09 0.00 4.0386 -139.855 -4.0386 4.0386 0.65 0.000727631 0.000675877 0.0373501 0.0347433 48 3245 50 6.99608e+06 250167 865456. 2994.66 2.48 0.213389 0.185297 28354 207349 -1 2845 21 2041 2978 290931 56452 3.88612 3.88612 -141.416 -3.88612 0 0 1.05005e+06 3633.38 0.26 0.10 0.17 -1 -1 0.26 0.0301175 0.0263167 103 72 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 7.73 vpr 63.42 MiB -1 -1 0.19 17636 1 0.03 -1 -1 30264 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 24.7 MiB 2.09 1163 15568 6109 7919 1540 63.4 MiB 0.15 0.00 4.35051 -150.242 -4.35051 4.35051 0.65 0.000768863 0.000713681 0.0702178 0.0652095 40 3509 30 6.99608e+06 279598 706193. 2443.58 2.72 0.230021 0.201431 26914 176310 -1 2880 22 2655 3597 319611 69613 4.47785 4.47785 -163.263 -4.47785 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0303367 0.0267518 117 90 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common 9.83 vpr 62.68 MiB -1 -1 0.27 17896 14 0.23 -1 -1 32796 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 24.1 MiB 1.50 1276 8543 2090 5594 859 62.7 MiB 0.10 0.00 8.38905 -176.577 -8.38905 8.38905 0.65 0.000897975 0.000832394 0.0471161 0.0437702 36 3665 49 6.79088e+06 255968 648988. 2245.63 5.23 0.27692 0.240921 25390 158009 -1 3031 19 1428 3960 252465 55201 7.21088 7.21088 -172.542 -7.21088 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0358883 0.0315722 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 8.46 vpr 62.62 MiB -1 -1 0.27 17776 14 0.28 -1 -1 32752 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 24.1 MiB 2.09 1147 12331 4133 6053 2145 62.6 MiB 0.13 0.00 7.6097 -157.374 -7.6097 7.6097 0.65 0.000901032 0.000834759 0.0669473 0.0618761 34 3327 27 6.79088e+06 255968 618332. 2139.56 3.20 0.253016 0.220485 25102 150614 -1 2658 19 1284 3490 200353 45854 6.82379 6.82379 -154.476 -6.82379 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0355135 0.031198 125 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 10.01 vpr 62.72 MiB -1 -1 0.24 17472 11 0.28 -1 -1 33036 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 24.2 MiB 2.94 1231 6383 1494 4487 402 62.7 MiB 0.07 0.00 6.81003 -148.008 -6.81003 6.81003 0.65 0.000898227 0.00083173 0.0355846 0.0329879 36 3209 32 6.79088e+06 255968 648988. 2245.63 3.95 0.232064 0.20096 25390 158009 -1 2801 19 1317 3890 223314 49848 6.29093 6.29093 -148.387 -6.29093 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0359061 0.0315688 130 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 7.72 vpr 62.62 MiB -1 -1 0.24 17644 12 0.31 -1 -1 32744 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 24.0 MiB 1.04 1099 5293 1100 3885 308 62.6 MiB 0.06 0.00 7.28153 -143.815 -7.28153 7.28153 0.67 0.0009034 0.000837238 0.0294841 0.0273848 36 3357 33 6.79088e+06 323328 648988. 2245.63 3.50 0.224903 0.194213 25390 158009 -1 2586 20 1448 4044 231944 51886 6.54158 6.54158 -139.567 -6.54158 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0372409 0.0326762 136 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 17.84 vpr 62.78 MiB -1 -1 0.27 17796 13 0.27 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 24.3 MiB 1.59 1401 5756 1163 4305 288 62.8 MiB 0.07 0.00 8.2885 -175.09 -8.2885 8.2885 0.65 0.00097973 0.000907819 0.0339626 0.0315142 40 3602 29 6.79088e+06 296384 706193. 2443.58 12.96 0.43922 0.378361 26254 175826 -1 3419 16 1490 3850 301755 77078 7.51181 7.51181 -175.313 -7.51181 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0354634 0.031438 152 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 7.86 vpr 62.78 MiB -1 -1 0.22 17760 13 0.24 -1 -1 32752 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 24.2 MiB 1.45 1243 11063 3086 5977 2000 62.8 MiB 0.14 0.00 7.40767 -155.099 -7.40767 7.40767 0.65 0.00128671 0.00119234 0.0750938 0.0695936 38 3505 23 6.79088e+06 255968 678818. 2348.85 3.27 0.269689 0.235968 25966 169698 -1 2804 18 1394 4237 219172 49131 6.58427 6.58427 -150.238 -6.58427 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0362024 0.0318759 137 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 6.63 vpr 62.25 MiB -1 -1 0.21 17344 12 0.19 -1 -1 32668 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 23.6 MiB 1.25 831 9024 2147 6104 773 62.2 MiB 0.08 0.00 7.03512 -124.15 -7.03512 7.03512 0.65 0.000739735 0.000680339 0.0414626 0.0384214 36 2328 49 6.79088e+06 282912 648988. 2245.63 2.39 0.218771 0.18967 25390 158009 -1 1811 24 963 2242 190298 71060 6.02493 6.02493 -115.935 -6.02493 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0351924 0.0308117 106 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 7.55 vpr 62.38 MiB -1 -1 0.23 17496 12 0.21 -1 -1 32752 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 23.7 MiB 2.62 997 12636 5258 7154 224 62.4 MiB 0.11 0.00 6.42294 -136.16 -6.42294 6.42294 0.64 0.000735809 0.000681011 0.0570527 0.0528523 44 2627 22 6.79088e+06 229024 787024. 2723.27 1.87 0.206056 0.18036 27118 194962 -1 2129 16 1056 2792 155188 35766 5.65861 5.65861 -131.48 -5.65861 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0260591 0.0230099 106 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 8.24 vpr 62.27 MiB -1 -1 0.24 17832 12 0.18 -1 -1 32656 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 23.9 MiB 2.75 1116 6203 1235 4627 341 62.3 MiB 0.07 0.00 7.04997 -146.463 -7.04997 7.04997 0.67 0.000822906 0.000743498 0.0298591 0.0277288 38 2827 29 6.79088e+06 269440 678818. 2348.85 2.48 0.188461 0.163245 25966 169698 -1 2377 15 1090 2724 145236 33529 6.25178 6.25178 -137.947 -6.25178 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0255926 0.022649 113 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 8.17 vpr 62.32 MiB -1 -1 0.22 17552 13 0.19 -1 -1 32600 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 23.9 MiB 1.93 1109 7177 1737 4800 640 62.3 MiB 0.08 0.00 7.59858 -166.488 -7.59858 7.59858 0.65 0.000814949 0.000755613 0.037789 0.0350548 36 3033 30 6.79088e+06 202080 648988. 2245.63 3.31 0.211555 0.183525 25390 158009 -1 2399 14 1005 2359 142479 31916 6.91327 6.91327 -163.368 -6.91327 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0262448 0.0232557 106 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 5.35 vpr 62.15 MiB -1 -1 0.24 17632 12 0.18 -1 -1 32592 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63644 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 23.6 MiB 1.55 935 11402 3533 6247 1622 62.2 MiB 0.07 0.00 7.11778 -148.236 -7.11778 7.11778 0.56 0.000707053 0.000655114 0.0275324 0.0253595 30 2539 45 6.79088e+06 229024 556674. 1926.21 1.03 0.137923 0.119868 24526 138013 -1 2061 17 900 2128 107060 25145 6.24408 6.24408 -144.119 -6.24408 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0258291 0.0227208 96 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 17.66 vpr 62.18 MiB -1 -1 0.23 17672 12 0.14 -1 -1 32792 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63668 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 23.5 MiB 2.07 937 12856 4731 5927 2198 62.2 MiB 0.11 0.00 5.84661 -143.137 -5.84661 5.84661 0.66 0.000737566 0.000682535 0.0570817 0.0528557 38 2936 43 6.79088e+06 229024 678818. 2348.85 12.57 0.366599 0.31653 25966 169698 -1 2301 16 1075 2850 166834 38480 5.18431 5.18431 -138.28 -5.18431 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0263185 0.0232173 101 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 16.03 vpr 62.73 MiB -1 -1 0.22 17660 13 0.25 -1 -1 32580 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 24.1 MiB 1.71 1258 8319 2303 5000 1016 62.7 MiB 0.10 0.00 7.91028 -166.355 -7.91028 7.91028 0.65 0.000927267 0.000849131 0.0462374 0.0427371 40 3060 21 6.79088e+06 269440 706193. 2443.58 11.08 0.401345 0.345512 26254 175826 -1 2982 19 1354 3465 231601 50194 7.01056 7.01056 -160.338 -7.01056 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0366557 0.032283 134 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 8.35 vpr 62.99 MiB -1 -1 0.28 17588 14 0.31 -1 -1 32812 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 24.6 MiB 1.80 1345 7268 1767 5038 463 63.0 MiB 0.11 0.00 8.74626 -182.518 -8.74626 8.74626 0.65 0.00113115 0.00104387 0.0503458 0.0464863 36 3522 26 6.79088e+06 296384 648988. 2245.63 3.31 0.251522 0.217801 25390 158009 -1 2989 18 1459 3621 213522 48818 7.56225 7.56225 -174.856 -7.56225 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0377165 0.0332384 151 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 8.42 vpr 62.29 MiB -1 -1 0.22 17384 11 0.18 -1 -1 32504 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 23.9 MiB 2.19 987 12186 3908 6119 2159 62.3 MiB 0.11 0.00 6.7187 -136.52 -6.7187 6.7187 0.65 0.00072387 0.000669953 0.052814 0.0489072 34 3118 45 6.79088e+06 282912 618332. 2139.56 3.01 0.233822 0.204139 25102 150614 -1 2533 55 1326 3340 702783 417195 6.16214 6.16214 -140.269 -6.16214 0 0 787024. 2723.27 0.20 0.26 0.13 -1 -1 0.20 0.0678064 0.0584255 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 21.25 vpr 62.86 MiB -1 -1 0.25 17604 12 0.31 -1 -1 32944 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 24.5 MiB 1.31 1224 13348 3764 6998 2586 62.9 MiB 0.14 0.00 7.24781 -156.42 -7.24781 7.24781 0.66 0.000993471 0.000920556 0.0717531 0.0664181 40 3377 35 6.79088e+06 323328 706193. 2443.58 16.56 0.508325 0.439032 26254 175826 -1 3153 21 1625 5435 403477 86340 6.75642 6.75642 -155.136 -6.75642 0 0 926341. 3205.33 0.27 0.13 0.15 -1 -1 0.27 0.042962 0.0378338 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 21.52 vpr 62.66 MiB -1 -1 0.26 17600 14 0.25 -1 -1 32744 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 24.1 MiB 2.10 1311 6743 1544 4772 427 62.7 MiB 0.08 0.00 8.47078 -173.752 -8.47078 8.47078 0.64 0.000899757 0.000833526 0.037466 0.0347496 38 3697 39 6.79088e+06 255968 678818. 2348.85 16.30 0.430887 0.370412 25966 169698 -1 2925 18 1377 3834 209038 46091 7.22545 7.22545 -162.343 -7.22545 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0344668 0.0303679 126 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 7.73 vpr 62.32 MiB -1 -1 0.24 17364 12 0.16 -1 -1 32620 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 23.6 MiB 1.55 1008 11740 3543 6499 1698 62.3 MiB 0.11 0.00 7.24148 -161.628 -7.24148 7.24148 0.65 0.000744496 0.000689281 0.0548791 0.0508458 36 2795 45 6.79088e+06 202080 648988. 2245.63 3.20 0.22415 0.195724 25390 158009 -1 2378 15 976 2474 149319 33765 6.21607 6.21607 -156.301 -6.21607 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0252704 0.0223871 105 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 6.14 vpr 62.02 MiB -1 -1 0.20 17084 10 0.10 -1 -1 32240 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 23.4 MiB 1.81 679 4973 1078 3739 156 62.0 MiB 0.05 0.00 4.83286 -114.815 -4.83286 4.83286 0.65 0.000565584 0.000525615 0.019878 0.0184711 38 1772 21 6.79088e+06 175136 678818. 2348.85 1.51 0.130063 0.112292 25966 169698 -1 1619 14 647 1409 89824 20060 4.29586 4.29586 -114.403 -4.29586 0 0 902133. 3121.57 0.24 0.05 0.15 -1 -1 0.24 0.0187551 0.0166412 66 87 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 7.29 vpr 62.37 MiB -1 -1 0.16 17324 13 0.18 -1 -1 32720 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 23.7 MiB 1.92 997 12331 4111 5801 2419 62.4 MiB 0.11 0.00 7.54752 -160.268 -7.54752 7.54752 0.65 0.000746666 0.000690361 0.0555056 0.0513665 36 2929 29 6.79088e+06 242496 648988. 2245.63 2.37 0.215175 0.187758 25390 158009 -1 2308 18 1125 2654 153918 35011 6.16922 6.16922 -147.333 -6.16922 0 0 828058. 2865.25 0.21 0.07 0.15 -1 -1 0.21 0.0288024 0.0253858 107 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 11.66 vpr 63.02 MiB -1 -1 0.25 17936 13 0.27 -1 -1 32992 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 24.4 MiB 1.71 1287 9943 2672 5830 1441 63.0 MiB 0.11 0.00 7.66212 -166.709 -7.66212 7.66212 0.65 0.000965987 0.000894894 0.0555842 0.0515246 36 4367 40 6.79088e+06 282912 648988. 2245.63 6.66 0.279159 0.242911 25390 158009 -1 3174 30 2184 6712 566802 176298 6.96787 6.96787 -161.481 -6.96787 0 0 828058. 2865.25 0.23 0.22 0.14 -1 -1 0.23 0.0629587 0.0553451 143 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 9.70 vpr 62.76 MiB -1 -1 0.20 17696 13 0.32 -1 -1 32452 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 24.1 MiB 2.08 1366 11989 3183 6998 1808 62.8 MiB 0.12 0.00 7.56666 -167.812 -7.56666 7.56666 0.65 0.000737829 0.00067568 0.0556237 0.0511944 38 3931 41 6.79088e+06 282912 678818. 2348.85 4.40 0.270277 0.234429 25966 169698 -1 3120 17 1406 4182 239599 51913 6.50587 6.50587 -157.808 -6.50587 0 0 902133. 3121.57 0.24 0.11 0.14 -1 -1 0.24 0.0476003 0.042874 141 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 5.22 vpr 61.89 MiB -1 -1 0.12 17064 9 0.09 -1 -1 32200 -1 -1 18 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63376 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 23.2 MiB 1.22 700 7596 2556 3853 1187 61.9 MiB 0.06 0.00 4.83723 -93.7879 -4.83723 4.83723 0.65 0.000515395 0.00047946 0.0267015 0.0248689 34 1715 26 6.79088e+06 242496 618332. 2139.56 1.34 0.130939 0.113193 25102 150614 -1 1498 18 668 1631 98751 22412 4.3539 4.3539 -94.2702 -4.3539 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0193617 0.0169173 67 76 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 7.77 vpr 62.68 MiB -1 -1 0.24 17552 13 0.30 -1 -1 32708 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 24.1 MiB 1.83 1263 10263 2709 7113 441 62.7 MiB 0.11 0.00 8.1433 -166.845 -8.1433 8.1433 0.65 0.000918499 0.000850101 0.0529514 0.0490628 40 3385 50 6.79088e+06 309856 706193. 2443.58 2.74 0.27548 0.238531 26254 175826 -1 3075 21 1607 4496 277530 61024 7.34382 7.34382 -164.809 -7.34382 0 0 926341. 3205.33 0.23 0.11 0.16 -1 -1 0.23 0.0397841 0.0349002 136 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 6.00 vpr 61.84 MiB -1 -1 0.17 16868 8 0.10 -1 -1 32792 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63328 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 23.3 MiB 1.85 633 5921 1256 4594 71 61.8 MiB 0.05 0.00 4.18492 -95.1021 -4.18492 4.18492 0.65 0.000504808 0.000468971 0.0207371 0.0192672 36 1824 30 6.79088e+06 148192 648988. 2245.63 1.50 0.126756 0.109157 25390 158009 -1 1490 18 656 1469 79844 19181 3.83796 3.83796 -94.1549 -3.83796 0 0 828058. 2865.25 0.21 0.05 0.15 -1 -1 0.21 0.0191904 0.0167984 60 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 11.70 vpr 62.68 MiB -1 -1 0.20 17396 15 0.24 -1 -1 32700 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 24.2 MiB 2.10 1197 14144 5293 7084 1767 62.7 MiB 0.14 0.00 8.89118 -178.017 -8.89118 8.89118 0.65 0.00083899 0.000777309 0.0701837 0.0650693 36 3911 43 6.79088e+06 242496 648988. 2245.63 6.52 0.271233 0.236607 25390 158009 -1 3064 31 1411 3990 445921 169785 7.93467 7.93467 -173.678 -7.93467 0 0 828058. 2865.25 0.21 0.16 0.14 -1 -1 0.21 0.0485183 0.0421606 121 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 10.42 vpr 62.44 MiB -1 -1 0.23 17496 13 0.23 -1 -1 32856 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 1.71 1207 12898 3890 6827 2181 62.4 MiB 0.13 0.00 6.79894 -149.553 -6.79894 6.79894 0.65 0.000847932 0.000785126 0.0650668 0.0603094 36 3359 23 6.79088e+06 242496 648988. 2245.63 5.63 0.240816 0.210714 25390 158009 -1 2799 19 1253 3687 226923 49033 5.82898 5.82898 -144.739 -5.82898 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0337513 0.029655 117 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 8.68 vpr 62.77 MiB -1 -1 0.17 17816 13 0.26 -1 -1 32868 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 24.2 MiB 1.45 1179 7024 1686 4552 786 62.8 MiB 0.08 0.00 7.81323 -165.772 -7.81323 7.81323 0.65 0.000909842 0.00084286 0.0399561 0.0370604 40 3618 36 6.79088e+06 242496 706193. 2443.58 4.06 0.246074 0.213219 26254 175826 -1 3151 26 1711 4941 532467 172390 6.77334 6.77334 -165.618 -6.77334 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0457775 0.0399467 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 13.42 vpr 62.24 MiB -1 -1 0.21 17552 12 0.16 -1 -1 32656 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 23.6 MiB 1.96 1077 9024 2472 4753 1799 62.2 MiB 0.09 0.00 6.90294 -154.176 -6.90294 6.90294 0.66 0.000750227 0.00069412 0.0423845 0.0392834 38 2685 27 6.79088e+06 215552 678818. 2348.85 8.51 0.307229 0.265375 25966 169698 -1 2236 14 1015 2429 130604 29713 5.99004 5.99004 -143.607 -5.99004 0 0 902133. 3121.57 0.22 0.06 0.10 -1 -1 0.22 0.0246244 0.0218701 103 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 7.77 vpr 62.18 MiB -1 -1 0.20 17532 11 0.15 -1 -1 32568 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 23.6 MiB 1.69 910 12120 3870 6285 1965 62.2 MiB 0.10 0.00 6.3635 -135.496 -6.3635 6.3635 0.65 0.000680122 0.000629663 0.0506928 0.0469403 36 2758 44 6.79088e+06 242496 648988. 2245.63 3.18 0.213081 0.185874 25390 158009 -1 2137 15 968 2319 151256 33988 5.69238 5.69238 -131.952 -5.69238 0 0 828058. 2865.25 0.22 0.06 0.13 -1 -1 0.22 0.023231 0.0205497 95 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 6.26 vpr 62.20 MiB -1 -1 0.20 17344 11 0.17 -1 -1 32644 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63692 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 23.6 MiB 1.43 934 11106 3231 6003 1872 62.2 MiB 0.10 0.00 7.04953 -133.904 -7.04953 7.04953 0.65 0.000727868 0.000673378 0.0496002 0.0459622 36 2495 17 6.79088e+06 282912 648988. 2245.63 1.93 0.19065 0.166666 25390 158009 -1 2080 15 900 2405 142832 32141 6.24403 6.24403 -128.601 -6.24403 0 0 828058. 2865.25 0.21 0.06 0.13 -1 -1 0.21 0.0248905 0.0220344 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 8.45 vpr 62.66 MiB -1 -1 0.22 17324 12 0.19 -1 -1 32700 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 23.9 MiB 2.31 1143 7431 2070 3957 1404 62.7 MiB 0.09 0.00 7.03679 -162.788 -7.03679 7.03679 0.65 0.000862645 0.000799367 0.042381 0.0393597 38 3489 28 6.79088e+06 229024 678818. 2348.85 3.12 0.213819 0.185553 25966 169698 -1 2750 18 1400 3465 198948 44554 6.45548 6.45548 -161.876 -6.45548 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0329896 0.0290446 119 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 8.78 vpr 62.25 MiB -1 -1 0.18 17396 12 0.16 -1 -1 32672 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 23.6 MiB 2.04 1005 7304 1599 5397 308 62.2 MiB 0.08 0.00 6.85818 -143.144 -6.85818 6.85818 0.66 0.000748963 0.000693417 0.0359548 0.0333349 36 3104 26 6.79088e+06 229024 648988. 2245.63 3.78 0.198494 0.172497 25390 158009 -1 2546 20 1197 3028 191255 42293 5.92738 5.92738 -138.337 -5.92738 0 0 828058. 2865.25 0.25 0.08 0.13 -1 -1 0.25 0.0306532 0.026898 101 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 6.54 vpr 62.23 MiB -1 -1 0.23 17540 10 0.18 -1 -1 32752 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63728 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 23.6 MiB 1.39 942 8378 2178 5592 608 62.2 MiB 0.08 0.00 6.16888 -135.594 -6.16888 6.16888 0.65 0.000725346 0.000671806 0.0391604 0.0362609 34 2825 33 6.79088e+06 229024 618332. 2139.56 2.26 0.194707 0.169166 25102 150614 -1 2283 15 958 2705 169570 37670 5.36338 5.36338 -129.171 -5.36338 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0245103 0.0216827 103 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 7.54 vpr 63.43 MiB -1 -1 0.29 18040 13 0.29 -1 -1 32804 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 24.7 MiB 1.73 1312 13663 4088 7126 2449 63.4 MiB 0.15 0.00 8.09614 -166.803 -8.09614 8.09614 0.68 0.00100269 0.000926376 0.078344 0.0725217 44 3318 23 6.79088e+06 282912 787024. 2723.27 2.42 0.282006 0.246727 27118 194962 -1 2701 17 1373 4208 224771 50229 7.1394 7.1394 -154.037 -7.1394 0 0 997811. 3452.63 0.25 0.09 0.19 -1 -1 0.25 0.0378555 0.0334902 149 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 8.42 vpr 62.82 MiB -1 -1 0.27 18020 14 0.31 -1 -1 33400 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 24.2 MiB 2.00 1261 10584 2627 7173 784 62.8 MiB 0.12 0.00 7.68903 -168.897 -7.68903 7.68903 0.65 0.000935991 0.000867991 0.0596857 0.0552211 44 3649 50 6.79088e+06 242496 787024. 2723.27 3.14 0.29134 0.254004 27118 194962 -1 2886 17 1427 3968 219322 49259 6.95258 6.95258 -162.986 -6.95258 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0344341 0.0304302 136 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 17.77 vpr 62.21 MiB -1 -1 0.16 17568 12 0.15 -1 -1 32592 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 23.6 MiB 1.96 1099 9036 2242 5503 1291 62.2 MiB 0.09 0.00 7.11595 -155.813 -7.11595 7.11595 0.65 0.000751572 0.00069614 0.043168 0.0400106 30 2953 39 6.79088e+06 215552 556674. 1926.21 12.73 0.335374 0.289718 24526 138013 -1 2356 56 1353 4062 755449 394520 6.33018 6.33018 -154.996 -6.33018 0 0 706193. 2443.58 0.19 0.27 0.12 -1 -1 0.19 0.0707312 0.0608455 101 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 26.43 vpr 62.88 MiB -1 -1 0.27 17804 12 0.27 -1 -1 32756 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 24.4 MiB 2.18 1467 6039 1319 4287 433 62.9 MiB 0.07 0.00 7.47278 -158.083 -7.47278 7.47278 0.65 0.000981998 0.0009092 0.0349007 0.0324077 44 3629 28 6.79088e+06 323328 787024. 2723.27 20.97 0.418965 0.360081 27118 194962 -1 3054 17 1429 4213 263921 56409 6.54502 6.54502 -148.774 -6.54502 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0363808 0.0321769 146 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 7.27 vpr 62.79 MiB -1 -1 0.28 17896 14 0.32 -1 -1 33188 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 24.2 MiB 1.25 1271 10129 2796 6287 1046 62.8 MiB 0.11 0.00 8.30959 -169.599 -8.30959 8.30959 0.66 0.000971626 0.000901467 0.0560829 0.0520037 36 3450 22 6.79088e+06 296384 648988. 2245.63 2.82 0.25068 0.21871 25390 158009 -1 2866 16 1351 3700 212299 48794 7.47267 7.47267 -164.725 -7.47267 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0337034 0.0297367 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 7.37 vpr 62.68 MiB -1 -1 0.27 18080 13 0.25 -1 -1 32892 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 24.0 MiB 1.86 1280 4811 900 3622 289 62.7 MiB 0.06 0.00 8.58767 -169.841 -8.58767 8.58767 0.65 0.000898867 0.000833209 0.0265646 0.0246675 38 3430 34 6.79088e+06 309856 678818. 2348.85 2.37 0.221783 0.191345 25966 169698 -1 2787 17 1355 3483 187965 42656 7.47267 7.47267 -159.441 -7.47267 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0338746 0.0299665 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 7.66 vpr 62.78 MiB -1 -1 0.27 17720 13 0.24 -1 -1 32540 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 24.2 MiB 1.75 1180 11979 3854 6305 1820 62.8 MiB 0.12 0.00 7.68398 -158.005 -7.68398 7.68398 0.65 0.000890923 0.000820103 0.0618626 0.0572174 46 3049 18 6.79088e+06 282912 828058. 2865.25 2.69 0.23283 0.20326 27406 200422 -1 2544 16 1179 3480 191322 42294 6.96798 6.96798 -148.071 -6.96798 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0310726 0.027411 125 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 8.06 vpr 62.53 MiB -1 -1 0.24 17560 12 0.18 -1 -1 32740 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 24.0 MiB 1.82 851 11432 3292 6222 1918 62.5 MiB 0.12 0.00 6.74005 -141.479 -6.74005 6.74005 0.66 0.00083468 0.000773591 0.0607612 0.0563613 38 2732 20 6.79088e+06 215552 678818. 2348.85 3.22 0.198714 0.174829 25966 169698 -1 2025 17 1043 2803 137992 33770 6.06839 6.06839 -140.261 -6.06839 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0309709 0.0273874 111 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 7.91 vpr 63.16 MiB -1 -1 0.31 18392 14 0.37 -1 -1 32840 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 24.4 MiB 1.08 1525 8269 1990 5730 549 63.2 MiB 0.10 0.00 8.76146 -179.232 -8.76146 8.76146 0.65 0.00105571 0.000967634 0.0511827 0.0472515 40 3962 28 6.79088e+06 282912 706193. 2443.58 3.41 0.273214 0.237655 26254 175826 -1 3736 16 1643 4957 342662 72776 7.59797 7.59797 -174.093 -7.59797 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0374176 0.0331444 159 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 16.99 vpr 62.24 MiB -1 -1 0.24 17344 11 0.19 -1 -1 32460 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 23.6 MiB 2.04 1083 5656 1222 4312 122 62.2 MiB 0.07 0.00 6.44427 -138.672 -6.44427 6.44427 0.71 0.000807905 0.000748702 0.0305571 0.0283522 40 2970 31 6.79088e+06 215552 706193. 2443.58 11.84 0.367614 0.315891 26254 175826 -1 2695 18 1295 3569 245355 53324 5.60634 5.60634 -134.282 -5.60634 0 0 926341. 3205.33 0.25 0.09 0.15 -1 -1 0.25 0.0312161 0.0274826 112 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 8.77 vpr 62.76 MiB -1 -1 0.22 17796 13 0.26 -1 -1 33308 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 24.2 MiB 1.62 1224 12683 3651 6628 2404 62.8 MiB 0.13 0.00 8.19665 -170.984 -8.19665 8.19665 0.66 0.000904322 0.000836404 0.0684237 0.0633431 36 3521 25 6.79088e+06 269440 648988. 2245.63 3.95 0.25722 0.224494 25390 158009 -1 2718 17 1178 3776 220011 48287 7.01061 7.01061 -160.627 -7.01061 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0341932 0.0301461 137 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 7.91 vpr 62.68 MiB -1 -1 0.15 17832 12 0.25 -1 -1 32796 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 24.0 MiB 1.90 1183 14221 4949 6932 2340 62.7 MiB 0.17 0.00 7.19197 -155.782 -7.19197 7.19197 0.67 0.00113801 0.00104777 0.0872274 0.0804344 48 3258 28 6.79088e+06 282912 865456. 2994.66 2.64 0.30633 0.268045 27694 206865 -1 2769 24 1411 4530 432759 157864 6.41972 6.41972 -150.586 -6.41972 0 0 1.05005e+06 3633.38 0.29 0.15 0.17 -1 -1 0.29 0.0456086 0.0399066 146 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 6.34 vpr 62.70 MiB -1 -1 0.24 17364 13 0.31 -1 -1 32852 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 24.2 MiB 1.18 1273 10103 2600 6194 1309 62.7 MiB 0.10 0.00 8.00961 -170.987 -8.00961 8.00961 0.65 0.000894459 0.000829018 0.0514462 0.0476751 38 3255 22 6.79088e+06 296384 678818. 2348.85 2.21 0.229748 0.200048 25966 169698 -1 2694 17 1212 3197 175848 40913 6.72081 6.72081 -158.428 -6.72081 0 0 902133. 3121.57 0.22 0.08 0.12 -1 -1 0.22 0.0329069 0.0289832 131 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 10.86 vpr 62.67 MiB -1 -1 0.26 17760 13 0.20 -1 -1 32708 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 24.0 MiB 2.47 1094 12364 4318 5742 2304 62.7 MiB 0.13 0.00 7.6093 -157.428 -7.6093 7.6093 0.65 0.000874507 0.0008099 0.0648312 0.0600595 38 3487 43 6.79088e+06 242496 678818. 2348.85 5.33 0.270788 0.235835 25966 169698 -1 2496 17 1300 3454 186520 43111 6.50936 6.50936 -147.867 -6.50936 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0318737 0.0280831 124 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 20.13 vpr 62.83 MiB -1 -1 0.17 17816 12 0.32 -1 -1 32568 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 24.2 MiB 2.00 1339 6489 1417 4538 534 62.8 MiB 0.08 0.00 7.45027 -163.951 -7.45027 7.45027 0.65 0.000931345 0.000862008 0.0368859 0.0341733 36 4037 43 6.79088e+06 269440 648988. 2245.63 15.03 0.37597 0.323218 25390 158009 -1 3242 19 1321 4175 282612 58801 6.45897 6.45897 -154.692 -6.45897 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0374741 0.0329602 140 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 11.55 vpr 62.80 MiB -1 -1 0.29 18040 13 0.29 -1 -1 32880 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 24.3 MiB 1.79 1312 5757 1265 4157 335 62.8 MiB 0.08 0.00 7.77691 -170.238 -7.77691 7.77691 0.65 0.000989177 0.000915537 0.0357906 0.0331752 36 4117 46 6.79088e+06 269440 648988. 2245.63 6.42 0.274332 0.236987 25390 158009 -1 3191 34 1537 4493 529481 205202 6.95673 6.95673 -165.406 -6.95673 0 0 828058. 2865.25 0.21 0.20 0.13 -1 -1 0.21 0.0617758 0.0537491 145 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 7.23 vpr 62.62 MiB -1 -1 0.24 17500 14 0.27 -1 -1 33064 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 24.1 MiB 1.37 1196 9783 2600 6598 585 62.6 MiB 0.09 0.00 8.29092 -170.108 -8.29092 8.29092 0.81 0.00066336 0.000606154 0.0394696 0.0361392 38 3116 34 6.79088e+06 269440 678818. 2348.85 2.54 0.228808 0.198049 25966 169698 -1 2517 19 1395 4131 212750 47962 7.04638 7.04638 -156.873 -7.04638 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.034339 0.0301719 125 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 11.27 vpr 62.96 MiB -1 -1 0.22 17816 13 0.26 -1 -1 32764 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 24.4 MiB 2.06 1239 12547 3128 7964 1455 63.0 MiB 0.13 0.00 8.02156 -162.008 -8.02156 8.02156 0.73 0.000935645 0.000866676 0.0665217 0.0616094 36 3706 32 6.79088e+06 282912 648988. 2245.63 6.02 0.273381 0.238749 25390 158009 -1 3134 23 1969 5759 376061 79652 7.33607 7.33607 -160.823 -7.33607 0 0 828058. 2865.25 0.21 0.13 0.14 -1 -1 0.21 0.0429383 0.0376029 136 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 8.51 vpr 62.74 MiB -1 -1 0.29 17796 13 0.27 -1 -1 32656 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64244 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 24.3 MiB 1.73 1309 8319 2069 5720 530 62.7 MiB 0.10 0.00 7.83086 -168.91 -7.83086 7.83086 0.65 0.000969389 0.000898505 0.0491192 0.0454835 38 3459 40 6.79088e+06 282912 678818. 2348.85 3.57 0.272347 0.236807 25966 169698 -1 2928 18 1445 4114 215674 47831 6.83836 6.83836 -161.551 -6.83836 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0369032 0.0325347 144 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 8.76 vpr 63.09 MiB -1 -1 0.15 17776 12 0.29 -1 -1 32764 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 24.7 MiB 1.47 1321 14779 4130 8902 1747 63.1 MiB 0.15 0.00 7.66848 -162.706 -7.66848 7.66848 0.66 0.000961287 0.000888997 0.0808162 0.0748123 38 3631 50 6.79088e+06 282912 678818. 2348.85 4.09 0.323287 0.282823 25966 169698 -1 3008 18 1459 4087 232219 51644 6.98829 6.98829 -157.579 -6.98829 0 0 902133. 3121.57 0.22 0.10 0.12 -1 -1 0.22 0.037258 0.0328099 147 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 6.50 vpr 62.06 MiB -1 -1 0.22 17232 11 0.16 -1 -1 32572 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 23.5 MiB 1.20 752 5224 962 4133 129 62.1 MiB 0.05 0.00 6.41251 -131.25 -6.41251 6.41251 0.65 0.000536119 0.000489615 0.0197575 0.0180864 36 2354 24 6.79088e+06 188608 648988. 2245.63 2.44 0.160035 0.137586 25390 158009 -1 1841 17 982 2579 141528 34864 5.56708 5.56708 -127.034 -5.56708 0 0 828058. 2865.25 0.23 0.07 0.10 -1 -1 0.23 0.0254722 0.0224535 91 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 8.48 vpr 62.46 MiB -1 -1 0.20 17936 13 0.21 -1 -1 32684 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 23.9 MiB 1.74 1180 7221 1648 4796 777 62.5 MiB 0.08 0.00 7.59268 -164.24 -7.59268 7.59268 0.65 0.000833994 0.000773619 0.0363326 0.0337222 36 3135 25 6.79088e+06 269440 648988. 2245.63 3.79 0.212774 0.184625 25390 158009 -1 2766 17 1158 3022 197887 43020 6.74539 6.74539 -159.239 -6.74539 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0306082 0.0269174 118 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 27.17 vpr 63.08 MiB -1 -1 0.28 18364 14 0.45 -1 -1 32896 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 24.5 MiB 1.25 1584 7108 1588 4936 584 63.1 MiB 0.09 0.00 9.32595 -187.261 -9.32595 9.32595 0.76 0.00108035 0.00101136 0.0456684 0.0422757 46 3936 32 6.79088e+06 323328 828058. 2865.25 22.13 0.438423 0.378258 27406 200422 -1 3289 21 1725 5115 340361 89609 8.0201 8.0201 -172.736 -8.0201 0 0 1.01997e+06 3529.29 0.34 0.13 0.20 -1 -1 0.34 0.047276 0.0416728 171 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 8.30 vpr 62.67 MiB -1 -1 0.27 17608 13 0.28 -1 -1 32760 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 24.0 MiB 1.46 1314 12733 3340 7297 2096 62.7 MiB 0.13 0.00 7.97246 -177.126 -7.97246 7.97246 0.66 0.00090106 0.000834812 0.0653199 0.0605593 38 3411 27 6.79088e+06 282912 678818. 2348.85 3.69 0.249148 0.217482 25966 169698 -1 2845 17 1391 3842 239432 52895 7.01061 7.01061 -170.364 -7.01061 0 0 902133. 3121.57 0.22 0.09 0.10 -1 -1 0.22 0.0332671 0.0293479 134 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 6.43 vpr 62.26 MiB -1 -1 0.24 17552 11 0.17 -1 -1 32748 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 23.6 MiB 0.67 915 4304 849 3239 216 62.3 MiB 0.05 0.00 6.78614 -143.669 -6.78614 6.78614 0.66 0.000743836 0.000684204 0.0219369 0.0204017 36 2700 29 6.79088e+06 229024 648988. 2245.63 2.90 0.176334 0.152204 25390 158009 -1 2122 15 1010 2751 160047 35594 6.06839 6.06839 -137.13 -6.06839 0 0 828058. 2865.25 0.22 0.07 0.09 -1 -1 0.22 0.0263581 0.0234799 101 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 13.82 vpr 63.27 MiB -1 -1 0.31 18392 15 0.48 -1 -1 32536 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 24.6 MiB 1.07 1525 5039 926 3796 317 63.3 MiB 0.07 0.00 9.59451 -195.342 -9.59451 9.59451 0.65 0.00113162 0.0010467 0.0334737 0.0309927 36 4861 41 6.79088e+06 336800 648988. 2245.63 9.32 0.307505 0.266673 25390 158009 -1 3846 22 1955 5417 336882 74570 8.35685 8.35685 -188.636 -8.35685 0 0 828058. 2865.25 0.21 0.13 0.14 -1 -1 0.21 0.0505632 0.0444924 179 257 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 6.64 vpr 62.78 MiB -1 -1 0.24 17808 13 0.40 -1 -1 32800 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 24.4 MiB 1.06 1281 8502 2158 5508 836 62.8 MiB 0.10 0.00 8.03603 -175.042 -8.03603 8.03603 0.65 0.000959768 0.000888383 0.0483244 0.0447435 38 3308 18 6.79088e+06 269440 678818. 2348.85 2.31 0.231242 0.201636 25966 169698 -1 2729 15 1311 3591 186034 41679 7.09671 7.09671 -167.647 -7.09671 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0325747 0.0288739 139 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 5.32 vpr 62.22 MiB -1 -1 0.18 17192 11 0.17 -1 -1 32440 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 23.7 MiB 1.33 1102 10183 2765 6008 1410 62.2 MiB 0.10 0.00 6.80233 -145.463 -6.80233 6.80233 0.66 0.00072524 0.000671389 0.048901 0.0453126 30 2820 19 6.79088e+06 175136 556674. 1926.21 1.21 0.136328 0.120444 24526 138013 -1 2278 16 941 2287 125340 28672 5.65673 5.65673 -139.283 -5.65673 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0255831 0.0226176 94 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 7.39 vpr 62.83 MiB -1 -1 0.27 17608 12 0.28 -1 -1 32864 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 24.4 MiB 1.09 1332 7953 2031 5347 575 62.8 MiB 0.09 0.00 7.73069 -165.16 -7.73069 7.73069 0.65 0.000964 0.000890569 0.0456717 0.0421955 38 3533 25 6.79088e+06 269440 678818. 2348.85 3.10 0.2487 0.21573 25966 169698 -1 2880 16 1393 4466 244161 53393 6.50936 6.50936 -156.666 -6.50936 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0346728 0.030597 146 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 17.34 vpr 62.52 MiB -1 -1 0.22 17532 12 0.22 -1 -1 32636 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 24.1 MiB 1.16 1053 12008 3553 6389 2066 62.5 MiB 0.11 0.00 7.28149 -150.89 -7.28149 7.28149 0.65 0.000789131 0.000731414 0.0561785 0.052091 44 2625 43 6.79088e+06 242496 787024. 2723.27 13.11 0.416319 0.359089 27118 194962 -1 2033 17 1102 2951 150094 35597 6.20493 6.20493 -138.957 -6.20493 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0289711 0.0255532 113 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 11.84 vpr 62.28 MiB -1 -1 0.17 17532 12 0.18 -1 -1 32664 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 23.7 MiB 1.03 903 6163 1336 4643 184 62.3 MiB 0.07 0.00 7.56546 -146.033 -7.56546 7.56546 0.66 0.000727775 0.000672303 0.0300188 0.0277792 30 2736 29 6.79088e+06 229024 556674. 1926.21 7.93 0.241243 0.208577 24526 138013 -1 2112 20 907 2572 134816 30941 6.67032 6.67032 -143.964 -6.67032 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0307648 0.0270191 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 7.43 vpr 62.76 MiB -1 -1 0.27 17588 12 0.27 -1 -1 32760 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 24.1 MiB 2.03 1197 6039 1341 4100 598 62.8 MiB 0.07 0.00 7.39356 -141.853 -7.39356 7.39356 0.66 0.000910431 0.000843034 0.0322218 0.0298629 40 2765 18 6.79088e+06 350272 706193. 2443.58 2.24 0.208922 0.180663 26254 175826 -1 2683 18 1287 4001 245257 52754 6.50238 6.50238 -135.7 -6.50238 0 0 926341. 3205.33 0.24 0.11 0.15 -1 -1 0.24 0.0402835 0.0355281 140 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 12.11 vpr 63.02 MiB -1 -1 0.27 17712 13 0.33 -1 -1 32716 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 24.5 MiB 0.98 1362 9111 2298 6252 561 63.0 MiB 0.11 0.00 7.91407 -168.647 -7.91407 7.91407 0.66 0.00103286 0.000955684 0.0534875 0.0494396 36 4498 41 6.79088e+06 309856 648988. 2245.63 7.58 0.300084 0.261512 25390 158009 -1 3430 25 2554 6396 468023 127210 7.54398 7.54398 -171.891 -7.54398 0 0 828058. 2865.25 0.21 0.16 0.13 -1 -1 0.21 0.0506363 0.0442805 160 236 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 8.05 vpr 62.77 MiB -1 -1 0.26 17760 12 0.21 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 24.1 MiB 1.19 1278 7770 1751 5660 359 62.8 MiB 0.09 0.00 7.73336 -164.138 -7.73336 7.73336 0.66 0.000950024 0.000880739 0.0438339 0.0405982 38 3570 28 6.79088e+06 269440 678818. 2348.85 3.72 0.247019 0.215267 25966 169698 -1 2893 19 1614 4633 260219 56380 6.62347 6.62347 -155.711 -6.62347 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0375635 0.033073 140 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 7.66 vpr 62.12 MiB -1 -1 0.16 17516 12 0.13 -1 -1 32500 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 23.6 MiB 1.77 988 4473 916 3372 185 62.1 MiB 0.05 0.00 7.24997 -147.671 -7.24997 7.24997 0.65 0.000707291 0.00065618 0.022194 0.0205907 36 2682 24 6.79088e+06 202080 648988. 2245.63 3.09 0.163083 0.140565 25390 158009 -1 2226 18 906 2477 157273 34411 6.12222 6.12222 -141.304 -6.12222 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0271049 0.0238525 93 120 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 8.12 vpr 62.38 MiB -1 -1 0.26 17720 12 0.24 -1 -1 32464 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 23.7 MiB 1.32 1084 12898 3877 6797 2224 62.4 MiB 0.12 0.00 7.21455 -151.198 -7.21455 7.21455 0.65 0.000785101 0.000727172 0.0602524 0.0557564 36 2934 32 6.79088e+06 255968 648988. 2245.63 3.73 0.228521 0.199143 25390 158009 -1 2522 17 1069 2930 187495 40044 6.38938 6.38938 -145.28 -6.38938 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0290961 0.0256175 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 7.23 vpr 62.61 MiB -1 -1 0.19 17712 11 0.18 -1 -1 32748 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 24.0 MiB 1.38 1115 8626 2299 5376 951 62.6 MiB 0.09 0.00 6.84847 -137.093 -6.84847 6.84847 0.64 0.00087515 0.000810387 0.0460887 0.0426746 36 3085 31 6.79088e+06 269440 648988. 2245.63 2.91 0.23545 0.204587 25390 158009 -1 2587 16 1145 3498 206937 46000 5.91846 5.91846 -134.854 -5.91846 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0311055 0.0274402 125 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 7.94 vpr 62.77 MiB -1 -1 0.24 17448 11 0.20 -1 -1 32728 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 24.3 MiB 1.17 1077 4642 990 3215 437 62.8 MiB 0.05 0.00 6.39394 -126.807 -6.39394 6.39394 0.65 0.000818836 0.000759181 0.0254812 0.0236803 36 2869 37 6.79088e+06 255968 648988. 2245.63 3.73 0.210239 0.181067 25390 158009 -1 2437 20 1375 4064 247006 53420 5.76386 5.76386 -127.412 -5.76386 0 0 828058. 2865.25 0.23 0.09 0.15 -1 -1 0.23 0.0336194 0.0294236 116 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 6.54 vpr 62.34 MiB -1 -1 0.25 17672 13 0.21 -1 -1 32832 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 23.9 MiB 1.64 1115 9196 2684 4764 1748 62.3 MiB 0.09 0.00 7.27805 -147.461 -7.27805 7.27805 0.65 0.000768155 0.00071176 0.0442552 0.0410236 30 3203 46 6.79088e+06 242496 556674. 1926.21 1.93 0.166825 0.145915 24526 138013 -1 2365 18 1028 2893 146859 34111 6.4521 6.4521 -143.501 -6.4521 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0293136 0.0258055 108 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 7.06 vpr 62.60 MiB -1 -1 0.21 17796 12 0.19 -1 -1 32648 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 24.0 MiB 1.91 1193 6490 1485 4564 441 62.6 MiB 0.08 0.00 7.26273 -167.563 -7.26273 7.26273 0.70 0.000865632 0.000802658 0.0357254 0.0331438 40 2753 23 6.79088e+06 242496 706193. 2443.58 2.09 0.205279 0.177919 26254 175826 -1 2592 15 1162 3054 182136 40617 6.16912 6.16912 -155.542 -6.16912 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0288037 0.0255448 120 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 10.18 vpr 62.44 MiB -1 -1 0.21 17456 13 0.28 -1 -1 32884 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.58 1194 6123 1343 4442 338 62.4 MiB 0.07 0.00 8.79477 -171.911 -8.79477 8.79477 0.65 0.000909552 0.00084276 0.0339932 0.0315285 34 3211 26 6.79088e+06 282912 618332. 2139.56 5.44 0.321229 0.276006 25102 150614 -1 2646 15 1148 3180 179176 40712 7.64065 7.64065 -158.33 -7.64065 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0286905 0.0257446 137 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 8.43 vpr 62.83 MiB -1 -1 0.27 17720 14 0.25 -1 -1 32844 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.22 1287 8685 2330 5621 734 62.8 MiB 0.10 0.00 8.66267 -183.033 -8.66267 8.66267 0.67 0.000928874 0.000860025 0.0478698 0.0443494 38 3763 48 6.79088e+06 269440 678818. 2348.85 4.10 0.278372 0.241265 25966 169698 -1 2915 16 1330 3905 202778 45246 7.71556 7.71556 -172.147 -7.71556 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0331172 0.0292745 132 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 8.43 vpr 62.61 MiB -1 -1 0.27 17892 14 0.27 -1 -1 32828 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.1 MiB 1.95 1083 11456 4044 5385 2027 62.6 MiB 0.12 0.00 7.96611 -159.164 -7.96611 7.96611 0.65 0.000881636 0.000816576 0.0622222 0.0574787 38 3010 34 6.79088e+06 229024 678818. 2348.85 3.38 0.258565 0.225222 25966 169698 -1 2533 21 1329 3905 220140 48577 6.88531 6.88531 -150.267 -6.88531 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0376211 0.0330015 122 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 7.45 vpr 62.79 MiB -1 -1 0.27 17928 13 0.32 -1 -1 32968 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 24.3 MiB 1.65 1338 8024 1861 5707 456 62.8 MiB 0.09 0.00 8.29812 -170.177 -8.29812 8.29812 0.65 0.000965207 0.00089395 0.0441122 0.0407986 46 3286 28 6.79088e+06 296384 828058. 2865.25 2.50 0.245244 0.212847 27406 200422 -1 2713 17 1339 3882 198248 44688 7.42576 7.42576 -159.92 -7.42576 0 0 1.01997e+06 3529.29 0.27 0.09 0.17 -1 -1 0.27 0.0397766 0.0354187 144 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 7.42 vpr 62.18 MiB -1 -1 0.23 17568 13 0.18 -1 -1 32308 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 23.6 MiB 1.87 919 12292 3407 6536 2349 62.2 MiB 0.12 0.00 7.20737 -146.133 -7.20737 7.20737 0.68 0.000743444 0.000666756 0.061928 0.0572142 36 2720 18 6.79088e+06 242496 648988. 2245.63 2.40 0.215805 0.188786 25390 158009 -1 2349 21 1060 2707 237673 81251 6.16917 6.16917 -141.277 -6.16917 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0324101 0.0284635 104 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 9.19 vpr 62.99 MiB -1 -1 0.21 17928 13 0.42 -1 -1 32736 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 24.6 MiB 1.62 1350 9234 2593 5787 854 63.0 MiB 0.11 0.00 8.31996 -168.69 -8.31996 8.31996 0.65 0.000974617 0.000903546 0.053231 0.0493392 38 3825 50 6.79088e+06 296384 678818. 2348.85 4.28 0.292479 0.254009 25966 169698 -1 3171 20 1711 4755 291516 62812 7.05325 7.05325 -160.364 -7.05325 0 0 902133. 3121.57 0.22 0.11 0.14 -1 -1 0.22 0.0402904 0.0353792 145 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 7.05 vpr 62.64 MiB -1 -1 0.27 17776 14 0.30 -1 -1 32800 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 24.1 MiB 1.50 1251 6312 1329 4019 964 62.6 MiB 0.07 0.00 8.37235 -176.058 -8.37235 8.37235 0.64 0.00090551 0.000834693 0.0358375 0.0328502 40 3069 17 6.79088e+06 242496 706193. 2443.58 2.33 0.212659 0.18395 26254 175826 -1 2990 20 1531 4498 306796 65009 7.25783 7.25783 -172.618 -7.25783 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0426835 0.0378243 128 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 7.53 vpr 62.49 MiB -1 -1 0.27 17796 13 0.23 -1 -1 32784 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 24.0 MiB 1.71 1125 7914 1884 5216 814 62.5 MiB 0.09 0.00 7.39828 -160.2 -7.39828 7.39828 0.65 0.000876069 0.000811907 0.0427174 0.0395962 38 3005 21 6.79088e+06 255968 678818. 2348.85 2.74 0.213607 0.185434 25966 169698 -1 2486 23 1200 3332 176702 39015 6.56626 6.56626 -155.185 -6.56626 0 0 902133. 3121.57 0.22 0.05 0.17 -1 -1 0.22 0.0230078 0.0205603 124 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 7.38 vpr 62.81 MiB -1 -1 0.25 17932 13 0.23 -1 -1 32868 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 24.3 MiB 1.63 1096 8306 2939 4353 1014 62.8 MiB 0.09 0.00 7.45237 -146.107 -7.45237 7.45237 0.65 0.000857025 0.000793693 0.0443665 0.0411091 38 3152 24 6.79088e+06 255968 678818. 2348.85 2.76 0.216677 0.188092 25966 169698 -1 2342 16 1150 3084 162162 37365 6.43207 6.43207 -139.415 -6.43207 0 0 902133. 3121.57 0.23 0.08 0.11 -1 -1 0.23 0.0341025 0.030437 121 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 7.91 vpr 62.83 MiB -1 -1 0.27 17692 14 0.35 -1 -1 32944 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 24.4 MiB 1.55 1434 9943 2708 5582 1653 62.8 MiB 0.11 0.00 8.52022 -179.043 -8.52022 8.52022 0.64 0.00100723 0.000932803 0.0579384 0.0537278 46 3715 29 6.79088e+06 282912 828058. 2865.25 3.04 0.267619 0.233205 27406 200422 -1 3171 17 1583 4694 251057 54959 7.46497 7.46497 -164.971 -7.46497 0 0 1.01997e+06 3529.29 0.26 0.12 0.14 -1 -1 0.26 0.0448511 0.0395654 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 9.67 vpr 62.53 MiB -1 -1 0.17 17940 11 0.27 -1 -1 32740 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 24.0 MiB 1.90 1077 10149 2679 5779 1691 62.5 MiB 0.10 0.00 7.52622 -140.559 -7.52622 7.52622 0.65 0.000873623 0.000809523 0.0521758 0.0483369 36 3431 24 6.79088e+06 309856 648988. 2245.63 4.73 0.237179 0.20644 25390 158009 -1 2771 20 1451 4096 246936 56814 6.50587 6.50587 -138.088 -6.50587 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0366056 0.032081 136 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 7.56 vpr 62.23 MiB -1 -1 0.21 17252 13 0.16 -1 -1 32704 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 23.6 MiB 2.80 972 6054 1229 4689 136 62.2 MiB 0.07 0.00 6.97458 -160.094 -6.97458 6.97458 0.66 0.000731567 0.000670611 0.0301581 0.027919 44 2580 35 6.79088e+06 188608 787024. 2723.27 1.85 0.191086 0.165454 27118 194962 -1 2150 15 1044 2364 139472 31738 5.93965 5.93965 -149.931 -5.93965 0 0 997811. 3452.63 0.25 0.06 0.16 -1 -1 0.25 0.0244777 0.0216755 98 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 9.08 vpr 62.61 MiB -1 -1 0.27 17804 14 0.23 -1 -1 32576 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 24.1 MiB 1.57 963 3581 624 2890 67 62.6 MiB 0.05 0.00 8.38402 -165.799 -8.38402 8.38402 0.65 0.000872635 0.000809054 0.0214483 0.0199319 36 3137 33 6.79088e+06 229024 648988. 2245.63 4.36 0.206494 0.178374 25390 158009 -1 2489 23 1433 3816 225579 53597 7.63717 7.63717 -163.256 -7.63717 0 0 828058. 2865.25 0.23 0.10 0.14 -1 -1 0.23 0.0408096 0.0357007 122 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 20.72 vpr 63.18 MiB -1 -1 0.28 18008 15 0.42 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 24.6 MiB 1.43 1424 5271 949 4056 266 63.2 MiB 0.08 0.00 9.1358 -193.594 -9.1358 9.1358 0.66 0.00108542 0.00100548 0.0353689 0.0328252 40 3948 49 6.79088e+06 309856 706193. 2443.58 15.69 0.529677 0.455669 26254 175826 -1 3616 22 2383 6323 430097 92001 7.89475 7.89475 -181.053 -7.89475 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0484684 0.0424736 163 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 5.64 vpr 62.25 MiB -1 -1 0.22 17532 11 0.17 -1 -1 32620 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 23.7 MiB 1.53 958 10726 3368 5272 2086 62.2 MiB 0.10 0.00 6.79222 -142.45 -6.79222 6.79222 0.65 0.000707321 0.000655175 0.0477879 0.0442632 30 2689 41 6.79088e+06 202080 556674. 1926.21 1.22 0.157214 0.138108 24526 138013 -1 2234 18 943 2504 151073 33167 5.78973 5.78973 -136.953 -5.78973 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0271602 0.0239095 97 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 16.28 vpr 62.40 MiB -1 -1 0.23 17540 12 0.18 -1 -1 32796 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63896 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 24.0 MiB 1.47 1114 10400 2653 5866 1881 62.4 MiB 0.10 0.00 6.63358 -148.815 -6.63358 6.63358 0.65 0.000783151 0.000724845 0.0506235 0.0469023 38 3230 30 6.79088e+06 229024 678818. 2348.85 11.72 0.337755 0.291231 25966 169698 -1 2582 19 1265 3460 189795 41991 5.82549 5.82549 -148.72 -5.82549 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0310915 0.0273246 112 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 15.10 vpr 63.05 MiB -1 -1 0.20 17796 12 0.29 -1 -1 32864 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 24.7 MiB 1.13 1409 5123 1016 3643 464 63.1 MiB 0.07 0.00 7.37446 -165.375 -7.37446 7.37446 0.65 0.000979177 0.000906734 0.0318864 0.029534 38 3552 27 6.79088e+06 255968 678818. 2348.85 10.95 0.384941 0.330118 25966 169698 -1 3027 19 1404 4076 214650 48148 6.46241 6.46241 -154.792 -6.46241 0 0 902133. 3121.57 0.21 0.05 0.09 -1 -1 0.21 0.0227835 0.0205403 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 23.27 vpr 62.73 MiB -1 -1 0.24 17664 12 0.23 -1 -1 32768 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 24.0 MiB 1.86 1290 8804 2224 5446 1134 62.7 MiB 0.10 0.00 7.66631 -156.992 -7.66631 7.66631 0.66 0.000898425 0.000832859 0.0465402 0.0430774 38 3773 50 6.79088e+06 242496 678818. 2348.85 18.25 0.410315 0.353158 25966 169698 -1 2908 20 1397 4117 236922 51526 6.45897 6.45897 -151.356 -6.45897 0 0 902133. 3121.57 0.26 0.10 0.14 -1 -1 0.26 0.0368022 0.0323183 130 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 7.67 vpr 63.00 MiB -1 -1 0.24 17948 14 0.44 -1 -1 32764 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 24.5 MiB 1.70 1339 6323 1159 4879 285 63.0 MiB 0.10 0.00 9.2305 -183.989 -9.2305 9.2305 0.65 0.00140765 0.00132703 0.0490847 0.0454788 38 3705 30 6.79088e+06 296384 678818. 2348.85 2.74 0.273579 0.237473 25966 169698 -1 3013 18 1532 4522 227149 51743 7.89131 7.89131 -171.065 -7.89131 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0419256 0.0370252 167 233 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 10.18 vpr 62.55 MiB -1 -1 0.22 17644 12 0.23 -1 -1 32680 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1023 10231 4165 5804 262 62.6 MiB 0.11 0.00 7.21752 -140.072 -7.21752 7.21752 0.65 0.000835646 0.000774212 0.0529946 0.0491438 36 3532 36 6.79088e+06 255968 648988. 2245.63 5.62 0.240193 0.208887 25390 158009 -1 2548 16 1205 3395 212673 48136 6.16142 6.16142 -137.705 -6.16142 0 0 828058. 2865.25 0.21 0.08 0.15 -1 -1 0.21 0.0297913 0.0262521 121 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 5.65 vpr 62.30 MiB -1 -1 0.21 17532 11 0.18 -1 -1 32712 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 23.7 MiB 1.95 852 9208 3256 4555 1397 62.3 MiB 0.09 0.00 7.04622 -127.422 -7.04622 7.04622 0.65 0.000845715 0.000776443 0.0457971 0.0422499 30 2286 23 6.79088e+06 255968 556674. 1926.21 0.93 0.133927 0.117743 24526 138013 -1 1813 16 927 2368 105512 26395 5.91852 5.91852 -121.555 -5.91852 0 0 706193. 2443.58 0.19 0.03 0.08 -1 -1 0.19 0.0150397 0.0136307 104 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 9.05 vpr 63.68 MiB -1 -1 0.21 18336 13 0.45 -1 -1 32772 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 25.1 MiB 1.56 1698 8532 2074 5800 658 63.7 MiB 0.11 0.00 7.91451 -163.387 -7.91451 7.91451 0.65 0.00118298 0.00109418 0.0556205 0.0514842 46 4524 47 6.79088e+06 350272 828058. 2865.25 4.10 0.342616 0.297791 27406 200422 -1 3573 18 1870 5879 293787 64537 6.99937 6.99937 -156.314 -6.99937 0 0 1.01997e+06 3529.29 0.25 0.12 0.20 -1 -1 0.25 0.0455711 0.0402934 188 286 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 6.55 vpr 62.71 MiB -1 -1 0.27 17660 14 0.25 -1 -1 33104 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 24.2 MiB 1.65 1264 9385 2554 5852 979 62.7 MiB 0.11 0.00 8.41881 -168.357 -8.41881 8.41881 0.66 0.000898228 0.000832554 0.0523551 0.0485148 30 3443 28 6.79088e+06 296384 556674. 1926.21 1.83 0.169242 0.148826 24526 138013 -1 2741 17 1270 3452 177968 40166 7.21431 7.21431 -163.766 -7.21431 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.032728 0.0288308 130 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 6.81 vpr 62.23 MiB -1 -1 0.20 17896 12 0.16 -1 -1 32372 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63728 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 23.6 MiB 1.52 1075 7736 1882 5428 426 62.2 MiB 0.08 0.00 7.20863 -155.968 -7.20863 7.20863 0.65 0.00075905 0.000702481 0.0361966 0.0335103 38 2746 23 6.79088e+06 242496 678818. 2348.85 2.38 0.191376 0.166702 25966 169698 -1 2229 18 1032 2575 147443 32944 6.12992 6.12992 -146.185 -6.12992 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.029007 0.0255949 109 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 8.59 vpr 62.51 MiB -1 -1 0.25 17608 13 0.27 -1 -1 32784 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 24.0 MiB 1.32 1233 12542 3940 6787 1815 62.5 MiB 0.12 0.00 8.09146 -166.475 -8.09146 8.09146 0.71 0.000681578 0.000622674 0.0550873 0.0505615 36 3202 30 6.79088e+06 242496 648988. 2245.63 4.13 0.246259 0.213837 25390 158009 -1 2687 18 1245 3410 184945 42779 6.82029 6.82029 -158.939 -6.82029 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0334718 0.0294138 128 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 7.65 vpr 62.91 MiB -1 -1 0.28 17928 13 0.31 -1 -1 32752 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 24.4 MiB 1.61 1392 4695 845 3563 287 62.9 MiB 0.06 0.00 7.47587 -155.329 -7.47587 7.47587 0.65 0.0010339 0.00095697 0.0295175 0.0274024 40 3664 28 6.79088e+06 323328 706193. 2443.58 2.85 0.245988 0.212609 26254 175826 -1 3433 18 1707 4807 297818 65147 6.54507 6.54507 -151.854 -6.54507 0 0 926341. 3205.33 0.22 0.11 0.10 -1 -1 0.22 0.0395743 0.0348946 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 8.26 vpr 62.71 MiB -1 -1 0.14 17608 11 0.28 -1 -1 32740 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 24.1 MiB 1.58 1218 4659 929 3342 388 62.7 MiB 0.06 0.00 7.06923 -144.171 -7.06923 7.06923 0.65 0.000916995 0.000849041 0.0274923 0.0255304 36 3280 38 6.79088e+06 296384 648988. 2245.63 3.72 0.233118 0.201034 25390 158009 -1 2789 15 1179 3509 202940 44755 6.16912 6.16912 -138.96 -6.16912 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0311014 0.0275112 141 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 7.41 vpr 62.82 MiB -1 -1 0.27 17804 15 0.36 -1 -1 32780 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 24.4 MiB 1.42 1290 8402 2178 5761 463 62.8 MiB 0.10 0.00 8.74612 -186.954 -8.74612 8.74612 0.66 0.000964758 0.000892134 0.0474366 0.0438387 46 3189 27 6.79088e+06 296384 828058. 2865.25 2.52 0.248594 0.215819 27406 200422 -1 2786 28 1295 4217 461701 217315 7.50422 7.50422 -171.497 -7.50422 0 0 1.01997e+06 3529.29 0.25 0.19 0.17 -1 -1 0.25 0.056822 0.0500496 147 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 14.89 vpr 62.82 MiB -1 -1 0.23 18124 13 0.33 -1 -1 32884 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1316 8641 2148 5636 857 62.8 MiB 0.11 0.00 8.07216 -175.63 -8.07216 8.07216 0.68 0.000946833 0.000874917 0.0541162 0.0498246 40 2999 17 6.79088e+06 282912 706193. 2443.58 9.83 0.424357 0.365352 26254 175826 -1 2987 16 1343 3851 238119 53175 7.04981 7.04981 -167.947 -7.04981 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0334408 0.0295524 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 7.66 vpr 62.29 MiB -1 -1 0.16 17344 12 0.22 -1 -1 32768 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 23.7 MiB 1.58 864 9543 2234 6923 386 62.3 MiB 0.09 0.00 7.58072 -150.751 -7.58072 7.58072 0.65 0.000773525 0.000716648 0.0468196 0.0434067 38 2787 32 6.79088e+06 242496 678818. 2348.85 3.17 0.216181 0.188585 25966 169698 -1 2065 16 1049 2587 138165 31689 6.83831 6.83831 -144.518 -6.83831 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0272769 0.0241865 111 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 7.52 vpr 62.26 MiB -1 -1 0.18 17384 11 0.15 -1 -1 32716 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 23.7 MiB 1.47 1018 5722 1217 4259 246 62.3 MiB 0.06 0.00 6.71746 -144.764 -6.71746 6.71746 0.65 0.000732968 0.000678426 0.0280205 0.0259502 36 2822 26 6.79088e+06 188608 648988. 2245.63 3.27 0.183893 0.159153 25390 158009 -1 2332 17 1031 2563 161297 35918 5.86813 5.86813 -141.367 -5.86813 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0268965 0.0236881 98 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 6.71 vpr 63.02 MiB -1 -1 0.23 17804 13 0.32 -1 -1 32860 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 24.4 MiB 1.06 1236 5940 1259 4215 466 63.0 MiB 0.07 0.00 8.31912 -162.691 -8.31912 8.31912 0.63 0.000940237 0.00087034 0.0346031 0.0320733 38 3344 20 6.79088e+06 282912 678818. 2348.85 2.52 0.223054 0.19318 25966 169698 -1 2835 16 1360 3850 202602 44829 7.6875 7.6875 -160.272 -7.6875 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0343245 0.0303667 143 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 5.83 vpr 62.20 MiB -1 -1 0.23 17456 10 0.17 -1 -1 32612 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63692 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 23.6 MiB 1.72 951 4560 1025 3135 400 62.2 MiB 0.05 0.00 6.21922 -128.027 -6.21922 6.21922 0.65 0.000716763 0.000657006 0.0223085 0.0206811 30 2695 24 6.79088e+06 229024 556674. 1926.21 1.30 0.109873 0.0956216 24526 138013 -1 2076 18 907 2285 114350 26868 5.53902 5.53902 -125.872 -5.53902 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0271188 0.0238687 101 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 9.35 vpr 62.27 MiB -1 -1 0.22 17324 14 0.24 -1 -1 32724 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 23.9 MiB 2.58 984 4532 878 3142 512 62.3 MiB 0.05 0.00 7.85466 -160.915 -7.85466 7.85466 0.64 0.000766674 0.000709896 0.0227193 0.0210875 34 3083 47 6.79088e+06 242496 618332. 2139.56 3.83 0.204591 0.176135 25102 150614 -1 2447 18 1120 2955 192392 43299 6.87418 6.87418 -156.718 -6.87418 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0293702 0.0258739 110 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 8.13 vpr 62.80 MiB -1 -1 0.14 17868 13 0.28 -1 -1 32948 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 24.1 MiB 2.48 1210 8183 2048 5045 1090 62.8 MiB 0.09 0.00 7.80505 -164.773 -7.80505 7.80505 0.65 0.000878916 0.0008158 0.0433158 0.0401964 38 3002 19 6.79088e+06 269440 678818. 2348.85 2.57 0.218098 0.189906 25966 169698 -1 2695 16 1228 3149 180865 39628 6.72425 6.72425 -158.926 -6.72425 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0307016 0.0271404 125 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 8.07 vpr 62.19 MiB -1 -1 0.26 17532 12 0.15 -1 -1 32752 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63684 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 23.6 MiB 3.13 940 12120 3498 6380 2242 62.2 MiB 0.11 0.00 6.85518 -144.407 -6.85518 6.85518 0.69 0.000712568 0.000660271 0.0533869 0.0494021 46 2350 15 6.79088e+06 229024 828058. 2865.25 1.86 0.186996 0.16356 27406 200422 -1 2033 17 937 2446 140777 31315 5.99343 5.99343 -137.347 -5.99343 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0263719 0.023268 99 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 6.78 vpr 62.71 MiB -1 -1 0.14 17628 12 0.19 -1 -1 32828 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 24.1 MiB 1.88 1190 9694 2639 6567 488 62.7 MiB 0.10 0.00 7.04874 -155.773 -7.04874 7.04874 0.65 0.00089854 0.000830153 0.0526673 0.0486103 46 2758 18 6.79088e+06 242496 828058. 2865.25 1.87 0.228255 0.198512 27406 200422 -1 2312 15 1077 3163 160333 35862 6.20488 6.20488 -146.595 -6.20488 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0312418 0.0276397 130 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 14.76 vpr 62.75 MiB -1 -1 0.15 18080 13 0.28 -1 -1 32860 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 24.3 MiB 1.10 1303 8543 2004 5667 872 62.8 MiB 0.08 0.00 7.83951 -165.716 -7.83951 7.83951 0.65 0.00050416 0.000464237 0.0360554 0.033174 38 3278 20 6.79088e+06 269440 678818. 2348.85 10.59 0.370296 0.318104 25966 169698 -1 2822 21 1439 4066 220511 48947 6.93332 6.93332 -157.758 -6.93332 0 0 902133. 3121.57 0.22 0.10 0.12 -1 -1 0.22 0.0404928 0.035564 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 7.13 vpr 62.29 MiB -1 -1 0.18 17632 11 0.19 -1 -1 32672 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 23.6 MiB 1.79 1116 6616 1429 3881 1306 62.3 MiB 0.07 0.00 6.2158 -147.345 -6.2158 6.2158 0.70 0.000747522 0.000691696 0.0322993 0.0299386 36 3218 33 6.79088e+06 215552 648988. 2245.63 2.42 0.141248 0.123013 25390 158009 -1 2609 16 1232 3209 185957 42205 5.35995 5.35995 -141.952 -5.35995 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0266569 0.0235764 106 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 8.90 vpr 62.53 MiB -1 -1 0.14 17632 13 0.21 -1 -1 32620 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 24.0 MiB 2.37 994 9543 2876 4545 2122 62.5 MiB 0.10 0.00 7.66009 -161.63 -7.66009 7.66009 0.65 0.000830116 0.00076882 0.050397 0.0466143 38 3161 25 6.79088e+06 202080 678818. 2348.85 3.65 0.224886 0.195856 25966 169698 -1 2217 20 1130 3116 162814 38166 6.67042 6.67042 -152.159 -6.67042 0 0 902133. 3121.57 0.22 0.08 0.10 -1 -1 0.22 0.03599 0.0318113 113 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 13.89 vpr 62.71 MiB -1 -1 0.25 17612 13 0.25 -1 -1 32812 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 24.1 MiB 1.13 1317 8183 2040 5445 698 62.7 MiB 0.11 0.00 7.48608 -168.657 -7.48608 7.48608 0.65 0.000914516 0.000847478 0.0551502 0.0511117 38 3334 18 6.79088e+06 255968 678818. 2348.85 9.73 0.354683 0.306528 25966 169698 -1 2836 17 1443 3829 193627 45163 6.69849 6.69849 -160.313 -6.69849 0 0 902133. 3121.57 0.21 0.05 0.09 -1 -1 0.21 0.0200468 0.0181363 136 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 10.55 vpr 62.36 MiB -1 -1 0.15 17612 11 0.20 -1 -1 32716 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 23.9 MiB 1.90 932 11088 4572 6163 353 62.4 MiB 0.11 0.00 6.40374 -127.638 -6.40374 6.40374 0.65 0.000801018 0.00074125 0.0547768 0.0507128 38 3204 35 6.79088e+06 255968 678818. 2348.85 5.69 0.236168 0.205034 25966 169698 -1 2154 16 1193 3220 164660 39971 5.38344 5.38344 -120.238 -5.38344 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0286278 0.0252208 116 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 14.82 vpr 62.88 MiB -1 -1 0.29 18188 14 0.28 -1 -1 33236 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 24.4 MiB 1.39 1275 12567 3064 6849 2654 62.9 MiB 0.14 0.00 8.90517 -187.129 -8.90517 8.90517 0.65 0.0010339 0.000956874 0.0715932 0.0662943 38 3597 20 6.79088e+06 309856 678818. 2348.85 10.19 0.439662 0.381301 25966 169698 -1 2719 15 1368 3478 182247 41956 8.06351 8.06351 -178.421 -8.06351 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0360619 0.0320409 159 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 7.91 vpr 62.21 MiB -1 -1 0.22 17232 12 0.15 -1 -1 32596 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 23.6 MiB 2.21 1076 14144 4263 7957 1924 62.2 MiB 0.12 0.00 6.67019 -155.032 -6.67019 6.67019 0.69 0.000713237 0.000660783 0.0604007 0.0558645 38 2834 33 6.79088e+06 255968 678818. 2348.85 2.67 0.21709 0.189595 25966 169698 -1 2431 17 1063 2485 143989 31620 5.9004 5.9004 -146.441 -5.9004 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0266677 0.0235326 106 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 17.51 vpr 62.73 MiB -1 -1 0.28 18092 13 0.29 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 24.1 MiB 1.40 1249 10698 2850 6495 1353 62.7 MiB 0.13 0.00 8.17702 -169.59 -8.17702 8.17702 0.66 0.001072 0.000985281 0.0626055 0.0578089 38 3574 20 6.79088e+06 269440 678818. 2348.85 12.84 0.409832 0.354528 25966 169698 -1 2827 19 1307 3681 195634 44638 7.25013 7.25013 -165.64 -7.25013 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0369141 0.0325406 136 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 13.56 vpr 62.31 MiB -1 -1 0.25 17664 13 0.18 -1 -1 32596 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 23.7 MiB 1.07 988 12528 4457 5893 2178 62.3 MiB 0.11 0.00 7.60722 -166.135 -7.60722 7.60722 0.67 0.000623747 0.000572637 0.0551689 0.0510352 38 2718 29 6.79088e+06 269440 678818. 2348.85 9.38 0.340964 0.294778 25966 169698 -1 2116 22 1062 2686 131823 31124 6.36938 6.36938 -151.235 -6.36938 0 0 902133. 3121.57 0.24 0.08 0.17 -1 -1 0.24 0.0334932 0.0293257 107 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 14.02 vpr 62.55 MiB -1 -1 0.27 17720 12 0.22 -1 -1 32792 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 24.0 MiB 1.42 1129 6563 1390 4948 225 62.5 MiB 0.07 0.00 7.37103 -160.155 -7.37103 7.37103 0.64 0.000889299 0.000823022 0.0358567 0.0332178 30 3342 45 6.79088e+06 255968 556674. 1926.21 9.55 0.292427 0.252169 24526 138013 -1 2538 16 1126 3371 177495 40121 6.37287 6.37287 -151.837 -6.37287 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0327592 0.0289556 128 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 7.72 vpr 63.19 MiB -1 -1 0.29 18320 15 0.47 -1 -1 33276 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 24.6 MiB 1.10 1461 7019 1723 4462 834 63.2 MiB 0.10 0.00 9.4802 -194.196 -9.4802 9.4802 0.65 0.00113845 0.00105155 0.0464561 0.0429446 40 3857 20 6.79088e+06 336800 706193. 2443.58 3.05 0.276363 0.240302 26254 175826 -1 3750 20 2150 6380 414318 91535 8.47507 8.47507 -190.97 -8.47507 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0478573 0.0421308 183 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 5.51 vpr 61.83 MiB -1 -1 0.18 17408 10 0.10 -1 -1 32084 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63316 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 23.2 MiB 1.47 790 7049 2015 4252 782 61.8 MiB 0.07 0.00 4.74332 -119.113 -4.74332 4.74332 0.66 0.000623954 0.000575914 0.032296 0.0299963 30 2094 24 6.79088e+06 161664 556674. 1926.21 1.30 0.103114 0.0905478 24526 138013 -1 1704 15 667 1522 94047 20784 4.33162 4.33162 -116.881 -4.33162 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.0186289 0.0163997 66 84 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 7.55 vpr 62.33 MiB -1 -1 0.23 17380 13 0.26 -1 -1 32648 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 23.9 MiB 1.52 974 10050 2926 5436 1688 62.3 MiB 0.10 0.00 7.74787 -157.983 -7.74787 7.74787 0.66 0.00074975 0.000694987 0.0480186 0.0445213 36 2911 43 6.79088e+06 229024 648988. 2245.63 2.96 0.220104 0.191561 25390 158009 -1 2377 15 1131 2801 179307 40320 6.58438 6.58438 -153.211 -6.58438 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0256494 0.0227623 103 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 7.55 vpr 62.39 MiB -1 -1 0.24 17368 12 0.20 -1 -1 32576 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 23.9 MiB 1.86 1289 8448 2191 5318 939 62.4 MiB 0.08 0.00 7.18863 -160.485 -7.18863 7.18863 0.65 0.000666816 0.000609929 0.040015 0.0369608 38 3079 21 6.79088e+06 242496 678818. 2348.85 2.62 0.209597 0.181868 25966 169698 -1 2575 15 1269 3143 178719 39214 6.08296 6.08296 -151.708 -6.08296 0 0 902133. 3121.57 0.25 0.09 0.15 -1 -1 0.25 0.032691 0.0291593 117 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 4.73 vpr 61.87 MiB -1 -1 0.21 17276 9 0.16 -1 -1 32436 -1 -1 18 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63356 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 23.4 MiB 0.84 752 9555 2712 5903 940 61.9 MiB 0.08 0.00 5.16629 -99.605 -5.16629 5.16629 0.65 0.0006068 0.000563059 0.0391518 0.0363286 30 2043 29 6.79088e+06 242496 556674. 1926.21 1.03 0.119647 0.104938 24526 138013 -1 1659 17 741 2054 108678 24546 4.39659 4.39659 -97.2578 -4.39659 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.0222117 0.0195227 86 110 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 9.02 vpr 62.81 MiB -1 -1 0.28 17804 12 0.28 -1 -1 32764 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 24.2 MiB 1.48 1312 13291 3621 7142 2528 62.8 MiB 0.14 0.00 7.35568 -164.212 -7.35568 7.35568 0.65 0.000958128 0.000883732 0.0721738 0.0667278 38 3697 28 6.79088e+06 282912 678818. 2348.85 4.27 0.279409 0.2443 25966 169698 -1 3095 17 1650 4419 232270 52748 6.67037 6.67037 -158.867 -6.67037 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0353262 0.0311867 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 11.45 vpr 62.98 MiB -1 -1 0.24 18156 13 0.34 -1 -1 32640 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 24.3 MiB 1.84 1311 13291 3763 7122 2406 63.0 MiB 0.14 0.00 8.3208 -173.057 -8.3208 8.3208 0.65 0.000959909 0.000888605 0.0729051 0.0675704 34 4579 49 6.79088e+06 296384 618332. 2139.56 6.42 0.306009 0.266335 25102 150614 -1 3475 20 1541 4341 291704 63371 7.3039 7.3039 -171.303 -7.3039 0 0 787024. 2723.27 0.20 0.11 0.10 -1 -1 0.20 0.0395762 0.0346816 147 199 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 7.19 vpr 63.10 MiB -1 -1 0.21 17644 1 0.03 -1 -1 30244 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 24.5 MiB 2.76 1137 15768 5063 8031 2674 63.1 MiB 0.15 0.00 5.46262 -163.811 -5.46262 5.46262 0.65 0.00070409 0.000653812 0.0576114 0.0535097 34 2793 23 6.87369e+06 363320 618332. 2139.56 1.63 0.195823 0.171564 25762 151098 -1 2290 18 1636 2589 181807 43066 4.4513 4.4513 -151.51 -4.4513 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0251416 0.0219712 142 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 6.63 vpr 62.78 MiB -1 -1 0.16 17812 1 0.03 -1 -1 30328 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 24.3 MiB 2.40 995 9347 2406 6094 847 62.8 MiB 0.10 0.00 4.40625 -134.148 -4.40625 4.40625 0.69 0.000705981 0.000656157 0.0372348 0.0346051 34 2568 29 6.87369e+06 335372 618332. 2139.56 1.46 0.182543 0.158598 25762 151098 -1 2204 21 1821 2766 192148 46144 4.07136 4.07136 -140.123 -4.07136 0 0 787024. 2723.27 0.23 0.08 0.14 -1 -1 0.23 0.0285205 0.0248281 138 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 6.26 vpr 62.75 MiB -1 -1 0.14 17252 1 0.03 -1 -1 30216 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.3 MiB 2.23 954 15337 4637 8345 2355 62.8 MiB 0.13 0.00 4.42735 -120.659 -4.42735 4.42735 0.65 0.000624243 0.000580482 0.0536864 0.0498778 34 2485 25 6.87369e+06 293451 618332. 2139.56 1.31 0.178056 0.155745 25762 151098 -1 1976 20 1261 1705 123346 29622 3.61336 3.61336 -117.518 -3.61336 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0245786 0.0214086 124 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.47 vpr 62.72 MiB -1 -1 0.19 17240 1 0.03 -1 -1 30200 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 24.3 MiB 1.14 990 16170 4805 9691 1674 62.7 MiB 0.15 0.00 4.56722 -126.881 -4.56722 4.56722 0.67 0.000637932 0.000592899 0.0538523 0.0500278 34 2380 21 6.87369e+06 405241 618332. 2139.56 1.48 0.178616 0.156249 25762 151098 -1 2046 23 1518 2779 207672 47000 3.7744 3.7744 -124.262 -3.7744 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0278217 0.0240918 124 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 5.13 vpr 62.79 MiB -1 -1 0.18 17900 1 0.03 -1 -1 30420 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 24.3 MiB 1.17 1020 12127 3332 7989 806 62.8 MiB 0.12 0.00 4.58138 -135.491 -4.58138 4.58138 0.66 0.000694499 0.000643039 0.0429769 0.039757 28 2864 24 6.87369e+06 377294 531479. 1839.03 1.17 0.128001 0.112649 24610 126494 -1 2425 23 1873 3644 282352 63929 3.9097 3.9097 -138.221 -3.9097 0 0 648988. 2245.63 0.17 0.10 0.12 -1 -1 0.17 0.0290406 0.0251452 131 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.01 vpr 62.90 MiB -1 -1 0.19 17668 1 0.03 -1 -1 30244 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 24.4 MiB 1.28 1076 15643 4151 9274 2218 62.9 MiB 0.15 0.00 3.36233 -119.977 -3.36233 3.36233 0.71 0.000714931 0.000663986 0.0565832 0.0525297 28 2604 23 6.87369e+06 419215 531479. 1839.03 0.85 0.14168 0.125343 24610 126494 -1 2382 21 1482 2421 183960 41128 3.11061 3.11061 -126.364 -3.11061 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0287567 0.0249748 136 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 5.85 vpr 62.35 MiB -1 -1 0.09 17636 1 0.02 -1 -1 30572 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 23.9 MiB 1.97 768 11200 3422 6221 1557 62.3 MiB 0.09 0.00 3.88482 -108.503 -3.88482 3.88482 0.68 0.000560721 0.000522478 0.0396043 0.0368208 34 1729 19 6.87369e+06 265503 618332. 2139.56 1.26 0.144501 0.125822 25762 151098 -1 1509 20 1099 1797 124003 29021 3.03626 3.03626 -105.349 -3.03626 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.021465 0.0185863 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 4.88 vpr 62.58 MiB -1 -1 0.14 17192 1 0.04 -1 -1 30196 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 23.9 MiB 0.80 962 13487 3595 7903 1989 62.6 MiB 0.11 0.00 3.53179 -106.578 -3.53179 3.53179 0.68 0.000601365 0.000559226 0.0396837 0.0368249 34 2236 19 6.87369e+06 447163 618332. 2139.56 1.32 0.153848 0.134091 25762 151098 -1 1863 20 995 1672 108736 24731 2.70166 2.70166 -98.9172 -2.70166 0 0 787024. 2723.27 0.21 0.06 0.15 -1 -1 0.21 0.0228786 0.0198494 119 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 6.64 vpr 62.80 MiB -1 -1 0.17 17796 1 0.04 -1 -1 30072 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 24.1 MiB 2.41 925 12636 4369 6197 2070 62.8 MiB 0.12 0.00 3.30197 -112.873 -3.30197 3.30197 0.68 0.000637278 0.000592469 0.0494775 0.0459495 36 2160 23 6.87369e+06 237555 648988. 2245.63 1.43 0.173401 0.151376 26050 158493 -1 1872 20 1095 1601 124739 28051 3.06361 3.06361 -117.683 -3.06361 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0247673 0.0213637 113 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.27 vpr 62.48 MiB -1 -1 0.15 17532 1 0.03 -1 -1 30140 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 23.9 MiB 3.30 866 10916 3152 5921 1843 62.5 MiB 0.11 0.00 4.09393 -136.454 -4.09393 4.09393 0.65 0.000621617 0.000577916 0.0415333 0.0386277 34 2156 24 6.87369e+06 223581 618332. 2139.56 1.32 0.16394 0.142702 25762 151098 -1 1860 21 1208 2066 158811 35660 3.14326 3.14326 -128.503 -3.14326 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0251029 0.0217948 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.64 vpr 62.42 MiB -1 -1 0.18 17312 1 0.03 -1 -1 30484 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 23.9 MiB 2.68 765 11532 2973 7641 918 62.4 MiB 0.11 0.00 4.09699 -119.415 -4.09699 4.09699 0.66 0.000619465 0.000575406 0.0447386 0.0416167 34 1766 21 6.87369e+06 223581 618332. 2139.56 1.27 0.163821 0.142952 25762 151098 -1 1515 20 1085 1715 117780 28644 2.85166 2.85166 -105.6 -2.85166 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0241675 0.0209708 98 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.26 vpr 62.48 MiB -1 -1 0.14 17428 1 0.03 -1 -1 30128 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.9 MiB 2.00 706 8306 1954 5512 840 62.5 MiB 0.07 0.00 3.6525 -111.833 -3.6525 3.6525 0.67 0.00059589 0.000554692 0.0299349 0.0278549 36 1988 27 6.87369e+06 237555 648988. 2245.63 1.49 0.15031 0.129941 26050 158493 -1 1661 19 1125 1568 111534 28073 2.96326 2.96326 -113.226 -2.96326 0 0 828058. 2865.25 0.21 0.06 0.19 -1 -1 0.21 0.0221819 0.0193374 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 7.74 vpr 62.82 MiB -1 -1 0.13 17900 1 0.03 -1 -1 30252 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.2 MiB 3.26 1028 16599 6315 8361 1923 62.8 MiB 0.16 0.00 4.13563 -133.6 -4.13563 4.13563 0.65 0.000691537 0.000641612 0.0619952 0.0575244 34 3057 25 6.87369e+06 321398 618332. 2139.56 1.68 0.193784 0.170202 25762 151098 -1 2405 22 1980 3001 267731 58292 3.31981 3.31981 -129.305 -3.31981 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0291575 0.0253637 142 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 5.80 vpr 62.83 MiB -1 -1 0.15 17644 1 0.03 -1 -1 30292 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 24.2 MiB 2.10 989 10031 2534 6882 615 62.8 MiB 0.12 0.00 4.81484 -142.23 -4.81484 4.81484 0.66 0.000726066 0.000675577 0.0381498 0.0353387 32 2593 24 6.87369e+06 433189 586450. 2029.24 0.95 0.125225 0.110047 25474 144626 -1 2153 22 1723 2788 217881 49682 4.00776 4.00776 -140.461 -4.00776 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0292256 0.0253652 133 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 4.86 vpr 62.29 MiB -1 -1 0.18 17428 1 0.03 -1 -1 30076 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 23.8 MiB 1.46 614 5068 1019 3719 330 62.3 MiB 0.05 0.00 3.26207 -95.0897 -3.26207 3.26207 0.65 0.000545828 0.000508092 0.0176927 0.0164818 26 1919 28 6.87369e+06 265503 503264. 1741.40 0.85 0.0872141 0.0756189 24322 120374 -1 1789 24 1254 1970 166202 39802 3.06661 3.06661 -101.255 -3.06661 0 0 618332. 2139.56 0.17 0.07 0.11 -1 -1 0.17 0.0244057 0.0210255 94 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.19 vpr 62.81 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30352 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 24.2 MiB 1.91 1007 16078 5563 8042 2473 62.8 MiB 0.16 0.00 3.7063 -122.467 -3.7063 3.7063 0.65 0.000723366 0.000671639 0.0619367 0.0575177 34 2625 21 6.87369e+06 335372 618332. 2139.56 1.41 0.201058 0.176215 25762 151098 -1 2084 22 1604 2825 206431 47747 2.98531 2.98531 -118.548 -2.98531 0 0 787024. 2723.27 0.22 0.09 0.14 -1 -1 0.22 0.0304828 0.026565 135 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.80 vpr 62.75 MiB -1 -1 0.13 17820 1 0.03 -1 -1 30072 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 24.2 MiB 3.42 1032 15523 6549 8204 770 62.7 MiB 0.14 0.00 4.15353 -134.149 -4.15353 4.15353 0.65 0.000687651 0.000638921 0.0596259 0.0554172 34 2905 38 6.87369e+06 293451 618332. 2139.56 1.62 0.209006 0.182674 25762 151098 -1 2147 22 1799 2550 195998 46224 3.23381 3.23381 -122.14 -3.23381 0 0 787024. 2723.27 0.20 0.09 0.15 -1 -1 0.20 0.0292335 0.0255179 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.38 vpr 62.60 MiB -1 -1 0.18 17360 1 0.03 -1 -1 30284 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 23.9 MiB 2.16 847 14168 4025 7985 2158 62.6 MiB 0.12 0.00 3.09156 -110.795 -3.09156 3.09156 0.67 0.000649837 0.000603839 0.0464567 0.0431586 34 2031 19 6.87369e+06 391268 618332. 2139.56 1.31 0.169614 0.147798 25762 151098 -1 1698 23 1184 1734 139759 32212 2.18787 2.18787 -100.659 -2.18787 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0276624 0.0239298 109 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.02 vpr 62.28 MiB -1 -1 0.15 17252 1 0.03 -1 -1 30052 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 23.7 MiB 0.71 656 11276 3436 6760 1080 62.3 MiB 0.09 0.00 2.61023 -88.8242 -2.61023 2.61023 0.69 0.000506441 0.000471484 0.0369844 0.0344466 32 1559 23 6.87369e+06 195634 586450. 2029.24 0.79 0.0964402 0.0850471 25474 144626 -1 1296 23 653 927 84113 18660 1.95772 1.95772 -86.9117 -1.95772 0 0 744469. 2576.02 0.18 0.03 0.08 -1 -1 0.18 0.0113342 0.00987645 71 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 6.60 vpr 62.54 MiB -1 -1 0.09 17508 1 0.03 -1 -1 30356 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 23.8 MiB 2.60 778 9338 2420 6492 426 62.5 MiB 0.10 0.00 4.95513 -145.252 -4.95513 4.95513 0.68 0.000618133 0.000575504 0.0346283 0.0321961 34 2105 23 6.87369e+06 265503 618332. 2139.56 1.30 0.154588 0.134267 25762 151098 -1 1729 19 1243 1783 105498 27198 3.54786 3.54786 -132.494 -3.54786 0 0 787024. 2723.27 0.22 0.06 0.15 -1 -1 0.22 0.0231485 0.0202505 116 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 4.82 vpr 62.89 MiB -1 -1 0.16 17900 1 0.03 -1 -1 30448 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 24.4 MiB 0.78 985 11499 2787 8050 662 62.9 MiB 0.13 0.00 4.26399 -136.517 -4.26399 4.26399 0.78 0.000689019 0.000640337 0.0453487 0.0420586 32 2549 47 6.87369e+06 489084 586450. 2029.24 1.03 0.151615 0.132994 25474 144626 -1 2132 28 1898 2850 260302 73804 3.7954 3.7954 -135.219 -3.7954 0 0 744469. 2576.02 0.19 0.14 0.13 -1 -1 0.19 0.0451021 0.0394727 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 6.57 vpr 62.82 MiB -1 -1 0.19 17624 1 0.03 -1 -1 30300 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 24.3 MiB 1.92 995 6701 1305 5169 227 62.8 MiB 0.08 0.00 4.31715 -129.69 -4.31715 4.31715 0.65 0.000727676 0.000676219 0.0281766 0.0261951 34 3077 27 6.87369e+06 307425 618332. 2139.56 1.87 0.174568 0.151026 25762 151098 -1 2241 22 1750 2856 245759 55031 3.75866 3.75866 -130.038 -3.75866 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0301358 0.0262142 142 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 4.87 vpr 62.06 MiB -1 -1 0.10 17284 1 0.02 -1 -1 30584 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 23.5 MiB 1.49 371 10977 3839 5013 2125 62.1 MiB 0.07 0.00 2.58413 -70.3474 -2.58413 2.58413 0.65 0.000325942 0.000298068 0.0314335 0.0291581 28 1325 27 6.87369e+06 237555 531479. 1839.03 0.86 0.0860589 0.075611 24610 126494 -1 1074 22 742 1040 84221 21563 2.50407 2.50407 -79.8397 -2.50407 0 0 648988. 2245.63 0.18 0.05 0.12 -1 -1 0.18 0.0185013 0.0160006 67 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 4.54 vpr 62.68 MiB -1 -1 0.15 17192 1 0.03 -1 -1 30400 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 24.0 MiB 0.91 952 5847 1159 4467 221 62.7 MiB 0.06 0.00 4.63338 -129.909 -4.63338 4.63338 0.67 0.000619174 0.000576226 0.0211512 0.0196722 30 2387 25 6.87369e+06 321398 556674. 1926.21 0.92 0.0985804 0.085937 25186 138497 -1 1962 22 1181 2132 158416 34156 3.7241 3.7241 -122.996 -3.7241 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0256282 0.0222463 119 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.80 vpr 61.97 MiB -1 -1 0.16 16984 1 0.02 -1 -1 30156 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.5 MiB 0.39 704 9676 3283 5033 1360 62.0 MiB 0.07 0.00 2.58823 -84.5042 -2.58823 2.58823 0.69 0.00042357 0.000393275 0.0273144 0.025366 28 1429 20 6.87369e+06 167686 531479. 1839.03 0.81 0.0813491 0.071348 24610 126494 -1 1344 16 565 664 51936 12522 2.15017 2.15017 -84.3239 -2.15017 0 0 648988. 2245.63 0.17 0.04 0.11 -1 -1 0.17 0.0141506 0.0123328 65 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.46 vpr 62.60 MiB -1 -1 0.19 17240 1 0.03 -1 -1 30380 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 24.2 MiB 0.79 922 10744 2499 7805 440 62.6 MiB 0.10 0.00 4.70738 -131.097 -4.70738 4.70738 0.67 0.00063851 0.000594165 0.0339866 0.0315453 26 2404 21 6.87369e+06 419215 503264. 1741.40 1.00 0.1086 0.0954713 24322 120374 -1 2181 26 1365 2192 198316 46035 4.0267 4.0267 -126.462 -4.0267 0 0 618332. 2139.56 0.16 0.09 0.07 -1 -1 0.16 0.0300158 0.0259627 120 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.48 vpr 62.59 MiB -1 -1 0.19 17368 1 0.03 -1 -1 30448 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.1 MiB 0.79 1018 15215 4457 9037 1721 62.6 MiB 0.13 0.00 3.58631 -115.037 -3.58631 3.58631 0.67 0.000631169 0.000586248 0.0465984 0.0432115 28 2435 25 6.87369e+06 433189 531479. 1839.03 0.98 0.110364 0.0979545 24610 126494 -1 2089 16 1119 1959 128537 28970 2.77996 2.77996 -111.593 -2.77996 0 0 648988. 2245.63 0.17 0.06 0.11 -1 -1 0.17 0.0218344 0.0190913 130 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 5.14 vpr 62.99 MiB -1 -1 0.12 17900 1 0.03 -1 -1 30264 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 24.5 MiB 1.57 1070 17066 5177 9769 2120 63.0 MiB 0.16 0.00 4.79173 -136.462 -4.79173 4.79173 0.65 0.000678027 0.000630202 0.0581988 0.0540551 30 2520 24 6.87369e+06 391268 556674. 1926.21 0.87 0.140138 0.124143 25186 138497 -1 2060 17 1055 1910 104827 24868 3.6681 3.6681 -124.886 -3.6681 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0231413 0.0202202 131 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 4.74 vpr 62.51 MiB -1 -1 0.18 17616 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 23.9 MiB 0.80 703 9368 2220 5797 1351 62.5 MiB 0.09 0.00 3.24007 -107.338 -3.24007 3.24007 0.65 0.000608546 0.000566218 0.0349471 0.0325124 34 1987 21 6.87369e+06 223581 618332. 2139.56 1.27 0.151607 0.131714 25762 151098 -1 1602 21 1019 1690 110919 26652 2.93026 2.93026 -109.609 -2.93026 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0240911 0.0208863 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.00 vpr 62.28 MiB -1 -1 0.18 17240 1 0.03 -1 -1 30132 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 23.8 MiB 1.05 624 12763 3540 6427 2796 62.3 MiB 0.10 0.00 3.24697 -98.9537 -3.24697 3.24697 0.68 0.000572613 0.00053121 0.0391871 0.0364387 34 1668 26 6.87369e+06 363320 618332. 2139.56 1.27 0.152528 0.132583 25762 151098 -1 1287 19 837 1210 79394 20357 2.88626 2.88626 -92.5246 -2.88626 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0211692 0.0183815 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.40 vpr 62.27 MiB -1 -1 0.17 17400 1 0.04 -1 -1 30100 -1 -1 18 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 23.8 MiB 0.84 763 12694 4114 7113 1467 62.3 MiB 0.10 0.00 3.5993 -104.629 -3.5993 3.5993 0.65 0.000557433 0.000518311 0.0443188 0.0412563 32 2109 21 6.87369e+06 251529 586450. 2029.24 0.87 0.109766 0.0970198 25474 144626 -1 1799 19 1081 1917 171125 38306 3.09656 3.09656 -109.387 -3.09656 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0208351 0.0180741 95 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 4.17 vpr 62.32 MiB -1 -1 0.19 17160 1 0.03 -1 -1 30312 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.68 834 13031 3636 7853 1542 62.3 MiB 0.11 0.00 3.99153 -123.226 -3.99153 3.99153 0.65 0.0005732 0.000533487 0.0443129 0.0412225 30 1992 21 6.87369e+06 237555 556674. 1926.21 0.82 0.111888 0.0990081 25186 138497 -1 1733 20 1068 1783 108326 24960 2.87696 2.87696 -115.111 -2.87696 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0222537 0.0193643 101 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.91 vpr 62.36 MiB -1 -1 0.19 17428 1 0.03 -1 -1 30112 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 23.8 MiB 0.79 614 5831 1071 4187 573 62.4 MiB 0.06 0.00 3.5993 -104.92 -3.5993 3.5993 0.72 0.000586006 0.000545291 0.0190441 0.0177146 34 1764 25 6.87369e+06 363320 618332. 2139.56 1.37 0.13632 0.117218 25762 151098 -1 1500 18 955 1528 104603 27153 2.94926 2.94926 -105.489 -2.94926 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0206285 0.0179388 102 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 6.62 vpr 62.47 MiB -1 -1 0.20 17380 1 0.03 -1 -1 30332 -1 -1 25 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 23.9 MiB 2.61 863 14072 4376 7539 2157 62.5 MiB 0.11 0.00 3.04756 -100.489 -3.04756 3.04756 0.67 0.000599012 0.000556539 0.0462815 0.0430242 34 1909 21 6.87369e+06 349346 618332. 2139.56 1.26 0.162495 0.141679 25762 151098 -1 1708 19 1091 1614 119245 28263 2.38047 2.38047 -99.7204 -2.38047 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0220282 0.019097 106 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 7.49 vpr 63.04 MiB -1 -1 0.20 17696 1 0.03 -1 -1 30352 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 24.3 MiB 3.03 1118 10108 2278 7040 790 63.0 MiB 0.10 0.00 4.17389 -123.088 -4.17389 4.17389 0.65 0.000734839 0.000681851 0.0328956 0.0304984 26 3090 38 6.87369e+06 558954 503264. 1741.40 1.62 0.139306 0.121707 24322 120374 -1 2752 73 3440 6386 638453 134864 3.8437 3.8437 -130.264 -3.8437 0 0 618332. 2139.56 0.16 0.24 0.11 -1 -1 0.16 0.0865174 0.0741366 156 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.44 vpr 62.87 MiB -1 -1 0.17 17644 1 0.03 -1 -1 30240 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 2.85 1050 18428 5889 9545 2994 62.9 MiB 0.16 0.00 3.99748 -134.85 -3.99748 3.99748 0.56 0.000753967 0.000699351 0.0611117 0.0566059 30 2304 26 6.87369e+06 531006 556674. 1926.21 0.94 0.154539 0.136646 25186 138497 -1 1893 18 1445 2277 122140 29198 2.89086 2.89086 -117.356 -2.89086 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0265657 0.0231553 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 6.41 vpr 62.30 MiB -1 -1 0.15 17252 1 0.03 -1 -1 30064 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.8 MiB 1.97 729 12681 4828 6102 1751 62.3 MiB 0.11 0.00 4.09163 -121.55 -4.09163 4.09163 0.66 0.000590386 0.000548741 0.0451865 0.0420081 36 2115 36 6.87369e+06 251529 648988. 2245.63 1.72 0.174951 0.152348 26050 158493 -1 1823 19 1282 1905 152144 36164 3.3235 3.3235 -117.041 -3.3235 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.022115 0.0192143 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.53 vpr 62.83 MiB -1 -1 0.15 17692 1 0.03 -1 -1 30328 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 24.3 MiB 2.33 953 14543 4925 6755 2863 62.8 MiB 0.14 0.00 3.78134 -121.658 -3.78134 3.78134 0.65 0.000721258 0.000669307 0.0559049 0.051944 34 2770 24 6.87369e+06 363320 618332. 2139.56 1.43 0.184914 0.161963 25762 151098 -1 2008 21 1651 2803 198970 45902 3.16061 3.16061 -121.592 -3.16061 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0290174 0.0252287 136 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 8.72 vpr 63.04 MiB -1 -1 0.17 17644 1 0.03 -1 -1 30304 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 24.7 MiB 3.71 1511 10033 2621 6359 1053 63.0 MiB 0.12 0.00 5.60672 -170.903 -5.60672 5.60672 0.65 0.000733099 0.000681287 0.0399741 0.0371296 36 3561 24 6.87369e+06 349346 648988. 2245.63 2.13 0.187741 0.163127 26050 158493 -1 3027 20 2176 3185 271931 58363 4.9855 4.9855 -172.625 -4.9855 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0285667 0.024886 159 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 7.60 vpr 63.05 MiB -1 -1 0.20 17748 1 0.03 -1 -1 30440 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 24.4 MiB 3.12 1142 14964 4330 8425 2209 63.1 MiB 0.15 0.00 5.2871 -162.814 -5.2871 5.2871 0.65 0.000742732 0.000689319 0.0578876 0.0537692 34 2876 29 6.87369e+06 377294 618332. 2139.56 1.52 0.209607 0.183079 25762 151098 -1 2362 21 1520 2409 179820 40778 4.5536 4.5536 -160.543 -4.5536 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0299554 0.0260814 152 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.99 vpr 62.80 MiB -1 -1 0.18 17692 1 0.04 -1 -1 30352 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 24.3 MiB 2.56 964 8863 1996 5999 868 62.8 MiB 0.10 0.00 4.10673 -127.256 -4.10673 4.10673 0.65 0.000706397 0.000657312 0.0343618 0.0319724 34 2616 23 6.87369e+06 349346 618332. 2139.56 1.80 0.187184 0.163491 25762 151098 -1 2236 21 1617 2633 212782 50249 3.36391 3.36391 -125.026 -3.36391 0 0 787024. 2723.27 0.20 0.09 0.09 -1 -1 0.20 0.0281846 0.0245284 131 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 6.51 vpr 62.64 MiB -1 -1 0.14 17380 1 0.03 -1 -1 30328 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 24.1 MiB 2.21 831 14175 5092 5953 3130 62.6 MiB 0.12 0.00 4.31305 -113.651 -4.31305 4.31305 0.65 0.000624613 0.000580753 0.0498991 0.0463922 34 2736 36 6.87369e+06 279477 618332. 2139.56 1.63 0.182827 0.159443 25762 151098 -1 1845 22 1288 1920 137580 35695 3.95006 3.95006 -116.785 -3.95006 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.026012 0.0225353 119 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 7.18 vpr 63.34 MiB -1 -1 0.20 17884 1 0.03 -1 -1 30432 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 24.8 MiB 3.02 1125 12954 3388 8890 676 63.3 MiB 0.15 0.00 4.84068 -153.465 -4.84068 4.84068 0.66 0.000878788 0.000817812 0.0522543 0.0486823 30 2992 40 6.87369e+06 531006 556674. 1926.21 1.20 0.177432 0.155653 25186 138497 -1 2204 20 1416 2329 119183 30863 3.83736 3.83736 -145.825 -3.83736 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0327647 0.0285015 173 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.13 vpr 62.38 MiB -1 -1 0.18 17528 1 0.03 -1 -1 30096 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 23.9 MiB 1.57 779 13291 4134 7087 2070 62.4 MiB 0.11 0.00 3.55895 -107.74 -3.55895 3.55895 0.66 0.000571165 0.000529942 0.042168 0.0391811 32 2017 21 6.87369e+06 307425 586450. 2029.24 0.87 0.108552 0.0958242 25474 144626 -1 1822 19 1136 1936 156094 34416 2.84596 2.84596 -105.425 -2.84596 0 0 744469. 2576.02 0.19 0.07 0.14 -1 -1 0.19 0.0212651 0.0184484 96 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 5.81 vpr 62.83 MiB -1 -1 0.15 17868 1 0.03 -1 -1 30128 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.3 MiB 2.05 1055 8969 2107 6380 482 62.8 MiB 0.10 0.00 4.79158 -142.334 -4.79158 4.79158 0.71 0.000690049 0.000641849 0.0352396 0.0327989 30 2731 23 6.87369e+06 321398 556674. 1926.21 1.05 0.118536 0.104138 25186 138497 -1 2039 22 1317 1992 125222 30107 3.86576 3.86576 -132.751 -3.86576 0 0 706193. 2443.58 0.19 0.07 0.14 -1 -1 0.19 0.0286525 0.0249291 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 5.48 vpr 62.71 MiB -1 -1 0.18 17748 1 0.03 -1 -1 30260 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 24.2 MiB 1.71 980 9951 2142 7372 437 62.7 MiB 0.11 0.00 3.6843 -115.486 -3.6843 3.6843 0.65 0.000696065 0.000647076 0.0342082 0.0318122 32 2890 26 6.87369e+06 447163 586450. 2029.24 0.99 0.12049 0.1054 25474 144626 -1 2221 21 1588 2681 224480 50258 3.07761 3.07761 -115.254 -3.07761 0 0 744469. 2576.02 0.19 0.08 0.14 -1 -1 0.19 0.0276949 0.0240523 132 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 4.71 vpr 62.70 MiB -1 -1 0.18 17248 1 0.03 -1 -1 30044 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 24.3 MiB 0.62 972 9537 2296 6533 708 62.7 MiB 0.09 0.00 4.25479 -129.925 -4.25479 4.25479 0.65 0.000626212 0.000582042 0.0316676 0.0294115 34 2449 22 6.87369e+06 363320 618332. 2139.56 1.35 0.153933 0.133668 25762 151098 -1 2032 21 1272 2425 189312 41406 3.7011 3.7011 -125.423 -3.7011 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0253387 0.0219759 123 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 6.92 vpr 62.91 MiB -1 -1 0.13 17748 1 0.03 -1 -1 30292 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 24.4 MiB 2.66 1122 14450 4547 7634 2269 62.9 MiB 0.14 0.00 5.14049 -153.237 -5.14049 5.14049 0.70 0.000711928 0.000661877 0.055525 0.0515447 34 2716 24 6.87369e+06 307425 618332. 2139.56 1.37 0.194097 0.169645 25762 151098 -1 2240 21 1280 1794 138052 31873 3.3592 3.3592 -127.805 -3.3592 0 0 787024. 2723.27 0.25 0.08 0.13 -1 -1 0.25 0.028509 0.0248561 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 6.84 vpr 62.78 MiB -1 -1 0.19 17624 1 0.03 -1 -1 30268 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 24.3 MiB 2.72 990 17178 5882 8168 3128 62.8 MiB 0.16 0.00 3.6884 -118.378 -3.6884 3.6884 0.65 0.000713339 0.000661914 0.0667022 0.0619384 30 2877 24 6.87369e+06 447163 556674. 1926.21 1.36 0.153334 0.136019 25186 138497 -1 2092 22 1461 2649 168211 40081 3.23791 3.23791 -114.832 -3.23791 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0295058 0.0256536 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.97 vpr 62.95 MiB -1 -1 0.15 17504 1 0.03 -1 -1 30336 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 24.3 MiB 2.65 922 18795 6474 8507 3814 63.0 MiB 0.16 0.00 4.11773 -131.117 -4.11773 4.11773 0.65 0.000742695 0.00068941 0.0633929 0.0587644 34 3101 29 6.87369e+06 489084 618332. 2139.56 2.51 0.218812 0.191463 25762 151098 -1 2029 22 1693 2800 249488 68630 3.24686 3.24686 -120.996 -3.24686 0 0 787024. 2723.27 0.20 0.10 0.15 -1 -1 0.20 0.0308337 0.0268143 144 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 4.37 vpr 62.70 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30220 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 24.2 MiB 0.78 881 12751 3354 7696 1701 62.7 MiB 0.11 0.00 4.26989 -123.123 -4.26989 4.26989 0.65 0.000639931 0.00059457 0.0388275 0.0360592 30 2195 22 6.87369e+06 461137 556674. 1926.21 0.83 0.114587 0.100898 25186 138497 -1 1695 21 965 1709 89776 21316 3.6008 3.6008 -117.658 -3.6008 0 0 706193. 2443.58 0.23 0.08 0.12 -1 -1 0.23 0.0322882 0.0284158 124 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 6.10 vpr 62.66 MiB -1 -1 0.18 17636 1 0.03 -1 -1 30352 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.1 MiB 1.90 1140 14450 4739 7431 2280 62.7 MiB 0.14 0.00 4.86398 -140.272 -4.86398 4.86398 0.65 0.000657004 0.000610106 0.0522599 0.0485618 34 2688 26 6.87369e+06 307425 618332. 2139.56 1.43 0.184201 0.161078 25762 151098 -1 2351 20 1637 2366 176234 40551 3.92996 3.92996 -134.935 -3.92996 0 0 787024. 2723.27 0.22 0.07 0.15 -1 -1 0.22 0.0244839 0.0212738 135 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 9.12 vpr 62.88 MiB -1 -1 0.21 17644 1 0.03 -1 -1 30316 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 24.3 MiB 1.87 912 13105 4297 5300 3508 62.9 MiB 0.12 0.00 4.74348 -140.694 -4.74348 4.74348 0.65 0.000723662 0.000671863 0.0534528 0.0496154 36 3390 47 6.87369e+06 307425 648988. 2245.63 4.40 0.226564 0.197396 26050 158493 -1 2334 18 1713 2698 193753 48203 4.43196 4.43196 -140.453 -4.43196 0 0 828058. 2865.25 0.28 0.08 0.14 -1 -1 0.28 0.0235948 0.0209362 141 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 6.84 vpr 62.87 MiB -1 -1 0.19 17692 1 0.03 -1 -1 30372 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 24.3 MiB 2.40 1089 15709 4726 9045 1938 62.9 MiB 0.16 0.00 4.3693 -136.102 -4.3693 4.3693 0.65 0.000754363 0.000700984 0.0654821 0.0608174 34 2963 29 6.87369e+06 293451 618332. 2139.56 1.58 0.219065 0.191844 25762 151098 -1 2412 22 1699 3098 239730 53476 3.72146 3.72146 -134.49 -3.72146 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0289939 0.0255225 135 77 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.10 vpr 62.20 MiB -1 -1 0.17 17400 1 0.03 -1 -1 29976 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63688 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 23.8 MiB 0.66 730 9914 2670 6709 535 62.2 MiB 0.08 0.00 3.5583 -105.077 -3.5583 3.5583 0.65 0.000559133 0.000520919 0.0311062 0.0289444 28 1795 23 6.87369e+06 307425 531479. 1839.03 0.80 0.0982206 0.0862934 24610 126494 -1 1697 21 974 1670 124586 29567 2.90826 2.90826 -103.963 -2.90826 0 0 648988. 2245.63 0.17 0.06 0.11 -1 -1 0.17 0.0222827 0.0192926 93 23 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.10 vpr 63.04 MiB -1 -1 0.20 17788 1 0.03 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 24.6 MiB 1.61 968 15568 5616 7798 2154 63.0 MiB 0.15 0.00 3.7434 -130.891 -3.7434 3.7434 0.65 0.000677475 0.000629638 0.0613385 0.0569945 34 2779 24 6.87369e+06 251529 618332. 2139.56 1.65 0.19595 0.17178 25762 151098 -1 2225 24 1781 2546 222546 49444 3.3365 3.3365 -133.232 -3.3365 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0321007 0.0277587 124 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 7.14 vpr 62.98 MiB -1 -1 0.21 17852 1 0.03 -1 -1 30356 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 24.5 MiB 2.59 1427 16858 5256 9636 1966 63.0 MiB 0.19 0.00 5.58608 -163.667 -5.58608 5.58608 0.65 0.000769249 0.000706854 0.0687906 0.0636081 34 3599 26 6.87369e+06 335372 618332. 2139.56 1.66 0.224131 0.19651 25762 151098 -1 2933 22 2135 3307 260209 58698 4.8184 4.8184 -161.399 -4.8184 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0319155 0.0278211 166 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.27 vpr 62.70 MiB -1 -1 0.09 17576 1 0.03 -1 -1 30376 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 24.2 MiB 2.58 968 18998 5516 10575 2907 62.7 MiB 0.16 0.00 4.31005 -135.578 -4.31005 4.31005 0.65 0.000697535 0.000648261 0.060664 0.0562877 28 2295 25 6.87369e+06 475111 531479. 1839.03 0.97 0.146363 0.129728 24610 126494 -1 2110 22 1551 2528 176522 41622 3.19176 3.19176 -124.427 -3.19176 0 0 648988. 2245.63 0.21 0.10 0.11 -1 -1 0.21 0.0323489 0.0284576 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.48 vpr 62.41 MiB -1 -1 0.10 17312 1 0.03 -1 -1 30336 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 23.9 MiB 0.68 634 6615 1367 5002 246 62.4 MiB 0.07 0.00 3.6392 -108.305 -3.6392 3.6392 0.67 0.000589045 0.000547996 0.0220934 0.0205496 26 2210 35 6.87369e+06 349346 503264. 1741.40 1.26 0.103873 0.09021 24322 120374 -1 1732 22 1273 2053 177294 42109 3.24486 3.24486 -115.112 -3.24486 0 0 618332. 2139.56 0.17 0.07 0.12 -1 -1 0.17 0.0244931 0.0211715 104 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 9.01 vpr 63.20 MiB -1 -1 0.12 17768 1 0.03 -1 -1 30288 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 24.7 MiB 4.39 1457 14543 4326 8631 1586 63.2 MiB 0.16 0.00 5.90291 -175.463 -5.90291 5.90291 0.65 0.000828504 0.00077032 0.0641284 0.0596201 34 3438 35 6.87369e+06 349346 618332. 2139.56 1.81 0.240303 0.209689 25762 151098 -1 2911 20 2264 3374 276997 62014 4.9852 4.9852 -172.57 -4.9852 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0318492 0.0277296 171 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.49 vpr 62.69 MiB -1 -1 0.15 17900 1 0.03 -1 -1 30424 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 24.2 MiB 2.75 1003 17199 4580 10530 2089 62.7 MiB 0.14 0.00 4.63938 -140.336 -4.63938 4.63938 0.65 0.00068529 0.00063755 0.0543289 0.0504491 32 2464 25 6.87369e+06 489084 586450. 2029.24 0.94 0.139343 0.123215 25474 144626 -1 2095 23 1635 2729 201771 45578 3.7433 3.7433 -131.792 -3.7433 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0292782 0.0254109 135 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 3.95 vpr 62.21 MiB -1 -1 0.17 17108 1 0.03 -1 -1 30404 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 23.8 MiB 0.57 878 10618 2802 6933 883 62.2 MiB 0.09 0.00 3.66956 -107.639 -3.66956 3.66956 0.65 0.000537146 0.000500016 0.0308593 0.0287074 30 1958 22 6.87369e+06 335372 556674. 1926.21 0.82 0.0941294 0.0826841 25186 138497 -1 1653 18 727 1303 82483 19055 2.69971 2.69971 -100.23 -2.69971 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.0188953 0.0164029 94 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.04 vpr 62.70 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30112 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 24.1 MiB 2.03 1091 19371 5911 10963 2497 62.7 MiB 0.17 0.00 5.19487 -138.438 -5.19487 5.19487 0.66 0.000712033 0.000660616 0.0617398 0.0571886 28 2690 23 6.87369e+06 517032 531479. 1839.03 1.26 0.148909 0.131983 24610 126494 -1 2422 22 1633 3034 222693 49806 4.75015 4.75015 -146.366 -4.75015 0 0 648988. 2245.63 0.17 0.09 0.11 -1 -1 0.17 0.0291308 0.0252967 145 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 4.72 vpr 62.28 MiB -1 -1 0.17 17116 1 0.03 -1 -1 30064 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.8 MiB 0.72 765 8363 1967 5928 468 62.3 MiB 0.08 0.00 3.6502 -113.574 -3.6502 3.6502 0.65 0.000558477 0.000520091 0.0275926 0.0256746 34 2139 22 6.87369e+06 265503 618332. 2139.56 1.28 0.136248 0.118132 25762 151098 -1 1778 19 1158 2038 144835 33647 2.93826 2.93826 -111.413 -2.93826 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0208659 0.0181493 98 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.05 vpr 62.53 MiB -1 -1 0.15 17316 1 0.03 -1 -1 30464 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 23.9 MiB 2.19 687 8418 1716 5962 740 62.5 MiB 0.08 0.00 3.88482 -111.398 -3.88482 3.88482 0.65 0.000598362 0.000555136 0.0255897 0.0237088 28 2032 22 6.87369e+06 475111 531479. 1839.03 1.21 0.0961066 0.0838395 24610 126494 -1 1732 18 1171 2098 140097 34058 3.01326 3.01326 -110.382 -3.01326 0 0 648988. 2245.63 0.17 0.07 0.11 -1 -1 0.17 0.021673 0.0187799 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 7.68 vpr 62.90 MiB -1 -1 0.20 17580 1 0.03 -1 -1 30272 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 24.2 MiB 3.44 1118 13105 3443 8133 1529 62.9 MiB 0.14 0.00 4.10563 -124.474 -4.10563 4.10563 0.65 0.000696699 0.000647101 0.0511739 0.0474959 34 2878 24 6.87369e+06 335372 618332. 2139.56 1.49 0.187329 0.163391 25762 151098 -1 2350 23 1916 2927 214977 49304 3.34511 3.34511 -121.343 -3.34511 0 0 787024. 2723.27 0.20 0.09 0.10 -1 -1 0.20 0.0299033 0.0259501 138 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.26 vpr 63.11 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30244 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 24.6 MiB 2.14 806 8532 1884 6173 475 63.1 MiB 0.09 0.00 4.39805 -136.981 -4.39805 4.39805 0.65 0.000706991 0.000656608 0.0322255 0.0299359 34 2439 23 6.87369e+06 363320 618332. 2139.56 1.41 0.170274 0.147582 25762 151098 -1 1892 22 1562 2465 167343 39695 4.014 4.014 -132.895 -4.014 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0292757 0.0254244 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 9.72 vpr 63.07 MiB -1 -1 0.22 17576 1 0.03 -1 -1 30020 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 24.3 MiB 1.99 1121 14983 4753 8344 1886 63.1 MiB 0.15 0.00 4.71348 -141.457 -4.71348 4.71348 0.70 0.000704223 0.000652739 0.0541371 0.0501568 32 3230 48 6.87369e+06 377294 586450. 2029.24 4.86 0.301485 0.260829 25474 144626 -1 2572 20 1540 2596 302466 61481 4.17136 4.17136 -144.462 -4.17136 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0270208 0.023501 133 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 7.12 vpr 62.47 MiB -1 -1 0.17 17372 1 0.03 -1 -1 30252 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.9 MiB 2.97 883 12923 4460 6401 2062 62.5 MiB 0.12 0.00 4.76482 -134.311 -4.76482 4.76482 0.66 0.000590972 0.000549678 0.047119 0.0438204 34 2173 23 6.87369e+06 209608 618332. 2139.56 1.36 0.163065 0.14248 25762 151098 -1 1919 24 1085 1501 133785 29128 3.40117 3.40117 -117.767 -3.40117 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.026555 0.0229821 103 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 6.56 vpr 62.64 MiB -1 -1 0.20 17692 1 0.03 -1 -1 30544 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 24.0 MiB 2.36 973 14184 4741 7494 1949 62.6 MiB 0.13 0.00 3.76746 -124.928 -3.76746 3.76746 0.66 0.000639927 0.00059451 0.0548516 0.0509893 34 2486 19 6.87369e+06 237555 618332. 2139.56 1.40 0.176495 0.154506 25762 151098 -1 2089 19 1315 1949 148629 34679 3.2835 3.2835 -124.572 -3.2835 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0269517 0.0236439 114 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 5.93 vpr 62.86 MiB -1 -1 0.16 17816 1 0.03 -1 -1 30332 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 24.3 MiB 2.34 925 17835 5186 10054 2595 62.9 MiB 0.15 0.00 3.47005 -102.148 -3.47005 3.47005 0.65 0.000665914 0.000609058 0.0563675 0.0521647 32 2458 31 6.87369e+06 475111 586450. 2029.24 0.86 0.142315 0.125498 25474 144626 -1 1948 22 1270 2371 177844 39960 2.91726 2.91726 -101.622 -2.91726 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0272439 0.0236096 124 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.59 vpr 62.39 MiB -1 -1 0.17 17608 1 0.03 -1 -1 30332 -1 -1 35 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 23.8 MiB 1.73 875 14783 4032 9129 1622 62.4 MiB 0.12 0.00 4.05975 -105.458 -4.05975 4.05975 0.66 0.000587476 0.000546384 0.0387418 0.0356953 26 2270 25 6.87369e+06 489084 503264. 1741.40 1.14 0.111583 0.0977726 24322 120374 -1 2027 21 1268 2387 205598 45639 3.972 3.972 -115.213 -3.972 0 0 618332. 2139.56 0.17 0.09 0.11 -1 -1 0.17 0.0269178 0.0233519 117 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 6.20 vpr 62.61 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30352 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 24.2 MiB 2.48 802 13599 4534 7471 1594 62.6 MiB 0.13 0.00 4.04073 -123.042 -4.04073 4.04073 0.65 0.000635002 0.000590506 0.0536514 0.0499018 28 2087 22 6.87369e+06 237555 531479. 1839.03 1.06 0.129459 0.114603 24610 126494 -1 1892 21 1343 2306 173766 40652 3.29986 3.29986 -123.134 -3.29986 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.0256556 0.0222382 105 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 6.90 vpr 62.75 MiB -1 -1 0.18 17800 1 0.03 -1 -1 30120 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 24.2 MiB 2.64 1020 11806 3110 7534 1162 62.8 MiB 0.12 0.00 3.6756 -125.066 -3.6756 3.6756 0.67 0.000669003 0.000622006 0.047356 0.0440009 34 2679 22 6.87369e+06 237555 618332. 2139.56 1.54 0.176806 0.154137 25762 151098 -1 2172 18 1392 2053 173685 39227 3.20081 3.20081 -127.632 -3.20081 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0236502 0.0206149 122 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.32 vpr 62.70 MiB -1 -1 0.12 17232 1 0.03 -1 -1 30484 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 24.3 MiB 0.69 1014 15430 4861 8054 2515 62.7 MiB 0.14 0.00 4.6284 -133.663 -4.6284 4.6284 0.67 0.000636272 0.000590274 0.0480604 0.0445169 32 2693 29 6.87369e+06 433189 586450. 2029.24 0.96 0.130385 0.11501 25474 144626 -1 2134 19 1219 2210 164082 37394 3.5018 3.5018 -123.469 -3.5018 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0234523 0.0204448 129 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 7.52 vpr 62.82 MiB -1 -1 0.17 17584 1 0.03 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.3 MiB 3.15 1172 16215 5632 8430 2153 62.8 MiB 0.17 0.00 4.82738 -155.303 -4.82738 4.82738 0.65 0.000708669 0.000658054 0.0618764 0.0574814 34 3239 22 6.87369e+06 321398 618332. 2139.56 1.56 0.200343 0.175775 25762 151098 -1 2741 20 1767 2644 217703 50575 4.30086 4.30086 -152.489 -4.30086 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0273558 0.0238562 147 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.04 vpr 63.01 MiB -1 -1 0.18 17516 1 0.03 -1 -1 30204 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 24.4 MiB 3.38 951 10308 2331 7565 412 63.0 MiB 0.11 0.00 5.39654 -155.229 -5.39654 5.39654 0.66 0.00074861 0.000695102 0.0359345 0.0332742 34 2817 24 6.87369e+06 503058 618332. 2139.56 1.89 0.184151 0.159942 25762 151098 -1 2165 23 1634 2704 199475 48470 4.14135 4.14135 -141.69 -4.14135 0 0 787024. 2723.27 0.26 0.05 0.15 -1 -1 0.26 0.0169455 0.0148928 147 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 7.11 vpr 63.11 MiB -1 -1 0.18 17772 1 0.03 -1 -1 30420 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 24.5 MiB 2.84 1114 12702 3372 8526 804 63.1 MiB 0.12 0.00 4.59844 -147.406 -4.59844 4.59844 0.65 0.000747112 0.000693857 0.0419058 0.0387428 28 3068 25 6.87369e+06 572927 531479. 1839.03 1.45 0.1359 0.119487 24610 126494 -1 2645 25 1813 3370 330481 68782 3.96 3.96 -145.051 -3.96 0 0 648988. 2245.63 0.19 0.12 0.11 -1 -1 0.19 0.034117 0.0295721 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.05 vpr 62.39 MiB -1 -1 0.18 17520 1 0.03 -1 -1 30200 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 2.22 643 13768 5811 6950 1007 62.4 MiB 0.13 0.00 4.04073 -117.599 -4.04073 4.04073 0.69 0.000586167 0.000545156 0.0569606 0.0528816 36 1975 29 6.87369e+06 237555 648988. 2245.63 2.03 0.181709 0.159143 26050 158493 -1 1437 20 958 1552 107805 26738 3.17261 3.17261 -106.943 -3.17261 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0228096 0.0198198 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.33 vpr 63.03 MiB -1 -1 0.13 17620 1 0.03 -1 -1 30384 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 24.3 MiB 3.19 958 7038 1640 4840 558 63.0 MiB 0.09 0.00 4.57902 -143.19 -4.57902 4.57902 0.65 0.00072371 0.000672736 0.0303758 0.0282351 34 2472 21 6.87369e+06 307425 618332. 2139.56 1.44 0.169024 0.146403 25762 151098 -1 1990 20 1617 2540 179225 41610 3.7651 3.7651 -137.998 -3.7651 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0285177 0.0248579 136 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 6.41 vpr 62.87 MiB -1 -1 0.17 17928 1 0.03 -1 -1 30260 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.2 MiB 2.31 1035 6615 1396 4961 258 62.9 MiB 0.08 0.00 5.21006 -150.271 -5.21006 5.21006 0.65 0.00068858 0.000640309 0.0259389 0.0241347 34 2845 24 6.87369e+06 321398 618332. 2139.56 1.56 0.162415 0.140645 25762 151098 -1 2413 22 1704 2806 223267 50806 4.44196 4.44196 -146.742 -4.44196 0 0 787024. 2723.27 0.20 0.09 0.09 -1 -1 0.20 0.0289116 0.0251662 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 6.64 vpr 62.90 MiB -1 -1 0.20 17668 1 0.03 -1 -1 30088 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 24.3 MiB 2.13 1178 17839 5313 10611 1915 62.9 MiB 0.18 0.00 5.241 -151.339 -5.241 5.241 0.66 0.000684256 0.000635952 0.0681972 0.0630977 36 2587 21 6.87369e+06 391268 648988. 2245.63 1.53 0.201065 0.176378 26050 158493 -1 2283 20 1514 2383 165366 37937 4.261 4.261 -144.483 -4.261 0 0 828058. 2865.25 0.29 0.08 0.19 -1 -1 0.29 0.0266269 0.0232198 141 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 6.07 vpr 62.75 MiB -1 -1 0.19 17624 1 0.03 -1 -1 30172 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 24.2 MiB 2.37 1032 10531 2482 6524 1525 62.7 MiB 0.10 0.00 4.69758 -143.214 -4.69758 4.69758 0.65 0.000720253 0.000669098 0.0380024 0.0352859 32 2579 23 6.87369e+06 447163 586450. 2029.24 0.89 0.124867 0.109762 25474 144626 -1 2142 21 1344 2275 193292 43208 3.4535 3.4535 -131.105 -3.4535 0 0 744469. 2576.02 0.28 0.10 0.14 -1 -1 0.28 0.0342817 0.029825 135 83 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 6.43 vpr 63.00 MiB -1 -1 0.19 17504 1 0.03 -1 -1 30236 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 24.6 MiB 2.09 1030 11245 3242 7121 882 63.0 MiB 0.12 0.00 4.79284 -145.044 -4.79284 4.79284 0.65 0.000723695 0.000672246 0.0458553 0.0425917 34 2708 22 6.87369e+06 293451 618332. 2139.56 1.53 0.185836 0.162122 25762 151098 -1 2211 24 1772 3172 252269 55262 3.84946 3.84946 -137.262 -3.84946 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.0349403 0.0303102 132 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.75 vpr 62.84 MiB -1 -1 0.19 17580 1 0.03 -1 -1 30216 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 24.3 MiB 2.43 973 10944 3003 6644 1297 62.8 MiB 0.11 0.00 4.08063 -124.263 -4.08063 4.08063 0.65 0.000717785 0.000666406 0.041659 0.0387066 34 2457 23 6.87369e+06 405241 618332. 2139.56 1.43 0.181278 0.15765 25762 151098 -1 2069 23 1652 2711 206508 47762 3.11951 3.11951 -119.044 -3.11951 0 0 787024. 2723.27 0.21 0.09 0.15 -1 -1 0.21 0.0309046 0.0268249 132 85 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.70 vpr 62.21 MiB -1 -1 0.15 17104 1 0.02 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.8 MiB 0.58 780 13906 5362 7318 1226 62.2 MiB 0.12 0.00 4.08063 -122.384 -4.08063 4.08063 0.69 0.000557704 0.000519254 0.04631 0.0430978 34 1855 45 6.87369e+06 237555 618332. 2139.56 1.33 0.174124 0.151812 25762 151098 -1 1545 20 890 1368 99226 22570 2.94401 2.94401 -106.567 -2.94401 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0216669 0.01882 96 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 7.56 vpr 62.95 MiB -1 -1 0.15 17652 1 0.03 -1 -1 30276 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 24.4 MiB 3.94 1081 9548 2182 6489 877 63.0 MiB 0.10 0.00 4.62608 -140.581 -4.62608 4.62608 0.65 0.000727549 0.000675884 0.0331655 0.0307847 28 2635 30 6.87369e+06 475111 531479. 1839.03 1.00 0.127481 0.11145 24610 126494 -1 2394 20 1652 2696 203697 47134 4.0193 4.0193 -140.548 -4.0193 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.027788 0.0241862 137 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.18 vpr 62.82 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30440 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 24.2 MiB 3.53 1050 13477 3452 8462 1563 62.8 MiB 0.15 0.00 4.60818 -154.696 -4.60818 4.60818 0.65 0.000766788 0.000712418 0.0583738 0.0542574 34 2764 25 6.87369e+06 293451 618332. 2139.56 1.85 0.212794 0.186189 25762 151098 -1 2341 19 1705 2865 213262 48811 3.7531 3.7531 -149.559 -3.7531 0 0 787024. 2723.27 0.20 0.09 0.12 -1 -1 0.20 0.0283629 0.0247537 142 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 6.80 vpr 62.32 MiB -1 -1 0.16 17312 1 0.03 -1 -1 30052 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 23.8 MiB 2.75 803 10744 3029 6489 1226 62.3 MiB 0.10 0.00 4.47622 -122.656 -4.47622 4.47622 0.65 0.000585264 0.000545172 0.0383274 0.0356914 34 2330 21 6.87369e+06 223581 618332. 2139.56 1.42 0.15003 0.130592 25762 151098 -1 1874 19 1142 1513 111450 26852 3.4908 3.4908 -118.606 -3.4908 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0216969 0.0188603 106 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.10 vpr 62.23 MiB -1 -1 0.16 17104 1 0.02 -1 -1 30336 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63728 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.8 MiB 0.68 704 7103 1505 5021 577 62.2 MiB 0.07 0.00 4.06963 -117.109 -4.06963 4.06963 0.65 0.000556228 0.000517634 0.0238975 0.0222509 30 1825 19 6.87369e+06 279477 556674. 1926.21 0.81 0.0881519 0.0770568 25186 138497 -1 1577 16 870 1445 78907 18836 2.91301 2.91301 -105.151 -2.91301 0 0 706193. 2443.58 0.19 0.05 0.12 -1 -1 0.19 0.0181033 0.0157684 99 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.30 vpr 62.94 MiB -1 -1 0.16 17560 1 0.03 -1 -1 30420 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.4 MiB 2.90 1122 16407 5100 9312 1995 62.9 MiB 0.17 0.00 4.76368 -149.576 -4.76368 4.76368 0.66 0.000700696 0.000651225 0.0623149 0.0579309 34 3132 23 6.87369e+06 321398 618332. 2139.56 1.59 0.200762 0.176002 25762 151098 -1 2492 20 1868 2567 249452 54373 4.30566 4.30566 -151.517 -4.30566 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0272106 0.0237055 145 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 6.70 vpr 62.86 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30336 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 24.3 MiB 2.24 1027 10087 2665 7077 345 62.9 MiB 0.10 0.00 5.28228 -152.543 -5.28228 5.28228 0.65 0.000711893 0.000661745 0.0372453 0.0346104 36 2623 39 6.87369e+06 377294 648988. 2245.63 1.70 0.191447 0.166258 26050 158493 -1 2094 19 1245 1937 117668 28657 4.6349 4.6349 -144.976 -4.6349 0 0 828058. 2865.25 0.21 0.07 0.11 -1 -1 0.21 0.0263698 0.023041 142 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 4.83 vpr 63.06 MiB -1 -1 0.12 17552 1 0.03 -1 -1 30208 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.4 MiB 0.86 1027 19820 5642 10737 3441 63.1 MiB 0.18 0.00 5.45503 -148.146 -5.45503 5.45503 0.68 0.000722651 0.000671771 0.0642306 0.0594738 30 3056 37 6.87369e+06 503058 556674. 1926.21 1.07 0.166072 0.146744 25186 138497 -1 2126 21 1515 2796 169916 40317 4.54885 4.54885 -143.677 -4.54885 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0289723 0.0252563 157 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 5.79 vpr 62.68 MiB -1 -1 0.18 17596 1 0.03 -1 -1 30024 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 24.1 MiB 2.18 803 13893 3888 7187 2818 62.7 MiB 0.12 0.00 3.64131 -107.005 -3.64131 3.64131 0.65 0.000638023 0.000592753 0.0426681 0.0396489 32 2150 23 6.87369e+06 475111 586450. 2029.24 0.92 0.118766 0.104628 25474 144626 -1 1779 22 1365 2449 186602 43150 2.93196 2.93196 -102.245 -2.93196 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0264871 0.022937 119 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.60 vpr 62.35 MiB -1 -1 0.17 17256 1 0.03 -1 -1 30572 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 23.9 MiB 0.99 507 7132 1637 4881 614 62.4 MiB 0.08 0.00 3.6605 -96.1635 -3.6605 3.6605 0.66 0.000672608 0.000619985 0.0301637 0.0278275 30 1496 20 6.87369e+06 293451 556674. 1926.21 0.85 0.0961492 0.084314 25186 138497 -1 1196 17 785 1135 70779 17542 2.76101 2.76101 -92.6515 -2.76101 0 0 706193. 2443.58 0.19 0.05 0.12 -1 -1 0.19 0.018826 0.0163594 96 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 9.08 vpr 63.33 MiB -1 -1 0.20 17792 1 0.03 -1 -1 30308 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 24.7 MiB 3.43 1378 10228 2746 6595 887 63.3 MiB 0.13 0.00 4.35815 -140.01 -4.35815 4.35815 0.67 0.000814108 0.000755882 0.0470194 0.0437442 34 3944 37 6.87369e+06 335372 618332. 2139.56 2.74 0.222734 0.193685 25762 151098 -1 3174 19 1978 3279 270018 60360 4.54246 4.54246 -148.713 -4.54246 0 0 787024. 2723.27 0.26 0.09 0.16 -1 -1 0.26 0.0283344 0.0247401 165 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 8.66 vpr 63.02 MiB -1 -1 0.12 17696 1 0.03 -1 -1 30260 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 24.4 MiB 4.15 1036 15709 5736 7909 2064 63.0 MiB 0.15 0.00 5.60997 -168.26 -5.60997 5.60997 0.65 0.000720522 0.00066962 0.0627163 0.0582784 34 2870 35 6.87369e+06 307425 618332. 2139.56 1.75 0.217391 0.190323 25762 151098 -1 2240 23 2002 3041 253136 56900 4.5866 4.5866 -154.916 -4.5866 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.030889 0.0268619 139 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 8.33 vpr 62.82 MiB -1 -1 0.18 17620 1 0.03 -1 -1 30464 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 24.4 MiB 3.97 954 12542 3477 7836 1229 62.8 MiB 0.12 0.00 4.34735 -144.276 -4.34735 4.34735 0.66 0.000671983 0.000624415 0.049037 0.0455403 34 2396 24 6.87369e+06 251529 618332. 2139.56 1.59 0.179621 0.156731 25762 151098 -1 1977 20 1353 1987 138164 34066 3.5981 3.5981 -140.671 -3.5981 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0253833 0.022073 118 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 4.84 vpr 62.84 MiB -1 -1 0.15 17744 1 0.03 -1 -1 30436 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 24.3 MiB 1.05 986 18523 6141 9875 2507 62.8 MiB 0.16 0.00 5.03998 -136.555 -5.03998 5.03998 0.67 0.000676903 0.000622139 0.0585535 0.0542939 28 2617 26 6.87369e+06 461137 531479. 1839.03 1.13 0.141741 0.125534 24610 126494 -1 2265 23 1411 2278 185501 41444 3.8566 3.8566 -128.643 -3.8566 0 0 648988. 2245.63 0.18 0.08 0.08 -1 -1 0.18 0.0287558 0.0249488 129 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 5.52 vpr 62.89 MiB -1 -1 0.16 17504 1 0.03 -1 -1 30268 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 24.3 MiB 1.79 1064 18301 5445 10263 2593 62.9 MiB 0.17 0.00 4.47348 -130.92 -4.47348 4.47348 0.66 0.000855909 0.000791226 0.0632522 0.0587168 32 2670 22 6.87369e+06 475111 586450. 2029.24 0.93 0.15013 0.133077 25474 144626 -1 2206 21 1472 2558 198438 45014 3.63536 3.63536 -124.973 -3.63536 0 0 744469. 2576.02 0.25 0.08 0.13 -1 -1 0.25 0.0306417 0.0267742 149 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.08 vpr 62.63 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30076 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 24.2 MiB 1.85 1005 13953 3900 8706 1347 62.6 MiB 0.12 0.00 3.71604 -108.811 -3.71604 3.71604 0.66 0.000657832 0.000611762 0.046026 0.0427765 34 2309 22 6.87369e+06 433189 618332. 2139.56 1.32 0.173179 0.151055 25762 151098 -1 1950 17 1067 1860 124922 29376 2.93031 2.93031 -104.331 -2.93031 0 0 787024. 2723.27 0.29 0.06 0.15 -1 -1 0.29 0.0202431 0.0179476 124 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 8.19 vpr 63.01 MiB -1 -1 0.19 17576 1 0.03 -1 -1 30328 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 24.4 MiB 2.95 1158 14261 4788 7245 2228 63.0 MiB 0.15 0.00 4.84864 -152.871 -4.84864 4.84864 0.68 0.000707256 0.000657773 0.0558178 0.0518629 34 3462 28 6.87369e+06 307425 618332. 2139.56 2.48 0.204277 0.179065 25762 151098 -1 2628 23 2062 3235 287780 62306 4.17495 4.17495 -148.162 -4.17495 0 0 787024. 2723.27 0.20 0.10 0.09 -1 -1 0.20 0.0305905 0.0266098 148 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 6.69 vpr 63.06 MiB -1 -1 0.18 17636 1 0.03 -1 -1 30116 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 2.93 1138 19124 5521 11431 2172 63.1 MiB 0.17 0.00 4.13563 -138.632 -4.13563 4.13563 0.65 0.000749113 0.000694288 0.064103 0.0594699 28 2715 22 6.87369e+06 503058 531479. 1839.03 0.95 0.154799 0.137216 24610 126494 -1 2408 19 1498 2419 164089 37336 3.12431 3.12431 -127.083 -3.12431 0 0 648988. 2245.63 0.24 0.07 0.12 -1 -1 0.24 0.0255562 0.0224955 147 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.29 vpr 62.36 MiB -1 -1 0.17 17484 1 0.03 -1 -1 30272 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 23.9 MiB 1.69 666 12120 4433 5222 2465 62.4 MiB 0.10 0.00 3.97634 -118.279 -3.97634 3.97634 0.66 0.000573316 0.000533155 0.0422264 0.0392842 32 1713 25 6.87369e+06 265503 586450. 2029.24 0.86 0.113556 0.0998988 25474 144626 -1 1450 16 1051 1510 102810 24073 2.88196 2.88196 -105.209 -2.88196 0 0 744469. 2576.02 0.26 0.05 0.13 -1 -1 0.26 0.0189234 0.016904 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 5.05 vpr 62.67 MiB -1 -1 0.17 17696 1 0.03 -1 -1 30340 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 24.0 MiB 1.51 954 14256 4666 7594 1996 62.7 MiB 0.13 0.00 4.32352 -124.508 -4.32352 4.32352 0.66 0.000635929 0.000591636 0.0541921 0.0504292 30 2387 23 6.87369e+06 237555 556674. 1926.21 0.86 0.129734 0.114839 25186 138497 -1 2015 15 856 1149 82635 18383 3.26184 3.26184 -123.375 -3.26184 0 0 706193. 2443.58 0.19 0.05 0.14 -1 -1 0.19 0.0211735 0.0187259 112 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 5.73 vpr 62.87 MiB -1 -1 0.20 17692 1 0.04 -1 -1 30480 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 24.3 MiB 1.99 1008 17238 4626 10206 2406 62.9 MiB 0.14 0.00 4.58512 -131.297 -4.58512 4.58512 0.66 0.000663255 0.000616792 0.0507663 0.047156 28 2463 22 6.87369e+06 544980 531479. 1839.03 1.00 0.129492 0.114517 24610 126494 -1 2321 20 1520 2685 209113 46179 4.2616 4.2616 -136.339 -4.2616 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.0257746 0.0224383 135 33 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 6.92 vpr 62.49 MiB -1 -1 0.19 17432 1 0.03 -1 -1 30280 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 2.88 766 12464 3650 7053 1761 62.5 MiB 0.11 0.00 4.72278 -121.674 -4.72278 4.72278 0.65 0.000565768 0.000526574 0.042781 0.0398247 36 2048 24 6.87369e+06 265503 648988. 2245.63 1.48 0.154577 0.134607 26050 158493 -1 1693 19 1092 1446 93186 24458 3.45685 3.45685 -110.754 -3.45685 0 0 828058. 2865.25 0.20 0.03 0.09 -1 -1 0.20 0.0117988 0.0104182 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 7.01 vpr 62.45 MiB -1 -1 0.18 17484 1 0.03 -1 -1 30184 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 23.9 MiB 2.94 839 11909 3234 7671 1004 62.4 MiB 0.10 0.00 4.09853 -129.483 -4.09853 4.09853 0.71 0.00059469 0.00055343 0.0440787 0.0410043 34 2157 23 6.87369e+06 209608 618332. 2139.56 1.33 0.16141 0.140935 25762 151098 -1 1820 21 1422 2436 176587 40630 2.89096 2.89096 -115.541 -2.89096 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0239307 0.0207781 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 6.16 vpr 62.87 MiB -1 -1 0.19 17664 1 0.03 -1 -1 30112 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 24.3 MiB 2.59 942 11236 2692 7798 746 62.9 MiB 0.12 0.00 3.93572 -125.697 -3.93572 3.93572 0.61 0.000728428 0.00067663 0.0376952 0.0349438 30 2084 23 6.87369e+06 517032 556674. 1926.21 0.86 0.124614 0.109325 25186 138497 -1 1755 22 1427 2345 123843 30179 2.85066 2.85066 -111.306 -2.85066 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0300666 0.0261177 141 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 7.09 vpr 62.39 MiB -1 -1 0.19 17316 1 0.02 -1 -1 30384 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 23.9 MiB 2.74 854 11604 2702 8073 829 62.4 MiB 0.10 0.00 3.71466 -115.66 -3.71466 3.71466 0.80 0.00057401 0.000534556 0.0404184 0.0376175 34 2121 22 6.87369e+06 237555 618332. 2139.56 1.37 0.156724 0.13683 25762 151098 -1 1793 24 1269 1863 147188 34139 3.22491 3.22491 -116.376 -3.22491 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0256835 0.0222042 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.45 vpr 62.66 MiB -1 -1 0.16 17792 1 0.03 -1 -1 30024 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 24.2 MiB 2.70 1000 15215 3699 9919 1597 62.7 MiB 0.14 0.00 3.6733 -115.913 -3.6733 3.6733 0.66 0.000763355 0.000712905 0.0513462 0.0476766 28 2463 22 6.87369e+06 433189 531479. 1839.03 1.07 0.13232 0.11696 24610 126494 -1 2134 17 1072 1687 130609 29568 3.23291 3.23291 -117.711 -3.23291 0 0 648988. 2245.63 0.18 0.06 0.12 -1 -1 0.18 0.0239284 0.0209016 129 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 7.08 vpr 62.89 MiB -1 -1 0.21 17692 1 0.04 -1 -1 30308 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 24.3 MiB 3.02 1013 12839 3510 8051 1278 62.9 MiB 0.13 0.00 3.7214 -127.022 -3.7214 3.7214 0.65 0.000747748 0.0006941 0.0470486 0.0436639 26 2613 33 6.87369e+06 447163 503264. 1741.40 1.24 0.151058 0.133097 24322 120374 -1 2318 22 1836 2739 240609 53381 3.49736 3.49736 -136.167 -3.49736 0 0 618332. 2139.56 0.20 0.09 0.12 -1 -1 0.20 0.0312678 0.0271512 137 91 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.05 vpr 62.63 MiB -1 -1 0.14 17392 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 24.1 MiB 2.13 868 13324 3871 8104 1349 62.6 MiB 0.12 0.00 3.6034 -114.008 -3.6034 3.6034 0.65 0.000628902 0.000584272 0.0499794 0.0464497 34 2053 23 6.87369e+06 223581 618332. 2139.56 1.29 0.171183 0.149656 25762 151098 -1 1867 20 1096 1750 148394 33483 2.93031 2.93031 -111.865 -2.93031 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0245835 0.021442 99 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 5.42 vpr 62.69 MiB -1 -1 0.10 17508 1 0.03 -1 -1 30252 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 24.0 MiB 1.42 974 10050 2495 6517 1038 62.7 MiB 0.10 0.00 4.16989 -130.796 -4.16989 4.16989 0.65 0.000622397 0.000579422 0.0374502 0.0347325 34 2564 21 6.87369e+06 251529 618332. 2139.56 1.40 0.15722 0.136785 25762 151098 -1 2158 22 1584 2433 195283 44249 3.42321 3.42321 -125.2 -3.42321 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0254957 0.0221121 114 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 6.60 vpr 62.77 MiB -1 -1 0.18 17792 1 0.03 -1 -1 30204 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 24.3 MiB 2.46 1073 14072 3847 8138 2087 62.8 MiB 0.13 0.00 4.82103 -137.111 -4.82103 4.82103 0.65 0.000658005 0.00061149 0.0512259 0.047637 34 2766 23 6.87369e+06 307425 618332. 2139.56 1.37 0.179344 0.156843 25762 151098 -1 2315 22 1603 2279 167129 38418 3.85576 3.85576 -132.18 -3.85576 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0273073 0.0236984 132 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 6.62 vpr 62.66 MiB -1 -1 0.18 17588 1 0.03 -1 -1 30060 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 24.1 MiB 2.66 938 11346 3139 7252 955 62.7 MiB 0.10 0.00 4.10263 -113.928 -4.10263 4.10263 0.65 0.000650645 0.000605428 0.0388816 0.0361732 34 2292 21 6.87369e+06 405241 618332. 2139.56 1.27 0.16345 0.142292 25762 151098 -1 1865 18 985 1663 101328 25310 3.08831 3.08831 -105.918 -3.08831 0 0 787024. 2723.27 0.22 0.06 0.13 -1 -1 0.22 0.0248048 0.0218926 123 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 7.30 vpr 63.01 MiB -1 -1 0.16 17796 1 0.03 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 24.4 MiB 2.68 1137 15773 5092 8347 2334 63.0 MiB 0.17 0.00 5.16181 -165.054 -5.16181 5.16181 0.61 0.000761672 0.000699453 0.0657963 0.0608792 34 3224 24 6.87369e+06 307425 618332. 2139.56 1.80 0.215479 0.188772 25762 151098 -1 2506 23 1972 3000 246393 55956 4.23626 4.23626 -156.047 -4.23626 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0325076 0.028233 151 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.54 vpr 62.39 MiB -1 -1 0.16 17172 1 0.02 -1 -1 30332 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 24.0 MiB 0.59 812 10400 2700 6281 1419 62.4 MiB 0.08 0.00 3.6213 -110.383 -3.6213 3.6213 0.65 0.000529707 0.000493883 0.033643 0.0313459 34 1771 19 6.87369e+06 237555 618332. 2139.56 1.25 0.135057 0.117531 25762 151098 -1 1572 19 861 1344 90065 21187 2.78501 2.78501 -102.459 -2.78501 0 0 787024. 2723.27 0.20 0.05 0.15 -1 -1 0.20 0.0200937 0.0174878 92 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.47 vpr 63.07 MiB -1 -1 0.17 17732 1 0.03 -1 -1 30188 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 1.75 1097 18567 5571 11084 1912 63.1 MiB 0.17 0.00 4.4584 -148.753 -4.4584 4.4584 0.65 0.00077921 0.000723582 0.0661158 0.0613613 30 2603 24 6.87369e+06 489084 556674. 1926.21 0.95 0.159798 0.141617 25186 138497 -1 2091 22 1434 2068 140013 31232 3.72316 3.72316 -139.913 -3.72316 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0319638 0.0277597 145 90 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 8.61 vpr 62.97 MiB -1 -1 0.18 17812 1 0.03 -1 -1 30124 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.4 MiB 4.40 823 13152 5512 7421 219 63.0 MiB 0.13 0.00 3.7595 -132.319 -3.7595 3.7595 0.67 0.000712529 0.000661501 0.0567964 0.0527397 34 2123 27 6.87369e+06 223581 618332. 2139.56 1.41 0.199899 0.174585 25762 151098 -1 1805 19 1496 2160 182254 40246 3.05731 3.05731 -125.203 -3.05731 0 0 787024. 2723.27 0.21 0.08 0.15 -1 -1 0.21 0.0262459 0.0228411 114 96 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.70 vpr 62.85 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30260 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 24.4 MiB 2.58 1010 10827 2581 6963 1283 62.9 MiB 0.11 0.00 4.11773 -126.026 -4.11773 4.11773 0.65 0.000709222 0.000658831 0.0373689 0.0346883 34 2332 20 6.87369e+06 447163 618332. 2139.56 1.35 0.172386 0.149863 25762 151098 -1 1913 20 1166 1887 120654 28634 2.75641 2.75641 -108.206 -2.75641 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0271235 0.0235801 134 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.32 vpr 63.34 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30304 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 24.8 MiB 3.78 1280 16127 4711 8958 2458 63.3 MiB 0.18 0.00 5.89191 -180.703 -5.89191 5.89191 0.66 0.000774978 0.000719554 0.0660058 0.0613053 34 3352 23 6.87369e+06 349346 618332. 2139.56 1.63 0.219199 0.192399 25762 151098 -1 2806 23 2166 3316 300140 64406 5.0795 5.0795 -171.863 -5.0795 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0337762 0.0294658 171 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 4.55 vpr 62.34 MiB -1 -1 0.18 17484 1 0.03 -1 -1 30060 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 23.7 MiB 1.14 668 8716 2078 6018 620 62.3 MiB 0.07 0.00 3.01966 -95.583 -3.01966 3.01966 0.65 0.000506229 0.000471808 0.0290085 0.0270453 30 1784 17 6.87369e+06 209608 556674. 1926.21 0.79 0.0851605 0.0749381 25186 138497 -1 1450 18 757 999 78556 18489 2.57366 2.57366 -100.628 -2.57366 0 0 706193. 2443.58 0.21 0.05 0.13 -1 -1 0.21 0.0181625 0.0157963 81 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.86 vpr 62.41 MiB -1 -1 0.15 17420 1 0.03 -1 -1 30060 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 23.9 MiB 1.01 599 7081 1635 4909 537 62.4 MiB 0.07 0.00 4.05453 -121.132 -4.05453 4.05453 0.66 0.000600844 0.000558471 0.026556 0.0247438 34 1802 23 6.87369e+06 265503 618332. 2139.56 1.26 0.144147 0.124516 25762 151098 -1 1344 22 1125 1743 107136 27099 2.90001 2.90001 -110.666 -2.90001 0 0 787024. 2723.27 0.22 0.06 0.13 -1 -1 0.22 0.0252935 0.021922 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 4.74 vpr 62.50 MiB -1 -1 0.19 17588 1 0.03 -1 -1 29984 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 23.9 MiB 0.92 913 15639 4952 8936 1751 62.5 MiB 0.14 0.00 3.6323 -121.89 -3.6323 3.6323 0.69 0.000623994 0.000578387 0.053115 0.0493686 32 2483 25 6.87369e+06 321398 586450. 2029.24 0.91 0.131484 0.116515 25474 144626 -1 2082 23 1398 2534 242205 51921 3.19991 3.19991 -122.936 -3.19991 0 0 744469. 2576.02 0.27 0.09 0.14 -1 -1 0.27 0.0267582 0.0231624 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.14 vpr 62.39 MiB -1 -1 0.14 17428 1 0.03 -1 -1 30184 -1 -1 29 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 24.0 MiB 0.82 516 9536 2821 4714 2001 62.4 MiB 0.07 0.00 3.5473 -82.6349 -3.5473 3.5473 0.65 0.000481156 0.000447952 0.0256574 0.0238323 28 1443 23 6.87369e+06 405241 531479. 1839.03 0.79 0.0831579 0.0727516 24610 126494 -1 1276 16 742 1274 86553 21057 3.05256 3.05256 -82.6649 -3.05256 0 0 648988. 2245.63 0.20 0.05 0.11 -1 -1 0.20 0.0155973 0.0135639 87 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.19 vpr 63.12 MiB -1 -1 0.17 17620 1 0.03 -1 -1 30256 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 24.4 MiB 2.68 974 10332 2610 6542 1180 63.1 MiB 0.11 0.00 4.3434 -128.294 -4.3434 4.3434 0.65 0.00072797 0.000676112 0.0435381 0.0404502 34 2904 44 6.87369e+06 279477 618332. 2139.56 1.62 0.214547 0.186137 25762 151098 -1 2481 22 1620 2847 226586 52091 3.79676 3.79676 -132.011 -3.79676 0 0 787024. 2723.27 0.28 0.08 0.15 -1 -1 0.28 0.0259972 0.0228281 133 72 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.50 vpr 63.21 MiB -1 -1 0.21 17792 1 0.03 -1 -1 30340 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 24.6 MiB 2.70 978 9679 2433 6610 636 63.2 MiB 0.11 0.00 4.12463 -132.597 -4.12463 4.12463 0.67 0.000765817 0.000710716 0.0373798 0.0346968 28 2440 23 6.87369e+06 433189 531479. 1839.03 1.04 0.129616 0.11361 24610 126494 -1 2090 22 1828 2808 189300 45189 3.19976 3.19976 -123.169 -3.19976 0 0 648988. 2245.63 0.17 0.09 0.11 -1 -1 0.17 0.0346247 0.0300292 143 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 7.14 vpr 62.67 MiB -1 -1 0.15 17808 1 0.03 -1 -1 29944 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 24.1 MiB 2.65 1101 11203 3178 6921 1104 62.7 MiB 0.12 0.00 5.42457 -156.316 -5.42457 5.42457 0.65 0.000703516 0.000653738 0.0428756 0.0398131 34 2918 37 6.89349e+06 338252 618332. 2139.56 1.73 0.185176 0.161265 25762 151098 -1 2330 21 1708 2520 163764 40336 4.34515 4.34515 -149.16 -4.34515 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0285596 0.024889 149 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.15 vpr 62.77 MiB -1 -1 0.20 17664 1 0.03 -1 -1 30496 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 24.3 MiB 1.58 1174 12178 3196 7626 1356 62.8 MiB 0.13 0.00 4.90208 -149.95 -4.90208 4.90208 0.65 0.000699267 0.000648346 0.0468993 0.0436141 34 3129 45 6.89349e+06 366440 618332. 2139.56 1.66 0.210067 0.182312 25762 151098 -1 2525 20 1896 2817 195635 44278 4.54103 4.54103 -152.393 -4.54103 0 0 787024. 2723.27 0.30 0.08 0.17 -1 -1 0.30 0.0238987 0.0210372 156 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.03 vpr 62.36 MiB -1 -1 0.22 17312 1 0.03 -1 -1 30320 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 23.7 MiB 1.84 1048 13663 4160 7949 1554 62.4 MiB 0.13 0.00 4.2044 -120.612 -4.2044 4.2044 0.65 0.00062757 0.00058389 0.0483279 0.0449332 34 2461 28 6.89349e+06 295971 618332. 2139.56 1.44 0.175981 0.153507 25762 151098 -1 2068 17 1174 1629 125136 28487 3.6043 3.6043 -118.534 -3.6043 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0216731 0.0189196 125 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 5.84 vpr 62.51 MiB -1 -1 0.18 17328 1 0.03 -1 -1 30308 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 23.8 MiB 1.66 1070 14593 4351 8219 2023 62.5 MiB 0.13 0.00 4.83618 -131.951 -4.83618 4.83618 0.66 0.000638621 0.000593767 0.0519697 0.0483128 34 2512 27 6.89349e+06 338252 618332. 2139.56 1.42 0.180465 0.157608 25762 151098 -1 2085 21 1310 2112 150521 33470 3.83566 3.83566 -123.468 -3.83566 0 0 787024. 2723.27 0.21 0.08 0.10 -1 -1 0.21 0.0280844 0.024488 134 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 6.75 vpr 62.61 MiB -1 -1 0.16 17768 1 0.03 -1 -1 30180 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 24.2 MiB 1.27 1121 10839 3086 5720 2033 62.6 MiB 0.12 0.00 5.28221 -151.791 -5.28221 5.28221 0.82 0.000685174 0.000636978 0.0407297 0.0378644 36 3048 26 6.89349e+06 324158 648988. 2245.63 2.39 0.180805 0.157385 26050 158493 -1 2547 20 1919 3437 271377 58237 4.29409 4.29409 -144.18 -4.29409 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0264039 0.0229941 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 6.51 vpr 62.74 MiB -1 -1 0.18 17620 1 0.03 -1 -1 30224 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 24.2 MiB 1.85 1263 20077 7001 10670 2406 62.7 MiB 0.19 0.00 3.92406 -127.128 -3.92406 3.92406 0.67 0.000716678 0.000664729 0.0676892 0.0627367 34 3484 24 6.89349e+06 465097 618332. 2139.56 1.72 0.208746 0.182888 25762 151098 -1 2789 22 1642 2691 272873 55199 3.27965 3.27965 -126.713 -3.27965 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0297758 0.0258493 162 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.23 vpr 62.23 MiB -1 -1 0.18 17484 1 0.02 -1 -1 30736 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 23.8 MiB 1.15 795 13496 4096 7659 1741 62.2 MiB 0.11 0.00 4.14623 -113.724 -4.14623 4.14623 0.65 0.00055787 0.000519397 0.0453107 0.0421523 34 1922 21 6.89349e+06 295971 618332. 2139.56 1.33 0.15167 0.132266 25762 151098 -1 1665 19 1209 1767 145110 32540 3.09466 3.09466 -107.031 -3.09466 0 0 787024. 2723.27 0.21 0.08 0.15 -1 -1 0.21 0.0238286 0.0208541 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.33 vpr 62.25 MiB -1 -1 0.16 17248 1 0.03 -1 -1 30208 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 23.7 MiB 0.64 908 11759 3095 6971 1693 62.2 MiB 0.10 0.00 3.40307 -102.549 -3.40307 3.40307 0.65 0.000600999 0.00055741 0.0348945 0.0323508 26 2334 21 6.89349e+06 451003 503264. 1741.40 0.97 0.105496 0.0927631 24322 120374 -1 2119 20 1170 2104 171783 38298 2.69355 2.69355 -101.086 -2.69355 0 0 618332. 2139.56 0.25 0.07 0.12 -1 -1 0.25 0.0201574 0.0176525 119 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 5.83 vpr 62.43 MiB -1 -1 0.20 17664 1 0.03 -1 -1 30172 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 24.0 MiB 1.49 1042 10703 3845 4978 1880 62.4 MiB 0.10 0.00 3.68945 -124.167 -3.68945 3.68945 0.65 0.000502568 0.000458694 0.0333063 0.0305959 34 2732 28 6.89349e+06 281877 618332. 2139.56 1.63 0.163533 0.141127 25762 151098 -1 2160 20 1579 2113 170875 38070 2.94946 2.94946 -119.188 -2.94946 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0247934 0.0215416 130 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.11 vpr 62.50 MiB -1 -1 0.19 17532 1 0.03 -1 -1 30116 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 23.9 MiB 1.87 928 7914 1841 5211 862 62.5 MiB 0.09 0.00 4.05148 -133.476 -4.05148 4.05148 0.65 0.000626429 0.0005831 0.0296547 0.0276039 34 2363 46 6.89349e+06 253689 618332. 2139.56 1.52 0.172479 0.149085 25762 151098 -1 1967 18 1068 1435 118944 26570 3.2697 3.2697 -123.949 -3.2697 0 0 787024. 2723.27 0.29 0.06 0.11 -1 -1 0.29 0.0196141 0.0173377 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 6.29 vpr 62.74 MiB -1 -1 0.17 17548 1 0.03 -1 -1 30312 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 24.1 MiB 1.94 867 6563 1487 4637 439 62.7 MiB 0.07 0.00 4.47797 -127.666 -4.47797 4.47797 0.68 0.000622726 0.000579761 0.0245316 0.0228086 34 2468 30 6.89349e+06 295971 618332. 2139.56 1.63 0.144376 0.124726 25762 151098 -1 1954 18 1246 1652 117850 27065 3.58625 3.58625 -124.145 -3.58625 0 0 787024. 2723.27 0.20 0.06 0.16 -1 -1 0.20 0.0221159 0.0192502 124 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 5.71 vpr 62.41 MiB -1 -1 0.12 17372 1 0.03 -1 -1 30068 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.9 MiB 1.61 849 7781 1935 5506 340 62.4 MiB 0.08 0.00 3.6807 -111.961 -3.6807 3.6807 0.65 0.000596341 0.000555752 0.028677 0.0267239 34 2156 24 6.89349e+06 239595 618332. 2139.56 1.57 0.145552 0.12615 25762 151098 -1 1837 18 1097 1520 113918 26887 3.08901 3.08901 -112.434 -3.08901 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0211135 0.0183746 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 6.34 vpr 62.66 MiB -1 -1 0.18 17636 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1060 16407 4994 8930 2483 62.7 MiB 0.16 0.00 4.09068 -131.143 -4.09068 4.09068 0.65 0.00069443 0.000645071 0.0617162 0.0573334 34 2942 46 6.89349e+06 324158 618332. 2139.56 1.76 0.222039 0.193916 25762 151098 -1 2312 19 1654 2518 184499 42386 3.22401 3.22401 -123.401 -3.22401 0 0 787024. 2723.27 0.22 0.08 0.10 -1 -1 0.22 0.0256604 0.022359 143 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.65 vpr 62.73 MiB -1 -1 0.19 17560 1 0.03 -1 -1 30344 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 24.2 MiB 1.67 1222 15298 4935 8519 1844 62.7 MiB 0.16 0.00 5.57191 -161.898 -5.57191 5.57191 0.65 0.000719359 0.000667733 0.0590353 0.0548412 38 2640 21 6.89349e+06 338252 678818. 2348.85 4.08 0.303048 0.262786 26626 170182 -1 2332 20 1682 2320 155536 33971 4.52865 4.52865 -151.53 -4.52865 0 0 902133. 3121.57 0.32 0.07 0.17 -1 -1 0.32 0.0240201 0.0212002 153 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.60 vpr 62.13 MiB -1 -1 0.11 17608 1 0.03 -1 -1 30152 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 23.7 MiB 1.67 847 11909 3522 6229 2158 62.1 MiB 0.10 0.00 3.19582 -98.7926 -3.19582 3.19582 0.67 0.000551117 0.000502878 0.0410674 0.0382024 34 1978 21 6.89349e+06 253689 618332. 2139.56 1.32 0.147704 0.128619 25762 151098 -1 1713 20 983 1407 102917 23465 2.73986 2.73986 -96.8501 -2.73986 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.020937 0.0181264 102 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 6.77 vpr 62.73 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30332 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 24.2 MiB 2.13 1270 15103 4761 8086 2256 62.7 MiB 0.15 0.00 4.1162 -136.486 -4.1162 4.1162 0.67 0.000725896 0.000673632 0.0587582 0.054546 38 3035 24 6.89349e+06 338252 678818. 2348.85 1.73 0.20373 0.178389 26626 170182 -1 2635 18 1851 2943 211103 45834 3.459 3.459 -129.009 -3.459 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0260214 0.022688 159 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 6.29 vpr 62.47 MiB -1 -1 0.19 17628 1 0.03 -1 -1 30104 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 24.1 MiB 1.81 1061 15017 4935 7452 2630 62.5 MiB 0.14 0.00 4.12104 -133.123 -4.12104 4.12104 0.66 0.000685494 0.000637406 0.0566324 0.0526675 36 2514 26 6.89349e+06 310065 648988. 2245.63 1.74 0.195778 0.171547 26050 158493 -1 2201 18 1382 2001 156507 34318 3.04636 3.04636 -120.145 -3.04636 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0244904 0.0213866 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 6.28 vpr 62.68 MiB -1 -1 0.10 17764 1 0.03 -1 -1 30264 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 24.2 MiB 1.56 1121 14407 4796 7561 2050 62.7 MiB 0.13 0.00 3.60799 -127.319 -3.60799 3.60799 0.67 0.000659466 0.000608013 0.0479024 0.044464 36 2593 20 6.89349e+06 295971 648988. 2245.63 1.99 0.173147 0.15117 26050 158493 -1 2266 19 1560 2114 154286 34059 3.02646 3.02646 -124.23 -3.02646 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.02419 0.0210643 131 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.17 vpr 61.99 MiB -1 -1 0.14 17528 1 0.02 -1 -1 30080 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63476 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 23.4 MiB 0.92 565 9205 3754 4929 522 62.0 MiB 0.06 0.00 2.67033 -85.3827 -2.67033 2.67033 0.69 0.000498476 0.000463788 0.0215045 0.0199447 38 1394 30 6.89349e+06 211408 678818. 2348.85 1.58 0.124729 0.10757 26626 170182 -1 1159 13 560 635 58152 13020 2.05307 2.05307 -80.887 -2.05307 0 0 902133. 3121.57 0.22 0.04 0.14 -1 -1 0.22 0.0124809 0.0110467 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 6.20 vpr 62.43 MiB -1 -1 0.18 17380 1 0.03 -1 -1 30132 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 23.8 MiB 1.93 986 14322 4290 8044 1988 62.4 MiB 0.13 0.00 4.76552 -144.771 -4.76552 4.76552 0.65 0.00061027 0.000567226 0.0510812 0.047517 34 2322 29 6.89349e+06 267783 618332. 2139.56 1.55 0.175352 0.153091 25762 151098 -1 2014 20 1276 1972 146102 33382 3.479 3.479 -129.696 -3.479 0 0 787024. 2723.27 0.19 0.04 0.14 -1 -1 0.19 0.0131689 0.011615 117 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.35 vpr 62.62 MiB -1 -1 0.13 17620 1 0.03 -1 -1 30448 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 24.1 MiB 1.01 1121 13823 3432 8585 1806 62.6 MiB 0.13 0.00 4.71322 -150.624 -4.71322 4.71322 0.65 0.000703992 0.000654566 0.0454751 0.0422874 34 2727 22 6.89349e+06 479191 618332. 2139.56 1.61 0.180478 0.157459 25762 151098 -1 2334 20 1481 2227 174544 39115 4.00824 4.00824 -143.79 -4.00824 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0286407 0.0250182 151 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 6.18 vpr 62.67 MiB -1 -1 0.15 17576 1 0.03 -1 -1 30212 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 24.1 MiB 1.60 1277 12375 3467 7863 1045 62.7 MiB 0.13 0.00 4.43295 -138.206 -4.43295 4.43295 0.66 0.000733411 0.000681355 0.0499327 0.0464196 36 3078 26 6.89349e+06 324158 648988. 2245.63 1.95 0.196784 0.171674 26050 158493 -1 2617 21 2034 3206 249894 52894 3.89554 3.89554 -137.73 -3.89554 0 0 828058. 2865.25 0.21 0.09 0.11 -1 -1 0.21 0.029181 0.0254066 155 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 6.37 vpr 61.93 MiB -1 -1 0.13 17488 1 0.02 -1 -1 30684 -1 -1 19 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 23.3 MiB 1.10 448 11324 4682 5071 1571 61.9 MiB 0.09 0.00 2.70371 -73.039 -2.70371 2.70371 0.65 0.000432862 0.000402272 0.0387856 0.0359205 36 1409 29 6.89349e+06 267783 648988. 2245.63 2.66 0.169057 0.146162 26050 158493 -1 1053 24 894 1077 88226 21748 2.34066 2.34066 -71.8008 -2.34066 0 0 828058. 2865.25 0.25 0.06 0.14 -1 -1 0.25 0.0191117 0.0166002 76 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.28 vpr 62.18 MiB -1 -1 0.19 17268 1 0.03 -1 -1 30232 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63668 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.6 MiB 1.08 989 9879 2312 6247 1320 62.2 MiB 0.10 0.00 4.42392 -127.052 -4.42392 4.42392 0.65 0.000624299 0.000580855 0.0342211 0.0318558 34 2328 22 6.89349e+06 324158 618332. 2139.56 1.46 0.153869 0.133603 25762 151098 -1 1979 21 1206 2295 156747 36159 3.50885 3.50885 -121.305 -3.50885 0 0 787024. 2723.27 0.20 0.07 0.09 -1 -1 0.20 0.0249176 0.0217245 119 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.08 vpr 62.08 MiB -1 -1 0.15 16984 1 0.03 -1 -1 29988 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.6 MiB 0.45 477 9356 3828 5185 343 62.1 MiB 0.06 0.00 2.35052 -74.7133 -2.35052 2.35052 0.70 0.000427702 0.000397013 0.0259915 0.0241266 30 1271 33 6.89349e+06 169126 556674. 1926.21 0.81 0.0842027 0.073836 25186 138497 -1 917 13 471 601 34359 9289 1.85746 1.85746 -71.2035 -1.85746 0 0 706193. 2443.58 0.19 0.03 0.12 -1 -1 0.19 0.0121125 0.0106332 65 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.67 vpr 62.43 MiB -1 -1 0.18 17316 1 0.03 -1 -1 29964 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1046 9966 2582 6701 683 62.4 MiB 0.10 0.00 4.91481 -138.303 -4.91481 4.91481 0.68 0.000646567 0.000601727 0.0372364 0.0346094 34 2316 22 6.89349e+06 281877 618332. 2139.56 1.43 0.161056 0.140242 25762 151098 -1 1980 19 1004 1540 102606 24225 3.76736 3.76736 -123.228 -3.76736 0 0 787024. 2723.27 0.19 0.06 0.09 -1 -1 0.19 0.0235092 0.0204842 125 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.73 vpr 62.37 MiB -1 -1 0.15 17276 1 0.03 -1 -1 30356 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.8 MiB 0.85 1030 18239 5331 10544 2364 62.4 MiB 0.15 0.00 3.48935 -111.917 -3.48935 3.48935 0.70 0.000636812 0.000592023 0.0558729 0.0518759 30 2299 29 6.89349e+06 436909 556674. 1926.21 0.91 0.138974 0.123132 25186 138497 -1 1943 18 1002 1825 117062 25649 2.62651 2.62651 -101.154 -2.62651 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0225352 0.0196506 130 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.56 vpr 62.82 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30188 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 24.4 MiB 1.94 1031 15255 4057 8092 3106 62.8 MiB 0.14 0.00 4.82008 -133.501 -4.82008 4.82008 0.65 0.000676593 0.000628754 0.0560403 0.0520692 34 2929 28 6.89349e+06 324158 618332. 2139.56 1.83 0.19384 0.169328 25762 151098 -1 2406 20 1641 2502 180517 44433 4.15846 4.15846 -138.48 -4.15846 0 0 787024. 2723.27 0.22 0.08 0.15 -1 -1 0.22 0.026278 0.0228992 142 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 5.90 vpr 62.37 MiB -1 -1 0.18 17372 1 0.03 -1 -1 30168 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 23.9 MiB 1.56 1042 13556 4378 7182 1996 62.4 MiB 0.12 0.00 3.7536 -126.104 -3.7536 3.7536 0.90 0.000603354 0.000561434 0.0485359 0.0450397 34 2426 26 6.89349e+06 239595 618332. 2139.56 1.39 0.169904 0.148147 25762 151098 -1 2062 21 1231 1775 140537 30780 3.10151 3.10151 -121.28 -3.10151 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.024252 0.0210288 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.92 vpr 62.17 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30556 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63660 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 23.7 MiB 1.71 868 13092 4092 7012 1988 62.2 MiB 0.12 0.00 4.03552 -117.607 -4.03552 4.03552 0.67 0.000566446 0.000527084 0.0470642 0.0437448 34 2273 22 6.89349e+06 239595 618332. 2139.56 1.53 0.157721 0.137712 25762 151098 -1 1875 20 958 1604 132449 28430 3.37775 3.37775 -111.98 -3.37775 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.021868 0.0189562 104 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.32 vpr 62.28 MiB -1 -1 0.19 17508 1 0.03 -1 -1 30056 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63772 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 23.8 MiB 1.52 757 6960 1669 4834 457 62.3 MiB 0.07 0.00 4.17394 -114.526 -4.17394 4.17394 0.66 0.000555749 0.000517388 0.0242901 0.0226192 30 2142 28 6.89349e+06 281877 556674. 1926.21 0.96 0.0959583 0.0836313 25186 138497 -1 1666 20 1033 1810 114421 26114 3.22555 3.22555 -108.797 -3.22555 0 0 706193. 2443.58 0.28 0.06 0.14 -1 -1 0.28 0.0196366 0.0172792 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 4.14 vpr 62.21 MiB -1 -1 0.17 17100 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.54 835 13031 3792 7568 1671 62.2 MiB 0.11 0.00 3.90738 -121.629 -3.90738 3.90738 0.66 0.000568636 0.000528414 0.0441255 0.0410241 32 2291 36 6.89349e+06 239595 586450. 2029.24 0.95 0.124017 0.109152 25474 144626 -1 1971 20 1241 2047 177578 39376 2.97946 2.97946 -115.239 -2.97946 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0217116 0.0188556 101 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 4.88 vpr 62.38 MiB -1 -1 0.14 17376 1 0.03 -1 -1 30088 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 23.8 MiB 1.38 912 9006 2499 5943 564 62.4 MiB 0.09 0.00 3.63671 -112.55 -3.63671 3.63671 0.65 0.000584486 0.000544139 0.0317455 0.0295383 30 2196 23 6.89349e+06 253689 556674. 1926.21 0.83 0.102193 0.0896716 25186 138497 -1 1882 16 885 1325 85929 19971 2.81636 2.81636 -109.416 -2.81636 0 0 706193. 2443.58 0.20 0.05 0.13 -1 -1 0.20 0.0193762 0.0169342 108 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 6.09 vpr 62.35 MiB -1 -1 0.19 17484 1 0.05 -1 -1 30516 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 23.7 MiB 1.63 982 10163 2807 6505 851 62.3 MiB 0.09 0.00 3.48715 -105.954 -3.48715 3.48715 0.66 0.000622534 0.000565929 0.0356587 0.0331459 36 2114 24 6.89349e+06 310065 648988. 2245.63 1.74 0.154484 0.133878 26050 158493 -1 1893 17 1056 1446 109106 24335 2.53636 2.53636 -101.077 -2.53636 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0219433 0.0190678 120 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 5.85 vpr 62.85 MiB -1 -1 0.19 17636 1 0.02 -1 -1 30316 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1339 15137 4138 9246 1753 62.8 MiB 0.16 0.00 4.47915 -132.321 -4.47915 4.47915 0.66 0.000881138 0.000826533 0.0589272 0.0546705 34 2963 23 6.89349e+06 352346 618332. 2139.56 1.52 0.207562 0.181805 25762 151098 -1 2512 21 1427 2365 176883 38523 3.84576 3.84576 -128.825 -3.84576 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0298263 0.0260043 159 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.47 vpr 63.25 MiB -1 -1 0.19 17664 1 0.03 -1 -1 30232 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 24.6 MiB 1.89 1289 13933 4065 8243 1625 63.3 MiB 0.15 0.00 4.58977 -156.464 -4.58977 4.58977 0.65 0.000755839 0.000701841 0.0569344 0.0529229 36 2961 23 6.89349e+06 338252 648988. 2245.63 1.78 0.204283 0.178489 26050 158493 -1 2768 19 2118 2977 227249 49577 3.80435 3.80435 -151.02 -3.80435 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0282293 0.0246699 168 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 5.49 vpr 62.32 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30068 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.9 MiB 1.12 765 12506 3068 7484 1954 62.3 MiB 0.11 0.00 3.98848 -116.551 -3.98848 3.98848 0.66 0.000597707 0.00055611 0.0443381 0.0412668 36 1999 20 6.89349e+06 253689 648988. 2245.63 1.67 0.163945 0.143383 26050 158493 -1 1708 21 1218 1874 142062 32163 3.20796 3.20796 -111.26 -3.20796 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0244161 0.0213613 109 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.51 vpr 62.78 MiB -1 -1 0.20 17772 1 0.03 -1 -1 30328 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 24.3 MiB 2.05 1249 10813 2744 7185 884 62.8 MiB 0.12 0.00 4.24063 -135.696 -4.24063 4.24063 0.65 0.000730478 0.000679095 0.0429327 0.0399204 34 3153 26 6.89349e+06 352346 618332. 2139.56 1.67 0.175526 0.153161 25762 151098 -1 2661 18 1662 2449 211819 44945 3.88885 3.88885 -140.681 -3.88885 0 0 787024. 2723.27 0.24 0.09 0.13 -1 -1 0.24 0.0268211 0.0237983 160 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 7.88 vpr 62.83 MiB -1 -1 0.20 17796 1 0.03 -1 -1 30328 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 2.50 1247 16273 5220 8383 2670 62.8 MiB 0.17 0.00 5.45989 -162.138 -5.45989 5.45989 0.65 0.000735533 0.000683498 0.0638096 0.0592792 36 3304 23 6.89349e+06 352346 648988. 2245.63 2.36 0.213201 0.187346 26050 158493 -1 2788 22 2139 3182 279459 58032 4.86768 4.86768 -161.55 -4.86768 0 0 828058. 2865.25 0.21 0.10 0.15 -1 -1 0.21 0.0310153 0.0270578 163 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 7.91 vpr 62.85 MiB -1 -1 0.20 17748 1 0.02 -1 -1 30448 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 24.3 MiB 1.98 1201 15298 5197 6778 3323 62.8 MiB 0.15 0.00 5.99918 -171.098 -5.99918 5.99918 0.67 0.000752288 0.000698688 0.0607215 0.0564133 36 3723 40 6.89349e+06 352346 648988. 2245.63 3.02 0.225175 0.196806 26050 158493 -1 2576 21 1820 2714 210431 54047 5.27384 5.27384 -170.652 -5.27384 0 0 828058. 2865.25 0.23 0.06 0.15 -1 -1 0.23 0.0203723 0.0179977 166 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.73 vpr 62.62 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30464 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 24.2 MiB 1.79 1173 16983 5747 8489 2747 62.6 MiB 0.19 0.00 4.05378 -126.496 -4.05378 4.05378 0.71 0.000705899 0.000655663 0.0657423 0.0610323 36 2746 23 6.89349e+06 338252 648988. 2245.63 1.86 0.205379 0.180162 26050 158493 -1 2384 20 1786 2593 194371 42478 3.12356 3.12356 -117.448 -3.12356 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0270709 0.0235754 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.04 vpr 62.52 MiB -1 -1 0.20 17320 1 0.03 -1 -1 30240 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 23.9 MiB 1.66 909 14358 5137 7007 2214 62.5 MiB 0.13 0.00 4.5826 -118.27 -4.5826 4.5826 0.67 0.000622198 0.000579246 0.0507444 0.0472351 34 2771 28 6.89349e+06 281877 618332. 2139.56 1.60 0.176236 0.153983 25762 151098 -1 2020 19 1141 1651 146263 32423 3.57426 3.57426 -114.046 -3.57426 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0229842 0.0199981 120 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 7.46 vpr 63.20 MiB -1 -1 0.21 18164 1 0.03 -1 -1 30340 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 24.6 MiB 1.99 1620 14567 4267 9425 875 63.2 MiB 0.17 0.00 5.31355 -171.75 -5.31355 5.31355 0.65 0.000861389 0.000800099 0.0610395 0.0566792 36 4099 33 6.89349e+06 436909 648988. 2245.63 2.60 0.244277 0.212765 26050 158493 -1 3468 24 2609 3895 304456 64358 4.55769 4.55769 -169.039 -4.55769 0 0 828058. 2865.25 0.21 0.12 0.09 -1 -1 0.21 0.0389126 0.0337872 203 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.61 vpr 62.21 MiB -1 -1 0.09 17312 1 0.03 -1 -1 30144 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 23.7 MiB 1.50 935 8481 2198 5465 818 62.2 MiB 0.08 0.00 3.78206 -112.802 -3.78206 3.78206 0.70 0.000565692 0.00052637 0.0295975 0.0275439 36 2118 26 6.89349e+06 253689 648988. 2245.63 1.39 0.143912 0.124657 26050 158493 -1 1959 17 1073 1447 108695 23866 3.15881 3.15881 -112.939 -3.15881 0 0 828058. 2865.25 0.21 0.05 0.15 -1 -1 0.21 0.0193403 0.016848 106 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 5.43 vpr 62.46 MiB -1 -1 0.19 17664 1 0.03 -1 -1 30108 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.1 MiB 1.41 1159 12749 3392 7336 2021 62.5 MiB 0.13 0.00 4.75882 -144.088 -4.75882 4.75882 0.65 0.0006841 0.000636181 0.0484093 0.0449988 30 3158 41 6.89349e+06 324158 556674. 1926.21 1.12 0.150571 0.132507 25186 138497 -1 2457 20 1461 2296 169002 35554 3.7423 3.7423 -131.29 -3.7423 0 0 706193. 2443.58 0.28 0.08 0.14 -1 -1 0.28 0.0267803 0.0233793 140 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.13 vpr 62.64 MiB -1 -1 0.20 17776 1 0.03 -1 -1 30332 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 24.1 MiB 1.97 1195 16023 5389 8481 2153 62.6 MiB 0.16 0.00 4.23925 -128.06 -4.23925 4.23925 0.65 0.000699252 0.00064952 0.0603092 0.0560185 36 2964 25 6.89349e+06 324158 648988. 2245.63 2.29 0.193814 0.170338 26050 158493 -1 2426 20 1358 2187 165444 36651 3.58905 3.58905 -124.791 -3.58905 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0285062 0.0247967 149 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 4.15 vpr 62.38 MiB -1 -1 0.14 17132 1 0.03 -1 -1 30056 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 23.8 MiB 0.52 1056 13758 4414 7436 1908 62.4 MiB 0.13 0.00 4.26729 -130.845 -4.26729 4.26729 0.65 0.000759942 0.000706296 0.0451244 0.041893 30 2527 28 6.89349e+06 366440 556674. 1926.21 0.98 0.125037 0.110259 25186 138497 -1 2219 22 1208 2191 168479 35056 3.595 3.595 -126.769 -3.595 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0259274 0.0225102 123 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.12 vpr 62.56 MiB -1 -1 0.21 17928 1 0.03 -1 -1 30448 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 24.1 MiB 1.56 1207 10455 2579 6753 1123 62.6 MiB 0.12 0.00 4.44301 -131.225 -4.44301 4.44301 0.66 0.000696678 0.000646931 0.0401266 0.037245 36 2616 21 6.89349e+06 324158 648988. 2245.63 1.66 0.175393 0.152648 26050 158493 -1 2300 19 1441 2046 153148 33477 3.18886 3.18886 -120.986 -3.18886 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0225728 0.019852 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 6.53 vpr 62.77 MiB -1 -1 0.21 17792 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1187 14518 4859 6825 2834 62.8 MiB 0.14 0.00 4.27293 -132.833 -4.27293 4.27293 0.65 0.000714279 0.000663839 0.0555296 0.0515894 34 3445 26 6.89349e+06 338252 618332. 2139.56 1.87 0.198791 0.173767 25762 151098 -1 2538 19 1645 2465 186566 42784 3.4704 3.4704 -126.55 -3.4704 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.030611 0.0267565 154 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 6.26 vpr 62.82 MiB -1 -1 0.13 17852 1 0.03 -1 -1 30216 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 24.2 MiB 1.64 1246 9336 2230 6513 593 62.8 MiB 0.11 0.00 4.12904 -136.238 -4.12904 4.12904 0.66 0.000742829 0.00069026 0.0367337 0.0340914 34 3265 27 6.89349e+06 366440 618332. 2139.56 1.84 0.184304 0.160142 25762 151098 -1 2627 24 1955 2681 199538 45676 3.39606 3.39606 -133.734 -3.39606 0 0 787024. 2723.27 0.20 0.09 0.15 -1 -1 0.20 0.032895 0.0285655 164 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 5.62 vpr 62.70 MiB -1 -1 0.15 17340 1 0.03 -1 -1 30240 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 24.1 MiB 1.44 1001 8641 2091 5830 720 62.7 MiB 0.09 0.00 4.50695 -131.282 -4.50695 4.50695 0.65 0.000639167 0.000594192 0.0316932 0.0294843 34 2625 20 6.89349e+06 295971 618332. 2139.56 1.49 0.154661 0.134418 25762 151098 -1 2079 21 1304 2062 140160 33197 3.71836 3.71836 -125.299 -3.71836 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0256119 0.0222671 128 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.79 vpr 62.75 MiB -1 -1 0.16 17868 1 0.03 -1 -1 30392 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.1 MiB 1.50 1119 14450 4565 7826 2059 62.7 MiB 0.14 0.00 4.84598 -139.753 -4.84598 4.84598 0.65 0.00065817 0.00061159 0.0518757 0.0481704 34 2751 32 6.89349e+06 310065 618332. 2139.56 1.57 0.190171 0.165955 25762 151098 -1 2320 19 1445 2039 150966 33994 3.94096 3.94096 -133.357 -3.94096 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0246131 0.021197 135 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.75 vpr 62.77 MiB -1 -1 0.17 17868 1 0.03 -1 -1 30332 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 24.3 MiB 1.21 1292 15447 4870 8199 2378 62.8 MiB 0.16 0.00 4.72898 -145.597 -4.72898 4.72898 0.65 0.000730035 0.000678482 0.0615063 0.0571967 34 3305 38 6.89349e+06 338252 618332. 2139.56 1.71 0.222068 0.194336 25762 151098 -1 2664 22 1683 2685 217728 46549 4.1093 4.1093 -142.399 -4.1093 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.029955 0.0259981 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 7.37 vpr 62.71 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30400 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 24.1 MiB 2.23 1374 13553 4031 8630 892 62.7 MiB 0.14 0.00 4.3848 -136.299 -4.3848 4.3848 0.66 0.000744065 0.000691095 0.0530732 0.0492688 36 3546 21 6.89349e+06 352346 648988. 2245.63 2.21 0.179905 0.157565 26050 158493 -1 3131 35 2877 4359 347677 74272 3.85536 3.85536 -136.421 -3.85536 0 0 828058. 2865.25 0.21 0.13 0.16 -1 -1 0.21 0.0450667 0.0389105 166 77 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.71 vpr 62.11 MiB -1 -1 0.18 17464 1 0.03 -1 -1 30092 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 23.7 MiB 1.54 841 8022 2262 5194 566 62.1 MiB 0.08 0.00 3.56029 -109.346 -3.56029 3.56029 0.65 0.000630671 0.000591095 0.029097 0.0270966 36 1876 16 6.89349e+06 211408 648988. 2245.63 1.47 0.133287 0.115722 26050 158493 -1 1781 20 889 1394 102255 23750 2.58651 2.58651 -99.1772 -2.58651 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0217362 0.0188758 96 23 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 6.14 vpr 62.58 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30476 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 24.1 MiB 1.24 1155 11979 3435 7133 1411 62.6 MiB 0.12 0.00 4.30741 -149.256 -4.30741 4.30741 0.69 0.000679725 0.000631405 0.0480247 0.044678 34 2804 26 6.89349e+06 281877 618332. 2139.56 1.97 0.189656 0.165323 25762 151098 -1 2340 20 1904 2594 200265 44004 3.6786 3.6786 -144.817 -3.6786 0 0 787024. 2723.27 0.21 0.09 0.15 -1 -1 0.21 0.0276525 0.0240545 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.43 vpr 63.05 MiB -1 -1 0.13 17692 1 0.03 -1 -1 30380 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 24.5 MiB 1.61 1337 12167 3186 7820 1161 63.1 MiB 0.14 0.00 5.53202 -162.159 -5.53202 5.53202 0.66 0.000761592 0.000707264 0.0492657 0.0457687 34 3534 45 6.89349e+06 352346 618332. 2139.56 2.01 0.224641 0.19543 25762 151098 -1 2896 34 2519 3992 292876 64073 4.7323 4.7323 -160.064 -4.7323 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.0451283 0.0389756 168 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.89 vpr 62.62 MiB -1 -1 0.19 17636 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 24.1 MiB 1.65 981 15773 5650 7566 2557 62.6 MiB 0.15 0.00 4.48922 -138.529 -4.48922 4.48922 0.65 0.000694952 0.000645961 0.0599876 0.0557683 36 2706 29 6.89349e+06 310065 648988. 2245.63 2.42 0.203539 0.178095 26050 158493 -1 2148 21 1650 2368 177031 41003 3.31991 3.31991 -126.449 -3.31991 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0324122 0.0284618 144 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.76 vpr 62.32 MiB -1 -1 0.17 17512 1 0.03 -1 -1 30284 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 23.8 MiB 1.40 892 10781 3144 6961 676 62.3 MiB 0.10 0.00 4.18863 -126.692 -4.18863 4.18863 0.66 0.000588288 0.000547643 0.0343424 0.0319841 36 2083 22 6.89349e+06 380534 648988. 2245.63 1.62 0.148935 0.128989 26050 158493 -1 1865 22 1178 1877 144664 32149 3.40385 3.40385 -122.331 -3.40385 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0244192 0.0211273 118 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 8.76 vpr 63.25 MiB -1 -1 0.21 18164 1 0.03 -1 -1 30316 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 24.5 MiB 2.89 1573 16207 5526 8946 1735 63.2 MiB 0.19 0.00 6.36902 -185.345 -6.36902 6.36902 0.65 0.0008441 0.000784982 0.0697633 0.0648762 34 4174 50 6.89349e+06 380534 618332. 2139.56 2.95 0.270188 0.235895 25762 151098 -1 3178 20 2450 3885 284990 62516 5.14154 5.14154 -178.922 -5.14154 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0329794 0.028781 188 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.45 vpr 62.57 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30364 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 23.9 MiB 1.29 1035 15151 5099 7891 2161 62.6 MiB 0.16 0.00 4.71732 -144.131 -4.71732 4.71732 0.65 0.000816668 0.000759257 0.0631218 0.0586663 34 2637 24 6.89349e+06 295971 618332. 2139.56 1.44 0.199536 0.174992 25762 151098 -1 2128 21 1700 2398 160101 36685 3.8815 3.8815 -138.492 -3.8815 0 0 787024. 2723.27 0.20 0.08 0.09 -1 -1 0.20 0.0275282 0.0239754 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.30 vpr 62.04 MiB -1 -1 0.18 17228 1 0.02 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 23.4 MiB 0.52 851 9838 2581 6658 599 62.0 MiB 0.08 0.00 3.70876 -106.292 -3.70876 3.70876 0.66 0.000538886 0.000501967 0.0286447 0.0266303 26 2030 30 6.89349e+06 338252 503264. 1741.40 1.19 0.100742 0.0880443 24322 120374 -1 1868 17 917 1511 170021 48717 2.84421 2.84421 -106.234 -2.84421 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0182019 0.0158209 94 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 6.91 vpr 62.65 MiB -1 -1 0.16 17848 1 0.03 -1 -1 30040 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 1.79 1097 14679 5479 6928 2272 62.6 MiB 0.14 0.00 5.34057 -137.648 -5.34057 5.34057 0.72 0.000722769 0.000664692 0.0571673 0.0531489 34 3407 33 6.89349e+06 324158 618332. 2139.56 2.29 0.182125 0.160275 25762 151098 -1 2311 21 1355 2353 209044 46222 4.38625 4.38625 -135.864 -4.38625 0 0 787024. 2723.27 0.22 0.08 0.13 -1 -1 0.22 0.0281074 0.0244491 149 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 4.56 vpr 62.09 MiB -1 -1 0.18 17276 1 0.03 -1 -1 30140 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.4 MiB 0.59 790 8543 2077 5745 721 62.1 MiB 0.08 0.00 3.60525 -112.744 -3.60525 3.60525 0.66 0.000560077 0.000521605 0.028229 0.0262562 34 2095 22 6.89349e+06 267783 618332. 2139.56 1.30 0.137602 0.119126 25762 151098 -1 1917 20 1208 2137 152743 35026 2.88036 2.88036 -109.901 -2.88036 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0213992 0.0185663 98 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.42 vpr 62.27 MiB -1 -1 0.19 17484 1 0.03 -1 -1 30292 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 23.8 MiB 1.23 900 11118 2938 7199 981 62.3 MiB 0.12 0.00 4.05078 -116.815 -4.05078 4.05078 0.65 0.000596531 0.000554933 0.0396329 0.0368797 34 2168 28 6.89349e+06 281877 618332. 2139.56 1.46 0.160484 0.139523 25762 151098 -1 1812 20 1256 1803 152268 33469 3.11246 3.11246 -112.985 -3.11246 0 0 787024. 2723.27 0.22 0.07 0.15 -1 -1 0.22 0.0228544 0.0198338 113 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 7.34 vpr 62.71 MiB -1 -1 0.17 17504 1 0.03 -1 -1 30416 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 24.2 MiB 2.92 1189 14871 4290 8850 1731 62.7 MiB 0.15 0.00 4.52181 -133.377 -4.52181 4.52181 0.68 0.000699047 0.000649428 0.0563902 0.0523754 34 2841 25 6.89349e+06 366440 618332. 2139.56 1.60 0.195914 0.170907 25762 151098 -1 2250 19 1473 2119 135906 32124 3.54234 3.54234 -126.145 -3.54234 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0258226 0.0224962 154 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 6.66 vpr 62.83 MiB -1 -1 0.18 17624 1 0.03 -1 -1 30324 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 24.3 MiB 1.86 1209 16340 4806 9520 2014 62.8 MiB 0.14 0.00 5.15268 -160.098 -5.15268 5.15268 0.74 0.000316906 0.000291424 0.046447 0.0426231 36 2942 21 6.89349e+06 310065 648988. 2245.63 1.91 0.181879 0.158315 26050 158493 -1 2466 20 1667 2432 179214 39064 4.17665 4.17665 -150.568 -4.17665 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0275497 0.0240165 151 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.58 vpr 62.53 MiB -1 -1 0.19 17692 1 0.03 -1 -1 30220 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 24.1 MiB 1.44 1151 8919 1954 6160 805 62.5 MiB 0.11 0.00 5.44797 -153.538 -5.44797 5.44797 0.64 0.000706865 0.000656903 0.0355928 0.0331049 36 2961 43 6.89349e+06 324158 648988. 2245.63 2.19 0.194433 0.168581 26050 158493 -1 2536 20 1772 2694 216458 46150 4.81329 4.81329 -151.9 -4.81329 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0272069 0.0237179 150 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.71 vpr 62.28 MiB -1 -1 0.17 17380 1 0.03 -1 -1 30288 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63772 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.8 MiB 1.48 948 12416 4023 6894 1499 62.3 MiB 0.12 0.00 4.44301 -126.97 -4.44301 4.44301 0.65 0.000592833 0.000551194 0.0459684 0.0428103 34 2281 31 6.89349e+06 211408 618332. 2139.56 1.55 0.168743 0.147249 25762 151098 -1 1975 18 938 1316 114947 24563 3.09196 3.09196 -114.975 -3.09196 0 0 787024. 2723.27 0.21 0.06 0.12 -1 -1 0.21 0.0211544 0.0184006 105 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 5.83 vpr 62.44 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30460 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 23.8 MiB 1.54 1059 14483 4851 7224 2408 62.4 MiB 0.16 0.00 3.67535 -124.181 -3.67535 3.67535 0.65 0.00064351 0.00059763 0.0640229 0.0593976 34 2699 22 6.89349e+06 281877 618332. 2139.56 1.47 0.190751 0.167396 25762 151098 -1 2149 19 1458 2031 146792 32793 3.23845 3.23845 -122.463 -3.23845 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0241561 0.0210635 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.36 vpr 62.52 MiB -1 -1 0.18 17584 1 0.03 -1 -1 30280 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 24.1 MiB 1.94 1024 15493 4307 9520 1666 62.5 MiB 0.14 0.00 3.806 -108.658 -3.806 3.806 0.66 0.000662408 0.000616106 0.0547425 0.0508669 36 2360 20 6.89349e+06 366440 648988. 2245.63 1.63 0.184177 0.161494 26050 158493 -1 2000 19 1287 2025 142728 32893 3.04661 3.04661 -105.245 -3.04661 0 0 828058. 2865.25 0.24 0.07 0.17 -1 -1 0.24 0.0231801 0.0202595 142 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.40 vpr 62.35 MiB -1 -1 0.14 17588 1 0.03 -1 -1 30348 -1 -1 23 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 23.8 MiB 1.19 918 12323 3941 6490 1892 62.3 MiB 0.10 0.00 4.39675 -112.391 -4.39675 4.39675 0.66 0.000597369 0.00055618 0.042866 0.0398749 34 2147 21 6.89349e+06 324158 618332. 2139.56 1.52 0.137971 0.120692 25762 151098 -1 1908 20 1138 1995 161837 33568 3.70146 3.70146 -109.98 -3.70146 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0225925 0.0195809 119 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 6.57 vpr 62.46 MiB -1 -1 0.14 17768 1 0.03 -1 -1 30344 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 23.8 MiB 2.22 924 9083 2508 6037 538 62.5 MiB 0.10 0.00 4.56532 -133.276 -4.56532 4.56532 0.69 0.00064068 0.000596334 0.0342978 0.0318772 34 2736 29 6.89349e+06 295971 618332. 2139.56 1.66 0.163004 0.141544 25762 151098 -1 2186 20 1812 2507 189331 42418 4.31514 4.31514 -143.22 -4.31514 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0249009 0.0216674 130 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.74 vpr 62.56 MiB -1 -1 0.19 17516 1 0.03 -1 -1 30096 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 24.0 MiB 1.84 1216 6123 1500 4259 364 62.6 MiB 0.08 0.00 3.91264 -134.898 -3.91264 3.91264 0.65 0.00067358 0.000625923 0.0244521 0.0227149 36 2645 23 6.89349e+06 281877 648988. 2245.63 2.07 0.158298 0.136807 26050 158493 -1 2362 29 2125 2874 333718 104841 3.00176 3.00176 -122.65 -3.00176 0 0 828058. 2865.25 0.26 0.13 0.15 -1 -1 0.26 0.0349284 0.0302608 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.13 vpr 62.34 MiB -1 -1 0.18 17184 1 0.03 -1 -1 30448 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 23.8 MiB 0.74 941 8614 1787 6108 719 62.3 MiB 0.09 0.00 4.73282 -132.206 -4.73282 4.73282 0.66 0.000630116 0.000586411 0.0279106 0.02595 30 2255 21 6.89349e+06 436909 556674. 1926.21 0.85 0.101246 0.0886022 25186 138497 -1 1974 21 1018 1913 116086 27921 3.52565 3.52565 -121.514 -3.52565 0 0 706193. 2443.58 0.18 0.04 0.08 -1 -1 0.18 0.0134318 0.0117911 129 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.16 vpr 62.61 MiB -1 -1 0.18 17692 1 0.03 -1 -1 30388 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 1.92 946 14295 4865 6147 3283 62.6 MiB 0.14 0.00 4.80372 -148.142 -4.80372 4.80372 0.65 0.000708783 0.000658799 0.0556515 0.0517193 38 2827 33 6.89349e+06 324158 678818. 2348.85 2.41 0.210382 0.18408 26626 170182 -1 2148 20 1613 2415 172416 40549 3.8457 3.8457 -136.281 -3.8457 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0274763 0.0239347 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 6.79 vpr 62.80 MiB -1 -1 0.16 17692 1 0.03 -1 -1 30284 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 24.2 MiB 1.68 1348 15391 4691 8221 2479 62.8 MiB 0.16 0.00 5.48061 -170.804 -5.48061 5.48061 0.71 0.000749543 0.000696398 0.0589722 0.0548181 36 2971 28 6.89349e+06 380534 648988. 2245.63 2.15 0.210996 0.184659 26050 158493 -1 2521 21 1856 2673 200167 44694 4.23189 4.23189 -155.088 -4.23189 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0260885 0.0229648 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 6.67 vpr 62.85 MiB -1 -1 0.12 17620 1 0.03 -1 -1 30312 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 24.2 MiB 1.74 1348 16572 5279 8759 2534 62.8 MiB 0.22 0.00 4.59633 -149.535 -4.59633 4.59633 0.66 0.000916862 0.000845744 0.0780686 0.0719142 36 3220 22 6.89349e+06 366440 648988. 2245.63 2.09 0.225971 0.198324 26050 158493 -1 2729 22 1927 2866 248487 51644 3.7334 3.7334 -140.921 -3.7334 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0312671 0.0272314 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.02 vpr 62.21 MiB -1 -1 0.18 17404 1 0.02 -1 -1 30124 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 23.7 MiB 1.92 929 11603 3304 7249 1050 62.2 MiB 0.11 0.00 4.22559 -126.079 -4.22559 4.22559 0.66 0.000585849 0.000545888 0.0398869 0.0371774 34 2274 21 6.89349e+06 295971 618332. 2139.56 1.30 0.122878 0.10762 25762 151098 -1 1994 21 1138 1586 126934 27558 3.29711 3.29711 -116.443 -3.29711 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0233229 0.0202069 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.86 vpr 62.84 MiB -1 -1 0.20 17636 1 0.03 -1 -1 30444 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 24.3 MiB 2.49 1157 9838 2412 6479 947 62.8 MiB 0.11 0.00 5.48387 -163.439 -5.48387 5.48387 0.66 0.000735397 0.000678005 0.0395178 0.0366915 34 2914 31 6.89349e+06 366440 618332. 2139.56 1.57 0.176344 0.153409 25762 151098 -1 2394 19 1932 2689 190948 42993 4.36915 4.36915 -156.668 -4.36915 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0274322 0.0239755 162 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.91 vpr 62.76 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30276 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.3 MiB 1.20 1128 9303 2368 6110 825 62.8 MiB 0.10 0.00 5.14805 -150.89 -5.14805 5.14805 0.66 0.000692055 0.000643579 0.0355165 0.0330154 34 2876 34 6.89349e+06 324158 618332. 2139.56 1.97 0.186287 0.161968 25762 151098 -1 2362 19 1593 2666 208387 46147 3.97449 3.97449 -137.61 -3.97449 0 0 787024. 2723.27 0.20 0.08 0.16 -1 -1 0.20 0.0258706 0.0225585 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.29 vpr 62.84 MiB -1 -1 0.20 17784 1 0.03 -1 -1 30324 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 24.4 MiB 1.77 1160 14828 4291 8520 2017 62.8 MiB 0.19 0.00 5.04939 -147.832 -5.04939 5.04939 0.70 0.000834352 0.000768862 0.0684884 0.0631004 34 2696 30 6.89349e+06 324158 618332. 2139.56 1.62 0.210256 0.183843 25762 151098 -1 2222 21 1562 2377 151469 35667 4.18485 4.18485 -141.313 -4.18485 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0277758 0.0242085 142 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 6.64 vpr 62.75 MiB -1 -1 0.20 17676 1 0.03 -1 -1 30312 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1280 15731 5729 7457 2545 62.7 MiB 0.16 0.00 4.67272 -140.819 -4.67272 4.67272 0.65 0.000725549 0.000672818 0.0617032 0.0573345 36 2891 31 6.89349e+06 380534 648988. 2245.63 1.97 0.211813 0.185208 26050 158493 -1 2460 19 1798 2628 192195 42175 3.84329 3.84329 -132.966 -3.84329 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.02704 0.0235467 162 83 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.09 vpr 62.73 MiB -1 -1 0.19 17628 1 0.03 -1 -1 30208 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 24.2 MiB 2.54 1143 12183 3367 8279 537 62.7 MiB 0.13 0.00 5.41467 -156.077 -5.41467 5.41467 0.65 0.000719777 0.000668741 0.0477936 0.0443454 34 3317 24 6.89349e+06 324158 618332. 2139.56 1.81 0.189458 0.165162 25762 151098 -1 2550 21 1877 2841 221059 51776 4.56189 4.56189 -155.485 -4.56189 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0289318 0.0252142 155 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 5.92 vpr 63.05 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30456 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 24.4 MiB 1.48 1279 8047 1945 5583 519 63.1 MiB 0.10 0.00 4.65125 -137.416 -4.65125 4.65125 0.65 0.000720336 0.000669571 0.0311933 0.0290162 36 2926 21 6.89349e+06 422815 648988. 2245.63 1.71 0.169613 0.146999 26050 158493 -1 2441 18 1475 2021 137313 30895 3.6201 3.6201 -125.951 -3.6201 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0255609 0.0223062 166 85 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.22 vpr 62.14 MiB -1 -1 0.14 17072 1 0.03 -1 -1 30484 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.5 MiB 0.63 782 13906 5117 6523 2266 62.1 MiB 0.12 0.00 4.15903 -122.769 -4.15903 4.15903 0.66 0.00055799 0.000519714 0.046019 0.0428434 30 2007 46 6.89349e+06 239595 556674. 1926.21 0.88 0.131097 0.115422 25186 138497 -1 1575 20 861 1362 93836 21337 2.75456 2.75456 -106.315 -2.75456 0 0 706193. 2443.58 0.26 0.05 0.14 -1 -1 0.26 0.0183389 0.0160973 96 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.60 vpr 62.64 MiB -1 -1 0.20 17796 1 0.03 -1 -1 30284 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1307 13157 3552 8195 1410 62.6 MiB 0.14 0.00 5.64852 -169.418 -5.64852 5.64852 0.66 0.000737973 0.000685788 0.0514783 0.047845 36 3147 47 6.89349e+06 352346 648988. 2245.63 2.32 0.223922 0.195164 26050 158493 -1 2616 22 1989 2734 228443 48831 4.51639 4.51639 -156.045 -4.51639 0 0 828058. 2865.25 0.21 0.09 0.09 -1 -1 0.21 0.0303763 0.0264629 156 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 7.96 vpr 63.02 MiB -1 -1 0.17 17632 1 0.03 -1 -1 30376 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 24.4 MiB 2.82 1377 7415 1651 5387 377 63.0 MiB 0.10 0.00 5.30157 -175.126 -5.30157 5.30157 0.66 0.000762812 0.000708385 0.0310706 0.0288471 36 3393 25 6.89349e+06 352346 648988. 2245.63 2.32 0.18732 0.162605 26050 158493 -1 2835 22 2229 3205 258901 54853 4.72005 4.72005 -173.543 -4.72005 0 0 828058. 2865.25 0.24 0.10 0.14 -1 -1 0.24 0.0324357 0.0283574 171 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 8.01 vpr 62.27 MiB -1 -1 0.14 17588 1 0.03 -1 -1 29992 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 23.8 MiB 2.29 743 12720 4130 6895 1695 62.3 MiB 0.11 0.00 4.14342 -113.505 -4.14342 4.14342 0.66 0.000578844 0.000538411 0.0436349 0.0405651 30 2176 39 6.89349e+06 253689 556674. 1926.21 3.11 0.213698 0.185111 25186 138497 -1 1608 19 847 1143 74159 17662 2.99811 2.99811 -101.39 -2.99811 0 0 706193. 2443.58 0.19 0.05 0.12 -1 -1 0.19 0.0218151 0.018969 108 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 3.99 vpr 62.25 MiB -1 -1 0.19 17268 1 0.03 -1 -1 30348 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.6 MiB 0.64 706 7823 1736 5421 666 62.3 MiB 0.08 0.00 4.10083 -117.838 -4.10083 4.10083 0.65 0.00056343 0.000525249 0.0258881 0.0241218 30 1853 22 6.89349e+06 281877 556674. 1926.21 0.83 0.0915477 0.0801698 25186 138497 -1 1635 19 956 1623 99531 23093 2.83491 2.83491 -105.508 -2.83491 0 0 706193. 2443.58 0.19 0.06 0.08 -1 -1 0.19 0.021264 0.0184601 99 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.35 vpr 62.73 MiB -1 -1 0.18 17576 1 0.03 -1 -1 30580 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.2 MiB 1.97 1103 13719 4794 6980 1945 62.7 MiB 0.14 0.00 4.58942 -145.059 -4.58942 4.58942 0.65 0.000698357 0.000648022 0.0523472 0.0485864 34 2800 20 6.89349e+06 324158 618332. 2139.56 1.50 0.186193 0.162551 25762 151098 -1 2436 19 1793 2593 211212 45957 3.5781 3.5781 -137.613 -3.5781 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0224945 0.0198123 145 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 5.86 vpr 62.75 MiB -1 -1 0.16 17768 1 0.04 -1 -1 30200 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 24.3 MiB 1.59 1083 8919 2056 5474 1389 62.8 MiB 0.10 0.00 4.89424 -142.728 -4.89424 4.89424 0.66 0.000704062 0.00065372 0.0353338 0.0328274 34 3008 43 6.89349e+06 324158 618332. 2139.56 1.62 0.194712 0.168175 25762 151098 -1 2323 19 1527 2220 172266 41413 4.43665 4.43665 -142.524 -4.43665 0 0 787024. 2723.27 0.22 0.08 0.09 -1 -1 0.22 0.0263333 0.0230025 149 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 4.64 vpr 62.57 MiB -1 -1 0.11 17532 1 0.03 -1 -1 30108 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.1 MiB 0.61 1033 19356 5199 10890 3267 62.6 MiB 0.18 0.00 5.32917 -146.087 -5.32917 5.32917 0.66 0.00072103 0.000670657 0.0629017 0.0584509 30 3041 40 6.89349e+06 507378 556674. 1926.21 1.23 0.16703 0.147539 25186 138497 -1 2185 22 1788 3363 221964 52375 4.11544 4.11544 -138.805 -4.11544 0 0 706193. 2443.58 0.23 0.09 0.14 -1 -1 0.23 0.0304159 0.0265707 157 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.87 vpr 62.40 MiB -1 -1 0.12 17640 1 0.03 -1 -1 30172 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 24.0 MiB 1.65 1151 13143 3782 7948 1413 62.4 MiB 0.13 0.00 3.95739 -118.903 -3.95739 3.95739 0.65 0.000642469 0.000596869 0.0459421 0.0426871 34 2659 22 6.89349e+06 352346 618332. 2139.56 1.48 0.168848 0.147085 25762 151098 -1 2150 18 1518 2207 150480 33588 3.0457 3.0457 -108.49 -3.0457 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0228483 0.019905 136 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 5.38 vpr 62.24 MiB -1 -1 0.14 17588 1 0.03 -1 -1 30724 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 23.8 MiB 1.21 755 13768 6057 6665 1046 62.2 MiB 0.10 0.00 4.43859 -116.143 -4.43859 4.43859 0.66 0.000546562 0.000508244 0.0461433 0.0429354 34 2141 23 6.89349e+06 281877 618332. 2139.56 1.53 0.154401 0.134718 25762 151098 -1 1630 19 1192 1703 130803 31060 3.6153 3.6153 -113.605 -3.6153 0 0 787024. 2723.27 0.20 0.07 0.16 -1 -1 0.20 0.0228473 0.0199236 106 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 7.85 vpr 63.25 MiB -1 -1 0.17 17644 1 0.03 -1 -1 30236 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 24.5 MiB 2.64 1514 18043 5658 10071 2314 63.2 MiB 0.20 0.00 4.58581 -147.507 -4.58581 4.58581 0.65 0.000813701 0.000756305 0.074541 0.0692702 34 4194 50 6.89349e+06 380534 618332. 2139.56 2.37 0.267283 0.233963 25762 151098 -1 3210 21 1923 3102 270129 56903 4.10359 4.10359 -149.648 -4.10359 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0322133 0.0280381 185 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 6.32 vpr 62.76 MiB -1 -1 0.17 17812 1 0.03 -1 -1 30328 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 24.3 MiB 1.74 1122 15639 4714 8375 2550 62.8 MiB 0.16 0.00 5.51467 -162.715 -5.51467 5.51467 0.65 0.000719675 0.000668985 0.0608543 0.0565049 34 2973 28 6.89349e+06 338252 618332. 2139.56 1.78 0.20508 0.179395 25762 151098 -1 2496 20 2015 2776 220362 49269 4.51165 4.51165 -152.253 -4.51165 0 0 787024. 2723.27 0.22 0.09 0.13 -1 -1 0.22 0.0284881 0.0248649 155 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 6.59 vpr 62.73 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 24.0 MiB 2.24 1207 14779 4497 8341 1941 62.7 MiB 0.14 0.00 4.36565 -143.578 -4.36565 4.36565 0.67 0.000666656 0.000619751 0.0548296 0.0509502 34 2807 25 6.89349e+06 295971 618332. 2139.56 1.58 0.186361 0.16283 25762 151098 -1 2289 22 1533 2072 160406 36055 3.3748 3.3748 -129.801 -3.3748 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0280246 0.0243792 137 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.52 vpr 62.30 MiB -1 -1 0.12 17748 1 0.03 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 23.7 MiB 1.77 1106 13291 3686 7595 2010 62.3 MiB 0.13 0.00 5.17406 -143.598 -5.17406 5.17406 0.69 0.000668726 0.000622013 0.0500575 0.0465569 30 2835 35 6.89349e+06 295971 556674. 1926.21 3.09 0.24128 0.209618 25186 138497 -1 2176 19 1108 1682 108723 25154 3.8055 3.8055 -132.53 -3.8055 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0245096 0.0213706 135 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 5.92 vpr 62.80 MiB -1 -1 0.17 17796 1 0.03 -1 -1 30112 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 24.3 MiB 1.67 1277 13949 4663 6540 2746 62.8 MiB 0.14 0.00 4.6119 -129.607 -4.6119 4.6119 0.66 0.000731311 0.000678846 0.0539226 0.0501017 34 2960 24 6.89349e+06 366440 618332. 2139.56 1.51 0.199346 0.174124 25762 151098 -1 2590 20 1709 2564 186340 41948 3.79686 3.79686 -129.409 -3.79686 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0283138 0.0246683 163 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 6.43 vpr 62.57 MiB -1 -1 0.17 17504 1 0.03 -1 -1 30120 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 24.1 MiB 1.91 1057 10103 2410 7187 506 62.6 MiB 0.11 0.00 4.37294 -118.646 -4.37294 4.37294 0.69 0.000711843 0.000644027 0.0386334 0.0358814 34 2982 24 6.89349e+06 338252 618332. 2139.56 1.65 0.168228 0.146048 25762 151098 -1 2173 23 1384 2295 155687 36909 3.6794 3.6794 -116.416 -3.6794 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0286445 0.0248747 140 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.91 vpr 62.64 MiB -1 -1 0.18 17816 1 0.03 -1 -1 30328 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 24.2 MiB 2.42 1146 16340 5897 7961 2482 62.6 MiB 0.17 0.00 4.90628 -154.007 -4.90628 4.90628 0.61 0.00070681 0.00065681 0.0636631 0.0591662 34 3223 50 6.89349e+06 310065 618332. 2139.56 2.45 0.233543 0.20411 25762 151098 -1 2505 20 1732 2711 217498 48057 3.8815 3.8815 -143.675 -3.8815 0 0 787024. 2723.27 0.23 0.10 0.13 -1 -1 0.23 0.0289355 0.0255683 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.92 vpr 62.84 MiB -1 -1 0.19 17516 1 0.03 -1 -1 30224 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 24.2 MiB 2.62 1236 16371 6869 8593 909 62.8 MiB 0.17 0.00 4.19324 -136.834 -4.19324 4.19324 0.71 0.000752071 0.000697138 0.0645878 0.0599046 36 2890 25 6.89349e+06 366440 648988. 2245.63 2.20 0.216811 0.190163 26050 158493 -1 2431 20 1700 2341 156685 36663 3.17181 3.17181 -126.921 -3.17181 0 0 828058. 2865.25 0.21 0.08 0.11 -1 -1 0.21 0.0273522 0.024033 167 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.18 vpr 62.29 MiB -1 -1 0.18 17372 1 0.03 -1 -1 30368 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 23.8 MiB 1.23 881 7081 1573 4782 726 62.3 MiB 0.07 0.00 4.21387 -125.832 -4.21387 4.21387 0.66 0.000578389 0.000539214 0.0250955 0.0233861 34 1947 20 6.89349e+06 281877 618332. 2139.56 1.29 0.135014 0.11672 25762 151098 -1 1668 20 1336 1773 132678 29656 3.02156 3.02156 -111.286 -3.02156 0 0 787024. 2723.27 0.19 0.06 0.14 -1 -1 0.19 0.0222758 0.0193091 110 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 5.70 vpr 62.49 MiB -1 -1 0.15 17636 1 0.03 -1 -1 30476 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 23.8 MiB 1.08 868 7770 1747 5581 442 62.5 MiB 0.08 0.00 4.24583 -126.348 -4.24583 4.24583 0.65 0.000632891 0.000588552 0.0287815 0.0267178 36 2425 28 6.89349e+06 281877 648988. 2245.63 1.94 0.157575 0.136448 26050 158493 -1 1953 21 1685 2287 171941 40763 3.4029 3.4029 -121.453 -3.4029 0 0 828058. 2865.25 0.28 0.06 0.14 -1 -1 0.28 0.0202232 0.0177091 125 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.00 vpr 62.51 MiB -1 -1 0.16 17520 1 0.03 -1 -1 30336 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 24.0 MiB 1.34 954 15337 5910 7043 2384 62.5 MiB 0.16 0.00 4.83108 -133.604 -4.83108 4.83108 0.65 0.000671991 0.000624748 0.0660926 0.0615048 34 3035 40 6.89349e+06 310065 618332. 2139.56 1.79 0.214321 0.187836 25762 151098 -1 2125 23 1627 2422 177736 47190 3.74936 3.74936 -130.315 -3.74936 0 0 787024. 2723.27 0.25 0.08 0.13 -1 -1 0.25 0.028814 0.025292 137 33 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 6.77 vpr 62.23 MiB -1 -1 0.15 17548 1 0.03 -1 -1 30452 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63728 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 2.53 859 12636 4650 6385 1601 62.2 MiB 0.11 0.00 4.13932 -113.849 -4.13932 4.13932 0.65 0.000561863 0.000522782 0.0431107 0.0400938 34 2181 32 6.89349e+06 267783 618332. 2139.56 1.49 0.166639 0.14493 25762 151098 -1 1805 22 1129 1557 124622 29306 2.97321 2.97321 -102.396 -2.97321 0 0 787024. 2723.27 0.28 0.06 0.15 -1 -1 0.28 0.0220506 0.0192185 108 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.12 vpr 62.31 MiB -1 -1 0.17 17372 1 0.03 -1 -1 30012 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 23.8 MiB 1.73 931 12898 3547 7775 1576 62.3 MiB 0.11 0.00 4.14413 -130.005 -4.14413 4.14413 0.65 0.00059437 0.000553109 0.0450256 0.0418926 36 2328 29 6.89349e+06 253689 648988. 2245.63 1.62 0.166636 0.145233 26050 158493 -1 2011 21 1443 2040 168261 36117 3.30996 3.30996 -124.621 -3.30996 0 0 828058. 2865.25 0.24 0.07 0.15 -1 -1 0.24 0.0239459 0.0207595 114 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 5.84 vpr 62.66 MiB -1 -1 0.11 17780 1 0.03 -1 -1 30060 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1223 9197 2351 6452 394 62.7 MiB 0.11 0.00 4.60737 -145.998 -4.60737 4.60737 0.65 0.000739288 0.000678811 0.0371839 0.0344993 34 2913 27 6.89349e+06 366440 618332. 2139.56 1.65 0.184851 0.160464 25762 151098 -1 2414 23 2100 2928 239147 52425 4.03295 4.03295 -146.125 -4.03295 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0314898 0.0273824 160 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.12 vpr 62.24 MiB -1 -1 0.15 17428 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 23.7 MiB 1.71 913 11088 2855 7004 1229 62.2 MiB 0.10 0.00 3.57635 -113.738 -3.57635 3.57635 0.65 0.000576064 0.000536136 0.0392186 0.0365026 30 2273 20 6.89349e+06 239595 556674. 1926.21 0.84 0.105098 0.0926374 25186 138497 -1 1905 20 1065 1491 97174 22413 2.89331 2.89331 -107.732 -2.89331 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0222767 0.019297 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 5.96 vpr 62.54 MiB -1 -1 0.19 17516 1 0.03 -1 -1 29948 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 24.1 MiB 1.65 1210 14261 3846 8261 2154 62.5 MiB 0.14 0.00 4.18989 -126.928 -4.18989 4.18989 0.65 0.000701338 0.000652043 0.0553115 0.0514279 34 3022 24 6.89349e+06 310065 618332. 2139.56 1.48 0.198907 0.172879 25762 151098 -1 2489 20 1414 2094 158378 34676 3.45175 3.45175 -125.893 -3.45175 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0291936 0.0254766 146 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.47 vpr 62.84 MiB -1 -1 0.12 17692 1 0.03 -1 -1 30208 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 24.2 MiB 1.78 1307 17117 5534 9059 2524 62.8 MiB 0.18 0.00 4.84686 -157.681 -4.84686 4.84686 0.65 0.000742312 0.00068762 0.0679324 0.0630422 34 3332 30 6.89349e+06 366440 618332. 2139.56 1.75 0.224971 0.197149 25762 151098 -1 2667 23 2249 3229 236032 53031 4.41039 4.41039 -159.173 -4.41039 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.02831 0.0248628 170 91 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.41 vpr 62.33 MiB -1 -1 0.18 17604 1 0.03 -1 -1 30220 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 23.9 MiB 2.24 1086 13432 3424 8813 1195 62.3 MiB 0.12 0.00 3.821 -117.953 -3.821 3.821 0.65 0.000618013 0.000574636 0.0487002 0.0452538 34 2606 27 6.89349e+06 253689 618332. 2139.56 1.41 0.173417 0.151197 25762 151098 -1 2143 20 1427 1932 136459 31615 2.80696 2.80696 -111.298 -2.80696 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0240016 0.0208244 124 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 5.62 vpr 62.29 MiB -1 -1 0.14 17588 1 0.03 -1 -1 30252 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 23.8 MiB 1.09 871 12898 3868 7278 1752 62.3 MiB 0.12 0.00 4.12213 -126.038 -4.12213 4.12213 0.69 0.000624428 0.000581574 0.0464549 0.0432396 36 2177 21 6.89349e+06 253689 648988. 2245.63 1.66 0.165637 0.14477 26050 158493 -1 1933 21 1325 1987 169565 36435 3.23035 3.23035 -113.999 -3.23035 0 0 828058. 2865.25 0.24 0.07 0.14 -1 -1 0.24 0.0244852 0.0212344 115 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 5.63 vpr 62.41 MiB -1 -1 0.19 17556 1 0.03 -1 -1 30260 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 23.8 MiB 1.51 1006 10292 2539 6455 1298 62.4 MiB 0.10 0.00 4.93133 -134.302 -4.93133 4.93133 0.67 0.000670861 0.000624578 0.0383126 0.0356386 34 2482 22 6.89349e+06 310065 618332. 2139.56 1.34 0.16678 0.145302 25762 151098 -1 2102 18 1269 1785 114938 27680 3.75856 3.75856 -129.967 -3.75856 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0234532 0.0204907 133 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 6.06 vpr 62.55 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30072 -1 -1 25 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 24.1 MiB 1.78 1105 14450 4218 8203 2029 62.6 MiB 0.14 0.00 4.04968 -110.899 -4.04968 4.04968 0.66 0.000653082 0.000607604 0.0522005 0.0485539 34 2657 23 6.89349e+06 352346 618332. 2139.56 1.43 0.179684 0.156937 25762 151098 -1 2195 21 1346 1980 146862 32855 3.15146 3.15146 -109.077 -3.15146 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0261476 0.022726 138 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 7.53 vpr 62.80 MiB -1 -1 0.24 17980 1 0.03 -1 -1 30392 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 24.2 MiB 1.77 1170 10033 2409 6880 744 62.8 MiB 0.12 0.00 5.6505 -176.695 -5.6505 5.6505 0.66 0.000754653 0.000700963 0.0413904 0.0384429 34 3979 39 6.89349e+06 338252 618332. 2139.56 2.72 0.207834 0.180418 25762 151098 -1 2902 23 2152 3336 270669 62426 4.84719 4.84719 -171.492 -4.84719 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0324657 0.0282208 166 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.76 vpr 62.03 MiB -1 -1 0.18 16944 1 0.03 -1 -1 30348 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63520 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 23.5 MiB 0.50 815 9368 2443 5733 1192 62.0 MiB 0.08 0.00 3.49795 -108.682 -3.49795 3.49795 0.80 0.000536602 0.000500364 0.0311701 0.0290652 34 1814 25 6.89349e+06 239595 618332. 2139.56 1.29 0.139156 0.121106 25762 151098 -1 1577 19 774 1207 83395 19438 2.56436 2.56436 -99.3758 -2.56436 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0198876 0.0172977 92 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 6.72 vpr 62.91 MiB -1 -1 0.24 17776 1 0.03 -1 -1 30276 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 24.5 MiB 1.75 1425 17431 5130 10160 2141 62.9 MiB 0.20 0.00 5.66786 -177.951 -5.66786 5.66786 0.66 0.000946855 0.000872264 0.071737 0.066438 34 3494 40 6.89349e+06 380534 618332. 2139.56 1.88 0.249712 0.218847 25762 151098 -1 2800 23 2105 2897 221520 49926 5.00324 5.00324 -174.642 -5.00324 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0331543 0.0288119 175 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 6.78 vpr 62.93 MiB -1 -1 0.21 17536 1 0.03 -1 -1 30116 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 24.2 MiB 2.04 1387 11223 3117 6896 1210 62.9 MiB 0.12 0.00 4.854 -168.258 -4.854 4.854 0.65 0.000715718 0.000664772 0.0443389 0.0411705 38 2917 25 6.89349e+06 324158 678818. 2348.85 1.75 0.185314 0.161641 26626 170182 -1 2562 24 1921 2497 168616 37648 4.42073 4.42073 -166.036 -4.42073 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0321694 0.0279459 160 96 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.34 vpr 62.55 MiB -1 -1 0.25 17556 1 0.03 -1 -1 30092 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 24.1 MiB 1.57 1228 16529 5130 9253 2146 62.5 MiB 0.17 0.00 4.18062 -130.52 -4.18062 4.18062 0.65 0.000711173 0.000660733 0.0646981 0.060132 36 2679 46 6.89349e+06 310065 648988. 2245.63 1.74 0.229621 0.200721 26050 158493 -1 2371 19 1474 2061 158969 34359 3.14201 3.14201 -122.314 -3.14201 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0264253 0.0230376 152 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 7.53 vpr 62.87 MiB -1 -1 0.23 17868 1 0.03 -1 -1 30392 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 24.2 MiB 2.17 1277 13758 3654 8100 2004 62.9 MiB 0.17 0.00 5.8432 -174.13 -5.8432 5.8432 0.65 0.000784644 0.000729619 0.0557226 0.0518073 36 3134 30 6.89349e+06 366440 648988. 2245.63 2.25 0.216432 0.18945 26050 158493 -1 2741 21 2065 3322 272282 57654 4.69455 4.69455 -160.869 -4.69455 0 0 828058. 2865.25 0.21 0.11 0.16 -1 -1 0.21 0.0320376 0.0279284 172 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 4.90 vpr 62.33 MiB -1 -1 0.22 17444 1 0.02 -1 -1 30084 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 23.8 MiB 0.75 693 11650 3455 7011 1184 62.3 MiB 0.09 0.00 3.03066 -95.0101 -3.03066 3.03066 0.66 0.00050258 0.000467961 0.0374217 0.0348548 34 1802 38 6.89349e+06 211408 618332. 2139.56 1.30 0.147175 0.127892 25762 151098 -1 1455 17 687 909 76685 16928 2.15212 2.15212 -89.3307 -2.15212 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0171981 0.0149743 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.32 vpr 62.37 MiB -1 -1 0.22 17352 1 0.03 -1 -1 30312 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 23.8 MiB 1.01 726 8270 1936 5996 338 62.4 MiB 0.08 0.00 4.60327 -135.822 -4.60327 4.60327 0.65 0.000603574 0.000561706 0.0296813 0.0276011 34 1980 21 6.89349e+06 281877 618332. 2139.56 1.36 0.1453 0.125722 25762 151098 -1 1602 32 1870 2906 352863 137449 3.522 3.522 -126.735 -3.522 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0339886 0.0292534 119 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.39 vpr 62.56 MiB -1 -1 0.18 17352 1 0.03 -1 -1 29984 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 24.0 MiB 1.64 1036 12008 3645 6699 1664 62.6 MiB 0.12 0.00 4.33865 -139.218 -4.33865 4.33865 0.65 0.000626412 0.000583201 0.0438169 0.0407591 34 2978 44 6.89349e+06 253689 618332. 2139.56 1.83 0.185403 0.160902 25762 151098 -1 2428 21 1589 2812 229790 50098 3.72055 3.72055 -142.277 -3.72055 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.025059 0.0217767 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.18 vpr 62.34 MiB -1 -1 0.21 17348 1 0.02 -1 -1 30108 -1 -1 21 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 23.7 MiB 0.98 532 11034 4110 4271 2653 62.3 MiB 0.08 0.00 3.6784 -85.8398 -3.6784 3.6784 0.65 0.000475205 0.000441858 0.0341515 0.031762 34 1620 27 6.89349e+06 295971 618332. 2139.56 1.36 0.130976 0.11374 25762 151098 -1 1248 20 849 1302 92392 24875 2.98371 2.98371 -81.2823 -2.98371 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0185067 0.0160314 92 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 7.06 vpr 62.73 MiB -1 -1 0.21 17452 1 0.03 -1 -1 30228 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 24.2 MiB 2.26 1378 14871 4869 7700 2302 62.7 MiB 0.15 0.00 4.565 -139.747 -4.565 4.565 0.66 0.000726476 0.000674383 0.0586568 0.0544763 38 3057 23 6.89349e+06 324158 678818. 2348.85 1.74 0.202252 0.177193 26626 170182 -1 2632 19 1727 2576 176374 38187 3.68256 3.68256 -131.929 -3.68256 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0328969 0.0288165 161 72 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 6.54 vpr 62.98 MiB -1 -1 0.24 17624 1 0.03 -1 -1 30308 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 24.3 MiB 1.93 1414 15617 4439 9113 2065 63.0 MiB 0.17 0.00 4.8901 -157.733 -4.8901 4.8901 0.66 0.000766175 0.000711178 0.0604802 0.0560988 34 3269 24 6.89349e+06 408721 618332. 2139.56 1.58 0.215294 0.188307 25762 151098 -1 2694 20 1849 2547 181701 41207 4.21289 4.21289 -153.322 -4.21289 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0300622 0.0262604 179 90 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters/config/golden_results.txt index e71a04d0dbd..6e30998de45 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters/config/golden_results.txt @@ -1,235 +1,235 @@ - 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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 8.75 vpr 72.94 MiB 0.06 10688 -1 -1 8 0.59 -1 -1 40204 -1 -1 129 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74692 22 19 1764 1664 1 986 174 16 16 256 mult_36 auto 34.9 MiB 0.31 6950 22484 4314 16298 1872 72.9 MiB 0.35 0.01 3.97876 -1194.27 -3.97876 3.97876 0.82 0.00282128 0.00247538 0.154371 0.135275 54 13279 29 6.2557e+06 3.1391e+06 784202. 3063.29 3.75 0.898366 0.790294 23308 185586 -1 10939 15 3911 7989 660108 160597 4.33936 4.33936 -1345.3 -4.33936 0 0 965591. 3771.84 0.38 0.28 0.19 -1 -1 0.38 0.13023 0.118656 966 909 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 14.06 vpr 73.55 MiB 0.07 11152 -1 -1 8 0.60 -1 -1 40768 -1 -1 139 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75312 22 19 1918 1801 1 1083 185 16 16 256 clb mult_36 auto 35.7 MiB 0.33 7708 26485 5012 19283 2190 73.5 MiB 0.41 0.01 4.09896 -1323.08 -4.09896 4.09896 0.80 0.00321197 0.00282657 0.173722 0.15257 64 12735 48 6.2557e+06 3.65564e+06 891356. 3481.86 8.86 1.5564 1.37201 25092 220585 -1 11559 13 3728 7247 701585 162821 4.33936 4.33936 -1472.33 -4.33936 0 0 1.11946e+06 4372.88 0.45 0.27 0.23 -1 -1 0.45 0.12349 0.112542 1047 984 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 14.81 vpr 73.41 MiB 0.07 11388 -1 -1 8 0.67 -1 -1 40400 -1 -1 143 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75176 22 19 1976 1859 1 1114 189 17 17 289 clb auto 36.1 MiB 0.35 8087 27831 5702 20181 1948 73.4 MiB 0.43 0.01 3.97876 -1337.86 -3.97876 3.97876 0.92 0.00304645 0.0027101 0.180081 0.157831 60 14041 31 6.55708e+06 3.70386e+06 958460. 3316.47 9.10 1.48146 1.30187 27358 235245 -1 12603 15 4109 8405 790637 184656 4.33936 4.33936 -1525.97 -4.33936 0 0 1.19711e+06 4142.24 0.50 0.33 0.25 -1 -1 0.50 0.149313 0.135733 1086 1023 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 10.48 vpr 75.49 MiB 0.08 11976 -1 -1 8 0.74 -1 -1 40892 -1 -1 163 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77300 22 19 2278 2144 1 1240 209 17 17 289 clb auto 37.7 MiB 0.39 8126 30589 5968 22015 2606 75.5 MiB 0.50 0.01 4.09896 -1524.63 -4.09896 4.09896 0.95 0.00405493 0.0035833 0.221107 0.196051 56 14769 33 6.55708e+06 3.94496e+06 918491. 3178.17 4.43 1.21858 1.07412 26494 218197 -1 13003 18 4596 8764 912568 220841 4.33936 4.33936 -1763.6 -4.33936 0 0 1.12733e+06 3900.80 0.44 0.37 0.22 -1 -1 0.44 0.180601 0.163162 1242 1171 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 28.48 vpr 75.94 MiB 0.08 12348 -1 -1 8 0.78 -1 -1 40480 -1 -1 168 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77760 22 19 2336 2202 1 1265 214 18 18 324 clb auto 38.2 MiB 0.42 8889 37276 7702 27115 2459 75.9 MiB 0.56 0.01 3.97876 -1560.56 -3.97876 3.97876 1.12 0.00375959 0.00331858 0.240747 0.211605 50 18122 50 7.67456e+06 4.00524e+06 975281. 3010.13 21.57 2.03044 1.78169 28904 225404 -1 14699 35 5453 10624 1782416 472012 4.33936 4.33936 -1792.05 -4.33936 0 0 1.16663e+06 3600.72 0.43 0.73 0.23 -1 -1 0.43 0.295091 0.262494 1281 1210 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 17.68 vpr 76.11 MiB 0.08 12600 -1 -1 8 0.81 -1 -1 41156 -1 -1 175 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77936 22 19 2488 2337 1 1372 222 18 18 324 clb auto 39.0 MiB 0.41 9855 37127 8192 26388 2547 76.1 MiB 0.60 0.01 3.97876 -1658.31 -3.97876 3.97876 1.08 0.00439298 0.00388642 0.266819 0.235391 64 16249 20 7.67456e+06 4.48562e+06 1.16663e+06 3600.72 10.89 2.18375 1.93252 32132 291232 -1 15051 13 4838 9736 992282 226550 4.33936 4.33936 -1875.5 -4.33936 0 0 1.46385e+06 4518.05 0.61 0.37 0.31 -1 -1 0.61 0.160884 0.146607 1360 1285 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 14.17 vpr 76.41 MiB 0.09 12704 -1 -1 8 0.91 -1 -1 41080 -1 -1 182 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78240 22 19 2546 2395 1 1407 229 18 18 324 clb auto 39.0 MiB 0.43 10398 41529 9428 29957 2144 76.4 MiB 0.69 0.01 4.21916 -1734.27 -4.21916 4.21916 1.14 0.00431526 0.00385525 0.287704 0.254341 58 18576 38 7.67456e+06 4.57001e+06 1.07356e+06 3313.45 7.05 1.44243 1.26931 30840 265148 -1 16315 13 5424 10868 1122122 258343 4.33936 4.33936 -1966.31 -4.33936 0 0 1.34501e+06 4151.27 0.55 0.39 0.27 -1 -1 0.55 0.162853 0.147565 1399 1324 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 17.92 vpr 77.82 MiB 0.10 13128 -1 -1 8 1.03 -1 -1 41516 -1 -1 193 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79688 22 19 2735 2567 1 1516 240 19 19 361 clb auto 40.6 MiB 0.48 11377 38980 8200 28513 2267 77.8 MiB 0.62 0.01 4.21916 -1866 -4.21916 4.21916 1.26 0.00502901 0.00445507 0.258818 0.226302 56 21028 45 8.02416e+06 4.70262e+06 1.18337e+06 3278.02 10.14 1.89838 1.67387 33518 283317 -1 18533 14 6220 12462 1433584 324336 4.33936 4.33936 -2213.23 -4.33936 0 0 1.45127e+06 4020.14 0.62 0.51 0.29 -1 -1 0.62 0.199363 0.182373 1497 1417 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 19.54 vpr 78.04 MiB 0.10 13500 -1 -1 8 1.06 -1 -1 41820 -1 -1 200 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79912 22 19 2793 2625 1 1545 247 19 19 361 clb auto 40.7 MiB 0.51 12225 45913 10605 32518 2790 78.0 MiB 0.83 0.01 4.09896 -1922.19 -4.09896 4.09896 1.33 0.00583796 0.00527046 0.368801 0.328246 58 22230 39 8.02416e+06 4.787e+06 1.20750e+06 3344.89 11.22 1.94263 1.72862 34238 298765 -1 18740 14 6151 12451 1327066 290823 4.57976 4.57976 -2206.22 -4.57976 0 0 1.51231e+06 4189.22 0.69 0.52 0.30 -1 -1 0.69 0.230375 0.210967 1536 1456 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 14.97 vpr 79.60 MiB 0.10 13620 -1 -1 8 1.10 -1 -1 42292 -1 -1 211 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81512 22 19 2947 2762 1 1644 259 19 19 361 clb auto 41.5 MiB 0.52 11753 42334 8594 31743 1997 79.6 MiB 0.67 0.01 3.97876 -2014.86 -3.97876 3.97876 1.27 0.00457914 0.00402936 0.268535 0.234035 58 20786 33 8.02416e+06 5.3156e+06 1.20750e+06 3344.89 6.93 1.65125 1.45282 34238 298765 -1 18146 13 6170 12370 1196493 283483 4.33936 4.33936 -2321.54 -4.33936 0 0 1.51231e+06 4189.22 0.66 0.45 0.30 -1 -1 0.66 0.198937 0.181291 1617 1531 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 16.83 vpr 79.12 MiB 0.11 13888 -1 -1 8 1.17 -1 -1 42144 -1 -1 216 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81024 22 19 3005 2820 1 1676 264 19 19 361 clb auto 41.9 MiB 0.53 12038 47640 10271 34539 2830 79.1 MiB 0.74 0.01 3.97876 -2047.55 -3.97876 3.97876 1.26 0.00479762 0.00409112 0.296687 0.256003 58 21487 43 8.02416e+06 5.37588e+06 1.20750e+06 3344.89 8.62 1.74659 1.52977 34238 298765 -1 18506 15 6230 12542 1297201 303049 4.21916 4.21916 -2316.09 -4.21916 0 0 1.51231e+06 4189.22 0.63 0.48 0.30 -1 -1 0.63 0.205088 0.185267 1656 1570 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 25.27 vpr 80.47 MiB 0.11 14436 -1 -1 8 1.27 -1 -1 44060 -1 -1 231 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82400 22 19 3229 3027 1 1787 279 20 20 400 clb auto 43.4 MiB 0.57 14117 50384 10985 36503 2896 80.5 MiB 0.88 0.01 4.21916 -2315.15 -4.21916 4.21916 1.47 0.00551374 0.00488139 0.363541 0.32138 60 24883 50 1.09209e+07 5.5567e+06 1.36764e+06 3419.10 16.12 2.77971 2.4504 38726 338483 -1 21185 14 6962 14688 1438925 321635 4.57976 4.57976 -2635.99 -4.57976 0 0 1.70760e+06 4269.00 0.75 0.54 0.32 -1 -1 0.75 0.234449 0.213434 1771 1681 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 18.84 vpr 81.66 MiB 0.12 14504 -1 -1 8 1.38 -1 -1 44296 -1 -1 237 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83624 22 19 3287 3085 1 1821 285 21 21 441 clb auto 43.6 MiB 0.72 12904 61190 14457 43853 2880 81.7 MiB 0.95 0.01 3.97876 -2318 -3.97876 3.97876 1.59 0.0051613 0.00448483 0.375788 0.323973 56 23450 28 1.13066e+07 5.62904e+06 1.45633e+06 3302.33 8.86 2.16819 1.91401 41182 349235 -1 21258 17 7517 15304 1566154 366935 4.21916 4.21916 -2613.91 -4.21916 0 0 1.78656e+06 4051.16 0.78 0.63 0.35 -1 -1 0.78 0.283278 0.257824 1810 1720 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 33.41 vpr 82.48 MiB 0.12 15144 -1 -1 8 1.41 -1 -1 43232 -1 -1 251 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84464 22 19 3453 3234 1 1931 300 21 21 441 clb auto 44.6 MiB 0.59 14026 64492 15465 45323 3704 82.5 MiB 1.02 0.02 4.09896 -2434.05 -4.09896 4.09896 1.59 0.00556357 0.00488192 0.395889 0.344825 58 25685 50 1.13066e+07 6.1938e+06 1.48593e+06 3369.47 23.31 2.8567 2.48521 42062 368216 -1 21881 15 7217 14968 1469419 338525 4.21916 4.21916 -2822.87 -4.21916 0 0 1.86135e+06 4220.76 0.85 0.59 0.38 -1 -1 0.85 0.260882 0.237237 1903 1795 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 37.59 vpr 83.00 MiB 0.12 15148 -1 -1 8 1.46 -1 -1 43184 -1 -1 256 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84996 22 19 3511 3292 1 1964 305 21 21 441 clb auto 45.2 MiB 0.64 14136 61865 14021 44839 3005 83.0 MiB 1.07 0.02 4.21916 -2498.53 -4.21916 4.21916 1.66 0.00599192 0.00530113 0.428301 0.374901 58 25540 34 1.13066e+07 6.25408e+06 1.48593e+06 3369.47 27.22 3.10275 2.72391 42062 368216 -1 22023 13 7407 15125 1544820 351812 4.45956 4.45956 -2789.36 -4.45956 0 0 1.86135e+06 4220.76 0.89 0.57 0.38 -1 -1 0.89 0.240894 0.219153 1942 1834 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 28.00 vpr 85.19 MiB 0.13 15728 -1 -1 8 1.55 -1 -1 45208 -1 -1 268 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87236 22 19 3709 3473 1 2078 318 22 22 484 clb mult_36 auto 46.9 MiB 0.66 17087 69758 16122 49974 3662 84.1 MiB 1.08 0.02 4.09896 -2509.73 -4.09896 4.09896 1.89 0.00577704 0.00499599 0.416428 0.363017 64 28412 21 1.25085e+07 6.79474e+06 1.79645e+06 3711.66 16.71 2.36492 2.08265 48502 451691 -1 25409 14 7719 15888 1704627 365555 4.45956 4.45956 -2999.39 -4.45956 0 0 2.25323e+06 4655.43 1.01 0.65 0.43 -1 -1 1.01 0.274714 0.25024 2049 1927 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 30.58 vpr 84.31 MiB 0.14 15872 -1 -1 8 1.65 -1 -1 45164 -1 -1 274 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86336 22 19 3767 3531 1 2107 324 22 22 484 clb mult_36 auto 46.9 MiB 0.65 15670 75940 17509 53893 4538 84.3 MiB 1.26 0.02 3.85856 -2552.39 -3.85856 3.85856 1.87 0.00691441 0.0061691 0.49017 0.427793 62 29067 44 1.25085e+07 6.86707e+06 1.74100e+06 3597.11 19.04 3.48224 3.05533 47538 430501 -1 23353 16 7629 15902 1415187 320005 4.33936 4.33936 -3025.71 -4.33936 0 0 2.15309e+06 4448.52 0.96 0.60 0.43 -1 -1 0.96 0.290796 0.263881 2088 1966 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 19.37 vpr 85.43 MiB 0.14 16184 -1 -1 8 1.75 -1 -1 45744 -1 -1 288 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87484 22 19 3928 3675 1 2213 338 22 22 484 clb mult_36 auto 48.1 MiB 0.70 16317 73250 16944 52034 4272 85.4 MiB 1.15 0.02 3.97876 -2647.52 -3.97876 3.97876 1.84 0.00608248 0.00522636 0.42825 0.369463 64 26821 16 1.25085e+07 7.03584e+06 1.79645e+06 3711.66 7.63 2.00423 1.75652 48502 451691 -1 24619 14 7666 16227 1599307 362335 4.33936 4.33936 -3087.7 -4.33936 0 0 2.25323e+06 4655.43 1.03 0.66 0.46 -1 -1 1.03 0.291156 0.264906 2176 2041 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 29.01 vpr 86.09 MiB 0.14 16164 -1 -1 8 1.77 -1 -1 46236 -1 -1 292 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88156 22 19 3986 3733 1 2248 342 22 22 484 clb mult_36 auto 48.2 MiB 0.71 18206 67262 14267 49464 3531 85.5 MiB 1.16 0.02 4.09896 -2779.53 -4.09896 4.09896 1.80 0.00635347 0.00561765 0.43978 0.384062 64 29888 24 1.25085e+07 7.08406e+06 1.79645e+06 3711.66 17.33 3.0183 2.65773 48502 451691 -1 26453 13 8005 16907 1562907 350202 4.45956 4.45956 -3159.17 -4.45956 0 0 2.25323e+06 4655.43 1.04 0.62 0.46 -1 -1 1.04 0.277289 0.252645 2215 2080 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 26.88 vpr 87.38 MiB 0.16 17148 -1 -1 8 1.87 -1 -1 44652 -1 -1 314 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89472 22 19 4329 4059 1 2377 365 23 23 529 clb auto 50.2 MiB 0.77 18099 82454 19138 59519 3797 87.4 MiB 1.38 0.02 4.09896 -3027.72 -4.09896 4.09896 2.05 0.00886854 0.00802358 0.532768 0.464087 58 31696 42 1.29425e+07 7.74527e+06 1.81842e+06 3437.46 13.90 2.81402 2.4769 50706 452665 -1 27989 27 8880 18001 2165752 531671 4.33936 4.33936 -3433.42 -4.33936 0 0 2.27638e+06 4303.19 0.99 1.01 0.46 -1 -1 0.99 0.485647 0.434068 2394 2246 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 34.11 vpr 91.73 MiB 0.16 17320 -1 -1 8 2.00 -1 -1 46492 -1 -1 320 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93932 22 19 4387 4117 1 2404 371 23 23 529 clb auto 50.7 MiB 0.76 19886 89615 21729 64145 3741 87.9 MiB 1.44 0.02 4.09896 -3102.53 -4.09896 4.09896 1.99 0.00802373 0.00691866 0.537851 0.463309 64 33737 42 1.29425e+07 7.8176e+06 1.97533e+06 3734.07 21.05 3.84338 3.37425 52818 497331 -1 29856 15 9134 18993 2025315 431763 4.45956 4.45956 -3559.18 -4.45956 0 0 2.47740e+06 4683.17 1.14 0.73 0.51 -1 -1 1.14 0.297967 0.268625 2433 2285 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 36.40 vpr 91.61 MiB 0.16 17896 -1 -1 8 2.09 -1 -1 44948 -1 -1 332 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93804 22 19 4547 4260 1 2527 383 23 23 529 clb auto 51.1 MiB 0.78 20203 92123 22391 65583 4149 88.5 MiB 1.52 0.02 4.21916 -3208.51 -4.21916 4.21916 2.01 0.00737096 0.00652208 0.560869 0.483883 66 33509 34 1.29425e+07 7.96226e+06 2.03400e+06 3844.99 23.00 4.45128 3.91677 53346 510233 -1 29603 13 8960 19237 1955740 433109 4.33936 4.33936 -3547.06 -4.33936 0 0 2.53752e+06 4796.82 1.20 0.77 0.48 -1 -1 1.20 0.335966 0.306555 2520 2360 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 37.52 vpr 93.32 MiB 0.17 18100 -1 -1 8 2.19 -1 -1 47280 -1 -1 338 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95564 22 19 4605 4318 1 2554 389 24 24 576 clb auto 51.8 MiB 0.84 19192 89786 21571 63212 5003 89.1 MiB 1.60 0.02 3.97876 -3173.17 -3.97876 3.97876 2.30 0.00913558 0.00820412 0.639943 0.564697 62 33685 33 1.51154e+07 8.03459e+06 2.06880e+06 3591.66 23.09 5.06255 4.51036 56266 511197 -1 28622 15 9120 19125 1787870 401768 4.33936 4.33936 -3584.43 -4.33936 0 0 2.55996e+06 4444.37 1.24 0.83 0.52 -1 -1 1.24 0.405226 0.370166 2559 2399 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 34.59 vpr 89.20 MiB 0.18 18252 -1 -1 8 2.34 -1 -1 44048 -1 -1 351 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91340 22 19 4802 4498 1 2682 403 24 24 576 clb mult_36 auto 52.4 MiB 0.84 21956 98611 23267 70695 4649 89.2 MiB 1.64 0.02 4.21916 -3341.58 -4.21916 4.21916 2.27 0.00817262 0.00720333 0.591013 0.510659 60 37156 31 1.51154e+07 8.5873e+06 2.00908e+06 3487.99 19.81 3.0441 2.68093 55690 499183 -1 32903 15 10273 20986 2416203 519955 4.45956 4.45956 -3848.46 -4.45956 0 0 2.50809e+06 4354.32 1.22 0.95 0.50 -1 -1 1.22 0.397746 0.362393 2665 2492 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 58.20 vpr 89.91 MiB 0.18 18424 -1 -1 8 2.39 -1 -1 47224 -1 -1 355 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 92068 22 19 4860 4556 1 2713 407 25 25 625 clb auto 53.2 MiB 0.87 21079 111925 28546 77279 6100 89.9 MiB 1.80 0.02 4.09896 -3420.96 -4.09896 4.09896 2.51 0.00828543 0.006866 0.647448 0.560057 58 37590 49 1.55855e+07 8.63552e+06 2.14341e+06 3429.45 42.74 5.35778 4.6943 59588 533201 -1 32297 14 10403 22809 2128773 478681 4.45956 4.45956 -4033.08 -4.45956 0 0 2.68463e+06 4295.40 1.31 0.80 0.54 -1 -1 1.31 0.335286 0.303673 2704 2531 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 33.73 vpr 94.43 MiB 0.18 18852 -1 -1 8 2.52 -1 -1 47296 -1 -1 370 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96696 22 19 5019 4698 1 2814 422 25 25 625 clb auto 54.1 MiB 0.92 22025 111162 28522 76731 5909 92.1 MiB 1.78 0.02 4.33936 -3519.41 -4.33936 4.33936 2.36 0.00795811 0.00697266 0.621396 0.536095 60 37992 31 1.55855e+07 8.81635e+06 2.19200e+06 3507.21 17.80 3.08382 2.70538 60212 545296 -1 33430 34 10552 21862 2779460 660410 4.45956 4.45956 -4008.99 -4.45956 0 0 2.73590e+06 4377.44 1.33 1.30 0.55 -1 -1 1.33 0.627494 0.556372 2790 2606 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 27.15 vpr 91.36 MiB 0.19 18944 -1 -1 8 2.68 -1 -1 47748 -1 -1 373 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93552 22 19 5077 4756 1 2844 425 25 25 625 clb auto 54.6 MiB 0.92 22689 112215 28554 78433 5228 91.4 MiB 1.86 0.03 4.09896 -3625.33 -4.09896 4.09896 2.47 0.00907938 0.00768794 0.658025 0.566932 66 36941 31 1.55855e+07 8.85252e+06 2.39749e+06 3835.99 11.06 2.99029 2.62404 62708 601000 -1 33061 15 9671 20134 1875009 414680 4.57976 4.57976 -4182.16 -4.57976 0 0 2.99279e+06 4788.46 1.39 0.79 0.61 -1 -1 1.39 0.38097 0.345004 2829 2645 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 79.83 vpr 96.98 MiB 0.19 19524 -1 -1 8 2.79 -1 -1 48140 -1 -1 390 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 99312 22 19 5308 4970 1 2955 443 25 25 625 clb auto 55.8 MiB 0.97 24295 118603 30276 82434 5893 93.6 MiB 1.85 0.02 4.21916 -3735.1 -4.21916 4.21916 2.46 0.0083342 0.00724295 0.661549 0.565313 62 42239 27 1.55855e+07 9.45345e+06 2.25743e+06 3611.89 63.53 5.31695 4.65492 60836 558452 -1 35386 16 11338 23622 2241756 509042 4.33936 4.33936 -4245.26 -4.33936 0 0 2.79245e+06 4467.92 1.34 0.89 0.55 -1 -1 1.34 0.401834 0.362437 2951 2756 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 40.42 vpr 107.80 MiB 0.20 19796 -1 -1 8 2.78 -1 -1 48584 -1 -1 397 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110384 22 19 5366 5028 1 2986 450 26 26 676 clb auto 56.4 MiB 0.99 22059 126229 32906 88025 5298 92.8 MiB 1.99 0.03 3.97876 -3739.3 -3.97876 3.97876 2.72 0.0087742 0.00773125 0.703795 0.605637 60 36976 32 1.89118e+07 9.53784e+06 2.42032e+06 3580.36 23.22 4.16726 3.65658 66764 605600 -1 33538 14 10915 23001 2070408 465145 4.33936 4.33936 -4304.98 -4.33936 0 0 3.01907e+06 4466.08 1.49 0.87 0.62 -1 -1 1.49 0.409541 0.373734 2990 2795 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 39.15 vpr 98.01 MiB 0.20 20196 -1 -1 8 2.77 -1 -1 49136 -1 -1 404 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 100360 22 19 5524 5169 1 3090 457 26 26 676 clb auto 57.3 MiB 1.01 22797 128864 34818 87814 6232 95.0 MiB 2.13 0.03 4.09896 -3949.66 -4.09896 4.09896 2.74 0.00904196 0.00796249 0.768392 0.658237 58 40039 26 1.89118e+07 9.62222e+06 2.36678e+06 3501.15 21.69 3.29017 2.8653 66088 592148 -1 35400 14 11484 23274 2316005 522037 4.45956 4.45956 -4603.02 -4.45956 0 0 2.96266e+06 4382.64 1.44 0.93 0.60 -1 -1 1.44 0.42174 0.383139 3075 2870 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 42.31 vpr 112.72 MiB 0.22 20412 -1 -1 8 2.91 -1 -1 48812 -1 -1 410 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 115428 22 19 5582 5227 1 3122 463 26 26 676 clb auto 57.8 MiB 0.96 23985 131133 34172 91366 5595 95.3 MiB 2.16 0.03 3.97876 -3955.1 -3.97876 3.97876 2.70 0.00971406 0.00862054 0.773427 0.669341 66 38683 30 1.89118e+07 9.69455e+06 2.64624e+06 3914.56 24.81 4.63323 4.07624 69464 667360 -1 35704 13 10565 22862 2235373 489103 4.33936 4.33936 -4647.83 -4.33936 0 0 3.30163e+06 4884.07 1.61 0.88 0.64 -1 -1 1.61 0.407164 0.370827 3114 2909 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 56.48 vpr 102.78 MiB 0.21 20680 -1 -1 8 3.24 -1 -1 49636 -1 -1 425 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 105244 22 19 5779 5407 1 3235 479 26 26 676 clb auto 58.9 MiB 1.04 24480 135335 35427 94438 5470 96.4 MiB 2.22 0.03 3.97876 -3976.67 -3.97876 3.97876 2.75 0.0101618 0.00905163 0.784002 0.679981 60 41314 41 1.89118e+07 1.02714e+07 2.42032e+06 3580.36 38.15 6.60336 5.82023 66764 605600 -1 36793 15 11827 24486 2552762 577407 4.33936 4.33936 -4657.2 -4.33936 0 0 3.01907e+06 4466.08 1.50 1.06 0.61 -1 -1 1.50 0.484969 0.442179 3220 3002 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 36.91 vpr 101.14 MiB 0.21 21048 -1 -1 8 3.39 -1 -1 49496 -1 -1 430 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 103572 22 19 5837 5465 1 3273 484 26 26 676 clb auto 59.0 MiB 1.09 25354 133414 34046 94363 5005 96.4 MiB 2.42 0.03 4.09896 -4049.03 -4.09896 4.09896 2.85 0.011603 0.010481 0.905995 0.790879 62 43998 45 1.89118e+07 1.03316e+07 2.49248e+06 3687.09 17.88 5.31956 4.73624 67440 620228 -1 37238 14 11863 24873 2415389 536316 4.45956 4.45956 -4755.27 -4.45956 0 0 3.08129e+06 4558.12 1.53 1.09 0.61 -1 -1 1.53 0.520224 0.474091 3259 3041 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 47.69 vpr 126.25 MiB 0.22 21176 -1 -1 8 3.62 -1 -1 49548 -1 -1 439 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 129276 22 19 5997 5608 1 3373 493 27 27 729 clb auto 59.6 MiB 1.08 26739 142551 37614 98306 6631 97.2 MiB 2.42 0.03 4.21916 -4297.45 -4.21916 4.21916 3.09 0.00986826 0.00869597 0.858127 0.75202 68 42234 19 1.94302e+07 1.04401e+07 2.93284e+06 4023.09 27.69 4.98592 4.394 75330 737039 -1 38718 15 11599 23921 2313999 510246 4.57976 4.57976 -4916.79 -4.57976 0 0 3.64745e+06 5003.36 1.79 0.91 0.74 -1 -1 1.79 0.412289 0.370584 3346 3116 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 47.65 vpr 126.68 MiB 0.22 21548 -1 -1 8 3.38 -1 -1 50028 -1 -1 448 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 129716 22 19 6055 5666 1 3405 502 27 27 729 clb auto 60.2 MiB 1.12 27808 142076 35951 101311 4814 97.7 MiB 2.31 0.03 4.21916 -4391.89 -4.21916 4.21916 3.02 0.0100591 0.00889228 0.78181 0.680163 66 45323 49 1.94302e+07 1.05486e+07 2.86480e+06 3929.76 28.12 5.17704 4.54085 74602 723059 -1 40781 13 11889 25062 2611322 554995 4.45956 4.45956 -5001.08 -4.45956 0 0 3.57338e+06 4901.75 1.69 0.95 0.74 -1 -1 1.69 0.398459 0.360516 3385 3155 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 53.86 vpr 119.89 MiB 0.24 21864 -1 -1 8 3.84 -1 -1 50308 -1 -1 465 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 122772 22 19 6324 5918 1 3526 520 27 27 729 clb auto 61.6 MiB 1.14 29007 161450 43721 111550 6179 99.0 MiB 2.71 0.03 4.33936 -4547.8 -4.33936 4.33936 3.10 0.00906845 0.00770856 0.926287 0.801211 66 47835 33 1.94302e+07 1.11496e+07 2.86480e+06 3929.76 32.78 5.41941 4.74339 74602 723059 -1 42499 15 12778 27325 3072270 656584 4.69996 4.69996 -5126.18 -4.69996 0 0 3.57338e+06 4901.75 1.79 1.19 0.73 -1 -1 1.79 0.506976 0.460794 3527 3284 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 37.48 vpr 108.77 MiB 0.23 22080 -1 -1 8 3.63 -1 -1 50468 -1 -1 466 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 111376 22 19 6382 5976 1 3558 521 27 27 729 clb auto 62.1 MiB 1.16 27189 151361 39519 105451 6391 99.4 MiB 2.51 0.03 4.09896 -4561.85 -4.09896 4.09896 2.99 0.0104929 0.00922855 0.863042 0.743715 64 44952 29 1.94302e+07 1.11616e+07 2.78336e+06 3818.06 17.24 5.10782 4.50158 73874 704979 -1 41044 14 12633 26549 2624300 573522 4.45956 4.45956 -5204.83 -4.45956 0 0 3.48985e+06 4787.17 1.74 1.06 0.71 -1 -1 1.74 0.48173 0.437387 3566 3323 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 39.50 vpr 111.37 MiB 0.27 22576 -1 -1 8 3.61 -1 -1 51360 -1 -1 479 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 114044 22 19 6542 6119 1 3674 534 28 28 784 clb auto 62.9 MiB 1.24 29173 156414 40019 109909 6486 100.2 MiB 2.65 0.04 4.21916 -4706.31 -4.21916 4.21916 3.19 0.0105177 0.00929938 0.920872 0.796904 62 50315 29 2.18512e+07 1.13183e+07 2.87318e+06 3664.77 18.51 4.86631 4.28067 77276 713722 -1 42808 14 13234 27957 2772469 603588 4.45956 4.45956 -5285.65 -4.45956 0 0 3.55346e+06 4532.48 1.74 1.11 0.71 -1 -1 1.74 0.491957 0.447273 3653 3398 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 41.45 vpr 111.80 MiB 0.23 22624 -1 -1 8 3.93 -1 -1 51588 -1 -1 485 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 114480 22 19 6600 6177 1 3704 540 28 28 784 clb auto 63.5 MiB 1.18 30568 152202 39113 107231 5858 100.7 MiB 2.39 0.04 4.21916 -4801.78 -4.21916 4.21916 3.18 0.0116992 0.0103868 0.788803 0.678439 60 51409 47 2.18512e+07 1.13907e+07 2.78985e+06 3558.49 20.36 5.0332 4.41621 76492 696852 -1 46024 13 14256 30617 3068555 660987 4.57976 4.57976 -5679.83 -4.57976 0 0 3.48130e+06 4440.43 1.74 1.15 0.70 -1 -1 1.74 0.465388 0.422293 3692 3437 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 28.58 vpr 69.31 MiB 0.05 9720 -1 -1 10 0.62 -1 -1 38776 -1 -1 93 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70972 22 19 1149 1049 1 787 138 16 16 256 mult_36 auto 31.6 MiB 0.22 5203 17226 3437 12408 1381 69.3 MiB 0.28 0.01 11.5066 -378.727 -11.5066 11.5066 0.83 0.00228846 0.00204438 0.131501 0.118679 50 10859 45 6.2557e+06 2.70512e+06 744679. 2908.90 23.92 1.44179 1.2839 22544 170752 -1 9537 21 4554 9502 952532 214813 12.1591 12.1591 -516.42 -12.1591 0 0 891356. 3481.86 0.35 0.33 0.17 -1 -1 0.35 0.124739 0.113829 715 658 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 10.08 vpr 70.27 MiB 0.06 9768 -1 -1 11 0.64 -1 -1 39072 -1 -1 106 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71952 22 19 1261 1144 1 879 152 16 16 256 mult_36 auto 32.4 MiB 0.24 6049 16757 3015 12438 1304 70.3 MiB 0.28 0.01 12.5671 -431.764 -12.5671 12.5671 0.82 0.00273135 0.0024435 0.126681 0.114174 56 11759 43 6.2557e+06 3.25783e+06 803869. 3140.11 5.27 0.872244 0.783319 23564 190428 -1 10542 18 4706 9723 1013153 237134 12.9573 12.9573 -580.952 -12.9573 0 0 987003. 3855.48 0.39 0.34 0.19 -1 -1 0.39 0.120423 0.110373 790 727 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 11.83 vpr 70.77 MiB 0.06 9860 -1 -1 11 0.67 -1 -1 40052 -1 -1 112 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72464 22 19 1336 1219 1 929 158 16 16 256 mult_36 auto 33.0 MiB 0.25 6304 16811 2985 12580 1246 70.8 MiB 0.28 0.01 13.0968 -433.621 -13.0968 13.0968 0.81 0.00271927 0.00243872 0.1226 0.110588 54 12739 33 6.2557e+06 3.33016e+06 784202. 3063.29 7.02 1.11371 0.991507 23308 185586 -1 10528 18 4739 9524 916006 216721 13.6188 13.6188 -540.357 -13.6188 0 0 965591. 3771.84 0.36 0.32 0.19 -1 -1 0.36 0.121704 0.110484 846 783 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 15.27 vpr 71.21 MiB 0.07 10200 -1 -1 11 0.75 -1 -1 40252 -1 -1 121 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72920 22 19 1446 1312 1 989 167 16 16 256 mult_36 auto 33.6 MiB 0.28 7177 18068 2964 13629 1475 71.2 MiB 0.31 0.01 12.8686 -455.531 -12.8686 12.8686 0.82 0.00289612 0.00260314 0.133167 0.119702 54 14767 48 6.2557e+06 3.43866e+06 784202. 3063.29 10.11 1.5585 1.3854 23308 185586 -1 11792 21 5545 11599 1279267 322865 13.872 13.872 -590.134 -13.872 0 0 965591. 3771.84 0.38 0.46 0.17 -1 -1 0.38 0.160793 0.145467 919 848 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 11.07 vpr 71.78 MiB 0.07 10520 -1 -1 11 0.81 -1 -1 40056 -1 -1 128 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73500 22 19 1507 1373 1 1035 174 16 16 256 mult_36 auto 34.3 MiB 0.28 7769 18604 3057 14083 1464 71.8 MiB 0.32 0.01 12.9567 -485.19 -12.9567 12.9567 0.81 0.00306138 0.00277719 0.140779 0.126426 58 14489 44 6.2557e+06 3.52304e+06 820238. 3204.05 5.73 0.978935 0.871547 24072 200857 -1 12852 19 5690 11995 1068605 257243 13.6407 13.6407 -764.054 -13.6407 0 0 1.02849e+06 4017.54 0.44 0.41 0.22 -1 -1 0.44 0.158118 0.144242 961 890 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 14.41 vpr 72.40 MiB 0.07 10612 -1 -1 11 0.85 -1 -1 39600 -1 -1 135 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74136 22 19 1596 1445 1 1100 182 16 16 256 clb mult_36 auto 34.8 MiB 0.31 7817 20782 3082 16224 1476 72.4 MiB 0.37 0.01 12.974 -505.115 -12.974 12.974 0.82 0.00322964 0.00289921 0.159019 0.143111 60 14196 44 6.2557e+06 4.00342e+06 838722. 3276.26 8.96 1.60042 1.42538 24328 205314 -1 12632 19 5412 11419 1069634 253455 13.8154 13.8154 -693.573 -13.8154 0 0 1.04796e+06 4093.58 0.41 0.39 0.21 -1 -1 0.41 0.149836 0.136464 1013 938 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 11.33 vpr 72.64 MiB 0.07 10912 -1 -1 11 0.90 -1 -1 40076 -1 -1 137 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74384 22 19 1656 1505 1 1146 184 16 16 256 clb mult_36 auto 35.1 MiB 0.29 8225 21104 3333 16460 1311 72.6 MiB 0.35 0.01 13.055 -521.844 -13.055 13.055 0.86 0.00298609 0.00262964 0.148614 0.132739 58 15443 26 6.2557e+06 4.02754e+06 820238. 3204.05 5.74 0.944002 0.838124 24072 200857 -1 13416 18 5731 11689 1194013 283234 13.8572 13.8572 -708.305 -13.8572 0 0 1.02849e+06 4017.54 0.40 0.43 0.20 -1 -1 0.40 0.160056 0.146464 1054 979 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 13.39 vpr 73.00 MiB 0.08 11352 -1 -1 12 0.98 -1 -1 40428 -1 -1 145 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74748 22 19 1754 1586 1 1213 192 17 17 289 clb auto 35.6 MiB 0.33 9372 24524 4200 18624 1700 73.0 MiB 0.42 0.01 13.0709 -523.895 -13.0709 13.0709 0.98 0.00353219 0.00317799 0.178261 0.159529 60 16834 24 6.55708e+06 4.12398e+06 958460. 3316.47 7.04 1.02725 0.914342 27358 235245 -1 14653 22 6836 14072 1605498 363703 13.5517 13.5517 -670.062 -13.5517 0 0 1.19711e+06 4142.24 0.50 0.56 0.24 -1 -1 0.50 0.192806 0.175786 1115 1035 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 16.86 vpr 73.88 MiB 0.08 11200 -1 -1 11 1.02 -1 -1 40988 -1 -1 154 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75648 22 19 1827 1659 1 1262 201 17 17 289 clb auto 36.3 MiB 0.36 9359 24897 4182 18980 1735 73.9 MiB 0.46 0.01 13.1655 -601.995 -13.1655 13.1655 0.98 0.00401374 0.00364558 0.205027 0.184197 64 15645 26 6.55708e+06 4.23247e+06 1.01866e+06 3524.77 10.35 1.6987 1.52947 28222 252754 -1 14459 18 6156 12592 1346678 305905 13.8887 13.8887 -808.872 -13.8887 0 0 1.27888e+06 4425.19 0.54 0.51 0.26 -1 -1 0.54 0.201568 0.185499 1169 1089 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 30.00 vpr 74.07 MiB 0.09 11656 -1 -1 12 1.09 -1 -1 41652 -1 -1 157 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75852 22 19 1905 1720 1 1323 205 18 18 324 mult_36 auto 36.7 MiB 0.36 9770 31613 6051 23433 2129 74.1 MiB 0.54 0.01 13.6417 -596.742 -13.6417 13.6417 1.12 0.00384735 0.00347484 0.231268 0.206522 58 19311 46 7.67456e+06 4.66464e+06 1.07356e+06 3313.45 22.82 1.89384 1.67643 30840 265148 -1 16505 23 7101 14801 1778786 400726 14.4831 14.4831 -807.998 -14.4831 0 0 1.34501e+06 4151.27 0.55 0.65 0.28 -1 -1 0.55 0.232669 0.21196 1210 1124 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 18.51 vpr 74.77 MiB 0.09 11684 -1 -1 12 1.13 -1 -1 40480 -1 -1 163 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76564 22 19 1979 1794 1 1362 211 18 18 324 mult_36 auto 37.2 MiB 0.37 9890 29680 5216 22721 1743 74.8 MiB 0.51 0.01 13.1101 -607.782 -13.1101 13.1101 1.12 0.00406895 0.00367668 0.21755 0.194484 60 17948 30 7.67456e+06 4.73696e+06 1.09776e+06 3388.15 11.35 1.70196 1.52368 31164 271060 -1 16046 19 7159 14934 1563902 347490 13.9734 13.9734 -945.022 -13.9734 0 0 1.37043e+06 4229.72 0.62 0.54 0.28 -1 -1 0.62 0.194605 0.177767 1265 1179 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 17.48 vpr 75.52 MiB 0.09 12176 -1 -1 12 1.20 -1 -1 41060 -1 -1 174 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77328 22 19 2073 1871 1 1415 222 18 18 324 clb mult_36 auto 38.1 MiB 0.38 10116 37798 7687 27724 2387 75.5 MiB 0.62 0.01 13.2252 -636.654 -13.2252 13.2252 1.10 0.00430208 0.00388785 0.264639 0.235289 60 18920 47 7.67456e+06 4.86957e+06 1.09776e+06 3388.15 10.12 1.68965 1.4999 31164 271060 -1 15951 18 7253 15313 1453290 329841 14.1573 14.1573 -922.83 -14.1573 0 0 1.37043e+06 4229.72 0.59 0.51 0.28 -1 -1 0.59 0.192449 0.175296 1322 1232 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 15.26 vpr 76.00 MiB 0.10 12260 -1 -1 12 1.30 -1 -1 41280 -1 -1 180 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77820 22 19 2130 1928 1 1466 228 18 18 324 clb mult_36 auto 38.4 MiB 0.39 10708 38508 7490 28356 2662 76.0 MiB 0.63 0.01 13.3306 -627.781 -13.3306 13.3306 1.14 0.00385828 0.00345686 0.262131 0.232009 60 19445 47 7.67456e+06 4.9419e+06 1.09776e+06 3388.15 7.70 1.52438 1.35291 31164 271060 -1 17108 22 7683 15497 1521602 357830 14.3314 14.3314 -1034.46 -14.3314 0 0 1.37043e+06 4229.72 0.59 0.59 0.28 -1 -1 0.59 0.238263 0.216472 1360 1270 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 16.70 vpr 76.29 MiB 0.10 12340 -1 -1 12 1.36 -1 -1 41408 -1 -1 187 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78120 22 19 2238 2019 1 1561 236 18 18 324 clb mult_36 auto 39.1 MiB 0.40 12377 33770 6411 25220 2139 76.3 MiB 0.59 0.01 13.5221 -628.278 -13.5221 13.5221 1.14 0.00439955 0.00395741 0.241432 0.215436 64 23492 41 7.67456e+06 5.42228e+06 1.16663e+06 3600.72 8.86 1.48223 1.3183 32132 291232 -1 19810 21 8434 17231 2335908 509181 14.4419 14.4419 -936.521 -14.4419 0 0 1.46385e+06 4518.05 0.60 0.73 0.30 -1 -1 0.60 0.229927 0.20862 1431 1323 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 31.79 vpr 76.75 MiB 0.11 12484 -1 -1 12 1.38 -1 -1 41168 -1 -1 195 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78596 22 19 2299 2080 1 1608 244 19 19 361 clb auto 39.6 MiB 0.42 11802 38344 7076 28930 2338 76.8 MiB 0.67 0.01 13.4116 -689.025 -13.4116 13.4116 1.27 0.00507286 0.00462348 0.278492 0.248224 60 22296 38 8.02416e+06 5.51872e+06 1.23460e+06 3419.94 23.38 2.1944 1.93677 34598 305437 -1 19379 24 8801 18308 1953665 470354 13.6443 13.6443 -911.981 -13.6443 0 0 1.54069e+06 4267.84 0.70 0.73 0.31 -1 -1 0.70 0.260837 0.235742 1473 1365 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 27.01 vpr 77.41 MiB 0.11 12736 -1 -1 12 1.52 -1 -1 41436 -1 -1 198 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79272 22 19 2400 2164 1 1689 248 22 22 484 mult_36 auto 40.2 MiB 0.46 12258 38370 7118 28776 2476 77.4 MiB 0.67 0.01 12.8793 -650.835 -12.8793 12.8793 1.86 0.00487565 0.00439706 0.277595 0.245642 58 25550 48 1.25085e+07 5.95089e+06 1.65337e+06 3416.05 16.73 2.12466 1.88148 46570 411141 -1 21347 21 9599 19784 2273240 506124 13.8409 13.8409 -1052.87 -13.8409 0 0 2.07026e+06 4277.39 0.97 0.78 0.41 -1 -1 0.97 0.261001 0.236725 1537 1415 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 78.82 vpr 78.00 MiB 0.11 12920 -1 -1 12 1.55 -1 -1 41612 -1 -1 209 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79868 22 19 2474 2238 1 1711 259 22 22 484 mult_36 auto 40.6 MiB 0.46 13168 42334 8006 31700 2628 78.0 MiB 0.71 0.01 12.9822 -681.383 -12.9822 12.9822 1.90 0.00478391 0.00430389 0.29026 0.257666 56 25794 45 1.25085e+07 6.0835e+06 1.62053e+06 3348.21 68.40 2.96129 2.61637 45606 389969 -1 22385 19 9669 19872 2463370 560510 14.3854 14.3854 -1273.9 -14.3854 0 0 1.98725e+06 4105.89 0.95 0.86 0.40 -1 -1 0.95 0.284297 0.260468 1592 1470 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 19.53 vpr 78.72 MiB 0.11 13208 -1 -1 12 1.70 -1 -1 41884 -1 -1 218 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80608 22 19 2603 2350 1 1810 268 22 22 484 mult_36 auto 41.5 MiB 0.46 13008 46007 9138 34360 2509 78.7 MiB 0.78 0.01 13.1024 -694.824 -13.1024 13.1024 1.90 0.005338 0.0048423 0.314077 0.278714 60 23819 31 1.25085e+07 6.19199e+06 1.69059e+06 3492.95 8.87 1.71242 1.52129 47054 420411 -1 21251 18 9641 19893 2121715 484332 14.2383 14.2383 -1059.29 -14.2383 0 0 2.10969e+06 4358.87 0.99 0.74 0.43 -1 -1 0.99 0.247994 0.225674 1684 1549 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 22.08 vpr 79.36 MiB 0.12 13340 -1 -1 12 1.68 -1 -1 43128 -1 -1 235 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81260 22 19 2694 2441 1 1869 285 22 22 484 mult_36 auto 42.2 MiB 0.49 13665 49946 9984 37132 2830 79.4 MiB 0.85 0.02 13.1854 -738.745 -13.1854 13.1854 1.86 0.00574672 0.00502425 0.335071 0.294545 60 25408 43 1.25085e+07 6.39692e+06 1.69059e+06 3492.95 11.36 1.86154 1.64643 47054 420411 -1 22456 20 9999 21368 1955562 449564 14.2851 14.2851 -1312.37 -14.2851 0 0 2.10969e+06 4358.87 0.98 0.76 0.42 -1 -1 0.98 0.287943 0.262706 1756 1621 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 21.51 vpr 80.02 MiB 0.12 13824 -1 -1 13 1.77 -1 -1 43448 -1 -1 238 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81944 22 19 2787 2517 1 1950 289 22 22 484 mult_36 auto 42.9 MiB 0.50 15107 47084 8719 35813 2552 80.0 MiB 0.80 0.02 13.6988 -760.723 -13.6988 13.6988 1.78 0.00586621 0.00504744 0.320024 0.280613 64 27286 27 1.25085e+07 6.82909e+06 1.79645e+06 3711.66 10.72 1.9795 1.75369 48502 451691 -1 24073 21 9708 20204 2221286 487308 15.0898 15.0898 -1219.79 -15.0898 0 0 2.25323e+06 4655.43 1.05 0.77 0.47 -1 -1 1.05 0.273903 0.247526 1812 1664 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 28.19 vpr 80.68 MiB 0.13 13988 -1 -1 13 1.82 -1 -1 43908 -1 -1 240 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82616 22 19 2834 2564 1 1962 291 22 22 484 mult_36 auto 42.9 MiB 0.53 14145 54275 10883 39991 3401 80.1 MiB 0.92 0.02 13.9 -781.72 -13.9 13.9 1.88 0.00613081 0.00556923 0.370254 0.32763 60 25397 35 1.25085e+07 6.8532e+06 1.69059e+06 3492.95 17.16 2.62735 2.32307 47054 420411 -1 22955 20 10758 22829 2080381 460730 15.102 15.102 -1292.32 -15.102 0 0 2.10969e+06 4358.87 0.94 0.75 0.42 -1 -1 0.94 0.27965 0.251163 1840 1692 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 32.21 vpr 82.92 MiB 0.13 14448 -1 -1 13 1.89 -1 -1 43800 -1 -1 248 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84908 22 19 2941 2654 1 2054 299 22 22 484 mult_36 auto 43.9 MiB 0.56 16261 54245 10728 40554 2963 80.7 MiB 0.94 0.02 13.7605 -766.965 -13.7605 13.7605 1.85 0.00590144 0.00530457 0.366153 0.32163 66 29054 46 1.25085e+07 6.94964e+06 1.84972e+06 3821.73 20.72 2.90835 2.57736 48986 463441 -1 25434 20 10530 21377 2671984 568902 15.0654 15.0654 -1123.63 -15.0654 0 0 2.30827e+06 4769.15 1.06 0.88 0.48 -1 -1 1.06 0.291049 0.263928 1910 1750 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 24.76 vpr 81.32 MiB 0.16 14328 -1 -1 13 2.01 -1 -1 42600 -1 -1 255 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83272 22 19 3011 2724 1 2092 306 22 22 484 mult_36 auto 44.6 MiB 0.53 15494 53866 10408 40513 2945 81.3 MiB 0.88 0.02 13.8216 -775.976 -13.8216 13.8216 1.88 0.00627425 0.00562257 0.339967 0.298428 60 28474 33 1.25085e+07 7.03402e+06 1.69059e+06 3492.95 13.33 2.34932 2.06619 47054 420411 -1 24752 20 11353 23667 2419309 554948 14.4226 14.4226 -1264.95 -14.4226 0 0 2.10969e+06 4358.87 0.96 0.82 0.44 -1 -1 0.96 0.284205 0.256123 1961 1801 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 37.06 vpr 89.76 MiB 0.14 14956 -1 -1 13 2.10 -1 -1 42724 -1 -1 267 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91916 22 19 3132 2828 1 2184 319 24 24 576 mult_36 auto 45.0 MiB 0.57 16778 63481 13802 46873 2806 82.3 MiB 1.03 0.02 14.5428 -956.024 -14.5428 14.5428 2.26 0.00657328 0.00591033 0.394895 0.346756 60 30710 43 1.51154e+07 7.57468e+06 2.00908e+06 3487.99 24.11 3.11681 2.74305 55690 499183 -1 26773 33 11577 23800 2771698 669678 15.1438 15.1438 -1499.19 -15.1438 0 0 2.50809e+06 4354.32 1.16 1.16 0.46 -1 -1 1.16 0.47771 0.428816 2045 1872 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 30.78 vpr 82.09 MiB 0.14 14932 -1 -1 13 2.12 -1 -1 44464 -1 -1 265 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84056 22 19 3159 2855 1 2196 317 24 24 576 mult_36 auto 45.4 MiB 0.57 16513 61877 12396 46195 3286 82.1 MiB 0.98 0.02 13.9418 -876.4 -13.9418 13.9418 2.18 0.00551746 0.00477476 0.366828 0.319516 60 30140 40 1.51154e+07 7.55058e+06 2.00908e+06 3487.99 17.95 2.13418 1.87992 55690 499183 -1 26537 21 11985 24883 2676861 595396 14.3834 14.3834 -1373.9 -14.3834 0 0 2.50809e+06 4354.32 1.19 0.94 0.50 -1 -1 1.19 0.333691 0.301312 2053 1880 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 24.36 vpr 82.82 MiB 0.15 15148 -1 -1 13 2.31 -1 -1 43720 -1 -1 277 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84804 22 19 3284 2963 1 2301 329 24 24 576 mult_36 auto 45.8 MiB 0.62 17109 66159 14431 49024 2704 82.8 MiB 1.14 0.02 14.3024 -943.148 -14.3024 14.3024 2.21 0.00594674 0.0052939 0.43798 0.383412 64 29925 33 1.51154e+07 7.69524e+06 2.13454e+06 3705.80 10.93 2.25777 1.99685 57414 536310 -1 27196 21 11200 23146 2344688 521868 14.9987 14.9987 -1376.91 -14.9987 0 0 2.67880e+06 4650.70 1.24 0.90 0.55 -1 -1 1.24 0.353638 0.31939 2141 1957 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 27.01 vpr 83.34 MiB 0.14 15208 -1 -1 13 2.22 -1 -1 45012 -1 -1 285 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85336 22 19 3343 3022 1 2312 337 24 24 576 mult_36 auto 46.4 MiB 0.59 17675 73001 16428 52531 4042 83.2 MiB 1.23 0.02 14.42 -1000.68 -14.42 14.42 2.18 0.00652359 0.00585277 0.467438 0.40743 64 32300 32 1.51154e+07 7.79168e+06 2.13454e+06 3705.80 13.82 2.28832 2.01699 57414 536310 -1 28230 19 11839 25652 2643955 576660 14.9008 14.9008 -1558.65 -14.9008 0 0 2.67880e+06 4650.70 1.28 0.93 0.51 -1 -1 1.28 0.336858 0.304936 2181 1997 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 25.22 vpr 84.04 MiB 0.19 15432 -1 -1 13 2.47 -1 -1 45180 -1 -1 297 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86056 22 19 3448 3110 1 2410 350 24 24 576 mult_36 auto 47.3 MiB 0.62 18295 62000 11200 47475 3325 84.0 MiB 1.04 0.02 14.6309 -972.595 -14.6309 14.6309 2.26 0.00643186 0.00582868 0.385755 0.340423 64 32292 29 1.51154e+07 8.33234e+06 2.13454e+06 3705.80 11.55 2.17227 1.92615 57414 536310 -1 28960 19 11740 24309 2498665 559268 15.5264 15.5264 -1426.2 -15.5264 0 0 2.67880e+06 4650.70 1.28 0.88 0.55 -1 -1 1.28 0.321223 0.290475 2249 2054 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 40.68 vpr 94.08 MiB 0.16 15692 -1 -1 13 2.52 -1 -1 43736 -1 -1 296 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96336 22 19 3510 3172 1 2428 349 24 24 576 mult_36 auto 47.4 MiB 0.64 18565 67889 13547 51530 2812 84.2 MiB 1.13 0.02 13.5812 -985.246 -13.5812 13.5812 2.22 0.00690385 0.00617091 0.419248 0.367196 68 31600 28 1.51154e+07 8.32028e+06 2.25030e+06 3906.77 26.76 3.69331 3.23542 58566 560801 -1 28841 20 12471 26207 2660568 564997 14.3416 14.3416 -1551.05 -14.3416 0 0 2.80126e+06 4863.30 1.32 0.95 0.57 -1 -1 1.32 0.363381 0.325274 2292 2097 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 37.36 vpr 93.05 MiB 0.16 16060 -1 -1 13 2.53 -1 -1 41968 -1 -1 307 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95288 22 19 3598 3243 1 2500 360 24 24 576 mult_36 auto 47.9 MiB 0.72 20769 77160 16859 56280 4021 84.7 MiB 1.31 0.02 14.7216 -1040.55 -14.7216 14.7216 2.20 0.00659039 0.00591814 0.483298 0.421646 68 34497 29 1.51154e+07 8.45288e+06 2.25030e+06 3906.77 22.98 3.53046 3.12225 58566 560801 -1 31404 18 12072 24712 2572762 561640 15.7642 15.7642 -1508.48 -15.7642 0 0 2.80126e+06 4863.30 1.39 0.92 0.58 -1 -1 1.39 0.335075 0.303615 2343 2138 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 29.75 vpr 85.77 MiB 0.16 16080 -1 -1 13 2.73 -1 -1 46212 -1 -1 317 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87832 22 19 3689 3334 1 2572 370 24 24 576 mult_36 auto 48.9 MiB 0.67 19632 74682 14534 56476 3672 85.8 MiB 1.30 0.02 13.8608 -992.663 -13.8608 13.8608 2.24 0.007055 0.00629882 0.479792 0.420119 64 34315 30 1.51154e+07 8.57344e+06 2.13454e+06 3705.80 15.28 2.88065 2.54869 57414 536310 -1 30814 21 12983 26888 3071917 666393 14.8102 14.8102 -1530.03 -14.8102 0 0 2.67880e+06 4650.70 1.26 1.04 0.57 -1 -1 1.26 0.361499 0.325093 2415 2210 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 30.22 vpr 85.90 MiB 0.17 16276 -1 -1 13 2.90 -1 -1 42220 -1 -1 321 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87960 22 19 3763 3391 1 2638 375 24 24 576 mult_36 auto 48.9 MiB 0.69 20714 84137 18599 61364 4174 85.9 MiB 1.43 0.02 14.1746 -1049.42 -14.1746 14.1746 2.23 0.00725317 0.00642731 0.52725 0.460681 62 38138 48 1.51154e+07 9.01766e+06 2.06880e+06 3591.66 15.56 3.24572 2.85794 56266 511197 -1 31673 22 13571 28115 2645261 587482 14.7832 14.7832 -1524.37 -14.7832 0 0 2.55996e+06 4444.37 1.17 1.05 0.51 -1 -1 1.17 0.425748 0.38218 2452 2234 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 29.60 vpr 86.98 MiB 0.17 16456 -1 -1 13 2.93 -1 -1 43952 -1 -1 323 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89072 22 19 3845 3473 1 2666 377 24 24 576 mult_36 auto 50.0 MiB 0.70 19822 76593 15506 57388 3699 87.0 MiB 1.33 0.02 14.4618 -1087.32 -14.4618 14.4618 2.26 0.0071996 0.00643097 0.483962 0.424505 64 35725 30 1.51154e+07 9.04176e+06 2.13454e+06 3705.80 14.63 2.54337 2.24435 57414 536310 -1 31639 20 13171 27472 3119997 686434 14.663 14.663 -1657.34 -14.663 0 0 2.67880e+06 4650.70 1.29 1.12 0.55 -1 -1 1.29 0.418446 0.381024 2515 2297 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 54.52 vpr 88.43 MiB 0.19 17128 -1 -1 13 3.08 -1 -1 46252 -1 -1 337 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90552 22 19 3983 3594 1 2790 391 24 24 576 clb mult_36 auto 50.8 MiB 0.74 21014 86131 18620 63573 3938 87.8 MiB 1.51 0.02 14.2484 -1147.18 -14.2484 14.2484 2.27 0.00805113 0.00724493 0.536939 0.470135 66 36791 26 1.51154e+07 9.21054e+06 2.19797e+06 3815.93 38.89 4.95193 4.3785 57990 550195 -1 33013 20 14060 30315 2888112 647240 14.7736 14.7736 -1889.22 -14.7736 0 0 2.74415e+06 4764.15 1.36 1.17 0.57 -1 -1 1.36 0.48167 0.44009 2616 2386 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 46.63 vpr 98.22 MiB 0.18 17112 -1 -1 13 3.08 -1 -1 42496 -1 -1 341 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 100576 22 19 4025 3636 1 2807 395 24 24 576 clb mult_36 auto 51.1 MiB 0.74 24043 88723 19375 64615 4733 88.1 MiB 1.44 0.02 14.4761 -1168.06 -14.4761 14.4761 2.21 0.00722455 0.00638976 0.505635 0.436217 70 39628 29 1.51154e+07 9.25876e+06 2.31032e+06 4010.97 31.21 4.3355 3.8113 59714 584380 -1 35888 18 14340 29860 3738958 787462 15.455 15.455 -1803.63 -15.455 0 0 2.90211e+06 5038.38 1.33 1.22 0.62 -1 -1 1.33 0.38926 0.352691 2639 2409 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 34.18 vpr 92.25 MiB 0.19 17432 -1 -1 13 3.23 -1 -1 47140 -1 -1 355 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 94464 22 19 4164 3758 1 2908 410 25 25 625 clb auto 52.0 MiB 0.79 22217 85642 17658 63703 4281 88.8 MiB 1.46 0.02 14.9818 -1210.71 -14.9818 14.9818 2.51 0.0086223 0.00784131 0.5204 0.454559 64 38919 45 1.55855e+07 9.82352e+06 2.32897e+06 3726.35 17.92 3.38187 2.96235 62084 585869 -1 34778 21 16622 35475 3477117 762776 15.4208 15.4208 -1975.61 -15.4208 0 0 2.92220e+06 4675.52 1.39 1.21 0.60 -1 -1 1.39 0.432815 0.388762 2741 2498 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 33.19 vpr 92.50 MiB 0.19 17748 -1 -1 13 3.31 -1 -1 43136 -1 -1 356 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 94720 22 19 4190 3784 1 2926 411 25 25 625 clb auto 52.1 MiB 0.80 22950 93558 20490 68815 4253 88.9 MiB 1.74 0.03 14.3808 -1150.84 -14.3808 14.3808 2.48 0.00936934 0.0084816 0.657067 0.574827 66 39379 43 1.55855e+07 9.83558e+06 2.39749e+06 3835.99 16.32 3.76048 3.35612 62708 601000 -1 35218 19 14229 29917 3044881 660126 15.3129 15.3129 -1606.74 -15.3129 0 0 2.99279e+06 4788.46 1.47 1.19 0.62 -1 -1 1.47 0.479691 0.438225 2748 2505 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 35.40 vpr 92.02 MiB 0.20 17820 -1 -1 13 3.37 -1 -1 43512 -1 -1 366 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 94224 22 19 4305 3882 1 2980 421 25 25 625 clb auto 52.9 MiB 0.83 23115 99772 22036 72208 5528 89.8 MiB 1.67 0.02 14.6534 -1199.26 -14.6534 14.6534 2.39 0.008379 0.00749764 0.606662 0.529383 66 41138 44 1.55855e+07 9.95613e+06 2.39749e+06 3835.99 18.62 3.0394 2.66499 62708 601000 -1 35024 22 14620 31027 3234931 704588 15.014 15.014 -1822.37 -15.014 0 0 2.99279e+06 4788.46 1.46 1.17 0.62 -1 -1 1.46 0.443718 0.399687 2826 2571 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 30.51 vpr 93.60 MiB 0.20 17828 -1 -1 13 3.50 -1 -1 47056 -1 -1 370 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95844 22 19 4363 3940 1 3039 425 25 25 625 clb auto 53.4 MiB 0.80 23622 96245 20766 70233 5246 90.2 MiB 1.63 0.03 14.5943 -1245.11 -14.5943 14.5943 2.45 0.00907827 0.00819027 0.591239 0.513392 70 39481 30 1.55855e+07 1.00044e+07 2.52006e+06 4032.10 13.49 3.01844 2.65756 64580 638411 -1 37067 19 15345 31694 3197237 696949 14.8938 14.8938 -1960.29 -14.8938 0 0 3.16512e+06 5064.19 1.56 1.19 0.67 -1 -1 1.56 0.46356 0.421212 2865 2610 -1 -1 -1 -1 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 10.76 vpr 73.89 MiB 0.06 10676 -1 -1 1 0.26 -1 -1 39764 -1 -1 125 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75664 22 19 1974 1653 1 1039 170 16 16 256 mult_36 auto 36.2 MiB 0.41 6519 25550 4932 18152 2466 73.9 MiB 0.42 0.01 3.76036 -1103.09 -3.76036 3.76036 0.81 0.00265584 0.00236805 0.163696 0.145008 46 11634 21 6.32612e+06 3.15375e+06 684529. 2673.94 6.00 0.960721 0.845071 22592 160355 -1 9321 16 3271 3961 556160 147556 4.24116 4.24116 -1214.27 -4.24116 0 0 838722. 3276.26 0.35 0.25 0.17 -1 -1 0.35 0.126006 0.114223 955 649 247 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 9.19 vpr 74.66 MiB 0.07 11148 -1 -1 1 0.27 -1 -1 41288 -1 -1 134 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76448 22 19 2144 1789 1 1138 180 16 16 256 clb mult_36 auto 37.4 MiB 0.45 7347 29136 5774 20319 3043 74.7 MiB 0.47 0.01 4.00076 -1223.4 -4.00076 4.00076 0.83 0.00313564 0.00279766 0.184042 0.162998 44 14311 47 6.32612e+06 3.66277e+06 649498. 2537.10 4.27 0.932805 0.82112 22336 155612 -1 10218 12 3597 4356 665929 174089 4.36136 4.36136 -1418.79 -4.36136 0 0 820238. 3204.05 0.35 0.26 0.15 -1 -1 0.35 0.113257 0.103568 1035 704 266 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 11.28 vpr 75.26 MiB 0.07 11288 -1 -1 1 0.29 -1 -1 40628 -1 -1 139 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77064 22 19 2218 1846 1 1177 185 16 16 256 clb mult_36 auto 37.9 MiB 0.46 7096 25959 4259 18607 3093 75.3 MiB 0.44 0.01 3.76036 -1240.57 -3.76036 3.76036 0.83 0.00326399 0.00291242 0.17517 0.156135 46 13238 28 6.32612e+06 3.72556e+06 684529. 2673.94 6.33 1.16145 1.02209 22592 160355 -1 10274 15 3509 4265 628636 157203 4.24116 4.24116 -1394.72 -4.24116 0 0 838722. 3276.26 0.32 0.25 0.16 -1 -1 0.32 0.125571 0.113725 1073 723 285 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 11.06 vpr 76.90 MiB 0.08 12096 -1 -1 1 0.32 -1 -1 40616 -1 -1 159 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78748 22 19 2536 2130 1 1298 205 17 17 289 clb auto 39.8 MiB 0.53 8282 37049 7797 25207 4045 76.9 MiB 0.62 0.01 4.12096 -1391.9 -4.12096 4.12096 0.96 0.00363636 0.00324519 0.248013 0.220601 48 14318 34 6.64007e+06 3.97672e+06 816265. 2824.45 5.30 1.26249 1.12104 25714 189529 -1 11775 15 4206 5310 714294 182295 4.48156 4.48156 -1602.92 -4.48156 0 0 986792. 3414.50 0.41 0.29 0.19 -1 -1 0.41 0.142638 0.12948 1228 851 304 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 13.72 vpr 77.44 MiB 0.08 11960 -1 -1 1 0.34 -1 -1 40504 -1 -1 165 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79300 22 19 2610 2187 1 1336 211 17 17 289 clb auto 40.2 MiB 0.50 8846 39085 8016 26563 4506 77.4 MiB 0.65 0.01 3.88056 -1433.98 -3.88056 3.88056 0.96 0.00374165 0.00331529 0.250483 0.222087 50 14061 49 6.64007e+06 4.05207e+06 851065. 2944.86 7.81 1.53572 1.35802 26002 196109 -1 11873 13 4111 5057 761270 192339 4.48156 4.48156 -1662.65 -4.48156 0 0 1.01866e+06 3524.77 0.41 0.28 0.19 -1 -1 0.41 0.135548 0.123202 1266 870 323 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 14.99 vpr 78.07 MiB 0.09 12400 -1 -1 1 0.35 -1 -1 40576 -1 -1 174 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79948 22 19 2778 2321 1 1434 221 18 18 324 clb auto 40.8 MiB 0.57 8863 42909 9790 29232 3887 78.1 MiB 0.68 0.01 4.00076 -1508.9 -4.00076 4.00076 1.08 0.00395781 0.00345488 0.261227 0.229576 46 16084 49 7.77114e+06 4.56109e+06 895831. 2764.91 8.63 1.58258 1.39205 29024 211752 -1 12345 13 4224 5323 796192 197063 4.48156 4.48156 -1730.63 -4.48156 0 0 1.09776e+06 3388.15 0.47 0.31 0.20 -1 -1 0.47 0.147549 0.13434 1344 925 342 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 14.57 vpr 78.88 MiB 0.09 12420 -1 -1 1 0.38 -1 -1 40744 -1 -1 178 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80768 22 19 2852 2378 1 1479 225 18 18 324 clb auto 41.7 MiB 0.61 10069 41949 8731 30267 2951 78.9 MiB 0.74 0.01 4.12096 -1553.01 -4.12096 4.12096 1.13 0.00441669 0.00397487 0.284905 0.254464 46 17423 36 7.77114e+06 4.61132e+06 895831. 2764.91 7.96 1.34996 1.1877 29024 211752 -1 13619 14 4470 5709 757059 190598 4.36136 4.36136 -1809.04 -4.36136 0 0 1.09776e+06 3388.15 0.46 0.32 0.20 -1 -1 0.46 0.158236 0.144179 1382 944 361 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 11.20 vpr 79.93 MiB 0.10 13012 -1 -1 1 0.40 -1 -1 41616 -1 -1 190 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81852 22 19 3057 2549 1 1586 237 18 18 324 clb auto 42.5 MiB 0.64 10084 42751 8794 30420 3537 79.9 MiB 0.71 0.01 4.00076 -1662.98 -4.00076 4.00076 1.13 0.00401197 0.00355641 0.264485 0.233463 48 17199 25 7.77114e+06 4.76202e+06 935225. 2886.50 4.31 1.07682 0.947312 29348 218440 -1 14442 14 5179 6438 1151169 281664 4.36136 4.36136 -1869.36 -4.36136 0 0 1.13028e+06 3488.51 0.50 0.42 0.22 -1 -1 0.50 0.175787 0.159199 1479 1017 380 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 14.81 vpr 80.19 MiB 0.10 13316 -1 -1 1 0.42 -1 -1 40848 -1 -1 196 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82116 22 19 3131 2606 1 1626 243 19 19 361 clb auto 42.9 MiB 0.63 10752 44965 9363 31759 3843 80.2 MiB 0.77 0.01 3.76036 -1731.93 -3.76036 3.76036 1.28 0.00434471 0.0038365 0.282946 0.250062 48 18301 38 8.13532e+06 4.83737e+06 1.05176e+06 2913.46 7.44 1.47911 1.29998 32602 246183 -1 15172 18 5359 6675 1163755 270686 4.24116 4.24116 -2061.24 -4.24116 0 0 1.27108e+06 3521.00 0.55 0.45 0.24 -1 -1 0.55 0.204576 0.185119 1517 1036 399 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 19.03 vpr 81.63 MiB 0.10 13360 -1 -1 1 0.45 -1 -1 42784 -1 -1 206 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83592 22 19 3301 2742 1 1720 254 19 19 361 clb auto 44.3 MiB 0.68 12213 54926 11995 38659 4272 81.6 MiB 1.04 0.02 4.00076 -1867.25 -4.00076 4.00076 1.31 0.00583055 0.00531384 0.404577 0.363293 54 19161 20 8.13532e+06 5.35895e+06 1.15452e+06 3198.10 11.13 1.99515 1.78313 34042 276675 -1 16269 16 5064 6310 980148 232881 4.36136 4.36136 -2151.56 -4.36136 0 0 1.41983e+06 3933.05 0.62 0.40 0.27 -1 -1 0.62 0.193475 0.175283 1597 1091 418 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 24.67 vpr 81.96 MiB 0.11 13768 -1 -1 1 0.45 -1 -1 42332 -1 -1 211 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83928 22 19 3375 2799 1 1765 259 19 19 361 clb auto 44.5 MiB 0.65 11421 48109 9487 34530 4092 82.0 MiB 0.84 0.01 3.88056 -1889.25 -3.88056 3.88056 1.30 0.00475317 0.00423388 0.301069 0.265732 50 19655 29 8.13532e+06 5.42174e+06 1.09718e+06 3039.29 17.12 2.14084 1.87344 32962 254619 -1 15908 15 5529 7179 1015726 242988 4.36136 4.36136 -2233.05 -4.36136 0 0 1.31179e+06 3633.76 0.52 0.39 0.25 -1 -1 0.52 0.189496 0.171449 1635 1110 437 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 15.98 vpr 82.88 MiB 0.12 13988 -1 -1 1 0.50 -1 -1 42344 -1 -1 225 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84868 22 19 3615 3005 1 1878 273 20 20 400 clb auto 45.8 MiB 0.75 13473 57798 10978 41881 4939 82.9 MiB 1.00 0.02 3.88056 -2073.24 -3.88056 3.88056 1.47 0.00506339 0.00445389 0.358138 0.315819 50 22512 28 1.10386e+07 5.59755e+06 1.21483e+06 3037.08 7.38 1.68208 1.47851 36870 282114 -1 18639 17 6171 8096 1390780 326733 4.36136 4.36136 -2570.46 -4.36136 0 0 1.45344e+06 3633.59 0.63 0.52 0.28 -1 -1 0.63 0.226682 0.204748 1749 1201 456 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 23.23 vpr 83.41 MiB 0.11 14136 -1 -1 1 0.52 -1 -1 42480 -1 -1 230 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85412 22 19 3689 3062 1 1918 278 20 20 400 clb auto 46.7 MiB 0.74 13453 52884 10185 38264 4435 83.4 MiB 1.01 0.02 3.88056 -2087.24 -3.88056 3.88056 1.49 0.00570159 0.0048843 0.373923 0.331842 50 22524 34 1.10386e+07 5.66034e+06 1.21483e+06 3037.08 14.58 2.49997 2.19209 36870 282114 -1 18273 17 6143 8126 1230658 293473 4.36136 4.36136 -2395.89 -4.36136 0 0 1.45344e+06 3633.59 0.65 0.50 0.28 -1 -1 0.65 0.230317 0.208158 1787 1220 475 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 24.30 vpr 84.84 MiB 0.12 14736 -1 -1 1 0.53 -1 -1 42824 -1 -1 242 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86872 22 19 3871 3210 1 2023 291 21 21 441 clb auto 47.9 MiB 0.71 13688 68735 15137 47424 6174 84.8 MiB 1.22 0.02 4.00076 -2234.35 -4.00076 4.00076 1.64 0.0057096 0.00509249 0.427783 0.378995 52 23030 26 1.14404e+07 6.20704e+06 1.38344e+06 3137.06 14.95 2.51448 2.21058 41366 331634 -1 18736 12 6017 7389 1155254 268892 4.48156 4.48156 -2599.52 -4.48156 0 0 1.70223e+06 3859.94 0.77 0.44 0.33 -1 -1 0.77 0.200781 0.183233 1879 1275 494 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 22.05 vpr 84.77 MiB 0.12 14572 -1 -1 1 0.56 -1 -1 42476 -1 -1 247 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86804 22 19 3945 3267 1 2070 296 21 21 441 clb auto 47.9 MiB 0.75 14085 62414 13575 44184 4655 84.8 MiB 1.10 0.02 3.88056 -2230.24 -3.88056 3.88056 1.62 0.00541076 0.0048059 0.378104 0.333245 52 24323 31 1.14404e+07 6.26983e+06 1.38344e+06 3137.06 12.61 2.1417 1.87097 41366 331634 -1 18889 18 6383 8291 1218627 292334 4.24116 4.24116 -2572.6 -4.24116 0 0 1.70223e+06 3859.94 0.78 0.52 0.33 -1 -1 0.78 0.257636 0.233175 1917 1294 513 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 23.52 vpr 86.27 MiB 0.13 15096 -1 -1 1 0.59 -1 -1 42716 -1 -1 260 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88344 22 19 4159 3447 1 2186 310 22 22 484 mult_36 auto 49.4 MiB 0.81 15049 75766 16423 53040 6303 86.3 MiB 1.32 0.02 3.88056 -2294.95 -3.88056 3.88056 1.85 0.0061685 0.00551826 0.474153 0.420515 48 26495 45 1.26594e+07 6.82908e+06 1.44011e+06 2975.42 13.20 2.19973 1.92875 44390 338934 -1 21162 13 7101 9222 1618261 367829 4.36136 4.36136 -2893.48 -4.36136 0 0 1.74100e+06 3597.11 0.81 0.56 0.34 -1 -1 0.81 0.226876 0.206635 2023 1367 532 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 20.51 vpr 86.77 MiB 0.13 15192 -1 -1 1 0.62 -1 -1 44248 -1 -1 265 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88856 22 19 4233 3504 1 2225 315 22 22 484 mult_36 auto 49.8 MiB 0.86 14874 77427 16334 55482 5611 86.8 MiB 1.34 0.02 3.88056 -2335.91 -3.88056 3.88056 1.84 0.00574101 0.00508484 0.470286 0.415611 48 25686 33 1.26594e+07 6.89187e+06 1.44011e+06 2975.42 10.04 2.0548 1.79619 44390 338934 -1 21514 17 7275 8816 1481169 344883 4.36136 4.36136 -2824.54 -4.36136 0 0 1.74100e+06 3597.11 0.79 0.58 0.34 -1 -1 0.79 0.268662 0.243132 2061 1386 551 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 42.78 vpr 87.56 MiB 0.12 15516 -1 -1 1 0.62 -1 -1 43596 -1 -1 276 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89664 22 19 4410 3647 1 2335 326 22 22 484 clb mult_36 auto 50.8 MiB 0.81 17005 77675 16210 54413 7052 87.6 MiB 1.32 0.02 3.76036 -2430.81 -3.76036 3.76036 1.79 0.00605074 0.00538178 0.462161 0.408441 50 28849 36 1.26594e+07 7.03001e+06 1.50222e+06 3103.76 32.54 3.18879 2.78226 44874 350400 -1 23327 17 7683 9461 1828402 412768 4.48156 4.48156 -2923.58 -4.48156 0 0 1.79645e+06 3711.66 0.82 0.65 0.32 -1 -1 0.82 0.278768 0.250646 2148 1441 570 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 30.12 vpr 88.41 MiB 0.14 15812 -1 -1 1 0.64 -1 -1 44772 -1 -1 280 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90528 22 19 4484 3704 1 2374 330 22 22 484 clb mult_36 auto 51.7 MiB 0.87 17055 78921 17021 55994 5906 88.4 MiB 1.33 0.02 4.00076 -2536.62 -4.00076 4.00076 1.79 0.00648533 0.00557464 0.451792 0.39157 54 28718 37 1.26594e+07 7.08024e+06 1.58090e+06 3266.32 19.44 3.03338 2.65359 46322 380746 -1 23100 19 7423 8883 1450821 323232 4.48156 4.48156 -3013.7 -4.48156 0 0 1.94386e+06 4016.24 0.85 0.59 0.39 -1 -1 0.85 0.290736 0.261199 2186 1460 589 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 25.17 vpr 89.61 MiB 0.16 16976 -1 -1 1 0.71 -1 -1 45160 -1 -1 304 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91756 22 19 4843 4029 1 2501 355 23 23 529 clb auto 52.9 MiB 0.97 18233 92043 20336 64889 6818 89.6 MiB 1.53 0.02 4.00076 -2768.11 -4.00076 4.00076 2.01 0.00645187 0.00565551 0.508039 0.442425 54 30731 42 1.31115e+07 7.77763e+06 1.73850e+06 3286.39 13.40 2.43845 2.12159 50466 419205 -1 24623 17 7677 9440 1672495 376494 4.48156 4.48156 -3237.62 -4.48156 0 0 2.13727e+06 4040.20 0.97 0.65 0.41 -1 -1 0.97 0.302204 0.272562 2364 1606 608 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 23.49 vpr 90.66 MiB 0.16 17144 -1 -1 1 0.73 -1 -1 44816 -1 -1 309 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 92840 22 19 4917 4086 1 2542 360 23 23 529 clb auto 53.8 MiB 0.92 18059 87400 18975 61999 6426 90.7 MiB 1.51 0.02 4.12096 -2789.42 -4.12096 4.12096 2.03 0.00686882 0.00606478 0.503257 0.443001 50 29631 27 1.31115e+07 7.84042e+06 1.65241e+06 3123.66 11.79 2.28972 2.00623 48882 385791 -1 24694 17 8048 10065 1539170 354045 4.36136 4.36136 -3223.09 -4.36136 0 0 1.97533e+06 3734.07 0.93 0.64 0.37 -1 -1 0.93 0.309018 0.277979 2402 1625 627 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 24.68 vpr 91.52 MiB 0.17 17312 -1 -1 1 0.75 -1 -1 45496 -1 -1 320 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93720 22 19 5093 4228 1 2643 371 23 23 529 clb auto 54.7 MiB 1.03 19605 93611 19695 67066 6850 91.5 MiB 1.57 0.02 4.00076 -2996.44 -4.00076 4.00076 2.05 0.00664505 0.00586623 0.521079 0.456271 54 33345 38 1.31115e+07 7.97856e+06 1.73850e+06 3286.39 12.53 2.62045 2.29607 50466 419205 -1 26278 13 8329 10293 1749204 391780 4.48156 4.48156 -3495.28 -4.48156 0 0 2.13727e+06 4040.20 1.00 0.65 0.41 -1 -1 1.00 0.297891 0.271483 2488 1680 646 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 23.80 vpr 91.57 MiB 0.17 17268 -1 -1 1 0.80 -1 -1 45152 -1 -1 324 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93768 22 19 5167 4285 1 2691 375 23 23 529 clb auto 55.1 MiB 1.00 18807 98998 21686 70725 6587 91.6 MiB 1.72 0.02 4.12096 -2950.06 -4.12096 4.12096 2.08 0.00704993 0.00620548 0.56298 0.493424 52 32087 47 1.31115e+07 8.02879e+06 1.69338e+06 3201.10 11.64 2.75939 2.41695 49938 407647 -1 25508 13 8048 10614 1673874 393359 4.60176 4.60176 -3410.38 -4.60176 0 0 2.08190e+06 3935.53 0.93 0.58 0.39 -1 -1 0.93 0.255865 0.231092 2526 1699 665 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 20.41 vpr 92.83 MiB 0.17 17748 -1 -1 1 0.83 -1 -1 44720 -1 -1 337 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95060 22 19 5380 4464 1 2808 389 24 24 576 clb mult_36 auto 56.3 MiB 1.08 19120 98300 20399 70009 7892 92.8 MiB 1.73 0.02 4.12096 -3063.91 -4.12096 4.12096 2.22 0.00716094 0.00633785 0.572745 0.50201 48 30920 37 1.52924e+07 8.58805e+06 1.71014e+06 2969.00 7.62 2.18327 1.91669 52498 402441 -1 26913 15 8911 11596 1743479 419232 4.48156 4.48156 -3550.49 -4.48156 0 0 2.06880e+06 3591.66 0.99 0.69 0.40 -1 -1 0.99 0.322126 0.291042 2631 1772 684 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 48.95 vpr 93.00 MiB 0.17 17992 -1 -1 1 0.85 -1 -1 44576 -1 -1 343 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95228 22 19 5454 4521 1 2849 395 24 24 576 clb mult_36 auto 56.4 MiB 1.04 20227 101755 21854 71841 8060 93.0 MiB 1.81 0.02 4.12096 -3128.18 -4.12096 4.12096 2.25 0.00745483 0.00655255 0.579595 0.508137 50 31809 24 1.52924e+07 8.66339e+06 1.78400e+06 3097.22 35.75 3.55093 3.08641 53074 415989 -1 27250 14 8588 10858 1665446 392426 4.60176 4.60176 -3568.12 -4.60176 0 0 2.13454e+06 3705.80 0.93 0.65 0.41 -1 -1 0.93 0.316605 0.287016 2669 1791 703 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 30.97 vpr 94.38 MiB 0.18 18356 -1 -1 1 0.88 -1 -1 44360 -1 -1 353 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96644 22 19 5629 4662 1 2951 405 25 25 625 clb auto 57.7 MiB 1.15 21491 121662 29355 83177 9130 94.4 MiB 2.06 0.03 4.00076 -3324.63 -4.00076 4.00076 2.22 0.00788614 0.00699172 0.659014 0.575535 50 37678 48 1.57822e+07 8.78897e+06 1.94653e+06 3114.45 17.02 3.0506 2.66121 57408 454416 -1 29468 17 9716 12111 2145635 494491 4.36136 4.36136 -3806.85 -4.36136 0 0 2.32897e+06 3726.35 1.09 0.82 0.44 -1 -1 1.09 0.373025 0.33714 2754 1846 722 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 28.64 vpr 94.64 MiB 0.18 18668 -1 -1 1 0.91 -1 -1 46532 -1 -1 358 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96912 22 19 5703 4719 1 2994 410 25 25 625 clb auto 58.1 MiB 1.17 22341 111516 25385 78104 8027 94.6 MiB 2.04 0.03 4.24116 -3348.68 -4.24116 4.24116 2.46 0.00894412 0.00803155 0.668033 0.590603 54 34365 23 1.57822e+07 8.85176e+06 2.04878e+06 3278.05 14.38 3.24298 2.86682 59280 493784 -1 28826 15 8579 11416 1553876 364967 4.60176 4.60176 -4018.14 -4.60176 0 0 2.52006e+06 4032.10 1.21 0.73 0.49 -1 -1 1.21 0.381294 0.347451 2792 1865 741 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 28.28 vpr 95.88 MiB 0.19 19180 -1 -1 1 0.98 -1 -1 44960 -1 -1 374 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 98176 22 19 5950 4932 1 3111 427 25 25 625 clb auto 59.2 MiB 1.30 23375 125773 30238 87123 8412 95.9 MiB 2.19 0.03 4.12096 -3483.77 -4.12096 4.12096 2.46 0.00812444 0.00720082 0.69735 0.608704 54 36976 37 1.57822e+07 9.44869e+06 2.04878e+06 3278.05 13.24 3.03873 2.6498 59280 493784 -1 30755 16 9686 12381 1815491 429681 4.48156 4.48156 -4038.4 -4.48156 0 0 2.52006e+06 4032.10 1.18 0.77 0.49 -1 -1 1.18 0.373679 0.337144 2913 1956 760 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 31.92 vpr 96.70 MiB 0.19 19048 -1 -1 1 0.97 -1 -1 47056 -1 -1 377 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 99020 22 19 6024 4989 1 3151 430 25 25 625 clb auto 60.1 MiB 1.27 23102 130190 30059 88590 11541 96.7 MiB 2.25 0.03 4.12096 -3514.96 -4.12096 4.12096 2.45 0.00844391 0.00749272 0.723681 0.632742 54 37210 39 1.57822e+07 9.48637e+06 2.04878e+06 3278.05 16.86 3.27879 2.86776 59280 493784 -1 30138 14 9223 10892 1680910 390279 4.48156 4.48156 -4042.88 -4.48156 0 0 2.52006e+06 4032.10 1.19 0.72 0.49 -1 -1 1.19 0.360712 0.326628 2951 1975 779 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 35.54 vpr 101.04 MiB 0.21 19356 -1 -1 1 1.05 -1 -1 45840 -1 -1 389 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 103460 22 19 6198 5129 1 3252 442 25 25 625 clb auto 60.9 MiB 1.25 24301 138448 32917 95669 9862 97.5 MiB 2.39 0.03 4.00076 -3614.89 -4.00076 4.00076 2.42 0.00814978 0.00713316 0.744042 0.647848 54 38732 25 1.57822e+07 9.63706e+06 2.04878e+06 3278.05 20.36 3.51612 3.09146 59280 493784 -1 31753 15 9662 12847 1899881 437495 4.48156 4.48156 -4248.29 -4.48156 0 0 2.52006e+06 4032.10 1.16 0.76 0.49 -1 -1 1.16 0.360397 0.324409 3035 2030 798 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 42.81 vpr 105.49 MiB 0.20 19588 -1 -1 1 1.08 -1 -1 47356 -1 -1 394 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 108020 22 19 6272 5186 1 3297 447 26 26 676 clb auto 61.3 MiB 1.34 24035 137087 33585 94368 9134 97.8 MiB 2.66 0.03 4.00076 -3664.71 -4.00076 4.00076 2.82 0.0102237 0.00872232 0.872182 0.752683 54 39371 26 1.91291e+07 9.69985e+06 2.26288e+06 3347.46 26.32 4.21071 3.71095 65792 548382 -1 32403 15 10251 12894 2166517 483458 4.48156 4.48156 -4257.73 -4.48156 0 0 2.78165e+06 4114.86 1.35 0.79 0.53 -1 -1 1.35 0.358014 0.323102 3073 2049 817 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 34.84 vpr 99.14 MiB 0.21 20068 -1 -1 1 1.13 -1 -1 47712 -1 -1 407 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 101516 22 19 6485 5365 1 3415 461 26 26 676 clb auto 62.8 MiB 1.19 24137 146421 35942 100318 10161 99.1 MiB 2.62 0.03 3.88056 -3774 -3.88056 3.88056 2.80 0.00962574 0.00860969 0.82929 0.727499 54 39699 28 1.91291e+07 1.02591e+07 2.26288e+06 3347.46 18.43 3.78768 3.31906 65792 548382 -1 32322 17 10208 13123 1978130 469314 4.36136 4.36136 -4478.6 -4.36136 0 0 2.78165e+06 4114.86 1.33 0.81 0.54 -1 -1 1.33 0.397818 0.357002 3178 2122 836 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 42.28 vpr 108.13 MiB 0.21 20048 -1 -1 1 1.16 -1 -1 47580 -1 -1 412 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110724 22 19 6559 5422 1 3449 466 26 26 676 clb auto 63.1 MiB 1.27 25720 161200 39946 110298 10956 99.5 MiB 2.90 0.03 4.12096 -3827.31 -4.12096 4.12096 2.82 0.00870284 0.00754995 0.891994 0.787836 58 39107 32 1.91291e+07 1.03219e+07 2.36678e+06 3501.15 25.10 4.72075 4.14969 67816 593426 -1 33726 14 9788 12308 1948819 437780 4.60176 4.60176 -4539.69 -4.60176 0 0 2.96266e+06 4382.64 1.47 0.83 0.59 -1 -1 1.47 0.412727 0.376897 3216 2141 855 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 38.38 vpr 102.53 MiB 0.22 20404 -1 -1 1 1.19 -1 -1 48032 -1 -1 422 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 104992 22 19 6735 5564 1 3561 476 26 26 676 clb auto 64.7 MiB 1.30 25229 147179 34695 102736 9748 101.4 MiB 2.73 0.03 4.00076 -3914.51 -4.00076 4.00076 2.83 0.00924959 0.00821812 0.822731 0.724534 54 41123 38 1.91291e+07 1.04475e+07 2.26288e+06 3347.46 21.23 4.04156 3.53865 65792 548382 -1 33730 20 10560 13793 2179396 514213 4.48156 4.48156 -4512.81 -4.48156 0 0 2.78165e+06 4114.86 1.37 1.00 0.54 -1 -1 1.37 0.516661 0.465574 3302 2196 874 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 38.31 vpr 101.07 MiB 0.22 20880 -1 -1 1 1.20 -1 -1 47636 -1 -1 428 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 103500 22 19 6809 5621 1 3598 482 26 26 676 clb auto 65.5 MiB 1.26 27968 157269 40086 106308 10875 101.1 MiB 2.77 0.03 4.24116 -3984.16 -4.24116 4.24116 2.70 0.00937627 0.00834075 0.824567 0.721842 54 44104 36 1.91291e+07 1.05228e+07 2.26288e+06 3347.46 21.71 4.01553 3.50802 65792 548382 -1 36483 13 10631 13740 2296447 519676 4.84216 4.84216 -4717.73 -4.84216 0 0 2.78165e+06 4114.86 1.33 0.85 0.51 -1 -1 1.33 0.388528 0.352169 3340 2215 893 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 39.69 vpr 105.66 MiB 0.23 21432 -1 -1 1 1.23 -1 -1 48404 -1 -1 444 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 108200 22 19 7094 5872 1 3718 499 27 27 729 clb auto 66.9 MiB 1.40 28606 160717 39048 111953 9716 102.9 MiB 2.94 0.04 4.24116 -4233.22 -4.24116 4.24116 2.93 0.0110658 0.00941763 0.895977 0.768681 54 45885 48 1.9669e+07 1.11198e+07 2.44988e+06 3360.60 21.74 4.3673 3.79297 70678 594165 -1 38069 14 11353 14198 2180930 492139 4.60176 4.60176 -4934.7 -4.60176 0 0 3.01106e+06 4130.40 1.40 0.89 0.58 -1 -1 1.40 0.428021 0.387906 3481 2324 912 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 48.09 vpr 105.89 MiB 0.23 21588 -1 -1 1 1.28 -1 -1 48004 -1 -1 449 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 108436 22 19 7168 5929 1 3755 504 27 27 729 clb auto 67.0 MiB 1.47 29567 170929 41661 118530 10738 103.2 MiB 3.00 0.03 4.24116 -4188.75 -4.24116 4.24116 2.92 0.00944817 0.00822353 0.895163 0.779084 56 46098 47 1.9669e+07 1.11825e+07 2.51142e+06 3445.02 29.70 3.9769 3.45252 71406 610069 -1 39488 14 11831 14658 2560966 583161 4.60176 4.60176 -4912.79 -4.60176 0 0 3.07846e+06 4222.85 1.49 0.98 0.60 -1 -1 1.49 0.431118 0.389935 3519 2343 931 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 49.75 vpr 117.46 MiB 0.23 21696 -1 -1 1 1.31 -1 -1 48640 -1 -1 460 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 120284 22 19 7344 6071 1 3863 515 27 27 729 clb auto 68.3 MiB 1.48 30103 165555 40629 114605 10321 104.2 MiB 3.07 0.03 4.12096 -4411.71 -4.12096 4.12096 3.00 0.00894235 0.00769672 0.923152 0.812806 60 44856 49 1.9669e+07 1.13207e+07 2.62021e+06 3594.25 31.00 5.70788 5.00767 73590 657565 -1 38520 13 10723 13671 2141446 476103 4.72196 4.72196 -5015.9 -4.72196 0 0 3.26774e+06 4482.49 1.65 0.86 0.66 -1 -1 1.65 0.410196 0.371195 3605 2398 950 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 46.02 vpr 107.84 MiB 0.24 22108 -1 -1 1 1.32 -1 -1 48336 -1 -1 465 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110424 22 19 7418 6128 1 3909 520 27 27 729 clb auto 68.5 MiB 1.51 31492 171900 41546 119773 10581 104.3 MiB 3.19 0.04 4.24116 -4436.07 -4.24116 4.24116 3.02 0.0104339 0.00929063 0.960089 0.849101 58 48323 37 1.9669e+07 1.13835e+07 2.56250e+06 3515.09 27.37 3.95624 3.45677 72862 642985 -1 41043 16 12153 15278 2781166 629491 4.60176 4.60176 -5067.12 -4.60176 0 0 3.20690e+06 4399.04 1.54 1.10 0.64 -1 -1 1.54 0.493199 0.444946 3643 2417 969 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 7.94 vpr 69.57 MiB 0.06 9688 -1 -1 1 0.18 -1 -1 38812 -1 -1 81 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71244 22 19 1246 925 1 736 126 16 16 256 mult_36 auto 31.9 MiB 0.37 4392 19656 4553 12870 2233 69.6 MiB 0.35 0.01 7.45953 -334.328 -7.45953 7.45953 0.79 0.00185336 0.00166994 0.130464 0.117672 36 9107 44 6.32612e+06 2.6012e+06 535569. 2092.07 3.68 0.60392 0.539726 20808 126872 -1 7202 24 5848 6901 1301713 326153 7.88639 7.88639 -457.954 -7.88639 0 0 684529. 2673.94 0.27 0.38 0.13 -1 -1 0.27 0.108125 0.0972679 591 285 247 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 8.92 vpr 70.06 MiB 0.06 9972 -1 -1 1 0.19 -1 -1 39024 -1 -1 86 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71744 22 19 1344 989 1 796 132 16 16 256 mult_36 auto 32.2 MiB 0.37 4878 21572 4915 13607 3050 70.1 MiB 0.42 0.01 7.47778 -344.368 -7.47778 7.47778 0.83 0.00237173 0.00217125 0.165009 0.149011 40 9143 28 6.32612e+06 3.05999e+06 583096. 2277.72 4.44 0.726165 0.649141 21572 140635 -1 7895 21 5458 6354 1363462 337457 8.10239 8.10239 -473.06 -8.10239 0 0 763333. 2981.77 0.29 0.37 0.14 -1 -1 0.29 0.102763 0.0928572 635 304 266 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 7.89 vpr 70.68 MiB 0.06 9944 -1 -1 1 0.21 -1 -1 38676 -1 -1 91 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72372 22 19 1418 1046 1 833 137 16 16 256 mult_36 auto 33.0 MiB 0.45 5105 24141 5626 14822 3693 70.7 MiB 0.43 0.01 7.40158 -376.798 -7.40158 7.40158 0.81 0.00219367 0.00196382 0.159258 0.143182 44 9347 24 6.32612e+06 3.12278e+06 649498. 2537.10 3.38 0.583948 0.521659 22336 155612 -1 7352 21 5380 6035 951423 245989 7.64659 7.64659 -463.847 -7.64659 0 0 820238. 3204.05 0.33 0.27 0.16 -1 -1 0.33 0.100852 0.0915513 673 323 285 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 9.98 vpr 71.39 MiB 0.07 10348 -1 -1 1 0.21 -1 -1 38344 -1 -1 97 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73104 22 19 1518 1112 1 899 143 16 16 256 mult_36 auto 33.6 MiB 0.45 5287 29983 7445 18834 3704 71.4 MiB 0.54 0.01 7.94484 -393.627 -7.94484 7.94484 0.83 0.00229775 0.00205607 0.198341 0.177565 40 10184 32 6.32612e+06 3.19813e+06 583096. 2277.72 5.11 0.792809 0.706589 21572 140635 -1 8484 23 6839 7777 1340264 348461 8.58465 8.58465 -610.373 -8.58465 0 0 763333. 2981.77 0.30 0.45 0.14 -1 -1 0.30 0.151979 0.138195 719 342 304 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 9.62 vpr 71.76 MiB 0.07 10660 -1 -1 1 0.22 -1 -1 39120 -1 -1 102 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73484 22 19 1592 1169 1 937 148 16 16 256 mult_36 auto 34.1 MiB 0.53 5358 25954 5901 16707 3346 71.8 MiB 0.49 0.01 7.90083 -429.836 -7.90083 7.90083 0.83 0.00237115 0.00213904 0.174099 0.156 44 10799 28 6.32612e+06 3.26092e+06 649498. 2537.10 4.77 0.778605 0.693663 22336 155612 -1 8124 20 5295 6216 1048475 268901 8.36425 8.36425 -630.03 -8.36425 0 0 820238. 3204.05 0.32 0.34 0.16 -1 -1 0.32 0.120042 0.10909 757 361 323 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 11.22 vpr 72.17 MiB 0.07 10932 -1 -1 1 0.23 -1 -1 39996 -1 -1 107 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73904 22 19 1688 1231 1 998 154 16 16 256 mult_36 auto 34.7 MiB 0.50 6122 24050 4863 16397 2790 72.2 MiB 0.48 0.01 7.81364 -421.708 -7.81364 7.81364 0.80 0.00258926 0.00228005 0.164014 0.146463 44 12318 44 6.32612e+06 3.71971e+06 649498. 2537.10 6.10 0.863429 0.764973 22336 155612 -1 8928 22 6032 6957 1496969 380838 8.16485 8.16485 -553.871 -8.16485 0 0 820238. 3204.05 0.33 0.48 0.16 -1 -1 0.33 0.144268 0.130901 799 380 342 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 9.32 vpr 72.74 MiB 0.07 10684 -1 -1 1 0.25 -1 -1 39244 -1 -1 112 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74488 22 19 1762 1288 1 1033 159 16 16 256 mult_36 auto 35.1 MiB 0.56 6461 24669 5073 16191 3405 72.7 MiB 0.46 0.01 8.07603 -431.43 -8.07603 8.07603 0.82 0.00273379 0.00245494 0.168637 0.151507 44 12171 49 6.32612e+06 3.7825e+06 649498. 2537.10 4.28 0.806515 0.716689 22336 155612 -1 9202 22 6191 7346 1344622 333877 8.38325 8.38325 -675.537 -8.38325 0 0 820238. 3204.05 0.34 0.42 0.16 -1 -1 0.34 0.142289 0.128581 837 399 361 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 11.65 vpr 73.11 MiB 0.08 11148 -1 -1 1 0.26 -1 -1 39748 -1 -1 119 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74860 22 19 1859 1351 1 1097 166 16 16 256 mult_36 auto 35.6 MiB 0.57 7254 23878 4435 16403 3040 73.1 MiB 0.52 0.01 8.14498 -460.765 -8.14498 8.14498 0.82 0.00296813 0.00264456 0.171052 0.153957 48 12447 36 6.32612e+06 3.8704e+06 714410. 2790.66 6.38 0.89989 0.798861 22848 165380 -1 10368 24 6585 7820 1628179 396024 9.37285 9.37285 -687.831 -9.37285 0 0 863353. 3372.47 0.35 0.50 0.17 -1 -1 0.35 0.160705 0.145409 880 418 380 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 9.14 vpr 73.41 MiB 0.08 11436 -1 -1 1 0.28 -1 -1 39684 -1 -1 123 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75168 22 19 1933 1408 1 1134 170 16 16 256 mult_36 auto 36.0 MiB 0.63 7512 25550 4866 16928 3756 73.4 MiB 0.47 0.01 8.07603 -487.999 -8.07603 8.07603 0.78 0.00291044 0.00258413 0.165789 0.14844 48 12359 32 6.32612e+06 3.92063e+06 714410. 2790.66 3.95 0.808859 0.719099 22848 165380 -1 10414 22 6323 7557 1314276 331752 8.65185 8.65185 -738.93 -8.65185 0 0 863353. 3372.47 0.34 0.43 0.17 -1 -1 0.34 0.152754 0.138252 918 437 399 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 12.17 vpr 74.07 MiB 0.09 11620 -1 -1 1 0.29 -1 -1 40488 -1 -1 131 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75848 22 19 2031 1472 1 1198 179 18 18 324 mult_36 auto 36.5 MiB 0.66 7156 32435 6973 20399 5063 74.1 MiB 0.62 0.01 7.95583 -499.319 -7.95583 7.95583 1.13 0.00304345 0.00273361 0.222389 0.200534 46 14415 37 7.77114e+06 4.4171e+06 895831. 2764.91 5.87 0.966146 0.864308 29024 211752 -1 10807 24 6884 8263 1409674 354460 8.51865 8.51865 -733.328 -8.51865 0 0 1.09776e+06 3388.15 0.47 0.47 0.21 -1 -1 0.47 0.172655 0.155819 962 456 418 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 21.84 vpr 74.71 MiB 0.09 11524 -1 -1 1 0.30 -1 -1 39840 -1 -1 136 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76500 22 19 2105 1529 1 1235 184 18 18 324 mult_36 auto 37.1 MiB 0.67 7774 42024 9957 27556 4511 74.7 MiB 0.78 0.01 7.95583 -519.035 -7.95583 7.95583 1.13 0.0030588 0.00272949 0.270036 0.241653 44 15687 39 7.77114e+06 4.47989e+06 850563. 2625.19 15.25 1.61834 1.43667 28700 205432 -1 11491 21 6852 8008 1692024 401943 8.67185 8.67185 -791.432 -8.67185 0 0 1.07356e+06 3313.45 0.46 0.53 0.20 -1 -1 0.46 0.170826 0.155434 1000 475 437 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 13.61 vpr 75.14 MiB 0.10 11896 -1 -1 1 0.33 -1 -1 40164 -1 -1 141 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76944 22 19 2201 1591 1 1295 189 18 18 324 mult_36 auto 37.6 MiB 0.69 8051 40839 8949 25568 6322 75.1 MiB 0.77 0.01 7.93383 -566.824 -7.93383 7.93383 1.13 0.00351178 0.00317118 0.274168 0.246411 46 15676 36 7.77114e+06 4.54268e+06 895831. 2764.91 6.96 1.13139 1.004 29024 211752 -1 12101 23 8482 9881 1786644 426690 8.47245 8.47245 -1153.45 -8.47245 0 0 1.09776e+06 3388.15 0.45 0.55 0.20 -1 -1 0.45 0.185837 0.168439 1042 494 456 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 13.48 vpr 75.79 MiB 0.10 12104 -1 -1 1 0.34 -1 -1 40656 -1 -1 145 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77608 22 19 2275 1648 1 1331 193 18 18 324 mult_36 auto 38.2 MiB 0.73 8287 40297 8702 27070 4525 75.8 MiB 0.80 0.01 7.90083 -552.972 -7.90083 7.90083 1.12 0.00366319 0.00331446 0.281826 0.253574 46 16138 47 7.77114e+06 4.59291e+06 895831. 2764.91 6.73 1.15883 1.0322 29024 211752 -1 12117 22 8225 9448 1709201 408367 8.24425 8.24425 -797.186 -8.24425 0 0 1.09776e+06 3388.15 0.45 0.50 0.21 -1 -1 0.45 0.17199 0.155133 1080 513 475 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 18.12 vpr 76.18 MiB 0.10 12316 -1 -1 1 0.36 -1 -1 40132 -1 -1 153 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78004 22 19 2385 1724 1 1408 202 18 18 324 mult_36 auto 38.9 MiB 0.76 9107 41050 8433 25134 7483 76.2 MiB 0.76 0.01 8.07603 -585.38 -8.07603 8.07603 1.13 0.00394443 0.00357484 0.282537 0.254324 50 16355 36 7.77114e+06 5.08937e+06 975281. 3010.13 11.13 1.75147 1.55457 29672 225968 -1 13232 25 8905 10434 1911891 465582 8.58465 8.58465 -883.379 -8.58465 0 0 1.16663e+06 3600.72 0.49 0.61 0.22 -1 -1 0.49 0.211719 0.190924 1136 532 494 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 15.47 vpr 76.95 MiB 0.10 12636 -1 -1 1 0.38 -1 -1 40540 -1 -1 158 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78796 22 19 2459 1781 1 1444 207 18 18 324 mult_36 auto 39.5 MiB 1.12 8924 44271 9197 29563 5511 76.9 MiB 0.80 0.01 8.17423 -576.522 -8.17423 8.17423 1.10 0.00332022 0.00296959 0.271698 0.242412 48 15412 36 7.77114e+06 5.15216e+06 935225. 2886.50 8.18 1.24519 1.10352 29348 218440 -1 12958 21 7328 8990 1724080 416818 8.67985 8.67985 -874.829 -8.67985 0 0 1.13028e+06 3488.51 0.49 0.55 0.21 -1 -1 0.49 0.191392 0.173581 1174 551 513 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 53.52 vpr 77.43 MiB 0.11 12712 -1 -1 1 0.39 -1 -1 40580 -1 -1 165 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79284 22 19 2565 1853 1 1517 215 22 22 484 mult_36 auto 40.2 MiB 0.80 9429 42653 9331 29424 3898 77.4 MiB 0.83 0.01 7.94484 -557.934 -7.94484 7.94484 1.84 0.0037679 0.00337654 0.2836 0.254153 40 20229 39 1.26594e+07 5.63607e+06 1.17677e+06 2431.33 44.35 2.30084 2.03517 41974 287914 -1 15852 24 13032 14852 3314243 759248 9.22765 9.22765 -966.96 -9.22765 0 0 1.53957e+06 3180.94 0.70 0.92 0.29 -1 -1 0.70 0.235822 0.213593 1226 570 532 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 25.61 vpr 77.86 MiB 0.10 13056 -1 -1 1 0.38 -1 -1 41044 -1 -1 170 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79728 22 19 2639 1910 1 1554 220 22 22 484 mult_36 auto 40.4 MiB 0.81 10436 47293 10606 32212 4475 77.9 MiB 0.93 0.01 8.27243 -600.329 -8.27243 8.27243 1.81 0.00398314 0.00361407 0.310895 0.277592 46 20885 45 1.26594e+07 5.69886e+06 1.37878e+06 2848.72 16.69 1.46772 1.29832 43906 328446 -1 15401 23 9919 11346 2315171 529494 8.75485 8.75485 -942.625 -8.75485 0 0 1.69059e+06 3492.95 0.76 0.70 0.30 -1 -1 0.76 0.219775 0.197742 1264 589 551 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 22.19 vpr 78.23 MiB 0.11 13296 -1 -1 1 0.41 -1 -1 41068 -1 -1 177 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80104 22 19 2744 1981 1 1626 227 22 22 484 mult_36 auto 40.9 MiB 0.91 11536 52819 11405 35484 5930 78.2 MiB 1.02 0.01 7.90083 -597.662 -7.90083 7.90083 1.83 0.00438958 0.0038742 0.341944 0.304099 46 21906 41 1.26594e+07 5.78677e+06 1.37878e+06 2848.72 12.62 1.46284 1.29221 43906 328446 -1 16696 24 11898 14015 3062879 701383 8.78405 8.78405 -989.062 -8.78405 0 0 1.69059e+06 3492.95 0.74 0.84 0.33 -1 -1 0.74 0.225423 0.202464 1315 608 570 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 17.75 vpr 78.54 MiB 0.12 13384 -1 -1 1 0.52 -1 -1 40752 -1 -1 181 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80420 22 19 2818 2038 1 1662 231 22 22 484 mult_36 auto 41.1 MiB 0.93 10931 61119 15185 40798 5136 78.5 MiB 1.17 0.01 7.82463 -692.937 -7.82463 7.82463 1.85 0.004074 0.00361665 0.385747 0.343578 44 20989 29 1.26594e+07 5.837e+06 1.30964e+06 2705.88 7.99 1.28032 1.13397 43422 318546 -1 15643 25 11269 13282 2275825 531095 8.32945 8.32945 -1141.45 -8.32945 0 0 1.65337e+06 3416.05 0.76 0.73 0.31 -1 -1 0.76 0.250305 0.225305 1353 627 589 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 27.70 vpr 79.48 MiB 0.16 13792 -1 -1 1 0.45 -1 -1 41556 -1 -1 189 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81388 22 19 2923 2109 1 1730 240 22 22 484 mult_36 auto 41.9 MiB 0.91 11888 68035 16768 43587 7680 79.5 MiB 1.38 0.02 8.75049 -711.16 -8.75049 8.75049 1.89 0.00524112 0.00477921 0.486812 0.437151 50 19383 28 1.26594e+07 6.33346e+06 1.50222e+06 3103.76 17.31 2.72588 2.43874 44874 350400 -1 16380 21 8998 10674 1980601 454864 9.22611 9.22611 -1061.2 -9.22611 0 0 1.79645e+06 3711.66 0.83 0.66 0.35 -1 -1 0.83 0.248529 0.226161 1404 646 608 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 42.63 vpr 79.82 MiB 0.13 13860 -1 -1 1 0.46 -1 -1 41520 -1 -1 194 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81732 22 19 2997 2166 1 1769 245 22 22 484 mult_36 auto 42.4 MiB 1.10 12094 66121 15382 43885 6854 79.8 MiB 1.34 0.02 8.59729 -721.806 -8.59729 8.59729 1.84 0.00465823 0.00415817 0.421193 0.37362 44 24961 50 1.26594e+07 6.39625e+06 1.30964e+06 2705.88 32.28 2.37639 2.09358 43422 318546 -1 17716 23 12136 14363 2832130 667884 9.40431 9.40431 -1135.81 -9.40431 0 0 1.65337e+06 3416.05 0.78 0.87 0.31 -1 -1 0.78 0.265194 0.239956 1442 665 627 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 22.26 vpr 80.29 MiB 0.13 14396 -1 -1 1 0.48 -1 -1 41412 -1 -1 200 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82220 22 19 3101 2236 1 1838 251 22 22 484 mult_36 auto 43.0 MiB 1.06 12370 56412 12219 36079 8114 80.3 MiB 1.10 0.02 8.56429 -748.354 -8.56429 8.56429 1.84 0.00502298 0.00453037 0.373104 0.332943 46 22874 41 1.26594e+07 6.4716e+06 1.37878e+06 2848.72 12.18 1.67036 1.4801 43906 328446 -1 17874 25 12744 14758 2557592 595798 9.30531 9.30531 -1223.26 -9.30531 0 0 1.69059e+06 3492.95 0.80 0.84 0.32 -1 -1 0.80 0.289914 0.261789 1492 684 646 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 23.16 vpr 80.95 MiB 0.13 14476 -1 -1 1 0.49 -1 -1 41552 -1 -1 204 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82888 22 19 3175 2293 1 1872 255 22 22 484 mult_36 auto 43.8 MiB 1.19 12249 62471 14567 43086 4818 80.9 MiB 1.18 0.02 8.59729 -744.038 -8.59729 8.59729 1.84 0.00462437 0.00404635 0.376087 0.332825 48 22942 42 1.26594e+07 6.52183e+06 1.44011e+06 2975.42 12.71 1.67585 1.47963 44390 338934 -1 18184 24 13951 15929 3209360 729162 9.35731 9.35731 -1131.26 -9.35731 0 0 1.74100e+06 3597.11 0.81 0.94 0.33 -1 -1 0.81 0.269138 0.240993 1530 703 665 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 26.61 vpr 81.50 MiB 0.14 14476 -1 -1 1 0.54 -1 -1 41696 -1 -1 211 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83452 22 19 3280 2364 1 1945 263 24 24 576 mult_36 auto 44.3 MiB 1.19 13165 65939 15175 45128 5636 81.5 MiB 1.43 0.02 8.72849 -828.623 -8.72849 8.72849 2.22 0.0052082 0.00463636 0.453074 0.404222 46 24527 44 1.52924e+07 7.00574e+06 1.63708e+06 2842.15 14.98 1.81495 1.60435 51922 389946 -1 18452 24 12475 14714 2507167 595570 9.18511 9.18511 -1323.46 -9.18511 0 0 2.00908e+06 3487.99 0.94 0.81 0.38 -1 -1 0.94 0.280464 0.252051 1581 722 684 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 23.12 vpr 81.93 MiB 0.13 14568 -1 -1 1 0.51 -1 -1 42280 -1 -1 216 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83892 22 19 3354 2421 1 1981 268 24 24 576 mult_36 auto 44.9 MiB 1.22 12740 64993 14592 44175 6226 81.9 MiB 1.34 0.02 8.84869 -820.812 -8.84869 8.84869 2.11 0.0048873 0.00428799 0.393651 0.347013 44 24704 45 1.52924e+07 7.06853e+06 1.55518e+06 2699.97 11.83 1.82149 1.60975 51346 378163 -1 18388 25 12105 14238 2566964 611215 9.25411 9.25411 -1418.24 -9.25411 0 0 1.96475e+06 3411.02 0.92 0.85 0.37 -1 -1 0.92 0.296944 0.267482 1619 741 703 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 30.13 vpr 82.51 MiB 0.15 14780 -1 -1 1 0.54 -1 -1 41608 -1 -1 223 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84488 22 19 3457 2490 1 2052 275 24 24 576 mult_36 auto 45.4 MiB 1.23 14107 76180 18404 50729 7047 82.5 MiB 1.52 0.02 8.85969 -817.628 -8.85969 8.85969 2.26 0.00533894 0.00479565 0.472819 0.41937 48 25170 44 1.52924e+07 7.15643e+06 1.71014e+06 2969.00 18.21 2.61575 2.30307 52498 402441 -1 20290 22 11703 13887 2642522 613817 9.47131 9.47131 -1247.44 -9.47131 0 0 2.06880e+06 3591.66 0.98 0.82 0.40 -1 -1 0.98 0.270323 0.243788 1668 760 722 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 21.67 vpr 82.89 MiB 0.15 15064 -1 -1 1 0.57 -1 -1 41612 -1 -1 228 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84880 22 19 3531 2547 1 2089 280 24 24 576 mult_36 auto 45.9 MiB 1.35 13933 82630 20703 54954 6973 82.9 MiB 1.73 0.02 8.75049 -920.85 -8.75049 8.75049 2.26 0.00533088 0.00479207 0.505766 0.450057 46 25236 31 1.52924e+07 7.21922e+06 1.63708e+06 2842.15 9.49 1.72559 1.53449 51922 389946 -1 19565 22 10949 13008 2111715 506422 9.68371 9.68371 -1384.09 -9.68371 0 0 2.00908e+06 3487.99 0.89 0.75 0.38 -1 -1 0.89 0.290263 0.261845 1706 779 741 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 24.93 vpr 83.51 MiB 0.15 15228 -1 -1 1 0.58 -1 -1 41752 -1 -1 234 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85512 22 19 3634 2616 1 2155 287 24 24 576 mult_36 auto 46.6 MiB 1.34 14241 80697 18835 51852 10010 83.5 MiB 1.55 0.02 8.75049 -883.696 -8.75049 8.75049 2.22 0.00520673 0.00458703 0.503424 0.447809 48 24243 43 1.52924e+07 7.69057e+06 1.71014e+06 2969.00 12.54 2.01347 1.78155 52498 402441 -1 20703 23 12932 15396 3012988 705113 9.40931 9.40931 -1441.04 -9.40931 0 0 2.06880e+06 3591.66 0.96 0.95 0.40 -1 -1 0.96 0.311028 0.281019 1755 798 760 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 29.20 vpr 84.14 MiB 0.15 15496 -1 -1 1 0.60 -1 -1 42656 -1 -1 239 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86156 22 19 3708 2673 1 2193 292 24 24 576 mult_36 auto 47.1 MiB 1.43 14348 78700 18197 51186 9317 84.1 MiB 1.60 0.02 9.05609 -851.737 -9.05609 9.05609 2.28 0.0058645 0.00507878 0.497801 0.439387 46 26058 48 1.52924e+07 7.75336e+06 1.63708e+06 2842.15 16.72 2.1147 1.86393 51922 389946 -1 20163 24 12300 14571 2594808 640493 9.92411 9.92411 -1231.98 -9.92411 0 0 2.00908e+06 3487.99 0.94 0.88 0.38 -1 -1 0.94 0.32662 0.294655 1793 817 779 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 24.94 vpr 84.52 MiB 0.16 15740 -1 -1 1 0.62 -1 -1 43104 -1 -1 245 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86544 22 19 3810 2741 1 2260 298 24 24 576 mult_36 auto 47.6 MiB 1.50 14750 79898 18747 54531 6620 84.5 MiB 1.75 0.02 8.58629 -958.377 -8.58629 8.58629 2.22 0.00589901 0.00513504 0.496745 0.436113 48 25945 50 1.52924e+07 7.82871e+06 1.71014e+06 2969.00 12.28 2.18483 1.92865 52498 402441 -1 21476 22 13448 15830 2787133 657802 9.11391 9.11391 -1451.79 -9.11391 0 0 2.06880e+06 3591.66 0.97 0.86 0.40 -1 -1 0.97 0.292816 0.263051 1841 836 798 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 21.68 vpr 85.07 MiB 0.16 15784 -1 -1 1 0.63 -1 -1 42620 -1 -1 250 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87108 22 19 3884 2798 1 2296 303 24 24 576 mult_36 auto 47.9 MiB 1.49 15148 73527 16640 46301 10586 85.1 MiB 1.42 0.02 8.87069 -922.279 -8.87069 8.87069 2.24 0.0061591 0.00555311 0.466429 0.415736 52 26613 49 1.52924e+07 7.8915e+06 1.82869e+06 3174.81 9.24 2.0175 1.79109 54222 439550 -1 20407 22 10526 12398 2112596 523816 9.17791 9.17791 -1395.25 -9.17791 0 0 2.25030e+06 3906.77 1.06 0.79 0.44 -1 -1 1.06 0.324546 0.293915 1879 855 817 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 33.29 vpr 85.30 MiB 0.17 16160 -1 -1 1 0.69 -1 -1 44108 -1 -1 257 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87344 22 19 3989 2869 1 2368 311 24 24 576 mult_36 auto 48.3 MiB 1.47 16744 75074 15897 50463 8714 85.3 MiB 1.57 0.02 9.19829 -945.131 -9.19829 9.19829 2.20 0.00540046 0.00481682 0.456139 0.405358 50 27547 40 1.52924e+07 8.37541e+06 1.78400e+06 3097.22 20.55 2.92587 2.57762 53074 415989 -1 22953 22 13367 16086 3159903 741664 9.49951 9.49951 -1417.29 -9.49951 0 0 2.13454e+06 3705.80 0.99 0.96 0.41 -1 -1 0.99 0.308043 0.275225 1930 874 836 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 31.46 vpr 85.95 MiB 0.17 16132 -1 -1 1 0.66 -1 -1 44448 -1 -1 261 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88008 22 19 4063 2926 1 2404 315 24 24 576 mult_36 auto 48.9 MiB 1.57 16231 79569 18029 52307 9233 85.9 MiB 1.56 0.02 8.84869 -959.475 -8.84869 8.84869 2.19 0.00646847 0.00585415 0.460709 0.406776 54 26179 32 1.52924e+07 8.42564e+06 1.87785e+06 3260.16 18.76 2.84097 2.50677 54798 452027 -1 21825 21 10831 12681 2420177 599015 9.20191 9.20191 -1492.05 -9.20191 0 0 2.31032e+06 4010.97 1.06 0.84 0.41 -1 -1 1.06 0.329739 0.29815 1968 893 855 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 32.46 vpr 86.29 MiB 0.17 16728 -1 -1 1 0.67 -1 -1 44332 -1 -1 268 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88364 22 19 4167 2996 1 2473 322 24 24 576 mult_36 auto 49.1 MiB 1.45 16256 89665 20795 56967 11903 86.3 MiB 1.78 0.02 9.23129 -969.897 -9.23129 9.23129 2.14 0.00633087 0.00572242 0.535754 0.47872 50 26638 46 1.52924e+07 8.51354e+06 1.78400e+06 3097.22 19.86 3.43541 3.04051 53074 415989 -1 22570 24 12036 14426 2709908 661393 9.64971 9.64971 -1480.55 -9.64971 0 0 2.13454e+06 3705.80 0.90 0.89 0.42 -1 -1 0.90 0.329702 0.29501 2018 912 874 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 29.34 vpr 86.81 MiB 0.19 16772 -1 -1 1 0.72 -1 -1 45016 -1 -1 273 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88896 22 19 4241 3053 1 2509 327 24 24 576 mult_36 auto 49.7 MiB 1.65 17266 85903 19885 57149 8869 86.8 MiB 1.79 0.02 8.87069 -1051.6 -8.87069 8.87069 2.17 0.00641923 0.00576025 0.517461 0.456227 50 29822 37 1.52924e+07 8.57633e+06 1.78400e+06 3097.22 16.15 2.21678 1.95029 53074 415989 -1 24169 23 14748 17796 3098135 716149 9.37931 9.37931 -1770.09 -9.37931 0 0 2.13454e+06 3705.80 0.97 0.97 0.41 -1 -1 0.97 0.329856 0.294588 2056 931 893 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 24.70 vpr 87.05 MiB 0.19 17036 -1 -1 1 0.74 -1 -1 44832 -1 -1 279 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89144 22 19 4346 3124 1 2580 334 24 24 576 mult_36 auto 50.2 MiB 1.57 17032 88342 19883 56989 11470 87.1 MiB 1.73 0.02 8.75049 -1035.7 -8.75049 8.75049 2.14 0.00663184 0.00595876 0.508782 0.44658 48 29878 45 1.52924e+07 9.04768e+06 1.71014e+06 2969.00 11.50 2.37501 2.09532 52498 402441 -1 24517 21 15130 17801 3460339 840135 9.79411 9.79411 -1748.95 -9.79411 0 0 2.06880e+06 3591.66 0.98 1.06 0.39 -1 -1 0.98 0.335388 0.302671 2107 950 912 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 25.08 vpr 87.48 MiB 0.19 17408 -1 -1 1 0.76 -1 -1 44660 -1 -1 284 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89576 22 19 4420 3181 1 2615 339 24 24 576 mult_36 auto 50.4 MiB 1.74 17639 93638 20800 59398 13440 87.5 MiB 1.83 0.02 8.87069 -1092.03 -8.87069 8.87069 2.18 0.00658177 0.00590427 0.545849 0.481878 52 30432 38 1.52924e+07 9.11047e+06 1.82869e+06 3174.81 11.32 2.22041 1.96792 54222 439550 -1 24210 23 15134 17425 3308055 786370 9.40131 9.40131 -1686.06 -9.40131 0 0 2.25030e+06 3906.77 1.08 1.12 0.44 -1 -1 1.08 0.39345 0.354098 2145 969 931 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 30.31 vpr 88.29 MiB 0.48 17636 -1 -1 1 0.79 -1 -1 44856 -1 -1 292 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90408 22 19 4524 3251 1 2687 347 24 24 576 mult_36 auto 51.4 MiB 1.72 17151 86825 17854 57788 11183 88.3 MiB 1.92 0.03 8.63029 -1132.46 -8.63029 8.63029 2.25 0.00876288 0.00769709 0.599679 0.535507 56 27553 28 1.52924e+07 9.21094e+06 1.92546e+06 3342.82 15.93 2.66425 2.37555 55374 464059 -1 23806 23 15014 17598 3113772 752815 8.96251 8.96251 -1691.46 -8.96251 0 0 2.36234e+06 4101.29 1.14 1.10 0.46 -1 -1 1.14 0.423109 0.382957 2195 988 950 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 48.67 vpr 88.65 MiB 0.20 17660 -1 -1 1 0.79 -1 -1 45188 -1 -1 296 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90776 22 19 4598 3308 1 2721 351 24 24 576 mult_36 auto 51.8 MiB 1.81 17632 96837 22103 64924 9810 88.6 MiB 2.00 0.03 8.87069 -1123.96 -8.87069 8.87069 2.07 0.0064902 0.00578253 0.554896 0.486851 50 29434 38 1.52924e+07 9.26117e+06 1.78400e+06 3097.22 34.91 3.37311 2.9575 53074 415989 -1 24600 24 14602 17511 2881395 714077 9.36711 9.36711 -1877.29 -9.36711 0 0 2.13454e+06 3705.80 0.99 1.04 0.41 -1 -1 0.99 0.412679 0.371997 2233 1007 969 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 10.20 vpr 74.09 MiB 0.06 10584 -1 -1 1 0.26 -1 -1 40136 -1 -1 123 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75868 22 19 1974 1653 1 1039 168 16 16 256 mult_36 auto 36.5 MiB 2.04 6653 27485 5506 18919 3060 74.1 MiB 0.45 0.01 3.88056 -1067.72 -3.88056 3.88056 0.81 0.00277779 0.00246871 0.180546 0.160576 44 12446 31 6.34292e+06 3.14339e+06 649498. 2537.10 3.74 0.92227 0.815911 22336 155612 -1 9712 17 3430 4175 751385 183273 4.24116 4.24116 -1294.93 -4.24116 0 0 820238. 3204.05 0.34 0.29 0.16 -1 -1 0.34 0.128804 0.11714 953 649 247 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 15.55 vpr 74.96 MiB 0.07 11028 -1 -1 1 0.27 -1 -1 40508 -1 -1 132 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76764 22 19 2144 1789 1 1138 178 16 16 256 clb mult_36 auto 37.4 MiB 2.16 7125 28178 5361 19748 3069 75.0 MiB 0.48 0.01 3.88056 -1170.44 -3.88056 3.88056 0.83 0.00308223 0.0027408 0.198111 0.177361 50 12324 28 6.34292e+06 3.6535e+06 744679. 2908.90 8.86 1.27949 1.12983 23104 171162 -1 9905 16 3619 4109 691137 181290 4.24116 4.24116 -1362.92 -4.24116 0 0 891356. 3481.86 0.34 0.27 0.17 -1 -1 0.34 0.128642 0.116861 1033 704 266 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 14.45 vpr 75.03 MiB 0.07 11012 -1 -1 1 0.29 -1 -1 40700 -1 -1 137 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76832 22 19 2218 1846 1 1177 183 16 16 256 clb mult_36 auto 37.8 MiB 2.32 7500 27690 5434 19432 2824 75.0 MiB 0.50 0.01 3.88056 -1237.3 -3.88056 3.88056 0.82 0.00312344 0.00277031 0.185316 0.164279 48 12634 30 6.34292e+06 3.71689e+06 714410. 2790.66 7.52 1.35409 1.19478 22848 165380 -1 10813 19 3999 4856 728975 186106 4.36136 4.36136 -1403.91 -4.36136 0 0 863353. 3372.47 0.35 0.31 0.17 -1 -1 0.35 0.150848 0.136517 1071 723 285 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 13.00 vpr 76.88 MiB 0.08 11880 -1 -1 1 0.33 -1 -1 40752 -1 -1 157 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78728 22 19 2536 2130 1 1298 203 17 17 289 clb auto 39.6 MiB 2.46 8699 32983 6620 22935 3428 76.9 MiB 0.53 0.01 4.00076 -1350.29 -4.00076 4.00076 0.93 0.00338665 0.00298464 0.2055 0.180479 48 15216 28 6.65987e+06 3.97045e+06 816265. 2824.45 5.41 1.08025 0.9465 25714 189529 -1 12274 16 4394 5303 862389 207995 4.24116 4.24116 -1524.97 -4.24116 0 0 986792. 3414.50 0.40 0.32 0.19 -1 -1 0.40 0.146473 0.132386 1226 851 304 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 12.22 vpr 77.67 MiB 0.08 11932 -1 -1 1 0.34 -1 -1 40524 -1 -1 163 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79536 22 19 2610 2187 1 1336 209 17 17 289 clb auto 40.3 MiB 2.57 8706 38649 8140 26765 3744 77.7 MiB 0.63 0.01 4.00076 -1436.94 -4.00076 4.00076 0.92 0.00350901 0.00309982 0.240895 0.2122 50 14041 25 6.65987e+06 4.04651e+06 851065. 2944.86 4.17 1.11378 0.976837 26002 196109 -1 11818 14 4185 5086 730507 188342 4.36136 4.36136 -1631.11 -4.36136 0 0 1.01866e+06 3524.77 0.40 0.28 0.19 -1 -1 0.40 0.139146 0.12629 1264 870 323 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 17.42 vpr 78.40 MiB 0.09 12616 -1 -1 1 0.36 -1 -1 40548 -1 -1 172 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80284 22 19 2778 2321 1 1434 219 18 18 324 clb auto 41.5 MiB 2.78 9442 41736 9260 28904 3572 78.4 MiB 0.67 0.01 3.88056 -1509.14 -3.88056 3.88056 1.13 0.00381581 0.00337557 0.262868 0.232474 48 16218 27 7.79418e+06 4.55662e+06 935225. 2886.50 8.68 1.56694 1.37672 29348 218440 -1 13649 16 4947 5883 908017 221890 4.24116 4.24116 -1946.55 -4.24116 0 0 1.13028e+06 3488.51 0.47 0.38 0.22 -1 -1 0.47 0.178936 0.162919 1342 925 342 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 14.82 vpr 79.12 MiB 0.09 12672 -1 -1 1 0.38 -1 -1 40596 -1 -1 176 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81020 22 19 2852 2378 1 1479 223 18 18 324 clb auto 42.1 MiB 2.91 9040 36727 6815 26433 3479 79.1 MiB 0.59 0.01 4.00076 -1565.06 -4.00076 4.00076 1.09 0.0036669 0.00322872 0.225784 0.198938 46 16457 24 7.79418e+06 4.60733e+06 895831. 2764.91 6.12 1.20524 1.05911 29024 211752 -1 12830 16 4459 5416 756444 183307 4.48156 4.48156 -1779.96 -4.48156 0 0 1.09776e+06 3388.15 0.46 0.33 0.21 -1 -1 0.46 0.171959 0.155704 1380 944 361 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 14.84 vpr 80.04 MiB 0.10 12840 -1 -1 1 0.39 -1 -1 41548 -1 -1 188 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81964 22 19 3057 2549 1 1586 235 18 18 324 clb auto 43.2 MiB 3.11 10623 50191 11446 34686 4059 80.0 MiB 0.86 0.01 3.88056 -1674.94 -3.88056 3.88056 1.12 0.00449622 0.00400245 0.328357 0.290647 48 18850 40 7.79418e+06 4.75946e+06 935225. 2886.50 5.21 1.32159 1.16826 29348 218440 -1 14963 18 5391 6675 1011123 247431 4.24116 4.24116 -1948.26 -4.24116 0 0 1.13028e+06 3488.51 0.48 0.44 0.21 -1 -1 0.48 0.215526 0.195719 1477 1017 380 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 14.96 vpr 80.69 MiB 0.10 13056 -1 -1 1 0.42 -1 -1 40660 -1 -1 194 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82624 22 19 3131 2606 1 1626 241 19 19 361 clb auto 43.7 MiB 3.25 11075 47428 9860 34003 3565 80.7 MiB 0.81 0.01 3.88056 -1713.12 -3.88056 3.88056 1.25 0.00381237 0.00335079 0.302095 0.266249 46 19574 35 8.16184e+06 4.83553e+06 1.00734e+06 2790.40 5.03 1.27641 1.12325 32242 238619 -1 15449 15 5333 6293 1039451 248803 4.48156 4.48156 -2022.93 -4.48156 0 0 1.23460e+06 3419.94 0.54 0.39 0.24 -1 -1 0.54 0.178415 0.161776 1515 1036 399 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 16.97 vpr 81.68 MiB 0.10 13644 -1 -1 1 0.45 -1 -1 42616 -1 -1 204 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83636 22 19 3301 2742 1 1720 252 19 19 361 clb auto 44.7 MiB 3.43 11340 53517 10972 38772 3773 81.7 MiB 0.99 0.01 4.12096 -1844.89 -4.12096 4.12096 1.31 0.00546398 0.00491764 0.387348 0.346904 50 19231 34 8.16184e+06 5.35831e+06 1.09718e+06 3039.29 6.36 1.87336 1.66563 32962 254619 -1 15990 16 5660 6849 1080415 254872 4.36136 4.36136 -2097.5 -4.36136 0 0 1.31179e+06 3633.76 0.58 0.46 0.25 -1 -1 0.58 0.223301 0.203272 1595 1091 418 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 30.71 vpr 82.30 MiB 0.10 13804 -1 -1 1 0.44 -1 -1 42200 -1 -1 209 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84280 22 19 3375 2799 1 1765 257 19 19 361 clb auto 45.1 MiB 3.34 11967 46769 9481 33178 4110 82.3 MiB 0.79 0.01 4.00076 -1865.51 -4.00076 4.00076 1.22 0.00459051 0.00407563 0.295055 0.261339 50 20440 30 8.16184e+06 5.4217e+06 1.09718e+06 3039.29 20.57 2.19137 1.91752 32962 254619 -1 16399 16 5699 6861 1120128 258858 4.48156 4.48156 -2174.85 -4.48156 0 0 1.31179e+06 3633.76 0.58 0.45 0.25 -1 -1 0.58 0.209359 0.18955 1633 1110 437 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 17.08 vpr 83.03 MiB 0.11 14316 -1 -1 1 0.49 -1 -1 42396 -1 -1 223 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85020 22 19 3615 3005 1 1878 271 20 20 400 clb auto 46.0 MiB 3.72 12280 52831 10521 37415 4895 83.0 MiB 0.92 0.01 4.00076 -2042.46 -4.00076 4.00076 1.46 0.00513692 0.00454771 0.33463 0.29589 48 21259 30 1.10667e+07 5.59919e+06 1.16517e+06 2912.92 5.70 1.36717 1.20151 36470 272802 -1 17751 17 6476 8068 1219422 292449 4.36136 4.36136 -2564.95 -4.36136 0 0 1.40818e+06 3520.44 0.59 0.47 0.28 -1 -1 0.59 0.219827 0.197876 1747 1201 456 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 22.29 vpr 83.73 MiB 0.11 14104 -1 -1 1 0.50 -1 -1 42504 -1 -1 228 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85740 22 19 3689 3062 1 1918 276 20 20 400 clb auto 46.8 MiB 3.66 13288 58646 11664 42490 4492 83.7 MiB 1.04 0.02 4.00076 -2078.04 -4.00076 4.00076 1.42 0.00507789 0.00453081 0.361356 0.318881 50 21259 27 1.10667e+07 5.66258e+06 1.21483e+06 3037.08 10.97 2.08118 1.81955 36870 282114 -1 18171 16 6256 7503 1140836 268384 4.36136 4.36136 -2430.48 -4.36136 0 0 1.45344e+06 3633.59 0.60 0.43 0.29 -1 -1 0.60 0.203037 0.182651 1785 1220 475 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 36.77 vpr 85.20 MiB 0.12 14712 -1 -1 1 0.53 -1 -1 43056 -1 -1 240 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87248 22 19 3871 3210 1 2023 289 21 21 441 clb auto 48.2 MiB 3.99 12736 66184 14222 47449 4513 85.2 MiB 1.18 0.02 4.00076 -2150.31 -4.00076 4.00076 1.66 0.00576034 0.00515359 0.418569 0.371365 48 23674 38 1.14723e+07 6.21072e+06 1.29409e+06 2934.45 24.10 2.62405 2.28633 40046 303487 -1 18538 16 6725 8094 1367360 329524 4.36136 4.36136 -2481.33 -4.36136 0 0 1.56480e+06 3548.29 0.75 0.54 0.29 -1 -1 0.75 0.245176 0.221444 1877 1275 494 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 23.25 vpr 85.15 MiB 0.12 14620 -1 -1 1 0.54 -1 -1 42280 -1 -1 245 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87196 22 19 3945 3267 1 2070 294 21 21 441 clb auto 48.3 MiB 4.16 15274 71615 16087 49018 6510 85.2 MiB 1.27 0.02 4.12096 -2212.78 -4.12096 4.12096 1.66 0.00608728 0.00546566 0.463329 0.410628 50 26326 44 1.14723e+07 6.27411e+06 1.34972e+06 3060.59 10.32 2.12878 1.86988 40486 313801 -1 20757 15 6888 8539 1369431 310657 4.36136 4.36136 -2629.09 -4.36136 0 0 1.61476e+06 3661.58 0.73 0.52 0.31 -1 -1 0.73 0.233746 0.211816 1915 1294 513 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 26.74 vpr 86.66 MiB 0.13 15180 -1 -1 1 0.58 -1 -1 42376 -1 -1 258 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88736 22 19 4159 3447 1 2186 308 22 22 484 mult_36 auto 49.5 MiB 4.38 15784 69921 15261 50158 4502 86.7 MiB 1.23 0.02 4.12096 -2281.06 -4.12096 4.12096 1.85 0.00626139 0.00562284 0.452872 0.401888 54 24396 19 1.26954e+07 6.83492e+06 1.58090e+06 3266.32 12.95 2.46623 2.18875 46322 380746 -1 20947 14 6290 7567 1058093 248434 4.60176 4.60176 -2724.95 -4.60176 0 0 1.94386e+06 4016.24 0.89 0.46 0.38 -1 -1 0.89 0.236453 0.214245 2021 1367 532 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 21.91 vpr 87.24 MiB 0.13 15308 -1 -1 1 0.62 -1 -1 44468 -1 -1 263 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89332 22 19 4233 3504 1 2225 313 22 22 484 mult_36 auto 50.5 MiB 4.49 15547 67219 13410 48892 4917 87.2 MiB 1.18 0.02 3.88056 -2252.62 -3.88056 3.88056 1.85 0.00621901 0.00555232 0.411059 0.3633 48 28072 29 1.26954e+07 6.89831e+06 1.44011e+06 2975.42 7.90 1.6639 1.45969 44390 338934 -1 22188 17 8188 10079 2044484 465211 4.48156 4.48156 -2862.8 -4.48156 0 0 1.74100e+06 3597.11 0.80 0.67 0.33 -1 -1 0.80 0.257819 0.230982 2059 1386 551 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 23.67 vpr 88.33 MiB 0.13 15864 -1 -1 1 0.64 -1 -1 43652 -1 -1 274 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90452 22 19 4410 3647 1 2335 324 22 22 484 clb mult_36 auto 51.5 MiB 4.57 15750 71492 15173 51187 5132 88.3 MiB 1.20 0.02 3.88056 -2412.46 -3.88056 3.88056 1.82 0.00594185 0.00519709 0.418814 0.368231 50 27040 29 1.26954e+07 7.03777e+06 1.50222e+06 3103.76 9.55 2.02363 1.77142 44874 350400 -1 21841 16 7538 9195 1400457 324058 4.36136 4.36136 -2862.98 -4.36136 0 0 1.79645e+06 3711.66 0.81 0.56 0.34 -1 -1 0.81 0.266262 0.241288 2146 1441 570 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 23.94 vpr 88.89 MiB 0.14 15688 -1 -1 1 0.65 -1 -1 44800 -1 -1 278 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91028 22 19 4484 3704 1 2374 328 22 22 484 clb mult_36 auto 52.0 MiB 4.93 15980 79428 16275 56899 6254 88.9 MiB 1.47 0.02 4.00076 -2374.85 -4.00076 4.00076 1.87 0.00731938 0.00657471 0.534304 0.47614 50 26329 28 1.26954e+07 7.08848e+06 1.50222e+06 3103.76 8.86 2.57122 2.28663 44874 350400 -1 21817 17 7632 9627 1511377 363667 4.36136 4.36136 -2876.01 -4.36136 0 0 1.79645e+06 3711.66 0.86 0.69 0.35 -1 -1 0.86 0.349121 0.318062 2184 1460 589 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 23.38 vpr 90.34 MiB 0.16 16976 -1 -1 1 0.72 -1 -1 44868 -1 -1 302 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 92512 22 19 4843 4029 1 2501 353 23 23 529 clb auto 53.5 MiB 4.96 18294 97619 22986 67222 7411 90.3 MiB 1.66 0.02 4.12096 -2727.64 -4.12096 4.12096 2.02 0.00651688 0.00577354 0.562258 0.493 52 30691 28 1.31518e+07 7.78876e+06 1.69338e+06 3201.10 7.58 2.04797 1.81036 49938 407647 -1 24903 15 7928 9754 1504513 353358 4.48156 4.48156 -3103.38 -4.48156 0 0 2.08190e+06 3935.53 0.97 0.62 0.37 -1 -1 0.97 0.2966 0.268295 2362 1606 608 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 30.80 vpr 90.95 MiB 0.16 16924 -1 -1 1 0.73 -1 -1 44940 -1 -1 308 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93136 22 19 4917 4086 1 2542 359 23 23 529 clb auto 54.1 MiB 5.30 17956 89609 19205 64663 5741 91.0 MiB 1.55 0.02 4.12096 -2797.92 -4.12096 4.12096 2.07 0.00714681 0.00636293 0.524854 0.462349 50 30892 49 1.31518e+07 7.86482e+06 1.65241e+06 3123.66 14.61 2.60073 2.2712 48882 385791 -1 24578 18 8360 10419 1593065 368457 4.36136 4.36136 -3316.56 -4.36136 0 0 1.97533e+06 3734.07 0.90 0.66 0.37 -1 -1 0.90 0.324979 0.291963 2401 1625 627 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 36.49 vpr 91.87 MiB 0.16 17160 -1 -1 1 0.77 -1 -1 45684 -1 -1 319 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 94072 22 19 5093 4228 1 2643 370 23 23 529 clb auto 55.2 MiB 5.49 19373 97241 22360 68346 6535 91.9 MiB 1.70 0.02 4.12096 -2896.96 -4.12096 4.12096 2.09 0.00651675 0.0057091 0.551514 0.483056 54 30788 25 1.31518e+07 8.00428e+06 1.73850e+06 3286.39 19.78 2.98271 2.60897 50466 419205 -1 25718 12 7896 9395 1399928 327698 4.60176 4.60176 -3400.02 -4.60176 0 0 2.13727e+06 4040.20 0.95 0.54 0.41 -1 -1 0.95 0.25634 0.233076 2487 1680 646 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 32.04 vpr 91.91 MiB 0.21 17236 -1 -1 1 0.77 -1 -1 45780 -1 -1 323 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 94120 22 19 5167 4285 1 2691 374 23 23 529 clb auto 55.4 MiB 5.27 20318 94664 20935 66987 6742 91.9 MiB 1.58 0.02 4.00076 -2960.59 -4.00076 4.00076 2.02 0.00758318 0.00632257 0.51376 0.446363 54 34592 46 1.31518e+07 8.05499e+06 1.73850e+06 3286.39 15.63 2.93832 2.55435 50466 419205 -1 27179 15 8550 10525 1660528 371666 4.60176 4.60176 -3363.69 -4.60176 0 0 2.13727e+06 4040.20 0.98 0.64 0.41 -1 -1 0.98 0.300518 0.271119 2525 1699 665 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 34.89 vpr 93.22 MiB 0.20 17980 -1 -1 1 0.83 -1 -1 44488 -1 -1 336 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95456 22 19 5380 4464 1 2808 388 24 24 576 mult_36 auto 56.7 MiB 5.43 19885 102196 21733 73159 7304 93.2 MiB 1.72 0.02 4.12096 -3078.59 -4.12096 4.12096 2.20 0.00736465 0.00644783 0.556934 0.484339 50 32788 25 1.53347e+07 8.61581e+06 1.78400e+06 3097.22 17.67 3.18759 2.78438 53074 415989 -1 27355 14 8950 10854 1867472 424298 4.60176 4.60176 -3577.53 -4.60176 0 0 2.13454e+06 3705.80 0.95 0.65 0.42 -1 -1 0.95 0.283233 0.254442 2630 1772 684 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 53.71 vpr 94.14 MiB 0.18 18012 -1 -1 1 0.88 -1 -1 44512 -1 -1 342 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96404 22 19 5454 4521 1 2849 394 24 24 576 clb mult_36 auto 58.4 MiB 5.58 19285 98518 21214 69423 7881 94.1 MiB 1.68 0.02 4.00076 -3085.14 -4.00076 4.00076 2.17 0.00740884 0.00645893 0.542398 0.472131 48 30991 45 1.53347e+07 8.69188e+06 1.71014e+06 2969.00 36.35 3.77622 3.27428 52498 402441 -1 27026 17 9379 11487 1756089 429028 4.24116 4.24116 -3658.49 -4.24116 0 0 2.06880e+06 3591.66 0.95 0.71 0.39 -1 -1 0.95 0.335176 0.300873 2668 1791 703 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 33.24 vpr 94.52 MiB 0.18 18328 -1 -1 1 0.87 -1 -1 44504 -1 -1 352 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96784 22 19 5629 4662 1 2951 404 24 24 576 clb mult_36 auto 58.5 MiB 5.85 21655 104844 21870 76021 6953 94.5 MiB 1.85 0.02 4.12096 -3250.33 -4.12096 4.12096 2.21 0.00740825 0.00650976 0.599376 0.526407 54 35048 49 1.53347e+07 8.81866e+06 1.87785e+06 3260.16 15.21 2.94003 2.56045 54798 452027 -1 28521 15 9047 11024 1837268 419775 4.48156 4.48156 -3667.08 -4.48156 0 0 2.31032e+06 4010.97 1.03 0.67 0.45 -1 -1 1.03 0.311829 0.280157 2753 1846 722 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 42.45 vpr 99.68 MiB 0.18 18440 -1 -1 1 0.91 -1 -1 46112 -1 -1 357 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 102076 22 19 5703 4719 1 2994 409 25 25 625 clb auto 59.1 MiB 5.98 22926 126320 30403 84754 11163 95.0 MiB 2.28 0.03 4.12096 -3237.14 -4.12096 4.12096 2.49 0.00879502 0.00786958 0.763139 0.674175 56 36184 34 1.58291e+07 8.88205e+06 2.10056e+06 3360.90 22.83 3.57657 3.14606 59904 506958 -1 30982 16 9702 11996 2409119 550756 4.60176 4.60176 -3861.5 -4.60176 0 0 2.57664e+06 4122.63 1.23 0.88 0.51 -1 -1 1.23 0.366249 0.330154 2791 1865 741 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 39.71 vpr 100.84 MiB 0.19 19200 -1 -1 1 0.96 -1 -1 44940 -1 -1 373 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 103256 22 19 5950 4932 1 3111 426 25 25 625 clb auto 60.6 MiB 5.86 23624 123780 29199 86474 8107 96.8 MiB 2.13 0.03 4.12096 -3502.46 -4.12096 4.12096 2.39 0.00820844 0.00723486 0.669933 0.588453 56 37293 24 1.58291e+07 9.48089e+06 2.10056e+06 3360.90 20.60 3.3769 2.9612 59904 506958 -1 32472 14 10096 12878 2153864 496652 4.48156 4.48156 -4147.32 -4.48156 0 0 2.57664e+06 4122.63 1.22 0.79 0.47 -1 -1 1.22 0.347609 0.314935 2912 1956 760 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 33.42 vpr 97.00 MiB 0.19 19180 -1 -1 1 0.97 -1 -1 47288 -1 -1 376 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 99324 22 19 6024 4989 1 3151 429 25 25 625 clb auto 61.1 MiB 6.35 23087 137874 33874 93660 10340 97.0 MiB 2.32 0.03 4.00076 -3506.48 -4.00076 4.00076 2.41 0.00827164 0.0069755 0.74538 0.640524 52 40352 48 1.58291e+07 9.51893e+06 1.99531e+06 3192.49 13.34 3.08765 2.68394 58656 480125 -1 31323 14 10229 12351 2069982 478125 4.36136 4.36136 -4070.51 -4.36136 0 0 2.45448e+06 3927.17 1.19 0.86 0.48 -1 -1 1.19 0.408659 0.37307 2950 1975 779 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 42.65 vpr 104.13 MiB 0.19 19332 -1 -1 1 1.02 -1 -1 45872 -1 -1 388 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 106628 22 19 6198 5129 1 3252 441 25 25 625 clb auto 62.1 MiB 6.43 23221 127969 29180 88206 10583 98.1 MiB 2.24 0.03 4.24116 -3691.52 -4.24116 4.24116 2.43 0.00835972 0.0073822 0.694057 0.605939 58 36321 39 1.58291e+07 9.67106e+06 2.14341e+06 3429.45 22.28 3.89652 3.42545 61152 534357 -1 31360 16 9849 11850 2196127 485248 4.48156 4.48156 -4120.94 -4.48156 0 0 2.68463e+06 4295.40 1.31 0.88 0.53 -1 -1 1.31 0.414554 0.374999 3034 2030 798 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 31.45 vpr 98.61 MiB 0.23 19516 -1 -1 1 1.04 -1 -1 46948 -1 -1 393 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 100972 22 19 6272 5186 1 3297 446 26 26 676 clb auto 62.5 MiB 6.68 21533 138389 33486 95600 9303 98.6 MiB 2.38 0.03 4.00076 -3511.78 -4.00076 4.00076 2.70 0.00813622 0.00718718 0.773818 0.682828 50 36492 37 1.91809e+07 9.73445e+06 2.15046e+06 3181.16 10.27 3.30533 2.90459 63768 504694 -1 29930 13 10222 13066 1948660 459106 4.48156 4.48156 -4199.13 -4.48156 0 0 2.57128e+06 3803.68 1.25 0.74 0.49 -1 -1 1.25 0.336024 0.303347 3072 2049 817 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 37.17 vpr 100.30 MiB 0.20 20004 -1 -1 1 1.11 -1 -1 47796 -1 -1 406 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 102704 22 19 6485 5365 1 3415 460 26 26 676 clb auto 64.3 MiB 6.76 24611 147785 37106 101413 9266 100.3 MiB 2.54 0.03 4.24116 -3640.55 -4.24116 4.24116 2.76 0.009347 0.00830256 0.790812 0.693713 54 38649 20 1.91809e+07 1.02953e+07 2.26288e+06 3347.46 15.39 3.58624 3.15894 65792 548382 -1 33148 14 10293 12503 2055791 472478 4.72196 4.72196 -4363.18 -4.72196 0 0 2.78165e+06 4114.86 1.28 0.81 0.54 -1 -1 1.28 0.384213 0.348306 3177 2122 836 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 35.86 vpr 99.93 MiB 0.21 20324 -1 -1 1 1.11 -1 -1 47860 -1 -1 411 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 102328 22 19 6559 5422 1 3449 465 26 26 676 clb auto 64.1 MiB 7.25 25632 148065 36512 102746 8807 99.9 MiB 2.60 0.03 4.00076 -3754.16 -4.00076 4.00076 2.74 0.00870915 0.00763867 0.795288 0.696621 54 41061 28 1.91809e+07 1.03587e+07 2.26288e+06 3347.46 13.49 3.27057 2.8531 65792 548382 -1 34219 13 10504 13554 2073225 470734 4.60176 4.60176 -4493.33 -4.60176 0 0 2.78165e+06 4114.86 1.33 0.79 0.54 -1 -1 1.33 0.367406 0.332632 3215 2141 855 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 44.89 vpr 101.55 MiB 0.22 20456 -1 -1 1 1.16 -1 -1 47656 -1 -1 421 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 103988 22 19 6735 5564 1 3561 475 26 26 676 clb auto 65.4 MiB 7.19 26361 150487 36779 102941 10767 101.6 MiB 2.53 0.03 4.24116 -3818.29 -4.24116 4.24116 2.70 0.00911103 0.00797996 0.782723 0.680401 56 40127 28 1.91809e+07 1.04854e+07 2.31971e+06 3431.53 22.41 3.3148 2.88499 66468 563034 -1 35521 14 10835 13455 2452157 557846 4.72196 4.72196 -4708.86 -4.72196 0 0 2.84390e+06 4206.95 1.36 0.90 0.56 -1 -1 1.36 0.387148 0.349314 3301 2196 874 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 47.48 vpr 109.91 MiB 0.21 20596 -1 -1 1 1.17 -1 -1 47452 -1 -1 427 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 112552 22 19 6809 5621 1 3598 481 26 26 676 clb auto 65.8 MiB 7.60 26836 168068 42557 115084 10427 101.8 MiB 3.01 0.03 4.12096 -3953.29 -4.12096 4.12096 2.73 0.00981435 0.00876669 0.926243 0.81054 56 41934 34 1.91809e+07 1.05615e+07 2.31971e+06 3431.53 24.02 4.25545 3.72412 66468 563034 -1 36357 14 11240 13665 2293013 526085 4.60176 4.60176 -4887.71 -4.60176 0 0 2.84390e+06 4206.95 1.37 0.89 0.55 -1 -1 1.37 0.390258 0.352766 3339 2215 893 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 40.73 vpr 103.73 MiB 0.23 21456 -1 -1 1 1.28 -1 -1 48152 -1 -1 443 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 106224 22 19 7094 5872 1 3718 498 27 27 729 clb auto 67.8 MiB 7.48 25269 162284 38743 113116 10425 103.7 MiB 3.06 0.04 4.00076 -4019.88 -4.00076 4.00076 3.02 0.0111984 0.0100651 0.991145 0.878996 54 40098 24 1.9726e+07 1.11604e+07 2.44988e+06 3360.60 16.30 4.58504 4.05731 70678 594165 -1 33613 14 10626 12972 1955827 455487 4.48156 4.48156 -4724.77 -4.48156 0 0 3.01106e+06 4130.40 1.51 0.89 0.59 -1 -1 1.51 0.463479 0.420757 3480 2324 912 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 37.50 vpr 104.67 MiB 0.23 21628 -1 -1 1 1.26 -1 -1 47932 -1 -1 448 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 107180 22 19 7168 5929 1 3755 503 27 27 729 clb auto 68.1 MiB 7.53 27460 168419 40250 118403 9766 103.9 MiB 2.96 0.03 4.00076 -4115.98 -4.00076 4.00076 2.89 0.0103195 0.00915504 0.891123 0.776708 56 41198 24 1.9726e+07 1.12237e+07 2.51142e+06 3445.02 13.28 3.21629 2.82487 71406 610069 -1 36995 14 11421 14302 2286266 526329 4.60176 4.60176 -4896.08 -4.60176 0 0 3.07846e+06 4222.85 1.48 0.92 0.61 -1 -1 1.48 0.423224 0.382052 3518 2343 931 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 49.16 vpr 116.28 MiB 0.23 21672 -1 -1 1 1.31 -1 -1 48380 -1 -1 459 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 119072 22 19 7344 6071 1 3863 514 27 27 729 clb auto 68.8 MiB 7.83 30021 177502 45547 119976 11979 104.7 MiB 2.97 0.03 4.24116 -4303.02 -4.24116 4.24116 2.88 0.00868335 0.00764345 0.895194 0.779808 56 45433 25 1.9726e+07 1.13632e+07 2.51142e+06 3445.02 24.42 4.1602 3.63758 71406 610069 -1 40268 16 12071 14986 2560757 574086 4.60176 4.60176 -5157.37 -4.60176 0 0 3.07846e+06 4222.85 1.51 0.96 0.59 -1 -1 1.51 0.445191 0.400753 3604 2398 950 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 45.26 vpr 107.68 MiB 0.23 21828 -1 -1 1 1.33 -1 -1 48376 -1 -1 464 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110264 22 19 7418 6128 1 3909 519 27 27 729 clb auto 69.4 MiB 7.78 29687 175575 42190 122853 10532 105.2 MiB 3.04 0.03 4.24116 -4306.32 -4.24116 4.24116 2.90 0.0101263 0.00899503 0.918712 0.804635 56 44607 40 1.9726e+07 1.14266e+07 2.51142e+06 3445.02 20.76 4.47455 3.91286 71406 610069 -1 39484 14 11843 14725 2357119 537184 4.72196 4.72196 -5058.54 -4.72196 0 0 3.07846e+06 4222.85 1.42 0.90 0.60 -1 -1 1.42 0.406396 0.364979 3642 2417 969 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 17.15 vpr 69.55 MiB 0.05 9572 -1 -1 1 0.17 -1 -1 38836 -1 -1 79 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71220 22 19 1246 925 1 736 124 16 16 256 mult_36 auto 32.1 MiB 1.42 4475 15883 3181 10532 2170 69.6 MiB 0.27 0.00 7.19932 -326.794 -7.19932 7.19932 0.79 0.0019276 0.00173694 0.107375 0.0969999 38 8699 35 6.34292e+06 2.58556e+06 558663. 2182.28 12.06 0.986474 0.877153 21316 135884 -1 6852 22 5149 5713 1005527 256123 7.81499 7.81499 -421.469 -7.81499 0 0 744679. 2908.90 0.29 0.32 0.13 -1 -1 0.29 0.105413 0.0957513 589 285 247 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 12.78 vpr 70.07 MiB 0.06 9672 -1 -1 1 0.19 -1 -1 38840 -1 -1 84 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71748 22 19 1344 989 1 796 130 16 16 256 mult_36 auto 32.7 MiB 1.71 4728 20857 4958 12174 3725 70.1 MiB 0.37 0.01 7.17732 -352.66 -7.17732 7.17732 0.85 0.00231709 0.00199964 0.145707 0.130572 44 9564 36 6.34292e+06 3.04495e+06 649498. 2537.10 7.06 0.914404 0.808368 22336 155612 -1 6952 22 4657 5241 849116 226157 7.60742 7.60742 -466.22 -7.60742 0 0 820238. 3204.05 0.33 0.28 0.16 -1 -1 0.33 0.108274 0.0978284 633 304 266 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 9.72 vpr 70.80 MiB 0.06 9800 -1 -1 1 0.20 -1 -1 38952 -1 -1 89 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72500 22 19 1418 1046 1 833 135 16 16 256 mult_36 auto 33.0 MiB 1.72 4969 22625 5126 13275 4224 70.8 MiB 0.39 0.01 7.31952 -370.156 -7.31952 7.31952 0.82 0.00211244 0.00190423 0.153889 0.138586 42 9873 46 6.34292e+06 3.10834e+06 613404. 2396.11 3.89 0.69514 0.62173 21828 146600 -1 7397 22 5433 6026 1153238 298731 7.56554 7.56554 -464.767 -7.56554 0 0 784202. 3063.29 0.31 0.36 0.15 -1 -1 0.31 0.120265 0.109376 671 323 285 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 14.14 vpr 71.65 MiB 0.07 10280 -1 -1 1 0.21 -1 -1 38768 -1 -1 95 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73368 22 19 1518 1112 1 899 141 16 16 256 mult_36 auto 34.0 MiB 1.80 5830 24663 5585 14854 4224 71.6 MiB 0.44 0.01 7.83563 -387.164 -7.83563 7.83563 0.81 0.00252338 0.00230384 0.170481 0.153645 46 10609 30 6.34292e+06 3.18441e+06 684529. 2673.94 8.13 1.05339 0.93408 22592 160355 -1 8330 23 6321 7050 1082514 288242 8.41714 8.41714 -508.76 -8.41714 0 0 838722. 3276.26 0.32 0.34 0.16 -1 -1 0.32 0.123351 0.11132 717 342 304 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 11.45 vpr 71.77 MiB 0.07 10396 -1 -1 1 0.22 -1 -1 39164 -1 -1 100 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73492 22 19 1592 1169 1 937 146 16 16 256 mult_36 auto 34.2 MiB 1.90 5768 23186 5043 14807 3336 71.8 MiB 0.46 0.01 7.87378 -423.859 -7.87378 7.87378 0.82 0.00267849 0.0024322 0.165083 0.14916 46 11279 34 6.34292e+06 3.2478e+06 684529. 2673.94 5.25 0.827492 0.740361 22592 160355 -1 8399 23 5797 6537 1001088 254098 8.35225 8.35225 -500.681 -8.35225 0 0 838722. 3276.26 0.34 0.36 0.16 -1 -1 0.34 0.141375 0.128341 755 361 323 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 10.46 vpr 71.95 MiB 0.07 10612 -1 -1 1 0.23 -1 -1 39708 -1 -1 105 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73680 22 19 1688 1231 1 998 152 16 16 256 mult_36 auto 34.6 MiB 2.15 6163 25262 5430 16322 3510 72.0 MiB 0.52 0.01 7.91183 -414.648 -7.91183 7.91183 0.83 0.00291905 0.0026183 0.197662 0.178609 46 10789 30 6.34292e+06 3.70719e+06 684529. 2673.94 3.75 0.835531 0.749498 22592 160355 -1 8911 23 6128 6963 1301513 331479 8.37739 8.37739 -575.715 -8.37739 0 0 838722. 3276.26 0.34 0.46 0.16 -1 -1 0.34 0.167083 0.152387 797 380 342 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 10.67 vpr 72.79 MiB 0.07 10672 -1 -1 1 0.25 -1 -1 39148 -1 -1 110 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74540 22 19 1762 1288 1 1033 157 16 16 256 mult_36 auto 35.3 MiB 2.39 6258 25537 5082 16804 3651 72.8 MiB 0.50 0.01 7.94272 -446.391 -7.94272 7.94272 0.80 0.00257027 0.00230072 0.173994 0.155258 44 11870 36 6.34292e+06 3.77058e+06 649498. 2537.10 3.82 0.752048 0.668658 22336 155612 -1 8869 23 6454 7264 1097871 292530 8.38325 8.38325 -610.89 -8.38325 0 0 820238. 3204.05 0.33 0.37 0.16 -1 -1 0.33 0.144271 0.130342 835 399 361 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 12.17 vpr 73.70 MiB 0.08 11292 -1 -1 1 0.26 -1 -1 39588 -1 -1 117 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75468 22 19 1859 1351 1 1097 164 16 16 256 mult_36 auto 36.0 MiB 2.45 7610 23460 4742 15321 3397 73.7 MiB 0.49 0.01 7.98298 -454.868 -7.98298 7.98298 0.81 0.00300627 0.00272172 0.16963 0.152694 52 13753 35 6.34292e+06 3.85933e+06 763333. 2981.77 5.14 0.932395 0.833109 23612 180979 -1 10662 21 6037 6974 1331985 336907 8.73999 8.73999 -600.024 -8.73999 0 0 940801. 3675.00 0.37 0.40 0.18 -1 -1 0.37 0.136939 0.124269 878 418 380 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 12.87 vpr 73.69 MiB 0.08 11172 -1 -1 1 0.28 -1 -1 39832 -1 -1 121 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75456 22 19 1933 1408 1 1134 168 16 16 256 mult_36 auto 36.2 MiB 2.44 7807 22392 4309 14490 3593 73.7 MiB 0.43 0.01 8.06292 -488.77 -8.06292 8.06292 0.80 0.00282789 0.00252625 0.154994 0.13849 48 13647 34 6.34292e+06 3.91004e+06 714410. 2790.66 5.77 0.896998 0.794985 22848 165380 -1 11235 26 8357 9534 1777922 437547 8.71387 8.71387 -667.422 -8.71387 0 0 863353. 3372.47 0.34 0.53 0.17 -1 -1 0.34 0.166767 0.149703 916 437 399 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 17.65 vpr 74.27 MiB 0.09 11716 -1 -1 1 0.29 -1 -1 40456 -1 -1 129 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76052 22 19 2031 1472 1 1198 177 18 18 324 mult_36 auto 36.6 MiB 2.59 7542 30433 6810 19340 4283 74.3 MiB 0.58 0.01 7.94272 -501.884 -7.94272 7.94272 1.14 0.00320232 0.00287304 0.209658 0.187884 48 13282 30 7.79418e+06 4.40746e+06 935225. 2886.50 9.44 1.35558 1.20174 29348 218440 -1 11154 22 7239 8059 1500210 362151 8.48233 8.48233 -747.315 -8.48233 0 0 1.13028e+06 3488.51 0.46 0.45 0.22 -1 -1 0.46 0.155735 0.140324 960 456 418 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 12.86 vpr 74.71 MiB 0.09 11592 -1 -1 1 0.30 -1 -1 39500 -1 -1 134 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76508 22 19 2105 1529 1 1235 182 18 18 324 mult_36 auto 37.2 MiB 2.65 7570 34172 7597 23356 3219 74.7 MiB 0.62 0.01 7.59312 -513.375 -7.59312 7.59312 1.10 0.0031322 0.00278971 0.216381 0.192034 44 14158 33 7.79418e+06 4.47085e+06 850563. 2625.19 4.61 0.890638 0.79037 28700 205432 -1 11048 21 7097 7987 1477099 359438 8.30119 8.30119 -660.145 -8.30119 0 0 1.07356e+06 3313.45 0.45 0.47 0.20 -1 -1 0.45 0.161733 0.1464 998 475 437 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 17.06 vpr 75.58 MiB 0.09 12208 -1 -1 1 0.31 -1 -1 40500 -1 -1 139 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77392 22 19 2201 1591 1 1295 187 18 18 324 mult_36 auto 37.9 MiB 2.72 7862 35431 7296 24084 4051 75.6 MiB 0.67 0.01 7.71437 -501.545 -7.71437 7.71437 1.07 0.00330828 0.00296073 0.237566 0.213375 46 14965 29 7.79418e+06 4.53424e+06 895831. 2764.91 8.65 1.10649 0.985049 29024 211752 -1 11539 24 7840 8969 1854298 430384 8.08653 8.08653 -737.874 -8.08653 0 0 1.09776e+06 3388.15 0.45 0.57 0.19 -1 -1 0.45 0.1942 0.175501 1040 494 456 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 21.93 vpr 75.76 MiB 0.10 12204 -1 -1 1 0.34 -1 -1 40364 -1 -1 143 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77580 22 19 2275 1648 1 1331 191 18 18 324 mult_36 auto 38.2 MiB 2.85 8291 29288 5409 20620 3259 75.8 MiB 0.54 0.01 7.83458 -536.937 -7.83458 7.83458 1.08 0.0031197 0.00281403 0.187943 0.16739 44 17052 44 7.79418e+06 4.58495e+06 850563. 2625.19 13.30 1.45499 1.28327 28700 205432 -1 12326 23 8867 10137 1782485 427167 8.48854 8.48854 -792.977 -8.48854 0 0 1.07356e+06 3313.45 0.44 0.59 0.20 -1 -1 0.44 0.196261 0.176418 1078 513 475 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 18.80 vpr 76.61 MiB 0.10 12552 -1 -1 1 0.36 -1 -1 40116 -1 -1 151 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78444 22 19 2385 1724 1 1408 200 18 18 324 mult_36 auto 39.2 MiB 3.07 8555 40496 8834 26732 4930 76.6 MiB 0.79 0.01 7.71543 -566.391 -7.71543 7.71543 1.12 0.00385094 0.0035008 0.27539 0.24644 46 16439 47 7.79418e+06 5.08238e+06 895831. 2764.91 9.62 1.27874 1.13414 29024 211752 -1 12581 22 8414 9443 1854623 450803 8.25705 8.25705 -878.508 -8.25705 0 0 1.09776e+06 3388.15 0.48 0.56 0.20 -1 -1 0.48 0.187419 0.16983 1134 532 494 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 14.52 vpr 76.74 MiB 0.10 12364 -1 -1 1 0.38 -1 -1 40708 -1 -1 156 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78584 22 19 2459 1781 1 1444 205 18 18 324 mult_36 auto 39.5 MiB 3.11 8535 40069 7689 26192 6188 76.7 MiB 0.78 0.01 7.99398 -584.948 -7.99398 7.99398 1.12 0.00395272 0.00361013 0.2795 0.251781 46 15532 41 7.79418e+06 5.14577e+06 895831. 2764.91 5.33 1.19537 1.06459 29024 211752 -1 12353 23 7759 8859 1385863 355857 8.68499 8.68499 -778.714 -8.68499 0 0 1.09776e+06 3388.15 0.44 0.47 0.20 -1 -1 0.44 0.191571 0.172778 1172 551 513 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 26.32 vpr 77.48 MiB 0.11 12944 -1 -1 1 0.38 -1 -1 40784 -1 -1 163 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79336 22 19 2565 1853 1 1517 213 22 22 484 mult_36 auto 40.0 MiB 3.36 10332 44028 9540 29782 4706 77.5 MiB 0.86 0.01 7.68032 -561.846 -7.68032 7.68032 1.86 0.00423394 0.00373435 0.30523 0.273104 48 18056 32 1.26954e+07 5.63051e+06 1.44011e+06 2975.42 14.55 1.81213 1.60838 44390 338934 -1 15071 23 10772 12350 2420932 571299 8.73268 8.73268 -1024.67 -8.73268 0 0 1.74100e+06 3597.11 0.80 0.73 0.34 -1 -1 0.80 0.21668 0.1961 1224 570 532 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 53.73 vpr 77.70 MiB 0.11 13028 -1 -1 1 0.38 -1 -1 41044 -1 -1 168 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79564 22 19 2639 1910 1 1554 218 22 22 484 mult_36 auto 40.9 MiB 3.35 9943 44103 9526 30646 3931 77.7 MiB 0.82 0.01 7.49118 -621.709 -7.49118 7.49118 1.79 0.00408202 0.00366684 0.278856 0.247563 44 18610 34 1.26954e+07 5.6939e+06 1.30964e+06 2705.88 42.17 2.17214 1.90982 43422 318546 -1 14497 22 10422 11974 2178353 518046 8.43928 8.43928 -1106.24 -8.43928 0 0 1.65337e+06 3416.05 0.80 0.69 0.32 -1 -1 0.80 0.230301 0.208586 1262 589 551 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 23.70 vpr 78.55 MiB 0.11 13328 -1 -1 1 0.41 -1 -1 41064 -1 -1 175 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80440 22 19 2744 1981 1 1626 225 22 22 484 mult_36 auto 41.6 MiB 3.52 11319 53577 12639 36107 4831 78.6 MiB 1.03 0.01 8.19518 -627.631 -8.19518 8.19518 1.81 0.00400188 0.00355335 0.33293 0.295992 46 19595 34 1.26954e+07 5.78265e+06 1.37878e+06 2848.72 11.90 1.38519 1.22493 43906 328446 -1 15799 20 7815 9008 1698885 394130 8.73379 8.73379 -1044.97 -8.73379 0 0 1.69059e+06 3492.95 0.72 0.54 0.29 -1 -1 0.72 0.197058 0.178535 1313 608 570 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 20.14 vpr 78.50 MiB 0.11 13376 -1 -1 1 0.42 -1 -1 40732 -1 -1 179 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80388 22 19 2818 2038 1 1662 229 22 22 484 mult_36 auto 41.7 MiB 3.62 11687 58329 13444 38031 6854 78.5 MiB 1.21 0.01 7.83563 -668.143 -7.83563 7.83563 1.87 0.00438922 0.00392343 0.383675 0.342488 48 20452 27 1.26954e+07 5.83336e+06 1.44011e+06 2975.42 7.45 1.26814 1.1303 44390 338934 -1 17015 25 12799 14418 2942689 654010 8.81588 8.81588 -1151.48 -8.81588 0 0 1.74100e+06 3597.11 0.82 0.88 0.34 -1 -1 0.82 0.263237 0.238312 1351 627 589 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 28.36 vpr 79.55 MiB 0.12 13888 -1 -1 1 0.44 -1 -1 41488 -1 -1 187 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81456 22 19 2923 2109 1 1730 238 22 22 484 mult_36 auto 42.6 MiB 3.68 11630 59198 14082 39735 5381 79.5 MiB 1.15 0.01 8.35583 -670.999 -8.35583 8.35583 1.83 0.00478166 0.0042249 0.377558 0.334673 48 20271 41 1.26954e+07 6.33079e+06 1.44011e+06 2975.42 15.80 2.24024 1.98377 44390 338934 -1 17298 25 13133 14760 3141332 711676 9.74399 9.74399 -1109.97 -9.74399 0 0 1.74100e+06 3597.11 0.76 0.85 0.34 -1 -1 0.76 0.226556 0.202673 1402 646 608 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 25.58 vpr 80.18 MiB 0.13 13880 -1 -1 1 0.45 -1 -1 41624 -1 -1 193 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82100 22 19 2997 2166 1 1769 244 22 22 484 mult_36 auto 43.0 MiB 3.90 11992 60442 13730 41497 5215 80.2 MiB 1.27 0.02 8.37783 -706.347 -8.37783 8.37783 1.83 0.00472287 0.00417452 0.404252 0.359802 46 22642 38 1.26954e+07 6.40685e+06 1.37878e+06 2848.72 12.62 1.57388 1.38993 43906 328446 -1 17422 23 11950 13600 2755453 629440 9.56259 9.56259 -1125.44 -9.56259 0 0 1.69059e+06 3492.95 0.76 0.83 0.33 -1 -1 0.76 0.246354 0.221281 1441 665 627 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 20.72 vpr 80.75 MiB 0.12 14224 -1 -1 1 0.47 -1 -1 41716 -1 -1 199 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82684 22 19 3101 2236 1 1838 250 22 22 484 mult_36 auto 43.4 MiB 3.91 11314 53766 11250 36397 6119 80.7 MiB 1.00 0.01 8.50903 -699.08 -8.50903 8.50903 1.80 0.00464485 0.004163 0.343069 0.30678 44 22456 48 1.26954e+07 6.48292e+06 1.30964e+06 2705.88 8.28 1.52247 1.3481 43422 318546 -1 17308 22 10540 12094 2333773 553804 9.15685 9.15685 -1153.39 -9.15685 0 0 1.65337e+06 3416.05 0.75 0.73 0.28 -1 -1 0.75 0.252143 0.227723 1491 684 646 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 31.24 vpr 80.89 MiB 0.13 14420 -1 -1 1 0.48 -1 -1 41812 -1 -1 203 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82836 22 19 3175 2293 1 1872 254 22 22 484 mult_36 auto 43.8 MiB 4.17 13673 66182 15113 45335 5734 80.9 MiB 1.27 0.02 8.24663 -726.645 -8.24663 8.24663 1.80 0.00459728 0.00405956 0.390449 0.344173 50 23499 49 1.26954e+07 6.53363e+06 1.50222e+06 3103.76 17.94 2.46001 2.16968 44874 350400 -1 19099 24 12478 14328 2738214 607596 9.29494 9.29494 -1395.99 -9.29494 0 0 1.79645e+06 3711.66 0.79 0.81 0.35 -1 -1 0.79 0.253337 0.227298 1529 703 665 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 35.01 vpr 81.54 MiB 0.14 14460 -1 -1 1 0.51 -1 -1 41496 -1 -1 210 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83500 22 19 3280 2364 1 1945 262 24 24 576 mult_36 auto 44.4 MiB 4.40 13737 63112 14736 42966 5410 81.5 MiB 1.46 0.02 8.70438 -826.125 -8.70438 8.70438 2.26 0.00530001 0.00479361 0.470333 0.418118 48 24848 31 1.53347e+07 7.01838e+06 1.71014e+06 2969.00 20.00 3.01691 2.689 52498 402441 -1 20321 23 11003 12847 2489752 579818 9.82799 9.82799 -1274.48 -9.82799 0 0 2.06880e+06 3591.66 0.99 0.86 0.40 -1 -1 0.99 0.307462 0.280033 1580 722 684 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 25.88 vpr 82.12 MiB 0.14 14556 -1 -1 1 0.53 -1 -1 42300 -1 -1 215 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84092 22 19 3354 2421 1 1981 267 24 24 576 mult_36 auto 45.1 MiB 4.60 12283 66410 15467 44998 5945 82.1 MiB 1.36 0.02 8.46398 -758.271 -8.46398 8.46398 2.17 0.00472731 0.00419657 0.395579 0.350185 48 20857 42 1.53347e+07 7.08177e+06 1.71014e+06 2969.00 10.90 1.77491 1.56841 52498 402441 -1 17767 24 11243 12656 2487383 592395 9.04079 9.04079 -1226.22 -9.04079 0 0 2.06880e+06 3591.66 1.00 0.85 0.40 -1 -1 1.00 0.30973 0.28091 1618 741 703 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 35.89 vpr 82.77 MiB 0.15 14832 -1 -1 1 0.55 -1 -1 41292 -1 -1 222 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84752 22 19 3457 2490 1 2052 274 24 24 576 mult_36 auto 45.6 MiB 4.82 13340 69616 16006 45166 8444 82.8 MiB 1.46 0.02 8.74838 -809.99 -8.74838 8.74838 2.20 0.00591186 0.00538996 0.466662 0.419949 50 23404 47 1.53347e+07 7.17052e+06 1.78400e+06 3097.22 20.53 2.93676 2.60264 53074 415989 -1 19070 21 10387 11943 2313286 543292 9.20774 9.20774 -1215.56 -9.20774 0 0 2.13454e+06 3705.80 0.98 0.74 0.41 -1 -1 0.98 0.262964 0.237441 1667 760 722 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 27.55 vpr 82.93 MiB 0.15 14940 -1 -1 1 0.57 -1 -1 41696 -1 -1 227 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84916 22 19 3531 2547 1 2089 279 24 24 576 mult_36 auto 45.9 MiB 4.63 13529 82269 20031 55843 6395 82.9 MiB 1.72 0.02 8.59729 -884.211 -8.59729 8.59729 2.22 0.00539309 0.00481214 0.51783 0.460064 46 24371 47 1.53347e+07 7.23391e+06 1.63708e+06 2842.15 12.27 1.97068 1.7396 51922 389946 -1 19167 20 9569 11156 1870147 451949 8.84851 8.84851 -1221.04 -8.84851 0 0 2.00908e+06 3487.99 0.95 0.65 0.38 -1 -1 0.95 0.273848 0.248872 1705 779 741 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 38.23 vpr 83.74 MiB 0.15 15236 -1 -1 1 0.59 -1 -1 41648 -1 -1 233 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85752 22 19 3634 2616 1 2155 286 24 24 576 mult_36 auto 46.9 MiB 4.88 14066 76507 18629 50571 7307 83.7 MiB 1.58 0.02 8.32658 -889.45 -8.32658 8.32658 2.21 0.00531035 0.00466593 0.478946 0.422501 46 27199 49 1.53347e+07 7.70597e+06 1.63708e+06 2842.15 22.48 3.00462 2.65441 51922 389946 -1 20364 23 14158 16229 3058167 719678 8.91839 8.91839 -1304.55 -8.91839 0 0 2.00908e+06 3487.99 0.89 0.89 0.39 -1 -1 0.89 0.281098 0.252011 1754 798 760 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 85.63 vpr 84.37 MiB 0.15 15580 -1 -1 1 0.60 -1 -1 42456 -1 -1 238 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86396 22 19 3708 2673 1 2193 291 24 24 576 mult_36 auto 47.3 MiB 4.94 14393 69699 15615 45613 8471 84.4 MiB 1.46 0.02 8.58629 -871.096 -8.58629 8.58629 2.18 0.00580354 0.00522938 0.452299 0.402312 46 27212 37 1.53347e+07 7.76936e+06 1.63708e+06 2842.15 69.93 3.46929 3.04683 51922 389946 -1 20409 23 13934 15633 3266871 800639 8.93951 8.93951 -1205.8 -8.93951 0 0 2.00908e+06 3487.99 0.91 0.94 0.39 -1 -1 0.91 0.284858 0.254321 1792 817 779 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 30.37 vpr 84.80 MiB 0.15 15788 -1 -1 1 0.63 -1 -1 42788 -1 -1 244 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86840 22 19 3810 2741 1 2260 297 24 24 576 mult_36 auto 47.9 MiB 5.14 16071 81477 19018 53219 9240 84.8 MiB 1.77 0.02 8.62924 -937.626 -8.62924 8.62924 2.23 0.00606957 0.00549596 0.532064 0.477678 54 27526 39 1.53347e+07 7.84543e+06 1.87785e+06 3260.16 13.95 2.14196 1.90591 54798 452027 -1 22237 21 13184 15235 2671438 625800 8.94128 8.94128 -1796.27 -8.94128 0 0 2.31032e+06 4010.97 1.05 0.81 0.45 -1 -1 1.05 0.276879 0.249277 1840 836 798 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 38.64 vpr 85.39 MiB 0.16 15880 -1 -1 1 0.64 -1 -1 42540 -1 -1 249 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87440 22 19 3884 2798 1 2296 302 24 24 576 mult_36 auto 48.3 MiB 5.14 14391 78226 17480 49727 11019 85.4 MiB 1.62 0.02 8.36684 -987.151 -8.36684 8.36684 2.21 0.00637851 0.00578517 0.505522 0.45181 54 24867 41 1.53347e+07 7.90882e+06 1.87785e+06 3260.16 22.25 3.00173 2.64897 54798 452027 -1 20180 23 13027 14691 2229389 548851 8.74305 8.74305 -1525.59 -8.74305 0 0 2.31032e+06 4010.97 1.05 0.76 0.45 -1 -1 1.05 0.29856 0.267337 1878 855 817 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 28.49 vpr 85.58 MiB 0.17 16328 -1 -1 1 0.67 -1 -1 44140 -1 -1 256 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87632 22 19 3989 2869 1 2368 310 24 24 576 mult_36 auto 48.6 MiB 5.34 17255 81006 18209 54882 7915 85.6 MiB 1.75 0.02 8.80258 -947.115 -8.80258 8.80258 2.20 0.00654553 0.00588192 0.516044 0.457479 50 29571 39 1.53347e+07 8.39357e+06 1.78400e+06 3097.22 11.72 1.95797 1.72376 53074 415989 -1 23657 24 11958 13884 2978828 669738 8.97365 8.97365 -1515.11 -8.97365 0 0 2.13454e+06 3705.80 0.97 0.99 0.41 -1 -1 0.97 0.358945 0.324475 1929 874 836 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 37.01 vpr 86.20 MiB 0.17 16224 -1 -1 1 0.69 -1 -1 44200 -1 -1 260 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88272 22 19 4063 2926 1 2404 314 24 24 576 mult_36 auto 49.2 MiB 5.68 15542 80264 17530 54759 7975 86.2 MiB 1.72 0.02 8.62444 -966.953 -8.62444 8.62444 2.25 0.00638868 0.00575842 0.504826 0.449973 50 26967 32 1.53347e+07 8.44428e+06 1.78400e+06 3097.22 19.93 3.03156 2.68391 53074 415989 -1 22163 23 12520 14433 2702693 623825 9.06673 9.06673 -1389.09 -9.06673 0 0 2.13454e+06 3705.80 0.94 0.83 0.42 -1 -1 0.94 0.30421 0.272574 1967 893 855 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 40.66 vpr 87.20 MiB 0.18 16716 -1 -1 1 0.70 -1 -1 44076 -1 -1 267 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89292 22 19 4167 2996 1 2473 321 24 24 576 mult_36 auto 49.6 MiB 5.72 16428 105729 25776 65623 14330 86.5 MiB 2.28 0.02 8.37783 -972.516 -8.37783 8.37783 2.22 0.0063636 0.00571461 0.651966 0.574117 56 26967 30 1.53347e+07 8.53303e+06 1.92546e+06 3342.82 22.47 3.18016 2.80437 55374 464059 -1 22842 23 14352 16602 3132067 738407 8.74214 8.74214 -1442.51 -8.74214 0 0 2.36234e+06 4101.29 1.09 1.04 0.46 -1 -1 1.09 0.375168 0.340089 2017 912 874 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 29.05 vpr 87.19 MiB 0.18 16836 -1 -1 1 0.73 -1 -1 44604 -1 -1 272 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89284 22 19 4241 3053 1 2509 326 24 24 576 mult_36 auto 50.4 MiB 5.90 16205 92248 21319 62712 8217 87.2 MiB 2.00 0.02 8.58523 -1008.44 -8.58523 8.58523 2.25 0.00611281 0.00541359 0.573915 0.508331 50 26974 27 1.53347e+07 8.59642e+06 1.78400e+06 3097.22 11.27 2.16395 1.9105 53074 415989 -1 23071 23 14033 16117 2697143 651562 9.06959 9.06959 -1652.11 -9.06959 0 0 2.13454e+06 3705.80 0.97 0.90 0.41 -1 -1 0.97 0.341926 0.307447 2055 931 893 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 43.63 vpr 88.40 MiB 0.21 17308 -1 -1 1 0.73 -1 -1 44880 -1 -1 278 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90520 22 19 4346 3124 1 2580 333 24 24 576 mult_36 auto 50.5 MiB 5.77 19132 83349 17942 56751 8656 87.5 MiB 1.79 0.03 8.74838 -1077.09 -8.74838 8.74838 2.18 0.00705073 0.00639779 0.51176 0.453648 60 28663 28 1.53347e+07 9.06848e+06 2.00908e+06 3487.99 25.95 3.37159 2.97419 57098 500223 -1 25086 25 13155 15106 2766161 645366 9.00665 9.00665 -1546.42 -9.00665 0 0 2.50809e+06 4354.32 1.16 0.94 0.52 -1 -1 1.16 0.358266 0.319686 2106 950 912 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 32.81 vpr 88.05 MiB 0.19 17220 -1 -1 1 0.74 -1 -1 44664 -1 -1 283 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90164 22 19 4420 3181 1 2615 338 24 24 576 mult_36 auto 51.2 MiB 6.17 18236 95594 22929 60216 12449 88.1 MiB 2.16 0.03 8.57692 -1068.8 -8.57692 8.57692 2.23 0.00712538 0.00633311 0.610293 0.536943 54 30155 40 1.53347e+07 9.13187e+06 1.87785e+06 3260.16 14.52 2.52764 2.22502 54798 452027 -1 24126 24 13902 15826 2415015 599306 9.43834 9.43834 -1593.1 -9.43834 0 0 2.31032e+06 4010.97 1.05 0.85 0.44 -1 -1 1.05 0.348125 0.310388 2144 969 931 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 60.01 vpr 88.80 MiB 0.20 17712 -1 -1 1 0.78 -1 -1 44952 -1 -1 291 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90928 22 19 4524 3251 1 2687 346 24 24 576 mult_36 auto 51.8 MiB 6.07 17218 92610 21196 61186 10228 88.8 MiB 2.10 0.03 8.50904 -1102.87 -8.50904 8.50904 2.25 0.0077412 0.00706102 0.626188 0.55675 50 29027 48 1.53347e+07 9.2333e+06 1.78400e+06 3097.22 41.76 3.68451 3.25194 53074 415989 -1 24104 20 14136 16584 2986471 725281 9.06165 9.06165 -1515.82 -9.06165 0 0 2.13454e+06 3705.80 0.99 0.95 0.41 -1 -1 0.99 0.341313 0.308709 2194 988 950 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 43.78 vpr 89.11 MiB 0.20 17544 -1 -1 1 0.79 -1 -1 45040 -1 -1 295 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91252 22 19 4598 3308 1 2721 350 24 24 576 mult_36 auto 52.2 MiB 6.06 18308 102689 24167 65548 12974 89.1 MiB 2.10 0.03 8.50903 -1056.08 -8.50903 8.50903 2.15 0.00703979 0.00635312 0.600221 0.526128 54 31817 39 1.53347e+07 9.28401e+06 1.87785e+06 3260.16 25.46 3.78341 3.32298 54798 452027 -1 25400 23 17578 19604 3706703 897186 9.12306 9.12306 -1712.02 -9.12306 0 0 2.31032e+06 4010.97 0.99 1.18 0.41 -1 -1 0.99 0.386808 0.346951 2232 1007 969 19 0 0 +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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 10.54 vpr 70.70 MiB 0.08 10424 -1 -1 8 0.47 -1 -1 34568 -1 -1 129 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72392 22 19 1764 1664 1 986 174 16 16 256 mult_36 auto 32.5 MiB 0.23 6911 23454 4494 16949 2011 70.7 MiB 0.38 0.01 4.33936 -1301.29 -4.33936 4.33936 0.56 0.00365899 0.00326498 0.195213 0.174646 56 12579 33 6.2557e+06 3.1391e+06 803869. 3140.11 6.06 1.35873 1.18031 23564 190428 -1 11422 16 3998 8028 649808 152476 4.21916 4.21916 -1356.04 -4.21916 0 0 987003. 3855.48 0.24 0.27 0.17 -1 -1 0.24 0.135479 0.1203 966 966 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 18.70 vpr 71.25 MiB 0.12 10744 -1 -1 8 0.49 -1 -1 36248 -1 -1 139 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72960 22 19 1918 1801 1 1083 185 16 16 256 clb mult_36 auto 33.3 MiB 0.31 7452 24381 4617 17851 1913 71.2 MiB 0.40 0.01 4.2726 -1449.28 -4.2726 4.2726 0.57 0.00379266 0.0033986 0.199621 0.178244 58 13092 31 6.2557e+06 3.65564e+06 820238. 3204.05 13.97 1.94719 1.68393 24072 200857 -1 11442 15 3878 7716 550889 129867 4.33936 4.33936 -1521.98 -4.33936 0 0 1.02849e+06 4017.54 0.26 0.28 0.18 -1 -1 0.26 0.149226 0.132931 1047 1047 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 20.82 vpr 71.85 MiB 0.08 10924 -1 -1 8 0.49 -1 -1 37424 -1 -1 143 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73572 22 19 1976 1859 1 1114 189 17 17 289 clb auto 33.9 MiB 0.32 7264 24037 4291 17788 1958 71.8 MiB 0.41 0.01 4.21916 -1486.51 -4.21916 4.21916 0.63 0.00489752 0.00431003 0.201025 0.178991 50 13894 29 6.55708e+06 3.70386e+06 851065. 2944.86 15.84 1.99817 1.72454 25342 195625 -1 12284 15 4638 9503 717159 167904 4.21916 4.21916 -1550.01 -4.21916 0 0 1.01866e+06 3524.77 0.26 0.29 0.17 -1 -1 0.26 0.142612 0.126662 1086 1086 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 9.92 vpr 72.78 MiB 0.12 11700 -1 -1 8 0.62 -1 -1 36784 -1 -1 163 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74524 22 19 2278 2144 1 1240 209 17 17 289 clb auto 35.2 MiB 0.36 8060 29969 5695 21748 2526 72.8 MiB 0.47 0.01 4.45956 -1684.95 -4.45956 4.45956 0.63 0.00463111 0.0041369 0.23625 0.210005 54 15140 22 6.55708e+06 3.94496e+06 896083. 3100.63 4.55 1.53975 1.33532 26206 212621 -1 12577 16 4569 8799 640836 153828 4.21916 4.21916 -1745.34 -4.21916 0 0 1.10294e+06 3816.40 0.28 0.32 0.18 -1 -1 0.28 0.176032 0.155889 1242 1242 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 11.28 vpr 73.71 MiB 0.09 11836 -1 -1 8 0.64 -1 -1 37796 -1 -1 168 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75484 22 19 2336 2202 1 1265 214 18 18 324 clb auto 35.8 MiB 0.40 8290 36637 7934 26298 2405 73.7 MiB 0.57 0.01 4.21916 -1744.34 -4.21916 4.21916 0.73 0.00444452 0.00396062 0.286115 0.253518 50 16367 48 7.67456e+06 4.00524e+06 975281. 3010.13 5.32 1.59346 1.38595 28904 225404 -1 13788 16 5109 10482 831833 193930 4.33936 4.33936 -1820.48 -4.33936 0 0 1.16663e+06 3600.72 0.32 0.37 0.20 -1 -1 0.32 0.182922 0.161524 1281 1281 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 27.64 vpr 73.89 MiB 0.14 12416 -1 -1 8 0.73 -1 -1 37396 -1 -1 175 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75668 22 19 2488 2337 1 1372 222 18 18 324 clb auto 36.6 MiB 0.40 9596 39140 8295 28140 2705 73.9 MiB 0.68 0.01 4.33936 -1880.13 -4.33936 4.33936 0.80 0.0047139 0.00418558 0.324637 0.286821 54 18562 42 7.67456e+06 4.48562e+06 1.02660e+06 3168.53 21.36 2.68022 2.31611 29872 244976 -1 14749 13 5049 10006 745695 175397 4.33936 4.33936 -1903.22 -4.33936 0 0 1.26286e+06 3897.71 0.32 0.31 0.21 -1 -1 0.32 0.161915 0.144401 1360 1360 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 12.23 vpr 74.60 MiB 0.14 12340 -1 -1 8 0.79 -1 -1 37540 -1 -1 182 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76388 22 19 2546 2395 1 1407 229 18 18 324 clb auto 37.3 MiB 0.40 9852 41529 9029 29722 2778 74.6 MiB 0.66 0.01 4.23263 -1906.98 -4.23263 4.23263 0.73 0.00510993 0.00455479 0.311577 0.274832 56 17400 27 7.67456e+06 4.57001e+06 1.05222e+06 3247.61 5.92 1.81762 1.58422 30196 251424 -1 15852 16 5369 10891 854362 201858 4.33936 4.33936 -2002.14 -4.33936 0 0 1.29075e+06 3983.80 0.34 0.40 0.22 -1 -1 0.34 0.201322 0.179277 1399 1399 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 16.26 vpr 75.50 MiB 0.15 12828 -1 -1 8 0.89 -1 -1 37744 -1 -1 193 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77308 22 19 2735 2567 1 1516 240 19 19 361 clb auto 38.2 MiB 0.47 11409 38235 7770 28551 1914 75.5 MiB 0.63 0.01 4.57976 -2047.16 -4.57976 4.57976 0.84 0.00577536 0.00518636 0.3054 0.270886 60 19097 20 8.02416e+06 4.70262e+06 1.23460e+06 3419.94 9.34 2.14776 1.86265 34598 305437 -1 17021 13 5592 11571 878461 200428 4.45956 4.45956 -2093.27 -4.45956 0 0 1.54069e+06 4267.84 0.41 0.36 0.27 -1 -1 0.41 0.181661 0.162213 1497 1497 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 12.01 vpr 75.86 MiB 0.14 12916 -1 -1 8 0.92 -1 -1 38120 -1 -1 200 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77680 22 19 2793 2625 1 1545 247 19 19 361 clb auto 38.7 MiB 0.43 10819 43591 9468 32068 2055 75.9 MiB 0.69 0.01 4.33936 -2094.5 -4.33936 4.33936 0.83 0.00528357 0.00468913 0.332009 0.293678 58 18949 22 8.02416e+06 4.787e+06 1.20750e+06 3344.89 5.03 1.59876 1.39152 34238 298765 -1 17036 18 6019 12139 929813 221385 4.33936 4.33936 -2185.66 -4.33936 0 0 1.51231e+06 4189.22 0.41 0.44 0.25 -1 -1 0.41 0.233865 0.207296 1536 1536 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 12.86 vpr 76.60 MiB 0.11 13404 -1 -1 8 0.92 -1 -1 38712 -1 -1 211 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78440 22 19 2947 2762 1 1644 259 19 19 361 clb auto 39.4 MiB 0.49 11020 43159 9038 31489 2632 76.6 MiB 0.75 0.01 4.2726 -2221.58 -4.2726 4.2726 0.87 0.0059107 0.00523601 0.358623 0.318099 58 19050 20 8.02416e+06 5.3156e+06 1.20750e+06 3344.89 5.62 1.82998 1.60216 34238 298765 -1 17111 13 5734 11444 793982 193134 4.45956 4.45956 -2263.88 -4.45956 0 0 1.51231e+06 4189.22 0.41 0.40 0.26 -1 -1 0.41 0.205585 0.184619 1617 1617 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 13.53 vpr 76.93 MiB 0.18 13496 -1 -1 8 0.95 -1 -1 38724 -1 -1 216 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78780 22 19 3005 2820 1 1676 264 19 19 361 clb auto 39.9 MiB 0.51 11788 45102 9582 33144 2376 76.9 MiB 0.77 0.01 4.33936 -2265.94 -4.33936 4.33936 0.89 0.0060117 0.00535217 0.367787 0.325894 58 20359 33 8.02416e+06 5.37588e+06 1.20750e+06 3344.89 5.91 1.94923 1.70406 34238 298765 -1 17938 13 6106 12521 945470 221782 4.33936 4.33936 -2379.04 -4.33936 0 0 1.51231e+06 4189.22 0.42 0.42 0.26 -1 -1 0.42 0.207164 0.185275 1656 1656 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 16.78 vpr 79.07 MiB 0.16 13996 -1 -1 8 1.12 -1 -1 40320 -1 -1 231 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80972 22 19 3229 3027 1 1787 279 20 20 400 clb auto 41.1 MiB 0.55 13104 50384 10538 36503 3343 79.1 MiB 0.86 0.01 4.33936 -2497.75 -4.33936 4.33936 1.01 0.00631594 0.00563073 0.407978 0.360229 56 24126 48 1.09209e+07 5.5567e+06 1.31097e+06 3277.42 8.53 2.56516 2.25629 37530 313959 -1 21480 15 7283 15143 1320591 298085 4.33936 4.33936 -2564.15 -4.33936 0 0 1.60880e+06 4022.00 0.42 0.54 0.27 -1 -1 0.42 0.247739 0.220975 1771 1771 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 19.25 vpr 79.34 MiB 0.18 14372 -1 -1 8 1.08 -1 -1 40560 -1 -1 237 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81244 22 19 3287 3085 1 1821 285 21 21 441 clb auto 41.4 MiB 0.56 13136 57442 13523 40914 3005 79.3 MiB 0.90 0.01 4.33936 -2504.53 -4.33936 4.33936 1.08 0.00606643 0.00535482 0.414242 0.364529 58 22683 37 1.13066e+07 5.62904e+06 1.48593e+06 3369.47 10.49 2.35823 2.04792 42062 368216 -1 20548 13 6990 14309 1055541 245303 4.21916 4.21916 -2554.32 -4.21916 0 0 1.86135e+06 4220.76 0.51 0.49 0.31 -1 -1 0.51 0.232733 0.208547 1810 1810 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 19.01 vpr 79.30 MiB 0.15 14548 -1 -1 8 1.04 -1 -1 39364 -1 -1 251 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81208 22 19 3453 3234 1 1931 300 21 21 441 clb auto 42.4 MiB 0.57 14985 60480 13891 43297 3292 79.3 MiB 0.96 0.02 4.35283 -2683.1 -4.35283 4.35283 1.06 0.006508 0.00577071 0.447304 0.394235 58 26866 32 1.13066e+07 6.1938e+06 1.48593e+06 3369.47 10.12 2.22103 1.93376 42062 368216 -1 23239 14 7816 16183 1303787 291924 4.33936 4.33936 -2773.32 -4.33936 0 0 1.86135e+06 4220.76 0.54 0.60 0.32 -1 -1 0.54 0.286199 0.260459 1903 1903 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 21.07 vpr 80.57 MiB 0.14 14696 -1 -1 8 1.34 -1 -1 41092 -1 -1 256 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82504 22 19 3511 3292 1 1964 305 21 21 441 clb auto 42.9 MiB 0.62 13949 56735 12285 41462 2988 80.6 MiB 0.96 0.02 4.33936 -2735.23 -4.33936 4.33936 1.10 0.00704446 0.00619059 0.437073 0.384685 64 23032 20 1.13066e+07 6.25408e+06 1.61476e+06 3661.58 11.73 2.81808 2.45166 43822 404518 -1 20960 15 6761 13901 1029805 236692 4.33936 4.33936 -2868.81 -4.33936 0 0 2.02607e+06 4594.27 0.59 0.55 0.37 -1 -1 0.59 0.291523 0.261599 1942 1942 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 43.72 vpr 81.68 MiB 0.11 15144 -1 -1 8 1.20 -1 -1 40048 -1 -1 268 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83640 22 19 3709 3473 1 2078 318 22 22 484 clb mult_36 auto 44.3 MiB 0.60 16039 68673 16015 49006 3652 81.7 MiB 1.06 0.02 4.45956 -2880.87 -4.45956 4.45956 1.15 0.00686048 0.00606524 0.489167 0.431798 58 28453 49 1.25085e+07 6.79474e+06 1.65337e+06 3416.05 34.20 3.77322 3.27923 46570 411141 -1 24738 15 8089 16692 1363351 299594 4.45956 4.45956 -2907.33 -4.45956 0 0 2.07026e+06 4277.39 0.57 0.58 0.34 -1 -1 0.57 0.269084 0.238866 2049 2049 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 19.05 vpr 82.44 MiB 0.15 15328 -1 -1 8 1.43 -1 -1 40280 -1 -1 274 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84420 22 19 3767 3531 1 2107 324 22 22 484 clb mult_36 auto 45.1 MiB 0.63 15345 71492 17040 50634 3818 82.4 MiB 1.15 0.02 4.33936 -2892.9 -4.33936 4.33936 1.15 0.00691652 0.00611562 0.518098 0.456256 58 27413 39 1.25085e+07 6.86707e+06 1.65337e+06 3416.05 8.83 2.77404 2.41177 46570 411141 -1 23887 38 8479 18001 1648879 434292 4.21916 4.21916 -3000.49 -4.21916 0 0 2.07026e+06 4277.39 0.57 0.99 0.35 -1 -1 0.57 0.558583 0.489165 2088 2088 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 23.10 vpr 85.05 MiB 0.22 15676 -1 -1 8 1.39 -1 -1 41812 -1 -1 288 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87096 22 19 3928 3675 1 2213 338 22 22 484 clb mult_36 auto 45.3 MiB 0.65 16438 72074 17115 51144 3815 82.8 MiB 1.12 0.02 4.45956 -3035.76 -4.45956 4.45956 1.16 0.00842428 0.00738986 0.509085 0.449211 66 26913 16 1.25085e+07 7.03584e+06 1.84972e+06 3821.73 12.87 3.03126 2.63675 48986 463441 -1 24448 13 7560 15563 1140627 256835 4.33936 4.33936 -3082.3 -4.33936 0 0 2.30827e+06 4769.15 0.68 0.58 0.41 -1 -1 0.68 0.287148 0.25805 2176 2176 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 41.95 vpr 83.27 MiB 0.21 15936 -1 -1 8 1.45 -1 -1 41916 -1 -1 292 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85272 22 19 3986 3733 1 2248 342 22 22 484 clb mult_36 auto 45.9 MiB 0.69 16132 74432 17571 52958 3903 83.3 MiB 1.25 0.02 4.33936 -3099.4 -4.33936 4.33936 1.20 0.00832441 0.00746229 0.553013 0.486788 56 31857 46 1.25085e+07 7.08406e+06 1.62053e+06 3348.21 31.65 4.71659 4.10469 45606 389969 -1 26896 15 9433 19525 1638672 375328 4.33936 4.33936 -3259.61 -4.33936 0 0 1.98725e+06 4105.89 0.58 0.70 0.31 -1 -1 0.58 0.308955 0.276833 2215 2215 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 27.12 vpr 84.87 MiB 0.20 16892 -1 -1 8 1.52 -1 -1 40940 -1 -1 314 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86904 22 19 4329 4059 1 2377 365 23 23 529 clb auto 47.6 MiB 0.71 17638 86363 21629 61030 3704 84.9 MiB 1.40 0.02 4.33936 -3329.38 -4.33936 4.33936 1.33 0.00842929 0.00749515 0.624815 0.549057 56 32553 43 1.29425e+07 7.74527e+06 1.78215e+06 3368.90 15.79 3.43193 2.97782 49650 429369 -1 28679 14 9750 20297 1623196 372067 4.33936 4.33936 -3511.98 -4.33936 0 0 2.18505e+06 4130.54 0.64 0.72 0.38 -1 -1 0.64 0.329797 0.295474 2394 2394 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 39.21 vpr 85.64 MiB 0.20 17024 -1 -1 8 1.64 -1 -1 42864 -1 -1 320 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87692 22 19 4387 4117 1 2404 371 23 23 529 clb auto 48.3 MiB 0.69 17853 80291 18434 57983 3874 85.6 MiB 1.21 0.02 4.45956 -3364.34 -4.45956 4.45956 1.27 0.00861945 0.00760705 0.533402 0.469055 58 31056 35 1.29425e+07 7.8176e+06 1.81842e+06 3437.46 28.23 4.18589 3.6422 50706 452665 -1 27658 13 8876 18773 1389811 318585 4.45956 4.45956 -3663.51 -4.45956 0 0 2.27638e+06 4303.19 0.70 0.65 0.39 -1 -1 0.70 0.310666 0.27925 2433 2433 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 45.93 vpr 86.46 MiB 0.24 17376 -1 -1 8 1.95 -1 -1 41248 -1 -1 332 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88540 22 19 4547 4260 1 2527 383 23 23 529 clb auto 49.1 MiB 0.73 20564 89343 22019 63218 4106 86.5 MiB 1.37 0.01 4.82016 -3575.21 -4.82016 4.82016 1.28 0.00390532 0.00345335 0.58105 0.50917 60 35309 42 1.29425e+07 7.96226e+06 1.85922e+06 3514.59 34.57 4.57786 3.97843 51234 462879 -1 30694 15 9803 20169 1570176 351008 4.57976 4.57976 -3704.57 -4.57976 0 0 2.31949e+06 4384.67 0.66 0.70 0.30 -1 -1 0.66 0.333676 0.299901 2520 2520 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 45.50 vpr 86.77 MiB 0.23 17680 -1 -1 8 1.67 -1 -1 42968 -1 -1 338 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88856 22 19 4605 4318 1 2554 389 24 24 576 clb auto 49.6 MiB 0.76 18525 94043 22672 66010 5361 86.8 MiB 1.51 0.02 4.45956 -3538.08 -4.45956 4.45956 1.49 0.00864421 0.00766543 0.665878 0.585505 56 33729 42 1.51154e+07 8.03459e+06 1.92546e+06 3342.82 33.34 4.66845 4.07049 53966 463019 -1 29788 15 10190 21554 1705839 394532 4.33936 4.33936 -3753.01 -4.33936 0 0 2.36234e+06 4101.29 0.66 0.75 0.42 -1 -1 0.66 0.352504 0.314279 2559 2559 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 22.04 vpr 87.12 MiB 0.20 17976 -1 -1 8 1.84 -1 -1 42520 -1 -1 351 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89208 22 19 4802 4498 1 2682 403 24 24 576 clb mult_36 auto 50.5 MiB 0.86 19431 94147 22569 66089 5489 87.1 MiB 1.43 0.02 4.45956 -3723.98 -4.45956 4.45956 1.39 0.0086402 0.0075446 0.622163 0.546013 56 35377 34 1.51154e+07 8.5873e+06 1.92546e+06 3342.82 9.78 3.04425 2.66311 53966 463019 -1 31103 16 10222 21287 1730423 396197 4.57976 4.57976 -3856.23 -4.57976 0 0 2.36234e+06 4101.29 0.66 0.81 0.37 -1 -1 0.66 0.393402 0.3512 2665 2665 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 32.37 vpr 98.18 MiB 0.23 18300 -1 -1 8 2.18 -1 -1 43312 -1 -1 355 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100540 22 19 4860 4556 1 2713 407 25 25 625 clb auto 51.0 MiB 0.83 21029 104390 26805 72904 4681 87.5 MiB 1.68 0.02 4.513 -3868.35 -4.513 4.513 1.70 0.00965273 0.008604 0.734399 0.645727 64 35977 33 1.55855e+07 8.63552e+06 2.32897e+06 3726.35 18.72 4.63084 4.04052 62084 585869 -1 31942 15 9860 20631 1603833 349642 4.45956 4.45956 -4006.24 -4.45956 0 0 2.92220e+06 4675.52 0.82 0.72 0.47 -1 -1 0.82 0.357199 0.317705 2704 2704 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 24.48 vpr 92.17 MiB 0.23 18476 -1 -1 8 1.83 -1 -1 43728 -1 -1 370 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94384 22 19 5019 4698 1 2814 422 25 25 625 clb auto 51.8 MiB 0.93 21376 107998 26675 75558 5765 90.1 MiB 1.77 0.02 4.45956 -3908.53 -4.45956 4.45956 1.67 0.0098254 0.00872615 0.770677 0.674985 60 35666 26 1.55855e+07 8.81635e+06 2.19200e+06 3507.21 10.76 3.20825 2.79842 60212 545296 -1 32349 15 10208 20831 1555874 356042 4.45956 4.45956 -4053.04 -4.45956 0 0 2.73590e+06 4377.44 0.86 0.79 0.43 -1 -1 0.86 0.408342 0.366378 2790 2790 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 47.64 vpr 88.98 MiB 0.27 18672 -1 -1 8 1.74 -1 -1 44484 -1 -1 373 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91120 22 19 5077 4756 1 2844 425 25 25 625 clb auto 52.2 MiB 0.79 22187 109021 28352 74964 5705 89.0 MiB 1.76 0.02 4.41198 -3961.73 -4.41198 4.41198 1.69 0.00879722 0.00775738 0.74496 0.650224 60 37354 31 1.55855e+07 8.85252e+06 2.19200e+06 3507.21 34.33 4.88166 4.24231 60212 545296 -1 33432 14 10491 21945 1609096 367850 4.45956 4.45956 -4146.86 -4.45956 0 0 2.73590e+06 4377.44 0.84 0.82 0.48 -1 -1 0.84 0.41413 0.373534 2829 2829 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 28.07 vpr 92.51 MiB 0.19 19240 -1 -1 8 2.21 -1 -1 44384 -1 -1 390 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94728 22 19 5308 4970 1 2955 443 25 25 625 clb auto 53.4 MiB 0.83 22244 116915 29597 81136 6182 91.4 MiB 2.03 0.03 4.33936 -4167.37 -4.33936 4.33936 1.53 0.0115226 0.0100091 0.892569 0.778064 60 38133 46 1.55855e+07 9.45345e+06 2.19200e+06 3507.21 14.07 4.6204 4.04005 60212 545296 -1 33462 15 11128 23144 1658743 384938 4.45956 4.45956 -4499.79 -4.45956 0 0 2.73590e+06 4377.44 0.90 1.01 0.45 -1 -1 0.90 0.494115 0.446228 2951 2951 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 27.25 vpr 95.28 MiB 0.24 19348 -1 -1 8 2.09 -1 -1 44368 -1 -1 397 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97564 22 19 5366 5028 1 2986 450 26 26 676 clb auto 53.8 MiB 0.86 22251 119337 30576 83966 4795 90.3 MiB 1.80 0.02 4.23263 -4198.35 -4.23263 4.23263 1.74 0.0101791 0.00901582 0.76676 0.671252 56 40623 46 1.89118e+07 9.53784e+06 2.31971e+06 3431.53 12.60 4.2101 3.65301 64740 561756 -1 35526 16 11590 24438 1963681 445204 4.45956 4.45956 -4499.81 -4.45956 0 0 2.84390e+06 4206.95 1.08 0.94 0.59 -1 -1 1.08 0.462596 0.415325 2990 2990 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 36.63 vpr 106.50 MiB 0.22 19876 -1 -1 8 2.33 -1 -1 44700 -1 -1 404 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 109060 22 19 5524 5169 1 3090 457 26 26 676 clb auto 54.9 MiB 0.90 23398 130623 34411 91228 4984 92.7 MiB 2.06 0.03 4.45956 -4342.14 -4.45956 4.45956 1.83 0.0108931 0.00969226 0.874489 0.767625 60 39582 39 1.89118e+07 9.62222e+06 2.42032e+06 3580.36 21.57 5.52395 4.85172 66764 605600 -1 35437 14 11429 23247 1712213 389393 4.45956 4.45956 -4737.53 -4.45956 0 0 3.01907e+06 4466.08 0.95 0.86 0.52 -1 -1 0.95 0.4245 0.38237 3075 3075 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 27.82 vpr 97.39 MiB 0.30 20044 -1 -1 8 2.22 -1 -1 45288 -1 -1 410 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99732 22 19 5582 5227 1 3122 463 26 26 676 clb auto 55.3 MiB 0.91 23363 127553 31863 89801 5889 93.0 MiB 2.05 0.03 4.27831 -4344.88 -4.27831 4.27831 1.88 0.0113308 0.00977111 0.865698 0.753045 62 41142 45 1.89118e+07 9.69455e+06 2.49248e+06 3687.09 12.53 4.14757 3.63222 67440 620228 -1 34376 15 11066 23357 1579372 363024 4.33936 4.33936 -4431.47 -4.33936 0 0 3.08129e+06 4558.12 0.99 0.79 0.54 -1 -1 0.99 0.404434 0.366476 3114 3114 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 30.33 vpr 94.30 MiB 0.31 20512 -1 -1 8 2.50 -1 -1 45808 -1 -1 425 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96568 22 19 5779 5407 1 3235 479 26 26 676 clb auto 56.3 MiB 0.95 23950 131589 34547 91644 5398 94.1 MiB 2.07 0.03 4.45956 -4534.82 -4.45956 4.45956 1.69 0.0104165 0.00917941 0.856769 0.747596 60 39921 26 1.89118e+07 1.02714e+07 2.42032e+06 3580.36 14.93 4.02805 3.54349 66764 605600 -1 36239 14 11805 24184 1789503 412264 4.45956 4.45956 -4715.09 -4.45956 0 0 3.01907e+06 4466.08 0.99 0.95 0.51 -1 -1 0.99 0.470665 0.428037 3220 3220 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 36.59 vpr 110.85 MiB 0.37 20516 -1 -1 8 2.59 -1 -1 46132 -1 -1 430 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 113508 22 19 5837 5465 1 3273 484 26 26 676 clb auto 56.7 MiB 0.97 25020 129616 32700 91627 5289 94.3 MiB 2.03 0.03 4.57976 -4526.26 -4.57976 4.57976 1.79 0.0116437 0.0100253 0.85139 0.741577 64 41880 26 1.89118e+07 1.03316e+07 2.57128e+06 3803.68 20.71 4.81991 4.21682 68788 650644 -1 37495 14 11335 23945 1784441 404680 4.69996 4.69996 -4644.5 -4.69996 0 0 3.22435e+06 4769.75 0.92 0.86 0.55 -1 -1 0.92 0.432421 0.387364 3259 3259 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 46.74 vpr 103.91 MiB 0.32 20872 -1 -1 8 2.71 -1 -1 44652 -1 -1 439 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106400 22 19 5997 5608 1 3373 493 27 27 729 clb auto 57.9 MiB 0.97 25273 134767 34216 94888 5663 94.0 MiB 2.08 0.03 4.33936 -4732.99 -4.33936 4.33936 2.01 0.0117245 0.0103985 0.879381 0.769579 58 43707 40 1.94302e+07 1.04401e+07 2.56250e+06 3515.09 30.03 6.12799 5.35774 70962 641579 -1 39096 15 12972 27255 2047572 465723 4.33936 4.33936 -5074.48 -4.33936 0 0 3.20690e+06 4399.04 1.03 0.97 0.54 -1 -1 1.03 0.481698 0.432193 3346 3346 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 35.08 vpr 103.61 MiB 0.33 21048 -1 -1 8 2.71 -1 -1 46328 -1 -1 448 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106092 22 19 6055 5666 1 3405 502 27 27 729 clb auto 58.2 MiB 0.99 28392 148058 39235 102453 6370 95.6 MiB 2.28 0.03 4.45956 -4906.6 -4.45956 4.45956 1.95 0.0117326 0.0103707 0.944955 0.824164 64 46997 30 1.94302e+07 1.05486e+07 2.78336e+06 3818.06 18.00 4.8915 4.2766 73874 704979 -1 41682 14 12369 26229 2151260 462177 4.57976 4.57976 -4997.66 -4.57976 0 0 3.48985e+06 4787.17 1.14 1.03 0.58 -1 -1 1.14 0.500871 0.45281 3385 3385 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 31.23 vpr 106.02 MiB 0.34 21580 -1 -1 8 2.77 -1 -1 46504 -1 -1 465 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 108568 22 19 6324 5918 1 3526 520 27 27 729 clb auto 59.6 MiB 1.03 27539 146820 39871 101893 5056 97.0 MiB 2.26 0.03 4.51871 -5067.03 -4.51871 4.51871 1.97 0.0111348 0.00979228 0.923282 0.803508 62 48996 33 1.94302e+07 1.11496e+07 2.69830e+06 3701.37 13.96 4.39056 3.82676 72418 672039 -1 40575 14 13065 26868 2025427 456199 4.45956 4.45956 -5190.18 -4.45956 0 0 3.33509e+06 4574.88 1.08 1.00 0.62 -1 -1 1.08 0.507719 0.455172 3527 3527 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 29.64 vpr 105.54 MiB 0.34 21732 -1 -1 8 2.92 -1 -1 47164 -1 -1 466 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 108072 22 19 6382 5976 1 3558 521 27 27 729 clb auto 59.9 MiB 1.12 25659 153456 41191 105710 6555 97.2 MiB 2.39 0.03 4.33936 -5054.62 -4.33936 4.33936 1.89 0.011886 0.0105131 0.962151 0.839696 64 44598 31 1.94302e+07 1.11616e+07 2.78336e+06 3818.06 11.66 4.12979 3.59776 73874 704979 -1 39527 15 12801 26550 2060792 459471 4.33936 4.33936 -5205.06 -4.33936 0 0 3.48985e+06 4787.17 1.27 1.11 0.60 -1 -1 1.27 0.584242 0.534985 3566 3566 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 34.32 vpr 109.84 MiB 0.39 22120 -1 -1 8 2.98 -1 -1 47696 -1 -1 479 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 112476 22 19 6542 6119 1 3674 534 28 28 784 clb auto 60.7 MiB 1.10 28922 154249 40163 108774 5312 98.2 MiB 2.48 0.03 4.3928 -5224.73 -4.3928 4.3928 2.18 0.0130927 0.0115431 1.00045 0.873341 62 50690 46 2.18512e+07 1.13183e+07 2.87318e+06 3664.77 15.65 4.81908 4.21244 77276 713722 -1 43234 15 13791 29069 2049597 458131 4.33936 4.33936 -5578.87 -4.33936 0 0 3.55346e+06 4532.48 1.17 1.12 0.59 -1 -1 1.17 0.584391 0.521053 3653 3653 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 45.40 vpr 129.40 MiB 0.37 22404 -1 -1 8 3.18 -1 -1 47348 -1 -1 485 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 132504 22 19 6600 6177 1 3704 540 28 28 784 clb auto 61.2 MiB 1.11 29887 163192 43894 113647 5651 98.5 MiB 2.51 0.03 4.45956 -5273.35 -4.45956 4.45956 2.19 0.0131739 0.0114938 1.01498 0.889057 68 47406 27 2.18512e+07 1.13907e+07 3.12359e+06 3984.17 26.82 7.31251 6.40015 80408 782754 -1 43526 15 12631 27337 1955079 425942 4.45956 4.45956 -5862.66 -4.45956 0 0 3.88747e+06 4958.51 1.25 1.01 0.66 -1 -1 1.25 0.518284 0.464813 3692 3692 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 12.28 vpr 67.25 MiB 0.06 9112 -1 -1 10 0.50 -1 -1 35248 -1 -1 93 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68864 22 19 1149 1049 1 787 138 16 16 256 mult_36 auto 29.3 MiB 0.23 5353 14734 2612 11022 1100 67.2 MiB 0.27 0.01 12.8728 -438.233 -12.8728 12.8728 0.60 0.00301233 0.0027457 0.141779 0.129371 58 10212 29 6.2557e+06 2.70512e+06 820238. 3204.05 8.07 1.40181 1.23568 24072 200857 -1 9272 20 4271 8887 665232 152260 12.1591 12.1591 -509.624 -12.1591 0 0 1.02849e+06 4017.54 0.27 0.28 0.18 -1 -1 0.27 0.129279 0.115798 715 715 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 9.05 vpr 67.98 MiB 0.11 9572 -1 -1 11 0.61 -1 -1 36132 -1 -1 106 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69616 22 19 1261 1144 1 879 152 16 16 256 mult_36 auto 30.0 MiB 0.26 6117 19592 3623 14422 1547 68.0 MiB 0.32 0.01 14.5477 -493.671 -14.5477 14.5477 0.55 0.00309411 0.00282507 0.163552 0.149287 54 12367 50 6.2557e+06 3.25783e+06 784202. 3063.29 4.63 1.20431 1.06182 23308 185586 -1 10124 18 4323 8914 630252 151025 13.4182 13.4182 -560.234 -13.4182 0 0 965591. 3771.84 0.24 0.28 0.17 -1 -1 0.24 0.130681 0.11733 790 790 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 16.23 vpr 68.39 MiB 0.10 9704 -1 -1 11 0.58 -1 -1 35728 -1 -1 112 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70036 22 19 1336 1219 1 929 158 16 16 256 mult_36 auto 30.8 MiB 0.29 6058 21935 4380 15799 1756 68.4 MiB 0.36 0.01 14.3257 -498.361 -14.3257 14.3257 0.55 0.00320002 0.00292482 0.182397 0.166289 50 12213 32 6.2557e+06 3.33016e+06 744679. 2908.90 11.56 1.45214 1.27851 22544 170752 -1 10704 21 5105 10269 775532 182286 13.2272 13.2272 -586.513 -13.2272 0 0 891356. 3481.86 0.23 0.35 0.15 -1 -1 0.23 0.159312 0.142769 846 846 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 11.29 vpr 69.07 MiB 0.14 9944 -1 -1 11 0.67 -1 -1 36120 -1 -1 121 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70728 22 19 1446 1312 1 989 167 16 16 256 mult_36 auto 31.3 MiB 0.28 6832 19904 3494 14748 1662 69.1 MiB 0.35 0.01 14.4741 -506.161 -14.4741 14.4741 0.58 0.00352182 0.00321176 0.178495 0.16295 56 12964 25 6.2557e+06 3.43866e+06 803869. 3140.11 6.34 1.32683 1.16978 23564 190428 -1 11746 19 5311 11233 903927 210792 13.4085 13.4085 -603.047 -13.4085 0 0 987003. 3855.48 0.25 0.35 0.17 -1 -1 0.25 0.163275 0.147148 919 919 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 10.10 vpr 69.41 MiB 0.08 10084 -1 -1 11 0.67 -1 -1 36048 -1 -1 128 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71072 22 19 1507 1373 1 1035 174 16 16 256 mult_36 auto 32.0 MiB 0.28 7464 21029 3707 15454 1868 69.4 MiB 0.36 0.01 14.9867 -537.872 -14.9867 14.9867 0.59 0.00395163 0.00358045 0.179772 0.163435 58 13697 35 6.2557e+06 3.52304e+06 820238. 3204.05 5.18 1.10905 0.982387 24072 200857 -1 12092 18 5182 10900 801705 187365 13.6413 13.6413 -622.575 -13.6413 0 0 1.02849e+06 4017.54 0.26 0.36 0.18 -1 -1 0.26 0.160493 0.144356 961 961 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 9.66 vpr 70.07 MiB 0.10 10332 -1 -1 11 0.71 -1 -1 36144 -1 -1 135 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71748 22 19 1596 1445 1 1100 182 16 16 256 clb mult_36 auto 32.6 MiB 0.28 7815 21297 3392 16393 1512 70.1 MiB 0.38 0.01 14.7981 -567.745 -14.7981 14.7981 0.57 0.00384762 0.00349311 0.187979 0.171004 56 15000 37 6.2557e+06 4.00342e+06 803869. 3140.11 4.70 1.20261 1.06324 23564 190428 -1 13198 19 5867 12427 977161 232477 13.6952 13.6952 -693.57 -13.6952 0 0 987003. 3855.48 0.26 0.43 0.18 -1 -1 0.26 0.177795 0.160712 1013 1013 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 11.89 vpr 70.29 MiB 0.14 10576 -1 -1 11 0.68 -1 -1 36936 -1 -1 137 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71980 22 19 1656 1505 1 1146 184 16 16 256 clb mult_36 auto 32.7 MiB 0.30 8226 19535 3061 14927 1547 70.3 MiB 0.35 0.01 14.4967 -584.138 -14.4967 14.4967 0.57 0.00393457 0.00358032 0.168607 0.15344 58 15564 50 6.2557e+06 4.02754e+06 820238. 3204.05 6.98 1.3782 1.22146 24072 200857 -1 13060 20 5925 12416 924193 221803 13.4156 13.4156 -768.957 -13.4156 0 0 1.02849e+06 4017.54 0.28 0.34 0.19 -1 -1 0.28 0.16696 0.149639 1054 1054 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 15.54 vpr 70.82 MiB 0.09 10748 -1 -1 12 0.81 -1 -1 37008 -1 -1 145 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72520 22 19 1754 1586 1 1213 192 17 17 289 clb auto 33.6 MiB 0.30 9436 23971 4257 18177 1537 70.8 MiB 0.45 0.01 15.1206 -613.533 -15.1206 15.1206 0.65 0.00447903 0.00407881 0.226797 0.206229 60 17512 49 6.55708e+06 4.12398e+06 958460. 3316.47 10.01 1.45888 1.29374 27358 235245 -1 14560 18 6447 13271 1064829 240334 14.1746 14.1746 -764.795 -14.1746 0 0 1.19711e+06 4142.24 0.31 0.42 0.20 -1 -1 0.31 0.173969 0.156345 1115 1115 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 11.30 vpr 71.59 MiB 0.15 10996 -1 -1 11 0.85 -1 -1 37792 -1 -1 154 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73308 22 19 1827 1659 1 1262 201 17 17 289 clb auto 34.2 MiB 0.33 9095 29013 5239 21338 2436 71.6 MiB 0.47 0.01 14.6828 -638.764 -14.6828 14.6828 0.64 0.00429262 0.00389892 0.233123 0.211587 64 16634 32 6.55708e+06 4.23247e+06 1.01866e+06 3524.77 5.32 1.32124 1.16817 28222 252754 -1 14512 23 6357 13024 1029780 236641 13.8083 13.8083 -765.715 -13.8083 0 0 1.27888e+06 4425.19 0.33 0.57 0.25 -1 -1 0.33 0.267912 0.242576 1169 1169 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 15.76 vpr 71.86 MiB 0.14 11232 -1 -1 12 0.87 -1 -1 38128 -1 -1 157 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73580 22 19 1905 1720 1 1323 205 18 18 324 mult_36 auto 34.4 MiB 0.34 9808 34633 7458 24783 2392 71.9 MiB 0.59 0.01 14.9939 -659.479 -14.9939 14.9939 0.75 0.00453045 0.00412462 0.291424 0.264208 58 19445 41 7.67456e+06 4.66464e+06 1.07356e+06 3313.45 9.40 1.57466 1.39573 30840 265148 -1 16122 22 7808 16540 1310721 294165 14.0003 14.0003 -877.662 -14.0003 0 0 1.34501e+06 4151.27 0.37 0.54 0.24 -1 -1 0.37 0.228984 0.204045 1210 1210 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 16.84 vpr 72.42 MiB 0.13 11360 -1 -1 12 0.93 -1 -1 36812 -1 -1 163 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74156 22 19 1979 1794 1 1362 211 18 18 324 mult_36 auto 35.0 MiB 0.36 10247 30307 5737 22712 1858 72.4 MiB 0.53 0.01 15.5582 -672.236 -15.5582 15.5582 0.77 0.00485803 0.00441306 0.256813 0.232741 64 18408 28 7.67456e+06 4.73696e+06 1.16663e+06 3600.72 10.39 2.12101 1.87481 32132 291232 -1 16259 20 7082 14613 1290097 280950 14.0222 14.0222 -882.314 -14.0222 0 0 1.46385e+06 4518.05 0.40 0.54 0.27 -1 -1 0.40 0.22467 0.202927 1265 1265 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 15.82 vpr 73.32 MiB 0.17 11668 -1 -1 12 0.98 -1 -1 37456 -1 -1 174 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75084 22 19 2073 1871 1 1415 222 18 18 324 clb mult_36 auto 35.8 MiB 0.36 10262 31759 5655 24329 1775 73.3 MiB 0.54 0.01 15.2851 -698.101 -15.2851 15.2851 0.74 0.00493404 0.00448269 0.2635 0.238323 62 19471 45 7.67456e+06 4.86957e+06 1.13028e+06 3488.51 9.42 2.10207 1.85772 31488 277500 -1 15897 19 7242 15053 992914 233872 13.8751 13.8751 -842.351 -13.8751 0 0 1.39838e+06 4315.99 0.40 0.38 0.24 -1 -1 0.40 0.19889 0.1808 1322 1322 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 17.70 vpr 73.64 MiB 0.16 11832 -1 -1 12 1.09 -1 -1 37448 -1 -1 180 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75408 22 19 2130 1928 1 1466 228 18 18 324 clb mult_36 auto 36.0 MiB 0.39 10652 35724 6736 26248 2740 73.6 MiB 0.62 0.01 15.3608 -721.142 -15.3608 15.3608 0.75 0.00597821 0.00546213 0.299863 0.271939 64 19028 28 7.67456e+06 4.9419e+06 1.16663e+06 3600.72 10.86 2.2653 1.99637 32132 291232 -1 16939 19 7400 15347 1200851 276434 14.0936 14.0936 -926.755 -14.0936 0 0 1.46385e+06 4518.05 0.39 0.51 0.26 -1 -1 0.39 0.222111 0.198927 1360 1360 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 17.11 vpr 74.02 MiB 0.12 12140 -1 -1 12 1.13 -1 -1 37940 -1 -1 187 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75796 22 19 2238 2019 1 1561 236 18 18 324 clb mult_36 auto 36.7 MiB 0.43 11693 33041 6232 24708 2101 74.0 MiB 0.55 0.01 15.2709 -741.067 -15.2709 15.2709 0.76 0.00543054 0.00493306 0.255016 0.23037 66 20738 30 7.67456e+06 5.42228e+06 1.20206e+06 3710.05 10.34 2.15425 1.89758 32456 298936 -1 18181 22 7826 16091 1236799 278644 14.0029 14.0029 -926.281 -14.0029 0 0 1.50024e+06 4630.37 0.41 0.58 0.27 -1 -1 0.41 0.259477 0.235156 1431 1431 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 19.01 vpr 74.54 MiB 0.16 12144 -1 -1 12 1.11 -1 -1 38164 -1 -1 195 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76324 22 19 2299 2080 1 1608 244 19 19 361 clb auto 37.1 MiB 0.41 11301 36058 6609 27104 2345 74.5 MiB 0.65 0.01 14.923 -735.308 -14.923 14.923 0.86 0.00534793 0.00485661 0.303911 0.274206 64 20937 44 8.02416e+06 5.51872e+06 1.31179e+06 3633.76 11.74 2.67315 2.36662 35678 328177 -1 18669 18 8044 16895 1241523 284464 14.0172 14.0172 -952.614 -14.0172 0 0 1.64578e+06 4558.95 0.44 0.59 0.30 -1 -1 0.44 0.24627 0.222618 1473 1473 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 22.76 vpr 75.90 MiB 0.16 12548 -1 -1 12 1.19 -1 -1 38552 -1 -1 198 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77720 22 19 2400 2164 1 1689 248 22 22 484 mult_36 auto 37.7 MiB 0.40 12158 39926 7813 29522 2591 75.0 MiB 0.70 0.01 14.8648 -767.523 -14.8648 14.8648 1.17 0.00572308 0.00520244 0.335179 0.302059 60 23104 32 1.25085e+07 5.95089e+06 1.69059e+06 3492.95 14.33 2.65821 2.35306 47054 420411 -1 20299 21 9082 18938 1454657 337588 13.6423 13.6423 -1032.35 -13.6423 0 0 2.10969e+06 4358.87 0.58 0.59 0.35 -1 -1 0.58 0.261257 0.233815 1537 1537 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 21.29 vpr 75.84 MiB 0.13 12620 -1 -1 12 1.25 -1 -1 38124 -1 -1 209 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77656 22 19 2474 2238 1 1711 259 22 22 484 mult_36 auto 38.5 MiB 0.44 12757 40684 7873 30286 2525 75.8 MiB 0.68 0.01 15.4392 -839.852 -15.4392 15.4392 1.27 0.00601882 0.00546276 0.326232 0.294085 58 23933 30 1.25085e+07 6.0835e+06 1.65337e+06 3416.05 12.55 2.34271 2.06868 46570 411141 -1 21207 19 8638 17916 1389140 314739 14.0518 14.0518 -1051.2 -14.0518 0 0 2.07026e+06 4277.39 0.59 0.67 0.39 -1 -1 0.59 0.276064 0.248582 1592 1592 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 22.33 vpr 77.34 MiB 0.19 12884 -1 -1 12 1.38 -1 -1 39724 -1 -1 218 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79200 22 19 2603 2350 1 1810 268 22 22 484 mult_36 auto 39.0 MiB 0.46 13186 50322 10743 36523 3056 76.3 MiB 0.88 0.01 15.5518 -816.83 -15.5518 15.5518 1.23 0.00662617 0.00604503 0.414396 0.372724 62 24588 33 1.25085e+07 6.19199e+06 1.74100e+06 3597.11 13.22 2.60743 2.31056 47538 430501 -1 20805 18 8957 18800 1243406 292540 14.4664 14.4664 -1027.29 -14.4664 0 0 2.15309e+06 4448.52 0.62 0.58 0.38 -1 -1 0.62 0.271163 0.244697 1684 1684 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 20.59 vpr 77.16 MiB 0.15 13112 -1 -1 12 1.49 -1 -1 38740 -1 -1 235 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79008 22 19 2694 2441 1 1869 285 22 22 484 mult_36 auto 39.9 MiB 0.47 13404 55568 12221 40738 2609 77.2 MiB 0.89 0.01 15.7845 -884.885 -15.7845 15.7845 1.14 0.00621063 0.00561554 0.400472 0.360813 58 25898 47 1.25085e+07 6.39692e+06 1.65337e+06 3416.05 11.28 2.49862 2.20652 46570 411141 -1 22415 18 9638 20303 1557871 353329 14.6258 14.6258 -1228.12 -14.6258 0 0 2.07026e+06 4277.39 0.62 0.67 0.37 -1 -1 0.62 0.283736 0.254041 1756 1756 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 18.06 vpr 77.56 MiB 0.12 13536 -1 -1 13 1.45 -1 -1 39852 -1 -1 238 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79424 22 19 2787 2517 1 1950 289 22 22 484 mult_36 auto 40.4 MiB 0.47 14193 55679 12103 40411 3165 77.6 MiB 0.87 0.01 15.8535 -890.497 -15.8535 15.8535 1.16 0.00613052 0.00552923 0.398065 0.358796 64 25879 44 1.25085e+07 6.82909e+06 1.79645e+06 3711.66 8.59 2.23041 1.9775 48502 451691 -1 23340 20 10026 21566 1667227 372669 14.8148 14.8148 -1264.23 -14.8148 0 0 2.25323e+06 4655.43 0.66 0.73 0.39 -1 -1 0.66 0.321437 0.288951 1812 1812 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 18.87 vpr 77.76 MiB 0.17 13732 -1 -1 13 1.43 -1 -1 39000 -1 -1 240 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79624 22 19 2834 2564 1 1962 291 22 22 484 mult_36 auto 40.8 MiB 0.49 13536 57167 12483 41925 2759 77.8 MiB 0.93 0.01 16.4686 -958.47 -16.4686 16.4686 1.19 0.00655799 0.00594363 0.434681 0.391476 56 26290 37 1.25085e+07 6.8532e+06 1.62053e+06 3348.21 9.69 2.424 2.14289 45606 389969 -1 23558 19 10115 20843 1765620 396726 15.2737 15.2737 -1309.09 -15.2737 0 0 1.98725e+06 4105.89 0.55 0.71 0.33 -1 -1 0.55 0.295054 0.264891 1840 1840 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 21.81 vpr 78.48 MiB 0.21 14128 -1 -1 13 1.46 -1 -1 40480 -1 -1 248 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80368 22 19 2941 2654 1 2054 299 22 22 484 mult_36 auto 41.8 MiB 0.51 15246 57242 12170 41953 3119 78.5 MiB 0.96 0.02 16.027 -991.235 -16.027 16.027 1.20 0.00693133 0.00619463 0.44169 0.395443 64 27503 49 1.25085e+07 6.94964e+06 1.79645e+06 3711.66 12.00 3.04662 2.69559 48502 451691 -1 24694 20 10978 22860 1875926 410091 14.825 14.825 -1244.93 -14.825 0 0 2.25323e+06 4655.43 0.66 0.81 0.40 -1 -1 0.66 0.345171 0.309672 1910 1910 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 26.06 vpr 79.26 MiB 0.23 14188 -1 -1 13 1.66 -1 -1 40648 -1 -1 255 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81164 22 19 3011 2724 1 2092 306 22 22 484 mult_36 auto 42.2 MiB 0.53 16035 54896 10037 41826 3033 79.3 MiB 0.92 0.02 16.2145 -949.212 -16.2145 16.2145 1.22 0.00679453 0.00609077 0.419241 0.375634 66 28782 30 1.25085e+07 7.03402e+06 1.84972e+06 3821.73 16.09 3.41353 3.01579 48986 463441 -1 25047 19 10139 20834 1587245 346930 15.0236 15.0236 -1294.7 -15.0236 0 0 2.30827e+06 4769.15 0.70 0.72 0.42 -1 -1 0.70 0.322831 0.290393 1961 1961 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 30.63 vpr 86.89 MiB 0.26 14340 -1 -1 13 1.81 -1 -1 39700 -1 -1 267 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88976 22 19 3132 2828 1 2184 319 24 24 576 mult_36 auto 42.8 MiB 0.46 17547 68926 15068 50266 3592 80.1 MiB 1.09 0.02 16.8989 -1003.53 -16.8989 16.8989 1.38 0.0076356 0.00683407 0.50224 0.45132 66 30889 32 1.51154e+07 7.57468e+06 2.19797e+06 3815.93 19.70 3.69156 3.2406 57990 550195 -1 27250 20 11460 23617 1872163 409781 15.6176 15.6176 -1299.07 -15.6176 0 0 2.74415e+06 4764.15 0.79 0.78 0.46 -1 -1 0.79 0.338042 0.301913 2045 2045 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 29.41 vpr 88.37 MiB 0.16 14584 -1 -1 13 1.70 -1 -1 41148 -1 -1 265 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90488 22 19 3159 2855 1 2196 317 24 24 576 mult_36 auto 42.9 MiB 0.55 16932 61877 13446 44918 3513 79.7 MiB 1.04 0.02 16.2457 -960.976 -16.2457 16.2457 1.49 0.00735925 0.00666055 0.481595 0.429858 62 30869 44 1.51154e+07 7.55058e+06 2.06880e+06 3591.66 18.42 3.66596 3.22449 56266 511197 -1 25725 21 11770 24419 1784410 399616 14.9844 14.9844 -1490.21 -14.9844 0 0 2.55996e+06 4444.37 0.70 0.87 0.42 -1 -1 0.70 0.370543 0.329245 2053 2053 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 22.63 vpr 80.83 MiB 0.22 14808 -1 -1 13 1.79 -1 -1 39864 -1 -1 277 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82768 22 19 3284 2963 1 2301 329 24 24 576 mult_36 auto 44.0 MiB 0.55 17200 72969 16865 52707 3397 80.8 MiB 1.22 0.02 16.8292 -1045.83 -16.8292 16.8292 1.48 0.00764088 0.00693267 0.552933 0.493389 64 30780 34 1.51154e+07 7.69524e+06 2.13454e+06 3705.80 11.52 2.60006 2.30588 57414 536310 -1 27176 18 11318 23326 1797827 402950 15.3939 15.3939 -1471.53 -15.3939 0 0 2.67880e+06 4650.70 0.74 0.74 0.45 -1 -1 0.74 0.322609 0.290396 2141 2141 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 29.11 vpr 90.50 MiB 0.21 14876 -1 -1 13 1.88 -1 -1 40088 -1 -1 285 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92668 22 19 3343 3022 1 2312 337 24 24 576 mult_36 auto 44.0 MiB 0.60 17655 65969 14340 48135 3494 81.4 MiB 1.08 0.02 16.0196 -1055.59 -16.0196 16.0196 1.41 0.00754334 0.00682824 0.470638 0.422086 66 31825 29 1.51154e+07 7.79168e+06 2.19797e+06 3815.93 17.70 3.29781 2.9011 57990 550195 -1 28310 20 11782 25469 2081748 441572 14.6238 14.6238 -1372.08 -14.6238 0 0 2.74415e+06 4764.15 0.81 0.88 0.48 -1 -1 0.81 0.369709 0.3323 2181 2181 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 22.46 vpr 81.66 MiB 0.20 15404 -1 -1 13 1.92 -1 -1 41980 -1 -1 297 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83620 22 19 3448 3110 1 2410 350 24 24 576 mult_36 auto 44.9 MiB 0.61 18216 74330 15465 55165 3700 81.7 MiB 1.24 0.02 16.5983 -1183.91 -16.5983 16.5983 1.44 0.00827837 0.0074879 0.558665 0.497978 64 32294 34 1.51154e+07 8.33234e+06 2.13454e+06 3705.80 10.63 2.63585 2.32134 57414 536310 -1 29011 22 12502 26791 2090340 466191 15.183 15.183 -1610.9 -15.183 0 0 2.67880e+06 4650.70 0.80 0.91 0.47 -1 -1 0.80 0.397758 0.352946 2249 2249 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 24.24 vpr 82.30 MiB 0.19 15344 -1 -1 13 2.14 -1 -1 40576 -1 -1 296 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84272 22 19 3510 3172 1 2428 349 24 24 576 mult_36 auto 45.2 MiB 0.62 19038 77713 18285 55615 3813 82.3 MiB 1.34 0.02 16.0787 -1112.26 -16.0787 16.0787 1.52 0.00828642 0.00751549 0.593279 0.52989 64 34097 44 1.51154e+07 8.32028e+06 2.13454e+06 3705.80 11.86 2.84035 2.50456 57414 536310 -1 29913 21 11980 24610 1957821 434197 14.7048 14.7048 -1462.97 -14.7048 0 0 2.67880e+06 4650.70 0.80 1.05 0.46 -1 -1 0.80 0.482128 0.439249 2292 2292 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 23.32 vpr 82.90 MiB 0.17 15596 -1 -1 13 2.09 -1 -1 38484 -1 -1 307 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84888 22 19 3598 3243 1 2500 360 24 24 576 mult_36 auto 45.9 MiB 0.62 18531 73320 15951 53487 3882 82.9 MiB 1.19 0.02 16.0487 -1173.77 -16.0487 16.0487 1.42 0.00816838 0.00728489 0.535999 0.476096 66 32263 26 1.51154e+07 8.45288e+06 2.19797e+06 3815.93 11.10 2.8846 2.54183 57990 550195 -1 28777 20 12049 25629 1817976 407819 14.7608 14.7608 -1782.48 -14.7608 0 0 2.74415e+06 4764.15 0.81 0.97 0.49 -1 -1 0.81 0.447761 0.405938 2343 2343 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 24.96 vpr 83.20 MiB 0.27 15676 -1 -1 13 1.99 -1 -1 42564 -1 -1 317 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85196 22 19 3689 3334 1 2572 370 24 24 576 mult_36 auto 46.4 MiB 0.65 18865 83971 19794 59912 4265 83.2 MiB 1.39 0.02 15.5441 -1198.02 -15.5441 15.5441 1.44 0.00874975 0.00795207 0.616877 0.549789 64 34373 50 1.51154e+07 8.57344e+06 2.13454e+06 3705.80 12.90 2.98074 2.63968 57414 536310 -1 30131 18 12902 26588 2258286 492592 14.6142 14.6142 -1654.43 -14.6142 0 0 2.67880e+06 4650.70 0.79 0.87 0.46 -1 -1 0.79 0.358025 0.321617 2415 2415 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 32.60 vpr 91.75 MiB 0.28 16060 -1 -1 13 2.25 -1 -1 38912 -1 -1 321 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93956 22 19 3763 3391 1 2638 375 24 24 576 mult_36 auto 46.9 MiB 0.49 20344 82786 19366 58713 4707 84.0 MiB 1.38 0.02 15.9362 -1227.43 -15.9362 15.9362 1.43 0.00867811 0.00784556 0.597045 0.531765 64 36339 43 1.51154e+07 9.01766e+06 2.13454e+06 3705.80 20.22 4.12437 3.64181 57414 536310 -1 32095 22 13539 28548 2332538 514330 14.744 14.744 -1781.1 -14.744 0 0 2.67880e+06 4650.70 0.80 1.00 0.45 -1 -1 0.80 0.435504 0.389871 2452 2452 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 63.22 vpr 84.43 MiB 0.27 16216 -1 -1 13 2.29 -1 -1 42476 -1 -1 323 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86456 22 19 3845 3473 1 2666 377 24 24 576 mult_36 auto 47.4 MiB 0.64 19870 79315 17108 58557 3650 84.4 MiB 1.35 0.02 15.8291 -1159.73 -15.8291 15.8291 1.48 0.00874928 0.00791373 0.589366 0.523036 58 37156 41 1.51154e+07 9.04176e+06 1.96475e+06 3411.02 50.72 4.39914 3.86705 55114 488114 -1 31826 21 13682 28559 2181283 495303 14.7048 14.7048 -1619.73 -14.7048 0 0 2.46106e+06 4272.68 0.71 0.97 0.39 -1 -1 0.71 0.432828 0.388718 2515 2515 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 34.19 vpr 95.70 MiB 0.30 16696 -1 -1 13 2.35 -1 -1 42724 -1 -1 337 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98000 22 19 3983 3594 1 2790 391 24 24 576 clb mult_36 auto 48.3 MiB 0.70 20826 97563 23505 69067 4991 85.4 MiB 1.57 0.02 16.1383 -1250.84 -16.1383 16.1383 1.41 0.00962343 0.00858643 0.672502 0.597474 68 35894 26 1.51154e+07 9.21054e+06 2.25030e+06 3906.77 21.08 4.40596 3.90419 58566 560801 -1 32368 22 13885 29969 2157797 487394 14.8224 14.8224 -1676.6 -14.8224 0 0 2.80126e+06 4863.30 0.78 0.98 0.47 -1 -1 0.78 0.459592 0.412945 2616 2616 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 24.05 vpr 87.84 MiB 0.15 16744 -1 -1 13 2.49 -1 -1 38852 -1 -1 341 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89944 22 19 4025 3636 1 2807 395 24 24 576 clb mult_36 auto 49.0 MiB 0.65 20555 85827 18761 62689 4377 85.9 MiB 1.41 0.02 15.9366 -1257.71 -15.9366 15.9366 1.41 0.00929673 0.00841654 0.600275 0.534894 66 36074 31 1.51154e+07 9.25876e+06 2.19797e+06 3815.93 11.41 3.11841 2.75444 57990 550195 -1 32231 18 13521 28658 2093839 472895 14.6727 14.6727 -1673.74 -14.6727 0 0 2.74415e+06 4764.15 0.78 0.72 0.50 -1 -1 0.78 0.332776 0.301428 2639 2639 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 37.25 vpr 99.59 MiB 0.28 17008 -1 -1 13 2.57 -1 -1 39368 -1 -1 355 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101976 22 19 4164 3758 1 2908 410 25 25 625 clb auto 49.9 MiB 0.78 24013 87164 19079 63957 4128 86.7 MiB 1.53 0.03 16.6034 -1378.21 -16.6034 16.6034 1.65 0.0113847 0.0102893 0.659189 0.587169 74 38864 29 1.55855e+07 9.82352e+06 2.63203e+06 4211.25 23.48 4.53826 4.00027 65828 666824 -1 36038 21 13775 28917 2595162 541555 15.5436 15.5436 -1942.02 -15.5436 0 0 3.27126e+06 5234.01 0.97 1.01 0.54 -1 -1 0.97 0.381898 0.347421 2741 2741 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 27.11 vpr 87.12 MiB 0.21 17160 -1 -1 13 2.59 -1 -1 39248 -1 -1 356 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89212 22 19 4190 3784 1 2926 411 25 25 625 clb auto 49.7 MiB 0.76 22437 93558 20689 67553 5316 86.7 MiB 1.50 0.02 16.4936 -1315.59 -16.4936 16.4936 1.59 0.00547894 0.00498528 0.640403 0.568865 66 39166 37 1.55855e+07 9.83558e+06 2.39749e+06 3835.99 12.82 3.14878 2.7644 62708 601000 -1 34785 23 14166 29888 2365680 520343 15.4749 15.4749 -1830.59 -15.4749 0 0 2.99279e+06 4788.46 0.94 1.16 0.55 -1 -1 0.94 0.542515 0.485758 2748 2748 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 25.89 vpr 88.01 MiB 0.30 17380 -1 -1 13 2.75 -1 -1 43640 -1 -1 366 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90120 22 19 4305 3882 1 2980 421 25 25 625 clb auto 50.8 MiB 0.74 22535 99772 22908 71362 5502 87.8 MiB 1.63 0.03 16.3966 -1337.54 -16.3966 16.3966 1.58 0.0106801 0.00931618 0.693838 0.614797 66 38966 35 1.55855e+07 9.95613e+06 2.39749e+06 3835.99 11.41 3.27514 2.88885 62708 601000 -1 34679 18 14178 29765 2227761 499078 15.1266 15.1266 -2035.35 -15.1266 0 0 2.99279e+06 4788.46 0.89 0.97 0.52 -1 -1 0.89 0.436174 0.392121 2826 2826 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 27.64 vpr 92.35 MiB 0.20 17548 -1 -1 13 2.75 -1 -1 39780 -1 -1 370 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94564 22 19 4363 3940 1 3039 425 25 25 625 clb auto 50.9 MiB 0.79 23857 97842 22331 71351 4160 87.9 MiB 1.71 0.02 16.7981 -1392.86 -16.7981 16.7981 1.62 0.00937252 0.0084418 0.734853 0.652986 70 40949 38 1.55855e+07 1.00044e+07 2.52006e+06 4032.10 12.89 3.29691 2.90817 64580 638411 -1 36845 20 14992 31313 2738027 581899 15.2222 15.2222 -1993.63 -15.2222 0 0 3.16512e+06 5064.19 0.94 1.13 0.54 -1 -1 0.94 0.475349 0.426546 2865 2865 -1 -1 -1 -1 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 7.17 vpr 71.81 MiB 0.07 10472 -1 -1 1 0.25 -1 -1 35508 -1 -1 125 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73532 22 19 1974 1653 1 1039 170 16 16 256 mult_36 auto 34.2 MiB 0.37 6283 25550 5428 17285 2837 71.8 MiB 0.45 0.01 4.18011 -1206.26 -4.18011 4.18011 0.57 0.00350846 0.00313293 0.213571 0.191347 44 12375 36 6.32612e+06 3.15375e+06 649498. 2537.10 2.89 0.908391 0.79608 22336 155612 -1 8982 15 3271 4074 387555 98826 4.36136 4.36136 -1211.82 -4.36136 0 0 820238. 3204.05 0.21 0.22 0.14 -1 -1 0.21 0.128601 0.11497 955 708 247 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 9.37 vpr 72.36 MiB 0.08 10772 -1 -1 1 0.26 -1 -1 36860 -1 -1 134 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74096 22 19 2144 1789 1 1138 180 16 16 256 clb mult_36 auto 35.1 MiB 0.36 6909 28120 5467 19449 3204 72.4 MiB 0.33 0.01 4.19358 -1335.76 -4.19358 4.19358 0.57 0.0037113 0.00333884 0.133605 0.11961 46 11544 32 6.32612e+06 3.66277e+06 684529. 2673.94 5.06 1.22954 1.06767 22592 160355 -1 9200 15 3275 3934 333576 89258 4.24116 4.24116 -1301.9 -4.24116 0 0 838722. 3276.26 0.23 0.23 0.14 -1 -1 0.23 0.139646 0.124395 1035 769 266 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 10.35 vpr 73.17 MiB 0.07 10912 -1 -1 1 0.23 -1 -1 36864 -1 -1 139 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74924 22 19 2218 1846 1 1177 185 16 16 256 clb mult_36 auto 35.7 MiB 0.41 6963 25959 4805 17669 3485 73.2 MiB 0.45 0.01 4.07338 -1365.88 -4.07338 4.07338 0.56 0.00388045 0.00348674 0.208146 0.187017 46 13890 41 6.32612e+06 3.72556e+06 684529. 2673.94 5.69 1.29537 1.13495 22592 160355 -1 10116 19 3779 4592 448481 113412 4.24116 4.24116 -1370.82 -4.24116 0 0 838722. 3276.26 0.23 0.27 0.15 -1 -1 0.23 0.169377 0.15002 1073 788 285 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 8.34 vpr 74.82 MiB 0.14 11732 -1 -1 1 0.25 -1 -1 36588 -1 -1 159 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76620 22 19 2536 2130 1 1298 205 17 17 289 clb auto 37.6 MiB 0.46 7620 37049 7684 25247 4118 74.8 MiB 0.62 0.01 4.42051 -1540.01 -4.42051 4.42051 0.65 0.00423609 0.00378899 0.282318 0.252374 46 13764 27 6.64007e+06 3.97672e+06 782063. 2706.10 3.04 1.04231 0.91148 25426 183746 -1 11043 17 4001 4900 453425 123152 4.24116 4.24116 -1541.83 -4.24116 0 0 958460. 3316.47 0.26 0.29 0.16 -1 -1 0.26 0.177466 0.157705 1228 924 304 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 8.78 vpr 75.02 MiB 0.10 11952 -1 -1 1 0.31 -1 -1 37072 -1 -1 165 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76816 22 19 2610 2187 1 1336 211 17 17 289 clb auto 37.7 MiB 0.48 8349 34696 7275 23014 4407 75.0 MiB 0.58 0.01 4.13813 -1586.39 -4.13813 4.13813 0.66 0.00439442 0.00392502 0.267351 0.239362 48 14562 33 6.64007e+06 4.05207e+06 816265. 2824.45 3.48 1.13466 0.990693 25714 189529 -1 11938 15 4344 5163 568179 146907 4.36136 4.36136 -1641.57 -4.36136 0 0 986792. 3414.50 0.26 0.33 0.17 -1 -1 0.26 0.173087 0.154333 1266 943 323 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 9.22 vpr 76.04 MiB 0.12 12208 -1 -1 1 0.32 -1 -1 36792 -1 -1 174 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77860 22 19 2778 2321 1 1434 221 18 18 324 clb auto 38.8 MiB 0.56 8435 36906 7335 26151 3420 76.0 MiB 0.62 0.01 4.18011 -1706.23 -4.18011 4.18011 0.77 0.00463437 0.00415387 0.27846 0.249498 44 15275 31 7.77114e+06 4.56109e+06 850563. 2625.19 3.39 1.13425 0.990832 28700 205432 -1 11863 18 4157 5289 458211 127186 4.36136 4.36136 -1720.9 -4.36136 0 0 1.07356e+06 3313.45 0.29 0.31 0.17 -1 -1 0.29 0.197713 0.175468 1344 1002 342 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 10.57 vpr 76.70 MiB 0.11 12456 -1 -1 1 0.33 -1 -1 36984 -1 -1 178 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78536 22 19 2852 2378 1 1479 225 18 18 324 clb auto 39.2 MiB 0.58 8723 40581 8381 28372 3828 76.7 MiB 0.68 0.01 4.13813 -1771.41 -4.13813 4.13813 0.77 0.00494821 0.00443889 0.30125 0.269261 46 14626 20 7.77114e+06 4.61132e+06 895831. 2764.91 4.55 1.42369 1.24659 29024 211752 -1 12101 15 4346 5256 526214 143468 4.24116 4.24116 -1780.8 -4.24116 0 0 1.09776e+06 3388.15 0.30 0.31 0.19 -1 -1 0.30 0.17954 0.16092 1382 1021 361 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 10.05 vpr 77.91 MiB 0.15 12852 -1 -1 1 0.36 -1 -1 37596 -1 -1 190 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79784 22 19 3057 2549 1 1586 237 18 18 324 clb auto 40.7 MiB 0.63 10000 39086 7340 28690 3056 77.9 MiB 0.81 0.01 4.36136 -1893.99 -4.36136 4.36136 0.82 0.005902 0.00531029 0.341896 0.304488 46 17097 24 7.77114e+06 4.76202e+06 895831. 2764.91 3.74 1.26578 1.10779 29024 211752 -1 13601 15 4515 5613 518271 136937 4.36136 4.36136 -1963.24 -4.36136 0 0 1.09776e+06 3388.15 0.29 0.31 0.18 -1 -1 0.29 0.186915 0.166708 1479 1099 380 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 13.34 vpr 77.94 MiB 0.11 13080 -1 -1 1 0.25 -1 -1 38084 -1 -1 196 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79812 22 19 3131 2606 1 1626 243 19 19 361 clb auto 40.8 MiB 0.63 10581 47239 9889 33869 3481 77.9 MiB 0.87 0.01 4.48156 -1979.61 -4.48156 4.48156 0.90 0.00552736 0.00497025 0.378449 0.337682 48 18758 47 8.13532e+06 4.83737e+06 1.05176e+06 2913.46 6.65 1.84109 1.60475 32602 246183 -1 15477 18 5270 6461 700019 166552 4.36136 4.36136 -2014.15 -4.36136 0 0 1.27108e+06 3521.00 0.35 0.38 0.21 -1 -1 0.35 0.216509 0.191988 1517 1118 399 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 11.22 vpr 79.36 MiB 0.16 13248 -1 -1 1 0.36 -1 -1 37868 -1 -1 206 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81260 22 19 3301 2742 1 1720 254 19 19 361 clb auto 42.2 MiB 0.60 10777 53318 12123 37751 3444 79.4 MiB 0.92 0.01 4.30038 -2073.95 -4.30038 4.30038 0.85 0.00592401 0.00523054 0.407801 0.364218 54 17563 25 8.13532e+06 5.35895e+06 1.15452e+06 3198.10 4.34 1.72645 1.50918 34042 276675 -1 14742 16 4950 6056 567418 143713 4.36136 4.36136 -2093.48 -4.36136 0 0 1.41983e+06 3933.05 0.38 0.34 0.24 -1 -1 0.38 0.205811 0.183214 1597 1179 418 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 14.30 vpr 79.62 MiB 0.10 13340 -1 -1 1 0.40 -1 -1 38116 -1 -1 211 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81536 22 19 3375 2799 1 1765 259 19 19 361 clb auto 42.4 MiB 0.63 10899 49759 10089 35200 4470 79.6 MiB 0.90 0.01 4.1744 -2128.46 -4.1744 4.1744 0.85 0.00584197 0.00523281 0.386809 0.345018 50 19096 43 8.13532e+06 5.42174e+06 1.09718e+06 3039.29 7.48 1.92929 1.68397 32962 254619 -1 15151 18 5361 6834 673396 163361 4.24116 4.24116 -2239.44 -4.24116 0 0 1.31179e+06 3633.76 0.36 0.38 0.22 -1 -1 0.36 0.230151 0.204306 1635 1198 437 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 14.37 vpr 80.69 MiB 0.15 13984 -1 -1 1 0.30 -1 -1 38104 -1 -1 225 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82628 22 19 3615 3005 1 1878 273 20 20 400 clb auto 43.8 MiB 0.73 12783 60453 13305 42245 4903 80.7 MiB 1.08 0.01 4.29513 -2284.67 -4.29513 4.29513 0.94 0.00615409 0.00550465 0.468509 0.418359 50 22427 38 1.10386e+07 5.59755e+06 1.21483e+06 3037.08 6.84 2.14736 1.8751 36870 282114 -1 18002 16 6329 7668 826615 201907 4.48156 4.48156 -2405 -4.48156 0 0 1.45344e+06 3633.59 0.46 0.44 0.26 -1 -1 0.46 0.240524 0.214471 1749 1293 456 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 27.65 vpr 81.20 MiB 0.21 14084 -1 -1 1 0.44 -1 -1 38468 -1 -1 230 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83144 22 19 3689 3062 1 1918 278 20 20 400 clb auto 44.4 MiB 0.67 12259 59233 12310 41511 5412 81.2 MiB 1.01 0.01 4.13813 -2292.86 -4.13813 4.13813 0.97 0.0059514 0.00531072 0.419469 0.371454 46 22560 47 1.10386e+07 5.66034e+06 1.11552e+06 2788.80 19.94 2.92269 2.53164 36070 264401 -1 16932 14 5898 7281 710408 180437 4.36136 4.36136 -2399.27 -4.36136 0 0 1.36764e+06 3419.10 0.38 0.46 0.24 -1 -1 0.38 0.266686 0.241179 1787 1312 475 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 38.14 vpr 82.61 MiB 0.14 14440 -1 -1 1 0.47 -1 -1 38408 -1 -1 242 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84596 22 19 3871 3210 1 2023 291 21 21 441 clb auto 45.6 MiB 0.77 12969 62951 13572 44045 5334 82.6 MiB 1.11 0.01 4.36136 -2529.89 -4.36136 4.36136 1.08 0.00661824 0.0059161 0.478655 0.426406 48 24732 39 1.14404e+07 6.20704e+06 1.29409e+06 2934.45 29.79 3.13754 2.72999 40046 303487 -1 19419 15 6942 8722 1093050 248022 4.48156 4.48156 -2651.69 -4.48156 0 0 1.56480e+06 3548.29 0.44 0.48 0.21 -1 -1 0.44 0.242647 0.21615 1879 1385 494 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 14.38 vpr 82.73 MiB 0.19 14620 -1 -1 1 0.54 -1 -1 38548 -1 -1 247 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84716 22 19 3945 3267 1 2070 296 21 21 441 clb auto 45.8 MiB 0.77 13605 63400 13597 45154 4649 82.7 MiB 1.18 0.02 4.24116 -2495.55 -4.24116 4.24116 1.09 0.00697535 0.00626872 0.499185 0.445723 52 23436 41 1.14404e+07 6.26983e+06 1.38344e+06 3137.06 5.84 2.26323 1.98047 41366 331634 -1 18697 14 6169 7747 801288 198953 4.36136 4.36136 -2569.18 -4.36136 0 0 1.70223e+06 3859.94 0.46 0.38 0.28 -1 -1 0.46 0.213995 0.190374 1917 1404 513 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 18.09 vpr 84.27 MiB 0.15 14936 -1 -1 1 0.52 -1 -1 39648 -1 -1 260 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86288 22 19 4159 3447 1 2186 310 22 22 484 mult_36 auto 47.3 MiB 0.79 14251 75766 16916 53468 5382 84.3 MiB 1.32 0.02 4.30038 -2650.53 -4.30038 4.30038 1.21 0.006988 0.00623253 0.5503 0.488282 48 24770 32 1.26594e+07 6.82908e+06 1.44011e+06 2975.42 9.09 2.32987 2.03802 44390 338934 -1 20456 14 6939 8707 972163 230644 4.48156 4.48156 -2836.1 -4.48156 0 0 1.74100e+06 3597.11 0.51 0.46 0.24 -1 -1 0.51 0.2421 0.216208 2023 1491 532 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 21.30 vpr 84.31 MiB 0.19 15188 -1 -1 1 0.53 -1 -1 40780 -1 -1 265 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86336 22 19 4233 3504 1 2225 315 22 22 484 mult_36 auto 47.5 MiB 0.83 14490 83853 20335 56854 6664 84.3 MiB 1.46 0.02 4.24116 -2618.51 -4.24116 4.24116 1.24 0.00714772 0.00637711 0.605622 0.537951 50 25164 32 1.26594e+07 6.89187e+06 1.50222e+06 3103.76 11.74 2.89467 2.5294 44874 350400 -1 20610 14 7194 8993 921636 226843 4.36136 4.36136 -2766.51 -4.36136 0 0 1.79645e+06 3711.66 0.50 0.49 0.28 -1 -1 0.50 0.274395 0.24729 2061 1510 551 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 19.45 vpr 85.30 MiB 0.14 15440 -1 -1 1 0.52 -1 -1 40928 -1 -1 276 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87344 22 19 4410 3647 1 2335 326 22 22 484 clb mult_36 auto 48.5 MiB 0.78 16122 77675 17613 54161 5901 85.3 MiB 1.36 0.02 4.36136 -2880.63 -4.36136 4.36136 1.23 0.0075266 0.00673816 0.559591 0.497527 50 27001 29 1.26594e+07 7.03001e+06 1.50222e+06 3103.76 9.88 2.41232 2.1093 44874 350400 -1 22573 15 7610 9869 1093468 253767 4.48156 4.48156 -2966.78 -4.48156 0 0 1.79645e+06 3711.66 0.58 0.52 0.31 -1 -1 0.58 0.262899 0.235664 2148 1578 570 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 30.33 vpr 85.77 MiB 0.20 15712 -1 -1 1 0.44 -1 -1 40580 -1 -1 280 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87824 22 19 4484 3704 1 2374 330 22 22 484 clb mult_36 auto 49.0 MiB 0.81 15256 78921 17235 55630 6056 85.8 MiB 1.46 0.02 4.13813 -2844.59 -4.13813 4.13813 1.25 0.0081841 0.00731784 0.588572 0.522393 50 25963 31 1.26594e+07 7.08024e+06 1.50222e+06 3103.76 20.78 3.18512 2.77056 44874 350400 -1 21895 15 7623 9321 1001861 240765 4.36136 4.36136 -3062 -4.36136 0 0 1.79645e+06 3711.66 0.51 0.53 0.29 -1 -1 0.51 0.29392 0.263688 2186 1597 589 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 44.09 vpr 87.23 MiB 0.23 16680 -1 -1 1 0.60 -1 -1 41588 -1 -1 304 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89324 22 19 4843 4029 1 2501 355 23 23 529 clb auto 50.5 MiB 0.80 17265 89531 21627 62738 5166 87.2 MiB 1.55 0.02 4.36136 -3132.51 -4.36136 4.36136 1.33 0.00822953 0.00735424 0.631432 0.56104 50 30212 44 1.31115e+07 7.77763e+06 1.65241e+06 3123.66 33.77 3.95648 3.4406 48882 385791 -1 23998 15 7697 10016 1012708 239734 4.48156 4.48156 -3211.65 -4.48156 0 0 1.97533e+06 3734.07 0.57 0.54 0.32 -1 -1 0.57 0.296085 0.263436 2364 1756 608 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 16.82 vpr 88.21 MiB 0.18 16652 -1 -1 1 0.72 -1 -1 41604 -1 -1 309 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90328 22 19 4917 4086 1 2542 360 23 23 529 clb auto 51.3 MiB 0.85 16883 87400 19509 61991 5900 88.2 MiB 1.45 0.02 4.2946 -3132.19 -4.2946 4.2946 1.29 0.00788218 0.006887 0.570903 0.502905 48 29983 34 1.31115e+07 7.84042e+06 1.58369e+06 2993.75 6.73 2.19272 1.90211 48354 373213 -1 24232 15 8519 10539 1178068 279978 4.36136 4.36136 -3239.06 -4.36136 0 0 1.91452e+06 3619.14 0.54 0.55 0.30 -1 -1 0.54 0.289307 0.25688 2402 1775 627 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 18.89 vpr 88.98 MiB 0.23 17056 -1 -1 1 0.65 -1 -1 41752 -1 -1 320 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91120 22 19 5093 4228 1 2643 371 23 23 529 clb auto 52.3 MiB 0.97 16361 88283 19281 62146 6856 89.0 MiB 1.56 0.02 4.18011 -3243.72 -4.18011 4.18011 1.43 0.0101303 0.009037 0.622098 0.552535 54 27381 34 1.31115e+07 7.97856e+06 1.73850e+06 3286.39 8.20 2.81154 2.4584 50466 419205 -1 22379 15 7580 9662 963966 246031 4.36136 4.36136 -3289.45 -4.36136 0 0 2.13727e+06 4040.20 0.64 0.58 0.34 -1 -1 0.64 0.341484 0.306495 2488 1842 646 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 29.16 vpr 89.19 MiB 0.26 17120 -1 -1 1 0.71 -1 -1 41720 -1 -1 324 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91328 22 19 5167 4285 1 2691 375 23 23 529 clb auto 52.7 MiB 0.95 18019 98998 23016 68009 7973 89.2 MiB 1.69 0.02 4.25463 -3294.79 -4.25463 4.25463 1.31 0.00840097 0.00747584 0.671425 0.595096 56 29248 46 1.31115e+07 8.02879e+06 1.78215e+06 3368.90 18.21 4.18849 3.64695 50994 430361 -1 25192 17 8520 10780 1168967 288965 4.24116 4.24116 -3384.13 -4.24116 0 0 2.18505e+06 4130.54 0.60 0.66 0.38 -1 -1 0.60 0.36118 0.320109 2526 1861 665 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 26.20 vpr 91.57 MiB 0.23 17756 -1 -1 1 0.69 -1 -1 40880 -1 -1 337 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93768 22 19 5380 4464 1 2808 389 24 24 576 clb mult_36 auto 53.9 MiB 1.06 18769 112490 27337 77347 7806 90.5 MiB 2.04 0.02 4.24116 -3467.58 -4.24116 4.24116 1.46 0.00907631 0.00809949 0.782821 0.686432 50 31438 37 1.52924e+07 8.58805e+06 1.78400e+06 3097.22 14.29 3.93921 3.43732 53074 415989 -1 26089 15 8677 10964 1154625 282675 4.36136 4.36136 -3530.32 -4.36136 0 0 2.13454e+06 3705.80 0.73 0.62 0.36 -1 -1 0.73 0.345649 0.311132 2631 1947 684 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 22.31 vpr 91.45 MiB 0.17 17708 -1 -1 1 0.73 -1 -1 42384 -1 -1 343 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93644 22 19 5454 4521 1 2849 395 24 24 576 clb mult_36 auto 55.0 MiB 0.90 19940 116235 27981 79411 8843 91.4 MiB 2.02 0.02 4.36136 -3489.43 -4.36136 4.36136 1.56 0.00865726 0.0076673 0.789594 0.698073 50 33618 45 1.52924e+07 8.66339e+06 1.78400e+06 3097.22 10.80 3.19398 2.7774 53074 415989 -1 27632 15 9105 11562 1231630 291884 4.48156 4.48156 -3625.47 -4.48156 0 0 2.13454e+06 3705.80 0.60 0.62 0.28 -1 -1 0.60 0.337085 0.300387 2669 1966 703 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 25.88 vpr 91.90 MiB 0.28 18160 -1 -1 1 0.76 -1 -1 40224 -1 -1 353 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94108 22 19 5629 4662 1 2951 405 25 25 625 clb auto 55.4 MiB 1.14 19953 114177 27339 77982 8856 91.9 MiB 1.99 0.02 4.36136 -3656.12 -4.36136 4.36136 1.69 0.0096819 0.00860995 0.788368 0.696843 50 35626 42 1.57822e+07 8.78897e+06 1.94653e+06 3114.45 13.53 3.34528 2.91404 57408 454416 -1 28298 13 9542 11975 1300975 310972 4.48156 4.48156 -3801.9 -4.48156 0 0 2.32897e+06 3726.35 0.78 0.61 0.33 -1 -1 0.78 0.323378 0.290166 2754 2032 722 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 26.67 vpr 92.66 MiB 0.30 18280 -1 -1 1 0.77 -1 -1 42276 -1 -1 358 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94880 22 19 5703 4719 1 2994 410 25 25 625 clb auto 56.3 MiB 1.08 21027 114560 27826 78845 7889 92.7 MiB 2.12 0.02 4.24116 -3663.98 -4.24116 4.24116 1.63 0.00961592 0.0085823 0.754727 0.666265 54 36082 37 1.57822e+07 8.85176e+06 2.04878e+06 3278.05 13.97 3.29258 2.87627 59280 493784 -1 28451 13 8976 11375 1210126 295638 4.60176 4.60176 -3737.01 -4.60176 0 0 2.52006e+06 4032.10 0.74 0.60 0.40 -1 -1 0.74 0.322934 0.288973 2792 2051 741 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 20.61 vpr 94.05 MiB 0.26 18812 -1 -1 1 0.79 -1 -1 41700 -1 -1 374 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96312 22 19 5950 4932 1 3111 427 25 25 625 clb auto 57.5 MiB 1.20 20818 125773 30837 85286 9650 94.1 MiB 2.17 0.03 4.42051 -3821.28 -4.42051 4.42051 1.63 0.00988404 0.0088336 0.857002 0.754623 52 33687 24 1.57822e+07 9.44869e+06 1.99531e+06 3192.49 6.87 2.69468 2.36476 58656 480125 -1 27916 13 8776 11804 1123040 278330 4.60176 4.60176 -3900.78 -4.60176 0 0 2.45448e+06 3927.17 0.96 0.67 0.44 -1 -1 0.96 0.380177 0.346074 2913 2153 760 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 21.94 vpr 94.25 MiB 0.28 18964 -1 -1 1 0.87 -1 -1 42876 -1 -1 377 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96512 22 19 6024 4989 1 3151 430 25 25 625 clb auto 57.6 MiB 1.16 21903 126946 30063 87199 9684 94.2 MiB 2.26 0.03 4.36136 -3905.46 -4.36136 4.36136 1.66 0.0103375 0.00920788 0.868049 0.767092 54 34451 19 1.57822e+07 9.48637e+06 2.04878e+06 3278.05 8.66 3.34036 2.92748 59280 493784 -1 29343 13 9076 11896 1099829 264107 4.48156 4.48156 -4076.71 -4.48156 0 0 2.52006e+06 4032.10 0.77 0.60 0.42 -1 -1 0.77 0.340296 0.305387 2951 2172 779 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 23.19 vpr 95.80 MiB 0.31 19404 -1 -1 1 0.89 -1 -1 43328 -1 -1 389 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98104 22 19 6198 5129 1 3252 442 25 25 625 clb auto 59.1 MiB 1.21 22747 131716 31686 89081 10949 95.8 MiB 2.33 0.03 4.37853 -4053.38 -4.37853 4.37853 1.84 0.0104232 0.00928277 0.894311 0.790737 54 35002 18 1.57822e+07 9.63706e+06 2.04878e+06 3278.05 9.67 3.27438 2.86698 59280 493784 -1 30125 13 9358 11890 1222233 297297 4.72196 4.72196 -4139.78 -4.72196 0 0 2.52006e+06 4032.10 0.78 0.65 0.45 -1 -1 0.78 0.381448 0.343189 3035 2237 798 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 26.78 vpr 96.68 MiB 0.28 19404 -1 -1 1 0.87 -1 -1 43512 -1 -1 394 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98996 22 19 6272 5186 1 3297 447 26 26 676 clb auto 59.4 MiB 1.17 22908 135379 33028 93129 9222 96.0 MiB 2.36 0.03 4.48156 -4060.31 -4.48156 4.48156 1.84 0.011658 0.0103368 0.907215 0.803283 52 39179 38 1.91291e+07 9.69985e+06 2.20423e+06 3260.69 12.48 3.41455 2.99416 65116 533202 -1 30144 13 9605 12391 1252390 296389 4.48156 4.48156 -4398.9 -4.48156 0 0 2.70930e+06 4007.84 0.83 0.64 0.45 -1 -1 0.83 0.357413 0.31977 3073 2256 817 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 28.04 vpr 96.83 MiB 0.32 19964 -1 -1 1 0.91 -1 -1 43712 -1 -1 407 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99156 22 19 6485 5365 1 3415 461 26 26 676 clb auto 60.4 MiB 1.17 21937 142861 34619 98677 9565 96.8 MiB 2.51 0.03 4.37853 -4161.26 -4.37853 4.37853 1.72 0.0108605 0.00967532 0.949021 0.832038 54 35587 27 1.91291e+07 1.02591e+07 2.26288e+06 3347.46 13.68 3.78755 3.32727 65792 548382 -1 29674 14 9521 12541 1199994 291317 4.60176 4.60176 -4732.88 -4.60176 0 0 2.78165e+06 4114.86 0.80 0.67 0.46 -1 -1 0.80 0.40794 0.367144 3178 2342 836 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 50.52 vpr 97.72 MiB 0.22 20072 -1 -1 1 0.91 -1 -1 44016 -1 -1 412 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100068 22 19 6559 5422 1 3449 466 26 26 676 clb auto 60.7 MiB 1.21 23538 148558 36858 101207 10493 97.3 MiB 2.54 0.03 4.36136 -4211.81 -4.36136 4.36136 1.74 0.012603 0.01142 0.948557 0.83767 50 37784 24 1.91291e+07 1.03219e+07 2.15046e+06 3181.16 36.51 5.75007 5.01756 63768 504694 -1 31931 15 10220 12587 1272284 312759 4.48156 4.48156 -4493.44 -4.48156 0 0 2.57128e+06 3803.68 0.75 0.74 0.39 -1 -1 0.75 0.42784 0.384383 3216 2361 855 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 23.60 vpr 99.03 MiB 0.22 20368 -1 -1 1 0.93 -1 -1 44564 -1 -1 422 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101408 22 19 6735 5564 1 3561 476 26 26 676 clb auto 62.5 MiB 1.21 24114 145322 35443 99736 10143 99.0 MiB 2.73 0.03 4.36136 -4363.73 -4.36136 4.36136 1.76 0.0129397 0.011653 1.1003 0.97872 52 40909 29 1.91291e+07 1.04475e+07 2.20423e+06 3260.69 8.77 3.41046 3.00851 65116 533202 -1 32715 14 10296 12618 1300621 315598 4.60176 4.60176 -4478.39 -4.60176 0 0 2.70930e+06 4007.84 0.98 0.71 0.46 -1 -1 0.98 0.408648 0.366685 3302 2428 874 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 27.73 vpr 100.63 MiB 0.30 20524 -1 -1 1 0.97 -1 -1 44032 -1 -1 428 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103044 22 19 6809 5621 1 3598 482 26 26 676 clb auto 63.0 MiB 1.28 25457 151602 37795 102913 10894 98.7 MiB 2.57 0.03 4.36136 -4421.6 -4.36136 4.36136 1.76 0.0110835 0.0098763 0.963183 0.849135 54 40678 40 1.91291e+07 1.05228e+07 2.26288e+06 3347.46 13.20 4.51534 3.96596 65792 548382 -1 33773 15 10421 12979 1342589 331991 4.48156 4.48156 -4589.32 -4.48156 0 0 2.78165e+06 4114.86 0.79 0.71 0.44 -1 -1 0.79 0.406414 0.361218 3340 2447 893 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 28.81 vpr 101.54 MiB 0.32 21104 -1 -1 1 1.05 -1 -1 44376 -1 -1 444 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103976 22 19 7094 5872 1 3718 499 27 27 729 clb auto 64.4 MiB 1.35 27242 166651 41903 114568 10180 100.2 MiB 3.09 0.03 4.48156 -4645.19 -4.48156 4.48156 1.93 0.0137483 0.0124058 1.21856 1.07489 54 44469 28 1.9669e+07 1.11198e+07 2.44988e+06 3360.60 12.93 4.26154 3.72779 70678 594165 -1 36864 15 11534 14523 1551802 366884 4.60176 4.60176 -5029.95 -4.60176 0 0 3.01106e+06 4130.40 0.86 0.80 0.49 -1 -1 0.86 0.436947 0.390212 3481 2569 912 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 38.24 vpr 104.04 MiB 0.22 21184 -1 -1 1 0.99 -1 -1 44140 -1 -1 449 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106532 22 19 7168 5929 1 3755 504 27 27 729 clb auto 65.1 MiB 1.38 27900 166919 41558 115070 10291 101.0 MiB 3.07 0.03 4.42058 -4700.51 -4.42058 4.42058 1.95 0.0133138 0.0119708 1.19493 1.0588 54 46623 41 1.9669e+07 1.11825e+07 2.44988e+06 3360.60 22.19 5.22553 4.55891 70678 594165 -1 37253 16 11580 14881 1507663 361077 4.48156 4.48156 -4833.63 -4.48156 0 0 3.01106e+06 4130.40 0.95 0.82 0.47 -1 -1 0.95 0.462516 0.412714 3519 2588 931 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 59.87 vpr 106.14 MiB 0.31 21572 -1 -1 1 1.08 -1 -1 44824 -1 -1 460 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 108688 22 19 7344 6071 1 3863 515 27 27 729 clb auto 65.7 MiB 1.37 26191 173807 44357 119669 9781 101.5 MiB 3.15 0.04 4.4148 -4780.65 -4.4148 4.4148 1.97 0.0143687 0.0128847 1.21421 1.07263 54 42070 24 1.9669e+07 1.13207e+07 2.44988e+06 3360.60 43.33 5.82771 5.07827 70678 594165 -1 35404 13 11033 14165 1456223 354857 4.72196 4.72196 -5030.57 -4.72196 0 0 3.01106e+06 4130.40 0.98 0.78 0.49 -1 -1 0.98 0.425101 0.38117 3605 2655 950 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 28.61 vpr 106.45 MiB 0.25 21884 -1 -1 1 1.15 -1 -1 45220 -1 -1 465 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 109004 22 19 7418 6128 1 3909 520 27 27 729 clb auto 66.5 MiB 1.34 28280 178170 45981 119497 12692 102.4 MiB 3.22 0.04 4.37853 -4830.08 -4.37853 4.37853 1.95 0.0141499 0.0123272 1.23818 1.08169 54 45707 28 1.9669e+07 1.13835e+07 2.44988e+06 3360.60 12.27 4.30066 3.76467 70678 594165 -1 38034 16 11980 15124 1623681 386703 4.48156 4.48156 -5051.95 -4.48156 0 0 3.01106e+06 4130.40 0.84 0.80 0.46 -1 -1 0.84 0.496756 0.440935 3643 2674 969 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 9.41 vpr 67.30 MiB 0.06 9328 -1 -1 1 0.16 -1 -1 34656 -1 -1 81 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68916 22 19 1246 925 1 736 126 16 16 256 mult_36 auto 29.6 MiB 0.40 4254 18396 4205 11555 2636 67.3 MiB 0.34 0.01 8.36318 -383.367 -8.36318 8.36318 0.56 0.00278544 0.00258491 0.159571 0.146202 38 8861 34 6.32612e+06 2.6012e+06 558663. 2182.28 5.53 1.07474 0.945186 21316 135884 -1 6561 22 4832 5445 582149 154526 7.80999 7.80999 -388.43 -7.80999 0 0 744679. 2908.90 0.19 0.26 0.12 -1 -1 0.19 0.118783 0.105935 591 344 247 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 7.62 vpr 67.93 MiB 0.07 9716 -1 -1 1 0.16 -1 -1 35136 -1 -1 86 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69556 22 19 1344 989 1 796 132 16 16 256 mult_36 auto 30.3 MiB 0.37 4680 18892 4302 11939 2651 67.9 MiB 0.37 0.01 8.43996 -390.118 -8.43996 8.43996 0.57 0.00280472 0.00258568 0.168314 0.15441 40 9059 33 6.32612e+06 3.05999e+06 583096. 2277.72 3.69 0.787018 0.698129 21572 140635 -1 7624 21 5398 6282 743093 192604 7.99439 7.99439 -467.887 -7.99439 0 0 763333. 2981.77 0.19 0.28 0.13 -1 -1 0.19 0.117461 0.104846 635 369 266 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 22.21 vpr 68.30 MiB 0.07 9588 -1 -1 1 0.20 -1 -1 35172 -1 -1 91 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69944 22 19 1418 1046 1 833 137 16 16 256 mult_36 auto 30.8 MiB 0.46 5124 23788 5451 15273 3064 68.3 MiB 0.47 0.01 8.48338 -427.318 -8.48338 8.48338 0.59 0.00324841 0.00298687 0.205054 0.187831 40 9542 34 6.32612e+06 3.12278e+06 583096. 2277.72 17.80 1.58883 1.40324 21572 140635 -1 7989 24 5937 6919 778879 198407 8.18279 8.18279 -520.319 -8.18279 0 0 763333. 2981.77 0.19 0.33 0.13 -1 -1 0.19 0.146991 0.131238 673 388 285 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 11.74 vpr 69.05 MiB 0.12 10252 -1 -1 1 0.22 -1 -1 35376 -1 -1 97 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70708 22 19 1518 1112 1 899 143 16 16 256 mult_36 auto 31.4 MiB 0.43 5605 24761 5724 15848 3189 69.1 MiB 0.50 0.01 9.23404 -471.583 -9.23404 9.23404 0.57 0.00299432 0.00271579 0.215328 0.196431 42 12302 48 6.32612e+06 3.19813e+06 613404. 2396.11 7.17 1.52838 1.35187 21828 146600 -1 8704 23 6699 7694 985071 246811 9.15065 9.15065 -572.903 -9.15065 0 0 784202. 3063.29 0.27 0.40 0.13 -1 -1 0.27 0.157069 0.140898 719 415 304 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 14.27 vpr 69.80 MiB 0.10 10300 -1 -1 1 0.23 -1 -1 34916 -1 -1 102 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71472 22 19 1592 1169 1 937 148 16 16 256 mult_36 auto 32.0 MiB 0.48 5411 25954 5761 17040 3153 69.8 MiB 0.50 0.01 9.11384 -492.872 -9.11384 9.11384 0.57 0.00308504 0.00279575 0.215571 0.196214 40 10608 35 6.32612e+06 3.26092e+06 583096. 2277.72 9.65 1.42462 1.25955 21572 140635 -1 9003 23 6783 7936 948207 245104 8.48265 8.48265 -629.25 -8.48265 0 0 763333. 2981.77 0.22 0.37 0.14 -1 -1 0.22 0.155053 0.138515 757 434 323 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 11.00 vpr 70.22 MiB 0.11 10544 -1 -1 1 0.21 -1 -1 35336 -1 -1 107 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71904 22 19 1688 1231 1 998 154 16 16 256 mult_36 auto 32.6 MiB 0.51 5851 22814 4729 13760 4325 70.2 MiB 0.46 0.01 9.12484 -496.487 -9.12484 9.12484 0.56 0.00337278 0.00308981 0.204978 0.187705 46 11198 40 6.32612e+06 3.71971e+06 684529. 2673.94 6.64 1.44049 1.27621 22592 160355 -1 8482 21 5296 6099 654272 170198 8.26205 8.26205 -572.735 -8.26205 0 0 838722. 3276.26 0.21 0.29 0.11 -1 -1 0.21 0.143728 0.128598 799 457 342 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 12.00 vpr 70.56 MiB 0.08 10640 -1 -1 1 0.25 -1 -1 35548 -1 -1 112 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72256 22 19 1762 1288 1 1033 159 16 16 256 mult_36 auto 32.8 MiB 0.48 6825 22089 4646 13915 3528 70.6 MiB 0.47 0.01 9.16401 -519.117 -9.16401 9.16401 0.56 0.00360731 0.00330817 0.190943 0.174072 50 11241 25 6.32612e+06 3.7825e+06 744679. 2908.90 7.42 1.37001 1.20992 23104 171162 -1 9261 21 5709 6587 736555 189282 8.39745 8.39745 -613.624 -8.39745 0 0 891356. 3481.86 0.24 0.34 0.17 -1 -1 0.24 0.158795 0.142393 837 476 361 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 10.24 vpr 70.94 MiB 0.09 10924 -1 -1 1 0.23 -1 -1 35780 -1 -1 119 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72640 22 19 1859 1351 1 1097 166 16 16 256 mult_36 auto 33.3 MiB 0.47 6666 26158 5203 16523 4432 70.9 MiB 0.50 0.01 9.03763 -508.506 -9.03763 9.03763 0.56 0.00365336 0.00334877 0.220005 0.200745 48 12141 45 6.32612e+06 3.8704e+06 714410. 2790.66 5.70 1.21186 1.07324 22848 165380 -1 9960 23 6766 7896 953019 239000 8.21605 8.21605 -705.722 -8.21605 0 0 863353. 3372.47 0.22 0.38 0.16 -1 -1 0.22 0.175403 0.156387 880 500 380 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 8.72 vpr 71.55 MiB 0.14 11048 -1 -1 1 0.26 -1 -1 35832 -1 -1 123 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73272 22 19 1933 1408 1 1134 170 16 16 256 mult_36 auto 33.8 MiB 0.52 7313 28370 5828 17736 4806 71.6 MiB 0.56 0.01 9.17501 -549.932 -9.17501 9.17501 0.56 0.00368249 0.0033307 0.236244 0.214884 48 12035 28 6.32612e+06 3.92063e+06 714410. 2790.66 3.90 0.984652 0.872973 22848 165380 -1 10062 23 6419 7390 836835 213069 8.51065 8.51065 -667.103 -8.51065 0 0 863353. 3372.47 0.23 0.38 0.16 -1 -1 0.23 0.181923 0.162592 918 519 399 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 13.10 vpr 71.78 MiB 0.12 11476 -1 -1 1 0.26 -1 -1 36084 -1 -1 131 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73504 22 19 2031 1472 1 1198 179 18 18 324 mult_36 auto 34.2 MiB 0.61 7550 30419 6455 19369 4595 71.8 MiB 0.62 0.01 9.12001 -583.855 -9.12001 9.12001 0.73 0.00393783 0.00359825 0.259055 0.235968 48 12630 26 7.77114e+06 4.4171e+06 935225. 2886.50 7.41 1.66175 1.4664 29348 218440 -1 10831 21 6820 7945 915173 231648 8.49665 8.49665 -783.026 -8.49665 0 0 1.13028e+06 3488.51 0.31 0.42 0.21 -1 -1 0.31 0.196924 0.173911 962 544 418 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 14.69 vpr 72.13 MiB 0.09 11404 -1 -1 1 0.26 -1 -1 36260 -1 -1 136 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73860 22 19 2105 1529 1 1235 184 18 18 324 mult_36 auto 34.9 MiB 0.58 7661 37317 8501 24959 3857 72.1 MiB 0.69 0.01 9.10913 -586.392 -9.10913 9.10913 0.75 0.00385424 0.00348189 0.294439 0.266977 48 13133 26 7.77114e+06 4.47989e+06 935225. 2886.50 8.93 1.94041 1.70952 29348 218440 -1 10908 23 7434 8576 948645 234568 8.58465 8.58465 -791.233 -8.58465 0 0 1.13028e+06 3488.51 0.30 0.42 0.19 -1 -1 0.30 0.198405 0.177356 1000 563 437 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 10.98 vpr 72.92 MiB 0.13 11880 -1 -1 1 0.24 -1 -1 36524 -1 -1 141 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74672 22 19 2201 1591 1 1295 189 18 18 324 mult_36 auto 35.6 MiB 0.65 7882 35419 7795 23110 4514 72.9 MiB 0.75 0.01 9.0476 -626.573 -9.0476 9.0476 0.76 0.00401564 0.00365488 0.307124 0.279188 46 14895 28 7.77114e+06 4.54268e+06 895831. 2764.91 5.23 1.29314 1.14623 29024 211752 -1 11428 21 6952 8164 847241 222680 8.28945 8.28945 -792.599 -8.28945 0 0 1.09776e+06 3388.15 0.29 0.38 0.19 -1 -1 0.29 0.187225 0.167354 1042 586 456 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 14.27 vpr 73.07 MiB 0.16 11928 -1 -1 1 0.33 -1 -1 37424 -1 -1 145 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74820 22 19 2275 1648 1 1331 193 18 18 324 mult_36 auto 35.9 MiB 0.64 8270 37512 8174 25127 4211 73.1 MiB 0.74 0.01 9.15301 -640.754 -9.15301 9.15301 0.75 0.00418134 0.00380681 0.302948 0.275287 48 14431 26 7.77114e+06 4.59291e+06 935225. 2886.50 8.14 1.80477 1.59081 29348 218440 -1 12124 23 9127 10596 1176912 285820 8.54065 8.54065 -814.155 -8.54065 0 0 1.13028e+06 3488.51 0.34 0.52 0.20 -1 -1 0.34 0.226656 0.202872 1080 605 475 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 16.96 vpr 73.94 MiB 0.16 12168 -1 -1 1 0.33 -1 -1 36860 -1 -1 153 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75712 22 19 2385 1724 1 1408 202 18 18 324 mult_36 auto 36.6 MiB 0.62 9475 39274 8633 24027 6614 73.9 MiB 0.80 0.01 9.16401 -680.51 -9.16401 9.16401 0.79 0.00432941 0.00393962 0.337033 0.306189 54 16614 36 7.77114e+06 5.08937e+06 1.02660e+06 3168.53 10.75 2.19661 1.93908 30640 245540 -1 13208 20 7860 9445 1117978 264377 8.41125 8.41125 -880.793 -8.41125 0 0 1.26286e+06 3897.71 0.33 0.42 0.21 -1 -1 0.33 0.191053 0.170746 1136 642 494 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 11.57 vpr 74.54 MiB 0.18 12280 -1 -1 1 0.26 -1 -1 36736 -1 -1 158 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76324 22 19 2459 1781 1 1444 207 18 18 324 mult_36 auto 37.0 MiB 0.76 8909 41211 9001 25741 6469 74.5 MiB 0.81 0.01 9.14684 -663.352 -9.14684 9.14684 0.79 0.00460207 0.00411187 0.323378 0.293345 46 16563 50 7.77114e+06 5.15216e+06 895831. 2764.91 5.19 1.42025 1.25683 29024 211752 -1 12815 21 8674 9947 1180543 313346 8.80125 8.80125 -858.702 -8.80125 0 0 1.09776e+06 3388.15 0.29 0.48 0.18 -1 -1 0.29 0.209869 0.187449 1174 661 513 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 19.37 vpr 74.96 MiB 0.18 12660 -1 -1 1 0.34 -1 -1 37108 -1 -1 165 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76756 22 19 2565 1853 1 1517 215 22 22 484 mult_36 auto 37.6 MiB 0.76 9695 50369 11832 33775 4762 75.0 MiB 1.05 0.01 9.39824 -758.644 -9.39824 9.39824 1.22 0.0048153 0.00437802 0.403953 0.3667 44 19021 30 1.26594e+07 5.63607e+06 1.30964e+06 2705.88 11.40 2.24831 1.98778 43422 318546 -1 14146 23 8551 9980 1131104 280459 8.63965 8.63965 -1048.26 -8.63965 0 0 1.65337e+06 3416.05 0.47 0.53 0.27 -1 -1 0.47 0.25129 0.224571 1226 694 532 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 46.46 vpr 75.68 MiB 0.13 12644 -1 -1 1 0.25 -1 -1 37348 -1 -1 170 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77492 22 19 2639 1910 1 1554 220 22 22 484 mult_36 auto 38.2 MiB 0.83 9525 45967 10375 31456 4136 75.7 MiB 0.98 0.01 9.332 -761.848 -9.332 9.332 1.27 0.00495473 0.00451634 0.392015 0.355908 40 18870 42 1.26594e+07 5.69886e+06 1.17677e+06 2431.33 38.65 2.72081 2.40169 41974 287914 -1 15646 19 10618 12587 1630390 401109 8.82305 8.82305 -1060.29 -8.82305 0 0 1.53957e+06 3180.94 0.43 0.56 0.18 -1 -1 0.43 0.20758 0.185629 1264 713 551 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 14.59 vpr 75.85 MiB 0.10 12888 -1 -1 1 0.39 -1 -1 37480 -1 -1 177 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77668 22 19 2744 1981 1 1626 227 22 22 484 mult_36 auto 38.5 MiB 0.79 10029 50743 11223 34192 5328 75.8 MiB 1.02 0.01 9.332 -743.867 -9.332 9.332 1.29 0.00285428 0.00261476 0.411716 0.373589 44 19607 46 1.26594e+07 5.78677e+06 1.30964e+06 2705.88 6.46 1.62768 1.44317 43422 318546 -1 14760 21 8812 10635 1193110 306240 8.51565 8.51565 -997.056 -8.51565 0 0 1.65337e+06 3416.05 0.47 0.51 0.28 -1 -1 0.47 0.239315 0.214108 1315 745 570 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 20.57 vpr 76.41 MiB 0.20 13016 -1 -1 1 0.37 -1 -1 37008 -1 -1 181 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78240 22 19 2818 2038 1 1662 231 22 22 484 mult_36 auto 39.1 MiB 0.84 10896 62535 16168 40587 5780 76.4 MiB 1.32 0.02 9.51844 -833.689 -9.51844 9.51844 1.17 0.00567558 0.0051011 0.507219 0.459742 46 19729 33 1.26594e+07 5.837e+06 1.37878e+06 2848.72 12.02 2.45886 2.17829 43906 328446 -1 15857 23 10062 11624 1282729 313572 8.31125 8.31125 -1223.57 -8.31125 0 0 1.69059e+06 3492.95 0.48 0.55 0.30 -1 -1 0.48 0.256887 0.228971 1353 764 589 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 42.72 vpr 76.81 MiB 0.20 13632 -1 -1 1 0.28 -1 -1 37428 -1 -1 189 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78656 22 19 2923 2109 1 1730 240 22 22 484 mult_36 auto 39.7 MiB 0.84 11006 63565 15479 41766 6320 76.8 MiB 1.25 0.01 10.0899 -813.568 -10.0899 10.0899 1.21 0.00518259 0.00469824 0.489613 0.442392 44 22012 50 1.26594e+07 6.33346e+06 1.30964e+06 2705.88 34.19 2.93242 2.58393 43422 318546 -1 16383 23 12263 14060 1788436 435492 9.31331 9.31331 -1098.11 -9.31331 0 0 1.65337e+06 3416.05 0.48 0.67 0.28 -1 -1 0.48 0.271858 0.242511 1404 796 608 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 23.80 vpr 77.41 MiB 0.20 13712 -1 -1 1 0.40 -1 -1 37740 -1 -1 194 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79264 22 19 2997 2166 1 1769 245 22 22 484 mult_36 auto 40.1 MiB 1.12 11467 56929 13204 37063 6662 77.4 MiB 1.16 0.01 9.84947 -801.897 -9.84947 9.84947 1.23 0.00550201 0.00500599 0.449134 0.405926 46 23369 48 1.26594e+07 6.39625e+06 1.37878e+06 2848.72 14.79 2.70665 2.3907 43906 328446 -1 16588 23 11553 13716 1515832 373082 9.23591 9.23591 -1123.07 -9.23591 0 0 1.69059e+06 3492.95 0.48 0.73 0.29 -1 -1 0.48 0.297688 0.267246 1442 815 627 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 18.97 vpr 78.42 MiB 0.19 14032 -1 -1 1 0.42 -1 -1 37924 -1 -1 200 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80300 22 19 3101 2236 1 1838 251 22 22 484 mult_36 auto 41.0 MiB 1.06 11980 57994 13001 38956 6037 78.4 MiB 1.22 0.02 10.4246 -898.797 -10.4246 10.4246 1.48 0.0061833 0.00566496 0.467701 0.424377 46 22305 40 1.26594e+07 6.4716e+06 1.37878e+06 2848.72 9.73 1.90829 1.69402 43906 328446 -1 17462 19 9824 11939 1348912 334590 9.59651 9.59651 -1262.04 -9.59651 0 0 1.69059e+06 3492.95 0.46 0.53 0.29 -1 -1 0.46 0.230592 0.206289 1492 846 646 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 17.38 vpr 78.79 MiB 0.22 14132 -1 -1 1 0.41 -1 -1 37988 -1 -1 204 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80684 22 19 3175 2293 1 1872 255 22 22 484 mult_36 auto 41.3 MiB 1.17 11366 60855 13639 40637 6579 78.8 MiB 1.21 0.02 10.2398 -852.171 -10.2398 10.2398 1.18 0.00553478 0.00500054 0.457669 0.413833 48 20735 33 1.26594e+07 6.52183e+06 1.44011e+06 2975.42 8.52 2.04069 1.81415 44390 338934 -1 16863 23 10639 12310 1484249 366742 9.42731 9.42731 -1124.46 -9.42731 0 0 1.74100e+06 3597.11 0.48 0.58 0.29 -1 -1 0.48 0.268926 0.2395 1530 865 665 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 25.75 vpr 79.31 MiB 0.25 14440 -1 -1 1 0.47 -1 -1 37420 -1 -1 211 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81216 22 19 3280 2364 1 1945 263 24 24 576 mult_36 auto 42.3 MiB 1.15 12736 63413 14509 42506 6398 79.3 MiB 1.40 0.02 10.3609 -909.644 -10.3609 10.3609 1.63 0.00777899 0.00697982 0.548709 0.497288 48 22784 34 1.52924e+07 7.00574e+06 1.71014e+06 2969.00 15.49 2.97976 2.63549 52498 402441 -1 18388 22 10953 12996 1615157 387443 9.53551 9.53551 -1204.08 -9.53551 0 0 2.06880e+06 3591.66 0.62 0.65 0.35 -1 -1 0.62 0.284875 0.25441 1581 897 684 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 21.35 vpr 79.64 MiB 0.16 14468 -1 -1 1 0.48 -1 -1 37924 -1 -1 216 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81556 22 19 3354 2421 1 1981 268 24 24 576 mult_36 auto 42.8 MiB 1.30 13069 66719 15235 45868 5616 79.6 MiB 1.39 0.02 9.9525 -910.496 -9.9525 9.9525 1.46 0.00636589 0.00580294 0.514272 0.463865 44 26849 47 1.52924e+07 7.06853e+06 1.55518e+06 2699.97 11.22 2.20563 1.95256 51346 378163 -1 19312 24 12866 15131 1925109 470482 9.60091 9.60091 -1238.65 -9.60091 0 0 1.96475e+06 3411.02 0.55 0.70 0.30 -1 -1 0.55 0.295828 0.263378 1619 916 703 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 16.77 vpr 80.21 MiB 0.21 14716 -1 -1 1 0.49 -1 -1 38280 -1 -1 223 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82140 22 19 3457 2490 1 2052 275 24 24 576 mult_36 auto 43.2 MiB 1.22 13656 73501 17416 50143 5942 80.2 MiB 1.62 0.02 10.0727 -966.849 -10.0727 10.0727 1.44 0.00654031 0.00595441 0.621855 0.561075 46 23538 32 1.52924e+07 7.15643e+06 1.63708e+06 2842.15 6.70 1.88873 1.67432 51922 389946 -1 18838 23 10601 12759 1435807 370600 8.95151 8.95151 -1160.49 -8.95151 0 0 2.00908e+06 3487.99 0.57 0.69 0.23 -1 -1 0.57 0.331688 0.297995 1668 946 722 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 21.71 vpr 80.70 MiB 0.17 14852 -1 -1 1 0.46 -1 -1 38748 -1 -1 228 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82636 22 19 3531 2547 1 2089 280 24 24 576 mult_36 auto 43.6 MiB 1.40 13045 78055 20225 49115 8715 80.7 MiB 1.53 0.02 9.95249 -1011.72 -9.95249 9.95249 1.45 0.0065844 0.00598886 0.59874 0.538194 46 24015 38 1.52924e+07 7.21922e+06 1.63708e+06 2842.15 11.30 2.16095 1.91139 51922 389946 -1 18582 26 11805 14295 1481227 365944 8.90771 8.90771 -1456.6 -8.90771 0 0 2.00908e+06 3487.99 0.59 0.71 0.29 -1 -1 0.59 0.349879 0.311755 1706 965 741 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 22.34 vpr 81.34 MiB 0.25 15324 -1 -1 1 0.59 -1 -1 37992 -1 -1 234 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83292 22 19 3634 2616 1 2155 287 24 24 576 mult_36 auto 44.4 MiB 1.34 13626 81643 18980 54154 8509 81.3 MiB 1.76 0.02 10.2807 -1100.54 -10.2807 10.2807 1.64 0.00589193 0.00531161 0.641657 0.582472 48 24099 30 1.52924e+07 7.69057e+06 1.71014e+06 2969.00 11.28 2.30878 2.05025 52498 402441 -1 19745 21 10698 12698 1556800 373550 9.35911 9.35911 -1273.87 -9.35911 0 0 2.06880e+06 3591.66 0.58 0.64 0.34 -1 -1 0.58 0.296748 0.265201 1755 995 760 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 26.53 vpr 81.88 MiB 0.19 15376 -1 -1 1 0.51 -1 -1 38272 -1 -1 239 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83848 22 19 3708 2673 1 2193 292 24 24 576 mult_36 auto 44.8 MiB 1.41 14431 72892 16198 51073 5621 81.9 MiB 1.77 0.02 10.1929 -992.819 -10.1929 10.1929 1.57 0.00635968 0.00581533 0.574831 0.514396 48 25902 39 1.52924e+07 7.75336e+06 1.71014e+06 2969.00 15.17 3.18975 2.81988 52498 402441 -1 20831 21 12944 15314 1869342 457103 9.58971 9.58971 -1252.11 -9.58971 0 0 2.06880e+06 3591.66 0.64 0.79 0.37 -1 -1 0.64 0.333755 0.299406 1793 1014 779 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 20.91 vpr 82.54 MiB 0.14 15612 -1 -1 1 0.53 -1 -1 38816 -1 -1 245 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84520 22 19 3810 2741 1 2260 298 24 24 576 mult_36 auto 45.3 MiB 1.35 14165 81888 20044 54601 7243 82.5 MiB 1.81 0.03 10.1328 -1049.12 -10.1328 10.1328 1.56 0.00741441 0.00659365 0.662329 0.59364 46 27674 49 1.52924e+07 7.82871e+06 1.63708e+06 2842.15 9.61 2.43495 2.15978 51922 389946 -1 20484 24 13292 15374 1707658 435292 9.19011 9.19011 -1651.37 -9.19011 0 0 2.00908e+06 3487.99 0.58 0.79 0.29 -1 -1 0.58 0.365312 0.326451 1841 1043 798 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 71.92 vpr 82.65 MiB 0.22 15704 -1 -1 1 0.56 -1 -1 38420 -1 -1 250 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84636 22 19 3884 2798 1 2296 303 24 24 576 mult_36 auto 45.4 MiB 1.53 14946 80646 18903 52810 8933 82.7 MiB 1.73 0.02 9.99493 -1033.19 -9.99493 9.99493 1.55 0.00737401 0.00661175 0.630908 0.568308 48 27278 40 1.52924e+07 7.8915e+06 1.71014e+06 2969.00 60.53 4.224 3.7203 52498 402441 -1 22061 23 14612 17263 2051107 497730 9.31511 9.31511 -1517.68 -9.31511 0 0 2.06880e+06 3591.66 0.60 0.83 0.34 -1 -1 0.60 0.353811 0.314744 1879 1062 817 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 19.49 vpr 83.04 MiB 0.26 15944 -1 -1 1 0.60 -1 -1 40472 -1 -1 257 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85032 22 19 3989 2869 1 2368 311 24 24 576 mult_36 auto 46.0 MiB 1.40 16964 75074 16987 50636 7451 83.0 MiB 1.59 0.02 10.3131 -1048.02 -10.3131 10.3131 1.52 0.00784933 0.00716328 0.580129 0.52297 48 28860 31 1.52924e+07 8.37541e+06 1.71014e+06 2969.00 8.09 2.10725 1.8649 52498 402441 -1 23894 23 12966 15711 2070445 493094 9.73871 9.73871 -1579.52 -9.73871 0 0 2.06880e+06 3591.66 0.58 0.76 0.37 -1 -1 0.58 0.33325 0.296675 1930 1094 836 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 22.02 vpr 83.42 MiB 0.27 16056 -1 -1 1 0.58 -1 -1 40536 -1 -1 261 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85424 22 19 4063 2926 1 2404 315 24 24 576 mult_36 auto 46.3 MiB 1.67 15692 88137 21521 56647 9969 83.4 MiB 1.75 0.02 9.95249 -1107.23 -9.95249 9.95249 1.49 0.00859715 0.00777619 0.658305 0.593526 54 26619 49 1.52924e+07 8.42564e+06 1.87785e+06 3260.16 10.01 2.74176 2.43271 54798 452027 -1 21115 25 12793 15079 1570956 397175 9.08891 9.08891 -1436.28 -9.08891 0 0 2.31032e+06 4010.97 0.65 0.77 0.42 -1 -1 0.65 0.388572 0.345487 1968 1113 855 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 24.10 vpr 84.30 MiB 0.26 16620 -1 -1 1 0.44 -1 -1 40800 -1 -1 268 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86324 22 19 4167 2996 1 2473 322 24 24 576 mult_36 auto 47.3 MiB 1.15 15910 88562 20878 57457 10227 84.3 MiB 1.83 0.02 10.0899 -1142.01 -10.0899 10.0899 1.50 0.00778185 0.0070779 0.652391 0.587128 50 27180 34 1.52924e+07 8.51354e+06 1.78400e+06 3097.22 12.92 2.60385 2.30211 53074 415989 -1 22519 23 12297 14952 1649666 414573 9.24691 9.24691 -1519.04 -9.24691 0 0 2.13454e+06 3705.80 0.61 0.78 0.35 -1 -1 0.61 0.379489 0.338212 2018 1144 874 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 19.62 vpr 84.32 MiB 0.24 16492 -1 -1 1 0.62 -1 -1 40916 -1 -1 273 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86348 22 19 4241 3053 1 2509 327 24 24 576 mult_36 auto 47.4 MiB 1.38 16487 93785 22388 64524 6873 84.3 MiB 1.86 0.02 10.5535 -1144.3 -10.5535 10.5535 1.46 0.00701064 0.0063265 0.618906 0.556033 48 28818 32 1.52924e+07 8.57633e+06 1.71014e+06 2969.00 8.35 2.29073 2.04076 52498 402441 -1 24059 23 12093 14580 1751508 427964 10.3207 10.3207 -1752.01 -10.3207 0 0 2.06880e+06 3591.66 0.70 0.70 0.33 -1 -1 0.70 0.318799 0.289487 2056 1163 893 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 23.58 vpr 84.68 MiB 0.33 16980 -1 -1 1 0.61 -1 -1 41100 -1 -1 279 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86712 22 19 4346 3124 1 2580 334 24 24 576 mult_36 auto 47.9 MiB 1.53 16418 98764 23499 65407 9858 84.7 MiB 2.11 0.02 10.0121 -1103.23 -10.0121 10.0121 1.51 0.00801433 0.0072699 0.739201 0.661626 48 28351 48 1.52924e+07 9.04768e+06 1.71014e+06 2969.00 11.34 2.93392 2.59947 52498 402441 -1 24128 20 15119 18240 2121135 532072 9.54451 9.54451 -1898.86 -9.54451 0 0 2.06880e+06 3591.66 0.62 0.85 0.34 -1 -1 0.62 0.358724 0.321338 2107 1195 912 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 21.90 vpr 85.40 MiB 0.17 17136 -1 -1 1 0.64 -1 -1 40976 -1 -1 284 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87452 22 19 4420 3181 1 2615 339 24 24 576 mult_36 auto 48.5 MiB 1.60 17962 88914 19616 60588 8710 85.4 MiB 1.92 0.03 10.2463 -1217.9 -10.2463 10.2463 1.43 0.00802952 0.00727944 0.649197 0.583734 52 30590 30 1.52924e+07 9.11047e+06 1.82869e+06 3174.81 9.79 2.66483 2.36444 54222 439550 -1 24692 22 14714 17386 2038106 506700 9.42751 9.42751 -1884.23 -9.42751 0 0 2.25030e+06 3906.77 0.74 0.91 0.41 -1 -1 0.74 0.403763 0.368433 2145 1214 931 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 30.19 vpr 85.87 MiB 0.20 17368 -1 -1 1 0.65 -1 -1 41140 -1 -1 292 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87932 22 19 4524 3251 1 2687 347 24 24 576 mult_36 auto 48.9 MiB 1.71 17584 90479 20112 60343 10024 85.9 MiB 1.88 0.03 10.1323 -1257.51 -10.1323 10.1323 1.41 0.00828558 0.00749981 0.650201 0.58338 54 30742 41 1.52924e+07 9.21094e+06 1.87785e+06 3260.16 17.90 3.45437 3.05274 54798 452027 -1 24323 24 12811 15116 1754918 426147 9.61671 9.61671 -2019.82 -9.61671 0 0 2.31032e+06 4010.97 0.76 0.86 0.38 -1 -1 0.76 0.434004 0.388012 2195 1245 950 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 24.08 vpr 86.49 MiB 0.29 17524 -1 -1 1 0.59 -1 -1 39328 -1 -1 296 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88564 22 19 4598 3308 1 2721 351 24 24 576 mult_36 auto 49.6 MiB 1.38 17233 94363 21503 64446 8414 86.5 MiB 1.99 0.03 10.4246 -1286.45 -10.4246 10.4246 1.46 0.00842922 0.00765206 0.674663 0.606068 50 29595 50 1.52924e+07 9.26117e+06 1.78400e+06 3097.22 11.90 3.04331 2.69276 53074 415989 -1 24350 23 14468 16947 2000437 496448 9.61971 9.61971 -1721.97 -9.61971 0 0 2.13454e+06 3705.80 0.89 0.81 0.41 -1 -1 0.89 0.393047 0.353185 2233 1264 969 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 13.99 vpr 71.68 MiB 0.06 10360 -1 -1 1 0.26 -1 -1 35432 -1 -1 123 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73404 22 19 1974 1653 1 1039 168 16 16 256 mult_36 auto 34.2 MiB 1.71 6084 26559 5485 17904 3170 71.7 MiB 0.45 0.01 4.07137 -1184.46 -4.07137 4.07137 0.56 0.00386419 0.0035194 0.214571 0.193058 40 11804 49 6.34292e+06 3.14339e+06 583096. 2277.72 8.15 1.68742 1.4728 21572 140635 -1 9984 21 4134 4929 581328 151853 4.48156 4.48156 -1220.21 -4.48156 0 0 763333. 2981.77 0.21 0.33 0.14 -1 -1 0.21 0.188958 0.168721 953 708 247 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 13.35 vpr 72.60 MiB 0.08 10804 -1 -1 1 0.24 -1 -1 36924 -1 -1 132 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74340 22 19 2144 1789 1 1138 178 16 16 256 clb mult_36 auto 35.2 MiB 1.79 6845 29178 5734 19784 3660 72.6 MiB 0.50 0.01 4.13443 -1312.79 -4.13443 4.13443 0.56 0.00395181 0.00358259 0.243092 0.21955 44 12842 28 6.34292e+06 3.6535e+06 649498. 2537.10 7.35 1.51796 1.33002 22336 155612 -1 9870 14 3634 4364 464801 122306 4.24116 4.24116 -1341.45 -4.24116 0 0 820238. 3204.05 0.22 0.25 0.12 -1 -1 0.22 0.143265 0.129136 1033 769 266 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 8.94 vpr 72.88 MiB 0.12 10984 -1 -1 1 0.25 -1 -1 36852 -1 -1 137 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74632 22 19 2218 1846 1 1177 183 16 16 256 clb mult_36 auto 35.6 MiB 2.08 7131 32361 6636 21461 4264 72.9 MiB 0.55 0.01 4.24116 -1381.33 -4.24116 4.24116 0.58 0.00386192 0.00347919 0.254067 0.228151 46 12387 24 6.34292e+06 3.71689e+06 684529. 2673.94 2.56 0.873502 0.767796 22592 160355 -1 9850 14 3563 4257 399452 105344 4.24116 4.24116 -1382.06 -4.24116 0 0 838722. 3276.26 0.21 0.23 0.15 -1 -1 0.21 0.133813 0.119563 1071 788 285 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 10.12 vpr 75.05 MiB 0.10 11836 -1 -1 1 0.30 -1 -1 36744 -1 -1 157 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76848 22 19 2536 2130 1 1298 203 17 17 289 clb auto 37.7 MiB 2.30 7990 29407 5457 21306 2644 75.0 MiB 0.50 0.01 4.48156 -1537.29 -4.48156 4.48156 0.64 0.00430613 0.00385143 0.230555 0.20626 46 15105 26 6.65987e+06 3.97045e+06 782063. 2706.10 3.11 1.02124 0.89176 25426 183746 -1 11140 13 4183 5041 445642 117624 4.36136 4.36136 -1531.19 -4.36136 0 0 958460. 3316.47 0.25 0.31 0.16 -1 -1 0.25 0.181249 0.165655 1226 924 304 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 10.00 vpr 75.36 MiB 0.12 11868 -1 -1 1 0.31 -1 -1 37216 -1 -1 163 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77172 22 19 2610 2187 1 1336 209 17 17 289 clb auto 37.9 MiB 2.21 8155 36789 7305 26033 3451 75.4 MiB 0.50 0.01 4.05473 -1593.4 -4.05473 4.05473 0.64 0.00204187 0.00181336 0.205703 0.183114 48 15307 35 6.65987e+06 4.04651e+06 816265. 2824.45 3.10 0.995261 0.867823 25714 189529 -1 12228 16 4558 5382 598643 148707 4.24116 4.24116 -1683.87 -4.24116 0 0 986792. 3414.50 0.26 0.30 0.17 -1 -1 0.26 0.169811 0.15093 1264 943 323 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 19.99 vpr 76.09 MiB 0.10 12172 -1 -1 1 0.34 -1 -1 36796 -1 -1 172 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77916 22 19 2778 2321 1 1434 219 18 18 324 clb auto 39.2 MiB 2.49 8731 36464 7395 26087 2982 76.1 MiB 0.61 0.01 4.24116 -1720.94 -4.24116 4.24116 0.73 0.00509493 0.00450297 0.279768 0.250014 44 16662 42 7.79418e+06 4.55662e+06 850563. 2625.19 12.37 2.27729 1.98592 28700 205432 -1 12706 14 4544 5587 531680 141034 4.24116 4.24116 -1760.33 -4.24116 0 0 1.07356e+06 3313.45 0.30 0.31 0.18 -1 -1 0.30 0.173921 0.155689 1342 1002 342 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 12.38 vpr 76.71 MiB 0.17 12368 -1 -1 1 0.34 -1 -1 36952 -1 -1 176 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78552 22 19 2852 2378 1 1479 223 18 18 324 clb auto 39.8 MiB 2.45 9149 36727 6960 26660 3107 76.7 MiB 0.64 0.01 4.17493 -1790.89 -4.17493 4.17493 0.77 0.00476988 0.00427466 0.281251 0.25121 46 15963 21 7.79418e+06 4.60733e+06 895831. 2764.91 4.53 1.36531 1.18775 29024 211752 -1 13130 14 4664 5572 585274 152661 4.36136 4.36136 -1839.76 -4.36136 0 0 1.09776e+06 3388.15 0.29 0.31 0.18 -1 -1 0.29 0.16464 0.147225 1380 1021 361 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 13.46 vpr 77.67 MiB 0.13 12896 -1 -1 1 0.35 -1 -1 38016 -1 -1 188 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79536 22 19 3057 2549 1 1586 235 18 18 324 clb auto 40.8 MiB 2.76 9903 45123 9529 32094 3500 77.7 MiB 0.76 0.01 4.25463 -1905.93 -4.25463 4.25463 0.75 0.00498986 0.0044505 0.338263 0.301731 46 17948 30 7.79418e+06 4.75946e+06 895831. 2764.91 5.01 1.49883 1.31763 29024 211752 -1 13855 14 5092 6144 628537 161536 4.36136 4.36136 -2028.43 -4.36136 0 0 1.09776e+06 3388.15 0.29 0.32 0.17 -1 -1 0.29 0.179308 0.160203 1477 1099 380 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 18.07 vpr 78.16 MiB 0.13 12828 -1 -1 1 0.35 -1 -1 37944 -1 -1 194 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80032 22 19 3131 2606 1 1626 241 19 19 361 clb auto 41.4 MiB 2.84 10286 47428 9839 33939 3650 78.2 MiB 0.84 0.01 4.24116 -1964.7 -4.24116 4.24116 0.84 0.00515519 0.00460612 0.374874 0.334519 48 18602 34 8.16184e+06 4.83553e+06 1.05176e+06 2913.46 9.15 2.16239 1.89086 32602 246183 -1 15049 16 5468 6655 767404 181797 4.24116 4.24116 -1987.18 -4.24116 0 0 1.27108e+06 3521.00 0.34 0.37 0.21 -1 -1 0.34 0.197316 0.175297 1515 1118 399 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 14.48 vpr 79.21 MiB 0.16 13236 -1 -1 1 0.36 -1 -1 37880 -1 -1 204 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81112 22 19 3301 2742 1 1720 252 19 19 361 clb auto 42.1 MiB 2.94 11043 52722 11417 37077 4228 79.2 MiB 0.96 0.01 4.12096 -2024.58 -4.12096 4.12096 0.84 0.00592097 0.00532352 0.426861 0.380863 50 18333 39 8.16184e+06 5.35831e+06 1.09718e+06 3039.29 5.13 1.91612 1.67794 32962 254619 -1 15633 15 5503 6537 715495 175652 4.36136 4.36136 -2095.67 -4.36136 0 0 1.31179e+06 3633.76 0.43 0.44 0.21 -1 -1 0.43 0.258958 0.236943 1595 1179 418 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 17.69 vpr 79.93 MiB 0.18 13436 -1 -1 1 0.38 -1 -1 38112 -1 -1 209 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81848 22 19 3375 2799 1 1765 257 19 19 361 clb auto 42.7 MiB 3.14 10750 45953 8990 33234 3729 79.9 MiB 0.78 0.01 4.17493 -2082.77 -4.17493 4.17493 0.83 0.00572618 0.00512497 0.333878 0.297631 50 19942 42 8.16184e+06 5.4217e+06 1.09718e+06 3039.29 8.20 1.98948 1.74691 32962 254619 -1 15531 18 5893 7110 826640 196272 4.48156 4.48156 -2097.91 -4.48156 0 0 1.31179e+06 3633.76 0.35 0.41 0.23 -1 -1 0.35 0.232604 0.206131 1633 1198 437 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 19.32 vpr 80.93 MiB 0.09 13904 -1 -1 1 0.41 -1 -1 38040 -1 -1 223 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82876 22 19 3615 3005 1 1878 271 20 20 400 clb auto 43.8 MiB 3.29 11843 54583 11378 38149 5056 80.9 MiB 0.91 0.01 4.18011 -2275.57 -4.18011 4.18011 0.99 0.0059378 0.00528452 0.392642 0.348871 50 19676 18 1.10667e+07 5.59919e+06 1.21483e+06 3037.08 9.37 2.3373 2.05364 36870 282114 -1 16952 16 6065 7149 736369 184136 4.36136 4.36136 -2393.56 -4.36136 0 0 1.45344e+06 3633.59 0.39 0.38 0.24 -1 -1 0.39 0.221589 0.196726 1747 1293 456 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 15.55 vpr 81.50 MiB 0.10 14064 -1 -1 1 0.42 -1 -1 38312 -1 -1 228 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83456 22 19 3689 3062 1 1918 276 20 20 400 clb auto 44.8 MiB 3.39 12415 59544 13159 41333 5052 81.5 MiB 1.03 0.02 4.13813 -2248.17 -4.13813 4.13813 0.94 0.00636596 0.00571336 0.441584 0.393961 48 22522 44 1.10667e+07 5.66258e+06 1.16517e+06 2912.92 5.28 1.89176 1.66089 36470 272802 -1 17889 14 6502 7743 857384 212074 4.36136 4.36136 -2389.08 -4.36136 0 0 1.40818e+06 3520.44 0.42 0.40 0.25 -1 -1 0.42 0.215312 0.194032 1785 1312 475 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 22.10 vpr 82.62 MiB 0.14 14320 -1 -1 1 0.43 -1 -1 38328 -1 -1 240 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84604 22 19 3871 3210 1 2023 289 21 21 441 clb auto 45.5 MiB 3.59 13091 69049 15421 48905 4723 82.6 MiB 1.17 0.02 4.25833 -2439.76 -4.25833 4.25833 1.04 0.00662048 0.00586304 0.484025 0.429075 50 22955 23 1.14723e+07 6.21072e+06 1.34972e+06 3060.59 10.90 2.78183 2.45578 40486 313801 -1 19085 17 6693 8122 872684 214863 4.36136 4.36136 -2497.47 -4.36136 0 0 1.61476e+06 3661.58 0.44 0.45 0.25 -1 -1 0.44 0.256917 0.228658 1877 1385 494 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 18.55 vpr 83.02 MiB 0.18 14580 -1 -1 1 0.52 -1 -1 38388 -1 -1 245 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85016 22 19 3945 3267 1 2070 294 21 21 441 clb auto 46.1 MiB 3.68 13787 70638 15611 48908 6119 83.0 MiB 1.24 0.02 4.18011 -2457.52 -4.18011 4.18011 1.06 0.0074756 0.006569 0.530694 0.471761 50 23792 26 1.14723e+07 6.27411e+06 1.34972e+06 3060.59 7.01 2.15928 1.89132 40486 313801 -1 19707 15 6833 8556 909227 220592 4.36136 4.36136 -2566.1 -4.36136 0 0 1.61476e+06 3661.58 0.45 0.42 0.25 -1 -1 0.45 0.231815 0.206025 1915 1404 513 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 31.29 vpr 84.27 MiB 0.19 15128 -1 -1 1 0.54 -1 -1 39544 -1 -1 258 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86292 22 19 4159 3447 1 2186 308 22 22 484 mult_36 auto 47.4 MiB 3.84 14540 75116 16849 52375 5892 84.3 MiB 1.25 0.02 4.48156 -2570.01 -4.48156 4.48156 1.17 0.00688567 0.00616168 0.52709 0.468722 50 23434 22 1.26954e+07 6.83492e+06 1.50222e+06 3103.76 19.22 3.03941 2.64267 44874 350400 -1 20303 14 6789 8219 816835 204141 4.48156 4.48156 -2692.11 -4.48156 0 0 1.79645e+06 3711.66 0.51 0.43 0.30 -1 -1 0.51 0.249086 0.222942 2021 1491 532 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 19.90 vpr 84.84 MiB 0.20 15240 -1 -1 1 0.52 -1 -1 40812 -1 -1 263 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86880 22 19 4233 3504 1 2225 313 22 22 484 mult_36 auto 48.0 MiB 3.96 14345 72529 15646 51039 5844 84.8 MiB 1.22 0.02 4.29513 -2641.58 -4.29513 4.29513 1.15 0.00705696 0.00626798 0.507139 0.45077 48 25057 33 1.26954e+07 6.89831e+06 1.44011e+06 2975.42 7.55 2.3246 2.02616 44390 338934 -1 20617 16 7249 9020 909338 222155 4.48156 4.48156 -2910.31 -4.48156 0 0 1.74100e+06 3597.11 0.56 0.49 0.29 -1 -1 0.56 0.277592 0.247925 2059 1510 551 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 26.91 vpr 85.89 MiB 0.17 15576 -1 -1 1 0.57 -1 -1 40948 -1 -1 274 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87948 22 19 4410 3647 1 2335 324 22 22 484 clb mult_36 auto 49.0 MiB 4.10 14627 81500 18211 56732 6557 85.9 MiB 1.36 0.02 4.48156 -2763.28 -4.48156 4.48156 1.17 0.00738142 0.0064759 0.546542 0.485598 54 24724 32 1.26954e+07 7.03777e+06 1.58090e+06 3266.32 13.87 3.49276 3.07371 46322 380746 -1 20211 16 6937 8304 881095 215583 4.48156 4.48156 -2824.86 -4.48156 0 0 1.94386e+06 4016.24 0.75 0.50 0.38 -1 -1 0.75 0.291696 0.260883 2146 1578 570 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 18.88 vpr 86.39 MiB 0.21 15748 -1 -1 1 0.57 -1 -1 40676 -1 -1 278 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88460 22 19 4484 3704 1 2374 328 22 22 484 clb mult_36 auto 49.4 MiB 4.21 15540 78298 18108 54278 5912 86.4 MiB 1.37 0.02 4.24116 -2782.8 -4.24116 4.24116 1.18 0.00850778 0.00767123 0.580402 0.51799 48 26921 28 1.26954e+07 7.08848e+06 1.44011e+06 2975.42 6.06 2.09126 1.83654 44390 338934 -1 22311 13 7902 9623 980518 241405 4.48156 4.48156 -2896.93 -4.48156 0 0 1.74100e+06 3597.11 0.50 0.47 0.31 -1 -1 0.50 0.244366 0.218501 2184 1597 589 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 20.43 vpr 87.84 MiB 0.18 16488 -1 -1 1 0.61 -1 -1 41520 -1 -1 302 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89948 22 19 4843 4029 1 2501 353 23 23 529 clb auto 51.3 MiB 4.44 17435 87643 19607 61599 6437 87.8 MiB 1.47 0.01 4.24116 -3073.8 -4.24116 4.24116 1.40 0.00437909 0.00392859 0.602393 0.533154 50 29482 39 1.31518e+07 7.78876e+06 1.65241e+06 3123.66 6.51 2.45162 2.13701 48882 385791 -1 24265 14 8069 9691 993548 240146 4.36136 4.36136 -3116.31 -4.36136 0 0 1.97533e+06 3734.07 0.60 0.53 0.37 -1 -1 0.60 0.293733 0.261277 2362 1756 608 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 23.61 vpr 88.46 MiB 0.12 16748 -1 -1 1 0.62 -1 -1 41616 -1 -1 308 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90580 22 19 4917 4086 1 2542 359 23 23 529 clb auto 51.8 MiB 4.42 16896 87059 18935 61744 6380 88.5 MiB 1.56 0.02 4.48156 -3114.12 -4.48156 4.48156 1.32 0.00762155 0.00676444 0.636308 0.56748 50 30043 27 1.31518e+07 7.86482e+06 1.65241e+06 3123.66 9.44 2.60169 2.26752 48882 385791 -1 24344 14 8758 10802 1224972 286268 4.60176 4.60176 -3387.39 -4.60176 0 0 1.97533e+06 3734.07 0.56 0.56 0.37 -1 -1 0.56 0.286044 0.255012 2401 1775 627 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 42.49 vpr 89.30 MiB 0.25 17244 -1 -1 1 0.65 -1 -1 41768 -1 -1 319 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91440 22 19 5093 4228 1 2643 370 23 23 529 clb auto 52.6 MiB 4.59 18051 89279 20131 63728 5420 89.3 MiB 1.53 0.03 4.37483 -3218.94 -4.37483 4.37483 1.28 0.0115723 0.0106977 0.611601 0.540946 50 30668 35 1.31518e+07 8.00428e+06 1.65241e+06 3123.66 28.07 3.81148 3.33209 48882 385791 -1 25188 17 8575 10282 1105084 272137 4.48156 4.48156 -3354.12 -4.48156 0 0 1.97533e+06 3734.07 0.57 0.64 0.31 -1 -1 0.57 0.36502 0.32385 2487 1842 646 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 42.13 vpr 89.86 MiB 0.24 17224 -1 -1 1 0.58 -1 -1 41708 -1 -1 323 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92020 22 19 5167 4285 1 2691 374 23 23 529 clb auto 53.3 MiB 4.79 17780 96011 21980 67780 6251 89.9 MiB 1.63 0.02 4.48156 -3272.89 -4.48156 4.48156 1.27 0.00902501 0.00810883 0.636019 0.564686 50 31361 46 1.31518e+07 8.05499e+06 1.65241e+06 3123.66 27.54 4.02566 3.48344 48882 385791 -1 25174 17 9093 11307 1257811 296331 4.36136 4.36136 -3536.95 -4.36136 0 0 1.97533e+06 3734.07 0.65 0.70 0.32 -1 -1 0.65 0.394101 0.352154 2525 1861 665 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 22.69 vpr 91.00 MiB 0.28 17624 -1 -1 1 0.67 -1 -1 40876 -1 -1 336 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93188 22 19 5380 4464 1 2808 388 24 24 576 mult_36 auto 54.4 MiB 4.95 18000 106438 25977 73150 7311 91.0 MiB 1.93 0.02 4.36136 -3470.71 -4.36136 4.36136 1.62 0.00921082 0.00823912 0.767144 0.678016 48 30066 22 1.53347e+07 8.61581e+06 1.71014e+06 2969.00 6.75 2.50437 2.1985 52498 402441 -1 25768 15 8689 10479 1086200 257350 4.60176 4.60176 -3539.87 -4.60176 0 0 2.06880e+06 3591.66 0.59 0.57 0.34 -1 -1 0.59 0.325227 0.290089 2630 1947 684 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 29.23 vpr 91.32 MiB 0.27 17876 -1 -1 1 0.76 -1 -1 42228 -1 -1 342 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93512 22 19 5454 4521 1 2849 394 24 24 576 clb mult_36 auto 55.5 MiB 4.99 18144 115834 28131 77060 10643 91.3 MiB 1.97 0.02 4.24116 -3379.88 -4.24116 4.24116 1.45 0.00923439 0.00823115 0.799143 0.708981 50 29652 34 1.53347e+07 8.69188e+06 1.78400e+06 3097.22 13.48 3.83727 3.35876 53074 415989 -1 25288 17 8636 10670 1032084 260041 4.36136 4.36136 -3563.7 -4.36136 0 0 2.13454e+06 3705.80 0.60 0.62 0.34 -1 -1 0.60 0.370192 0.325926 2668 1966 703 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 23.74 vpr 92.36 MiB 0.22 18152 -1 -1 1 0.66 -1 -1 40208 -1 -1 352 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94576 22 19 5629 4662 1 2951 404 24 24 576 clb mult_36 auto 56.4 MiB 5.14 21626 118272 28657 79200 10415 92.4 MiB 2.06 0.02 4.48156 -3617.12 -4.48156 4.48156 1.45 0.0096086 0.00860047 0.824292 0.731809 52 37764 38 1.53347e+07 8.81866e+06 1.82869e+06 3174.81 7.59 2.73664 2.40506 54222 439550 -1 29338 14 9216 11739 1241818 290722 4.72196 4.72196 -3919.7 -4.72196 0 0 2.25030e+06 3906.77 0.67 0.65 0.37 -1 -1 0.67 0.353944 0.318368 2753 2032 722 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 26.05 vpr 92.76 MiB 0.19 18376 -1 -1 1 0.67 -1 -1 42312 -1 -1 357 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94988 22 19 5703 4719 1 2994 409 25 25 625 clb auto 57.0 MiB 5.29 20955 115701 27338 79764 8599 92.8 MiB 1.92 0.02 4.30038 -3680.46 -4.30038 4.30038 1.49 0.00891788 0.00790718 0.732142 0.646044 52 36068 32 1.58291e+07 8.88205e+06 1.99531e+06 3192.49 9.71 2.88506 2.51628 58656 480125 -1 28247 15 9057 11231 1191506 271016 4.48156 4.48156 -3899.12 -4.48156 0 0 2.45448e+06 3927.17 0.73 0.61 0.38 -1 -1 0.73 0.343601 0.306286 2791 2051 741 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 35.27 vpr 101.03 MiB 0.26 18820 -1 -1 1 0.88 -1 -1 41464 -1 -1 373 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103456 22 19 5950 4932 1 3111 426 25 25 625 clb auto 58.4 MiB 5.35 22868 125382 30342 84914 10126 94.5 MiB 2.17 0.03 4.36136 -3900.3 -4.36136 4.36136 1.74 0.010111 0.00896462 0.855855 0.758941 58 35761 44 1.58291e+07 9.48089e+06 2.14341e+06 3429.45 17.71 4.20562 3.67432 61152 534357 -1 30542 13 9396 11438 1360367 304092 4.36136 4.36136 -4147.24 -4.36136 0 0 2.68463e+06 4295.40 0.82 0.64 0.38 -1 -1 0.82 0.334472 0.299137 2912 2153 760 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 28.04 vpr 94.77 MiB 0.19 18916 -1 -1 1 0.81 -1 -1 42788 -1 -1 376 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97040 22 19 6024 4989 1 3151 429 25 25 625 clb auto 58.8 MiB 5.61 22338 129789 31817 87521 10451 94.8 MiB 2.26 0.02 4.48156 -3879.56 -4.48156 4.48156 1.62 0.0100564 0.00897238 0.888357 0.786949 52 37600 39 1.58291e+07 9.51893e+06 1.99531e+06 3192.49 10.69 3.58221 3.12509 58656 480125 -1 30047 14 9557 11787 1160075 277147 4.60176 4.60176 -3969.48 -4.60176 0 0 2.45448e+06 3927.17 0.72 0.63 0.28 -1 -1 0.72 0.364161 0.324891 2950 2172 779 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 52.56 vpr 95.76 MiB 0.17 19248 -1 -1 1 0.84 -1 -1 43268 -1 -1 388 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98060 22 19 6198 5129 1 3252 441 25 25 625 clb auto 59.7 MiB 5.69 22292 124613 28130 84188 12295 95.8 MiB 2.25 0.03 4.48156 -3906.86 -4.48156 4.48156 1.57 0.0119826 0.0108248 0.915972 0.811748 52 39721 49 1.58291e+07 9.67106e+06 1.99531e+06 3192.49 35.29 5.54653 4.84612 58656 480125 -1 30201 14 9788 12101 1217348 300045 4.48156 4.48156 -4076.88 -4.48156 0 0 2.45448e+06 3927.17 0.72 0.64 0.45 -1 -1 0.72 0.362311 0.324278 3034 2237 798 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 38.21 vpr 104.12 MiB 0.23 19452 -1 -1 1 0.85 -1 -1 43464 -1 -1 393 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106616 22 19 6272 5186 1 3297 446 26 26 676 clb auto 60.2 MiB 5.83 21355 129874 31660 89304 8910 96.5 MiB 2.36 0.03 4.29513 -3951.34 -4.29513 4.29513 1.81 0.0122421 0.0106007 0.908054 0.794565 52 38819 39 1.91809e+07 9.73445e+06 2.20423e+06 3260.69 19.62 4.72492 4.12636 65116 533202 -1 29530 15 9717 12154 1180163 283797 4.60176 4.60176 -4317.78 -4.60176 0 0 2.70930e+06 4007.84 0.83 0.68 0.45 -1 -1 0.83 0.396535 0.354423 3072 2256 817 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 54.27 vpr 97.45 MiB 0.29 19848 -1 -1 1 0.86 -1 -1 43752 -1 -1 406 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99784 22 19 6485 5365 1 3415 460 26 26 676 clb auto 61.4 MiB 5.72 22624 140685 34814 96882 8989 97.4 MiB 2.38 0.03 4.48156 -4103.24 -4.48156 4.48156 1.75 0.0108887 0.00973389 0.910155 0.806291 50 36300 23 1.91809e+07 1.02953e+07 2.15046e+06 3181.16 35.78 4.8435 4.21885 63768 504694 -1 31167 13 10359 13165 1307358 324247 4.60176 4.60176 -4375.92 -4.60176 0 0 2.57128e+06 3803.68 0.81 0.74 0.42 -1 -1 0.81 0.405213 0.364765 3177 2342 836 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 32.21 vpr 97.84 MiB 0.19 20024 -1 -1 1 0.91 -1 -1 43916 -1 -1 411 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100184 22 19 6559 5422 1 3449 465 26 26 676 clb auto 61.9 MiB 6.60 25506 149865 38664 101092 10109 97.8 MiB 2.67 0.03 4.48156 -4212.37 -4.48156 4.48156 1.84 0.01155 0.0100428 0.99278 0.873518 54 41203 26 1.91809e+07 1.03587e+07 2.26288e+06 3347.46 12.00 3.68277 3.22084 65792 548382 -1 34168 15 10921 13370 1528099 357175 4.60176 4.60176 -4476.26 -4.60176 0 0 2.78165e+06 4114.86 0.79 0.72 0.45 -1 -1 0.79 0.406959 0.362956 3215 2361 855 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 31.14 vpr 99.51 MiB 0.29 20428 -1 -1 1 0.95 -1 -1 44560 -1 -1 421 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101896 22 19 6735 5564 1 3561 475 26 26 676 clb auto 63.1 MiB 6.24 25310 154191 38459 104957 10775 99.0 MiB 2.64 0.03 4.42058 -4395.65 -4.42058 4.42058 1.77 0.0114443 0.0102196 0.993177 0.874618 54 40333 20 1.91809e+07 1.04854e+07 2.26288e+06 3347.46 11.75 3.82 3.32185 65792 548382 -1 34143 14 10999 13415 1399252 324545 4.48156 4.48156 -4534.97 -4.48156 0 0 2.78165e+06 4114.86 0.84 0.73 0.44 -1 -1 0.84 0.402783 0.361236 3301 2428 874 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 31.29 vpr 99.37 MiB 0.17 20476 -1 -1 1 1.03 -1 -1 44148 -1 -1 427 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101756 22 19 6809 5621 1 3598 481 26 26 676 clb auto 63.5 MiB 6.29 25005 160536 40351 110386 9799 99.4 MiB 2.77 0.03 4.48156 -4491.6 -4.48156 4.48156 1.74 0.0111671 0.00995686 1.02469 0.906026 56 38290 31 1.91809e+07 1.05615e+07 2.31971e+06 3431.53 11.86 3.84741 3.37679 66468 563034 -1 34042 15 10589 12939 1484526 349460 4.60176 4.60176 -4789.55 -4.60176 0 0 2.84390e+06 4206.95 0.80 0.72 0.46 -1 -1 0.80 0.40184 0.356501 3339 2447 893 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 31.00 vpr 102.99 MiB 0.31 21084 -1 -1 1 0.94 -1 -1 44412 -1 -1 443 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 105464 22 19 7094 5872 1 3718 498 27 27 729 clb auto 65.0 MiB 6.56 24179 152419 37669 105372 9378 101.0 MiB 2.65 0.03 4.19728 -4586.35 -4.19728 4.19728 1.87 0.0111429 0.00990221 0.979898 0.856498 52 42399 36 1.9726e+07 1.11604e+07 2.38665e+06 3273.86 10.51 3.42089 2.98719 69950 577685 -1 33223 16 11342 13977 1432247 338328 4.48156 4.48156 -4941.55 -4.48156 0 0 2.93284e+06 4023.09 0.88 0.90 0.47 -1 -1 0.88 0.524157 0.472249 3480 2569 912 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 36.75 vpr 105.16 MiB 0.33 21384 -1 -1 1 1.16 -1 -1 44104 -1 -1 448 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 107684 22 19 7168 5929 1 3755 503 27 27 729 clb auto 65.2 MiB 6.69 28000 166420 40751 114741 10928 101.5 MiB 2.94 0.03 4.48156 -4578.26 -4.48156 4.48156 1.90 0.0129669 0.0115651 1.12572 0.993242 56 43916 39 1.9726e+07 1.12237e+07 2.51142e+06 3445.02 15.40 4.33648 3.78899 71406 610069 -1 38950 16 12222 15384 1884834 440341 4.60176 4.60176 -4998.93 -4.60176 0 0 3.07846e+06 4222.85 0.95 0.92 0.50 -1 -1 0.95 0.483905 0.433524 3518 2588 931 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 40.38 vpr 105.87 MiB 0.36 21596 -1 -1 1 1.05 -1 -1 44764 -1 -1 459 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 108412 22 19 7344 6071 1 3863 514 27 27 729 clb auto 66.9 MiB 6.64 28678 169270 42388 115337 11545 102.6 MiB 2.80 0.03 4.41533 -4778.21 -4.41533 4.41533 1.83 0.0117034 0.0103951 1.02012 0.897826 54 46382 43 1.9726e+07 1.13632e+07 2.44988e+06 3360.60 19.23 4.86679 4.23664 70678 594165 -1 38295 15 12029 14450 1626312 380742 4.48156 4.48156 -5141.25 -4.48156 0 0 3.01106e+06 4130.40 1.00 0.82 0.46 -1 -1 1.00 0.446907 0.396647 3604 2655 950 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 37.70 vpr 104.27 MiB 0.36 21756 -1 -1 1 1.12 -1 -1 45316 -1 -1 464 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106772 22 19 7418 6128 1 3909 519 27 27 729 clb auto 67.1 MiB 6.88 26143 167239 39832 117509 9898 102.7 MiB 2.94 0.03 4.30031 -4799.25 -4.30031 4.30031 1.86 0.0122554 0.0109024 1.03923 0.915693 54 43532 47 1.9726e+07 1.14266e+07 2.44988e+06 3360.60 16.00 4.83717 4.20334 70678 594165 -1 35636 17 11690 14277 1452572 355720 4.36136 4.36136 -5218.21 -4.36136 0 0 3.01106e+06 4130.40 0.94 0.86 0.53 -1 -1 0.94 0.509977 0.45505 3642 2674 969 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 11.24 vpr 67.37 MiB 0.06 9432 -1 -1 1 0.12 -1 -1 34808 -1 -1 79 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68984 22 19 1246 925 1 736 124 16 16 256 mult_36 auto 29.5 MiB 1.24 4241 18355 4196 11625 2534 67.4 MiB 0.38 0.01 8.07311 -393.21 -8.07311 8.07311 0.57 0.00311988 0.00285625 0.168593 0.154108 38 9033 43 6.34292e+06 2.58556e+06 558663. 2182.28 6.60 0.809765 0.716733 21316 135884 -1 6718 20 5024 5685 595728 162068 8.13448 8.13448 -417.392 -8.13448 0 0 744679. 2908.90 0.19 0.24 0.09 -1 -1 0.19 0.106176 0.0947645 589 344 247 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 20.61 vpr 68.05 MiB 0.07 9540 -1 -1 1 0.15 -1 -1 35248 -1 -1 84 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69684 22 19 1344 989 1 796 130 16 16 256 mult_36 auto 30.6 MiB 1.51 4753 18225 3749 10940 3536 68.1 MiB 0.34 0.01 8.46137 -399.963 -8.46137 8.46137 0.59 0.00267077 0.00244665 0.164538 0.150832 40 9325 41 6.34292e+06 3.04495e+06 583096. 2277.72 15.54 1.45096 1.27986 21572 140635 -1 7587 24 6351 7155 819730 219125 8.06128 8.06128 -488.017 -8.06128 0 0 763333. 2981.77 0.20 0.33 0.13 -1 -1 0.20 0.137446 0.122756 633 369 266 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 10.49 vpr 68.47 MiB 0.10 9628 -1 -1 1 0.17 -1 -1 35048 -1 -1 89 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70116 22 19 1418 1046 1 833 135 16 16 256 mult_36 auto 30.9 MiB 1.59 4903 22971 5326 13381 4264 68.5 MiB 0.42 0.01 8.1423 -435.818 -8.1423 8.1423 0.58 0.00275106 0.00252177 0.197817 0.181108 44 8716 37 6.34292e+06 3.10834e+06 649498. 2537.10 5.33 1.17548 1.03474 22336 155612 -1 7030 22 4906 5497 598759 157899 7.39308 7.39308 -479.139 -7.39308 0 0 820238. 3204.05 0.21 0.25 0.09 -1 -1 0.21 0.124865 0.111257 671 388 285 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 8.65 vpr 69.00 MiB 0.08 10204 -1 -1 1 0.19 -1 -1 35396 -1 -1 95 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70660 22 19 1518 1112 1 899 141 16 16 256 mult_36 auto 31.5 MiB 1.46 5556 17709 3644 11642 2423 69.0 MiB 0.35 0.01 8.90161 -437.56 -8.90161 8.90161 0.55 0.00293275 0.00267956 0.158421 0.144964 46 9741 26 6.34292e+06 3.18441e+06 684529. 2673.94 3.47 0.839932 0.745992 22592 160355 -1 7950 22 5670 6223 725059 195443 8.13305 8.13305 -481.209 -8.13305 0 0 838722. 3276.26 0.21 0.30 0.15 -1 -1 0.21 0.14019 0.125408 717 415 304 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 13.78 vpr 69.55 MiB 0.07 10252 -1 -1 1 0.15 -1 -1 34892 -1 -1 100 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71216 22 19 1592 1169 1 937 146 16 16 256 mult_36 auto 31.9 MiB 1.64 5565 22034 5042 13956 3036 69.5 MiB 0.42 0.01 8.87973 -457.467 -8.87973 8.87973 0.62 0.00310544 0.00284191 0.193774 0.177316 42 11318 39 6.34292e+06 3.2478e+06 613404. 2396.11 8.14 1.38438 1.21964 21828 146600 -1 8699 22 6205 6918 797479 216264 8.34213 8.34213 -594.881 -8.34213 0 0 784202. 3063.29 0.25 0.33 0.12 -1 -1 0.25 0.146706 0.131004 755 434 323 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 11.33 vpr 69.94 MiB 0.11 10548 -1 -1 1 0.22 -1 -1 35336 -1 -1 105 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71616 22 19 1688 1231 1 998 152 16 16 256 mult_36 auto 32.5 MiB 1.86 5757 22427 4578 13882 3967 69.9 MiB 0.44 0.01 8.92361 -471.887 -8.92361 8.92361 0.56 0.00324852 0.00295972 0.195619 0.178395 48 9652 27 6.34292e+06 3.70719e+06 714410. 2790.66 5.63 1.35638 1.19582 22848 165380 -1 8651 22 5351 6026 732157 188713 8.18805 8.18805 -546.947 -8.18805 0 0 863353. 3372.47 0.22 0.30 0.10 -1 -1 0.22 0.147667 0.131721 797 457 342 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 12.61 vpr 70.42 MiB 0.13 10708 -1 -1 1 0.22 -1 -1 35620 -1 -1 110 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72112 22 19 1762 1288 1 1033 157 16 16 256 mult_36 auto 32.8 MiB 1.88 5909 26383 5594 16039 4750 70.4 MiB 0.51 0.01 8.83537 -533.405 -8.83537 8.83537 0.56 0.00334843 0.00305355 0.229503 0.208935 46 10553 28 6.34292e+06 3.77058e+06 684529. 2673.94 6.59 1.4927 1.31724 22592 160355 -1 8432 21 5501 6184 629963 165433 8.19799 8.19799 -535.068 -8.19799 0 0 838722. 3276.26 0.21 0.29 0.14 -1 -1 0.21 0.14789 0.13221 835 476 361 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 19.27 vpr 71.07 MiB 0.14 11088 -1 -1 1 0.26 -1 -1 35780 -1 -1 117 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72772 22 19 1859 1351 1 1097 164 16 16 256 mult_36 auto 33.3 MiB 2.10 6877 26148 4845 17989 3314 71.1 MiB 0.52 0.01 9.10283 -530.329 -9.10283 9.10283 0.55 0.00350904 0.00319379 0.219292 0.199579 46 12941 28 6.34292e+06 3.85933e+06 684529. 2673.94 12.86 1.68486 1.48673 22592 160355 -1 9640 20 5382 6297 642924 169839 8.50765 8.50765 -651.006 -8.50765 0 0 838722. 3276.26 0.24 0.30 0.14 -1 -1 0.24 0.158102 0.141691 878 500 380 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 12.47 vpr 71.47 MiB 0.09 11048 -1 -1 1 0.24 -1 -1 35836 -1 -1 121 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73184 22 19 1933 1408 1 1134 168 16 16 256 mult_36 auto 33.9 MiB 2.14 7422 25170 4911 15658 4601 71.5 MiB 0.48 0.01 9.01458 -573.662 -9.01458 9.01458 0.57 0.00366039 0.00333703 0.217225 0.1982 48 13367 46 6.34292e+06 3.91004e+06 714410. 2790.66 5.95 1.20201 1.06296 22848 165380 -1 10834 24 6813 8030 1002292 248924 8.32694 8.32694 -795.331 -8.32694 0 0 863353. 3372.47 0.22 0.40 0.15 -1 -1 0.22 0.183735 0.163565 916 519 399 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 11.86 vpr 72.08 MiB 0.09 11388 -1 -1 1 0.27 -1 -1 36152 -1 -1 129 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73808 22 19 2031 1472 1 1198 177 18 18 324 mult_36 auto 34.6 MiB 2.24 7275 31425 6625 21832 2968 72.1 MiB 0.66 0.01 9.00463 -548.336 -9.00463 9.00463 0.74 0.00390493 0.00356234 0.258931 0.235866 46 14196 45 7.79418e+06 4.40746e+06 895831. 2764.91 4.56 1.12575 0.997804 29024 211752 -1 10934 25 6882 7848 880826 223229 8.43839 8.43839 -703.752 -8.43839 0 0 1.09776e+06 3388.15 0.29 0.39 0.17 -1 -1 0.29 0.19905 0.177408 960 544 418 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 12.36 vpr 72.46 MiB 0.09 11464 -1 -1 1 0.25 -1 -1 36348 -1 -1 134 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74196 22 19 2105 1529 1 1235 182 18 18 324 mult_36 auto 35.0 MiB 2.48 7801 30567 6031 22002 2534 72.5 MiB 0.61 0.01 8.93461 -590.946 -8.93461 8.93461 0.74 0.00432734 0.00392692 0.248296 0.225855 44 15786 47 7.79418e+06 4.47085e+06 850563. 2625.19 4.97 1.26592 1.11687 28700 205432 -1 11441 21 7563 8584 1010699 259800 8.45525 8.45525 -751.332 -8.45525 0 0 1.07356e+06 3313.45 0.29 0.41 0.17 -1 -1 0.29 0.184476 0.164299 998 563 437 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 15.88 vpr 73.18 MiB 0.16 11912 -1 -1 1 0.26 -1 -1 36644 -1 -1 139 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74940 22 19 2201 1591 1 1295 187 18 18 324 mult_36 auto 35.6 MiB 2.58 7794 35431 8008 24050 3373 73.2 MiB 0.75 0.01 8.99805 -627.204 -8.99805 8.99805 0.76 0.00409877 0.00373479 0.29492 0.268298 48 14419 25 7.79418e+06 4.53424e+06 935225. 2886.50 7.93 1.6909 1.49346 29348 218440 -1 11847 24 9376 10639 1260323 308837 8.19914 8.19914 -859.595 -8.19914 0 0 1.13028e+06 3488.51 0.31 0.46 0.19 -1 -1 0.31 0.202649 0.180363 1040 586 456 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 15.96 vpr 73.44 MiB 0.16 11904 -1 -1 1 0.27 -1 -1 37360 -1 -1 143 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75200 22 19 2275 1648 1 1331 191 18 18 324 mult_36 auto 36.1 MiB 2.25 8212 29837 6030 19775 4032 73.4 MiB 0.58 0.01 9.02558 -646.811 -9.02558 9.02558 0.75 0.00428548 0.00390516 0.253584 0.230771 46 15122 38 7.79418e+06 4.58495e+06 895831. 2764.91 8.59 1.9133 1.68997 29024 211752 -1 11958 22 7098 8090 861622 220837 8.17599 8.17599 -727.5 -8.17599 0 0 1.09776e+06 3388.15 0.29 0.38 0.19 -1 -1 0.29 0.193184 0.173255 1078 605 475 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 17.03 vpr 74.23 MiB 0.11 12160 -1 -1 1 0.30 -1 -1 36788 -1 -1 151 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76008 22 19 2385 1724 1 1408 200 18 18 324 mult_36 auto 36.7 MiB 2.60 8727 36992 8286 24092 4614 74.2 MiB 0.76 0.01 8.93461 -662.978 -8.93461 8.93461 0.76 0.00472339 0.00425073 0.301533 0.274021 48 15283 36 7.79418e+06 5.08238e+06 935225. 2886.50 8.89 2.08068 1.8344 29348 218440 -1 12726 23 9179 10508 1335353 324369 8.28419 8.28419 -946.068 -8.28419 0 0 1.13028e+06 3488.51 0.30 0.49 0.19 -1 -1 0.30 0.205865 0.184459 1134 642 494 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 16.72 vpr 74.45 MiB 0.17 12356 -1 -1 1 0.31 -1 -1 36712 -1 -1 156 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76232 22 19 2459 1781 1 1444 205 18 18 324 mult_36 auto 37.1 MiB 2.68 8451 39465 8337 25107 6021 74.4 MiB 0.76 0.01 9.16641 -691.339 -9.16641 9.16641 0.74 0.00462481 0.00422355 0.316536 0.287465 48 14904 25 7.79418e+06 5.14577e+06 935225. 2886.50 8.55 2.04169 1.80553 29348 218440 -1 12614 21 8926 10211 1159620 293360 8.50739 8.50739 -823.07 -8.50739 0 0 1.13028e+06 3488.51 0.30 0.45 0.19 -1 -1 0.30 0.203297 0.181535 1172 661 513 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 47.46 vpr 75.10 MiB 0.11 12536 -1 -1 1 0.33 -1 -1 37136 -1 -1 163 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76900 22 19 2565 1853 1 1517 213 22 22 484 mult_36 auto 37.8 MiB 2.97 9736 37678 8527 25986 3165 75.1 MiB 0.75 0.01 8.92046 -697.22 -8.92046 8.92046 1.15 0.00455768 0.00415114 0.297373 0.26977 44 19381 44 1.26954e+07 5.63051e+06 1.30964e+06 2705.88 37.68 2.69823 2.37585 43422 318546 -1 14570 23 9535 10931 1293369 324951 8.36113 8.36113 -893.601 -8.36113 0 0 1.65337e+06 3416.05 0.47 0.54 0.29 -1 -1 0.47 0.243977 0.218617 1224 694 532 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 21.61 vpr 75.55 MiB 0.15 12620 -1 -1 1 0.35 -1 -1 37288 -1 -1 168 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77368 22 19 2639 1910 1 1554 218 22 22 484 mult_36 auto 38.7 MiB 2.93 9704 46068 10050 31278 4740 75.6 MiB 0.90 0.01 9.05578 -707.338 -9.05578 9.05578 1.22 0.00505393 0.00458653 0.362219 0.32803 46 18565 36 1.26954e+07 5.6939e+06 1.37878e+06 2848.72 11.65 2.2504 1.98663 43906 328446 -1 14231 21 9207 10549 1182524 287358 8.44828 8.44828 -1021.22 -8.44828 0 0 1.69059e+06 3492.95 0.48 0.49 0.29 -1 -1 0.48 0.22278 0.199444 1262 713 551 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 18.40 vpr 76.16 MiB 0.19 12948 -1 -1 1 0.36 -1 -1 37572 -1 -1 175 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77984 22 19 2744 1981 1 1626 225 22 22 484 mult_36 auto 39.1 MiB 3.06 10429 54261 13323 35940 4998 76.2 MiB 1.06 0.01 9.21706 -731.706 -9.21706 9.21706 1.19 0.00506592 0.00460699 0.417543 0.377769 46 19383 40 1.26954e+07 5.78265e+06 1.37878e+06 2848.72 7.99 1.79479 1.59544 43906 328446 -1 15283 22 9077 10419 1338103 316338 8.27705 8.27705 -922.434 -8.27705 0 0 1.69059e+06 3492.95 0.47 0.57 0.28 -1 -1 0.47 0.263815 0.237002 1313 745 570 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 22.02 vpr 76.43 MiB 0.11 13016 -1 -1 1 0.39 -1 -1 36920 -1 -1 179 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78268 22 19 2818 2038 1 1662 229 22 22 484 mult_36 auto 39.4 MiB 3.20 10391 57629 14299 38067 5263 76.4 MiB 1.16 0.01 8.90432 -796.741 -8.90432 8.90432 1.23 0.00509439 0.00460665 0.45302 0.409964 50 17124 25 1.26954e+07 5.83336e+06 1.50222e+06 3103.76 11.39 2.40958 2.13136 44874 350400 -1 15076 25 10335 11812 1322909 330631 8.19693 8.19693 -1070.7 -8.19693 0 0 1.79645e+06 3711.66 0.51 0.57 0.25 -1 -1 0.51 0.26958 0.240498 1351 764 589 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 16.88 vpr 77.11 MiB 0.21 13780 -1 -1 1 0.39 -1 -1 37408 -1 -1 187 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78956 22 19 2923 2109 1 1730 238 22 22 484 mult_36 auto 40.1 MiB 3.20 10842 55513 13255 35231 7027 77.1 MiB 1.05 0.01 9.95249 -834.822 -9.95249 9.95249 1.18 0.00253764 0.00230185 0.418184 0.377872 46 19712 40 1.26954e+07 6.33079e+06 1.37878e+06 2848.72 6.36 1.65683 1.4737 43906 328446 -1 15703 22 9397 10976 1237626 310640 9.04671 9.04671 -1200.39 -9.04671 0 0 1.69059e+06 3492.95 0.48 0.56 0.28 -1 -1 0.48 0.263107 0.234827 1402 796 608 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 18.96 vpr 77.73 MiB 0.20 13840 -1 -1 1 0.39 -1 -1 37884 -1 -1 193 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79600 22 19 2997 2166 1 1769 244 22 22 484 mult_36 auto 40.5 MiB 3.32 11512 55870 12803 38332 4735 77.7 MiB 1.10 0.01 9.71104 -846.569 -9.71104 9.71104 1.18 0.00548715 0.00499123 0.421909 0.382237 44 24353 49 1.26954e+07 6.40685e+06 1.30964e+06 2705.88 8.01 1.83971 1.62943 43422 318546 -1 17171 26 12960 14652 1853547 452272 9.15799 9.15799 -1105.75 -9.15799 0 0 1.65337e+06 3416.05 0.48 0.73 0.27 -1 -1 0.48 0.310143 0.276139 1441 815 627 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 23.39 vpr 78.45 MiB 0.21 14108 -1 -1 1 0.41 -1 -1 37808 -1 -1 199 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80332 22 19 3101 2236 1 1838 250 22 22 484 mult_36 auto 41.3 MiB 3.53 11883 59275 13898 40462 4915 78.4 MiB 1.24 0.02 10.0716 -839.08 -10.0716 10.0716 1.19 0.00572678 0.00520149 0.474643 0.430492 46 21331 31 1.26954e+07 6.48292e+06 1.37878e+06 2848.72 12.12 2.66162 2.35294 43906 328446 -1 17287 21 10101 11468 1346054 329306 9.20985 9.20985 -1049.74 -9.20985 0 0 1.69059e+06 3492.95 0.47 0.54 0.27 -1 -1 0.47 0.254172 0.227458 1491 846 646 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 25.66 vpr 78.64 MiB 0.13 14164 -1 -1 1 0.42 -1 -1 38088 -1 -1 203 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80532 22 19 3175 2293 1 1872 254 22 22 484 mult_36 auto 41.7 MiB 3.56 11856 67790 16050 43614 8126 78.6 MiB 1.29 0.02 9.90636 -831.865 -9.90636 9.90636 1.19 0.00662127 0.00604468 0.524372 0.473455 54 21529 32 1.26954e+07 6.53363e+06 1.58090e+06 3266.32 14.12 2.96853 2.62142 46322 380746 -1 17295 23 11004 12534 1557630 362961 9.12974 9.12974 -1084.55 -9.12974 0 0 1.94386e+06 4016.24 0.53 0.63 0.32 -1 -1 0.53 0.290461 0.259255 1529 865 665 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 19.81 vpr 79.66 MiB 0.23 14416 -1 -1 1 0.46 -1 -1 37332 -1 -1 210 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81568 22 19 3280 2364 1 1945 262 24 24 576 mult_36 auto 42.6 MiB 3.74 12905 66464 15575 45332 5557 79.7 MiB 1.27 0.02 9.83124 -880.704 -9.83124 9.83124 1.40 0.00603509 0.00549171 0.504005 0.455538 48 21363 28 1.53347e+07 7.01838e+06 1.71014e+06 2969.00 7.28 1.93213 1.71412 52498 402441 -1 18615 23 12028 13808 1684960 424814 9.19385 9.19385 -1337.54 -9.19385 0 0 2.06880e+06 3591.66 0.58 0.78 0.34 -1 -1 0.58 0.328649 0.295426 1580 897 684 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 69.36 vpr 80.14 MiB 0.23 14656 -1 -1 1 0.41 -1 -1 37968 -1 -1 215 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82060 22 19 3354 2421 1 1981 267 24 24 576 mult_36 auto 43.1 MiB 3.86 12584 74141 17788 50501 5852 80.1 MiB 1.41 0.02 9.72821 -969.824 -9.72821 9.72821 1.39 0.00594382 0.00529495 0.540475 0.488201 44 25091 38 1.53347e+07 7.08177e+06 1.55518e+06 2699.97 57.15 3.62897 3.19515 51346 378163 -1 18503 24 11604 13453 1544750 383740 8.89139 8.89139 -1322.03 -8.89139 0 0 1.96475e+06 3411.02 0.56 0.65 0.23 -1 -1 0.56 0.305679 0.272189 1618 916 703 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 22.83 vpr 80.43 MiB 0.12 14768 -1 -1 1 0.50 -1 -1 38276 -1 -1 222 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82360 22 19 3457 2490 1 2052 274 24 24 576 mult_36 auto 43.5 MiB 4.09 13365 71394 16730 45953 8711 80.4 MiB 1.43 0.02 9.83229 -957.063 -9.83229 9.83229 1.39 0.006343 0.00576384 0.530651 0.478897 48 23590 43 1.53347e+07 7.17052e+06 1.71014e+06 2969.00 9.92 1.97074 1.74118 52498 402441 -1 19554 23 13372 15109 1988690 466121 9.34814 9.34814 -1275.09 -9.34814 0 0 2.06880e+06 3591.66 0.59 0.74 0.33 -1 -1 0.59 0.310627 0.277318 1667 946 722 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 23.40 vpr 80.74 MiB 0.24 14872 -1 -1 1 0.38 -1 -1 38804 -1 -1 227 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82676 22 19 3531 2547 1 2089 279 24 24 576 mult_36 auto 43.9 MiB 4.04 13649 81358 20240 53084 8034 80.7 MiB 1.55 0.02 9.76447 -1012.02 -9.76447 9.76447 1.44 0.00627344 0.00568308 0.596184 0.538567 46 24498 47 1.53347e+07 7.23391e+06 1.63708e+06 2842.15 10.31 2.32309 2.0508 51922 389946 -1 19547 23 11831 13375 1622364 412860 8.89731 8.89731 -1325.41 -8.89731 0 0 2.00908e+06 3487.99 0.56 0.69 0.34 -1 -1 0.56 0.32088 0.286395 1705 965 741 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 23.80 vpr 81.44 MiB 0.24 15120 -1 -1 1 0.63 -1 -1 38080 -1 -1 233 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83396 22 19 3634 2616 1 2155 286 24 24 576 mult_36 auto 44.5 MiB 5.19 13461 71802 17518 48500 5784 81.4 MiB 1.44 0.02 9.84473 -990.415 -9.84473 9.84473 1.49 0.00682155 0.00620547 0.551807 0.496406 46 24068 31 1.53347e+07 7.70597e+06 1.63708e+06 2842.15 9.20 2.20878 1.9572 51922 389946 -1 19383 21 10783 12491 1296656 334801 9.01371 9.01371 -1397.76 -9.01371 0 0 2.00908e+06 3487.99 0.56 0.58 0.31 -1 -1 0.56 0.291691 0.25952 1754 995 760 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 26.35 vpr 81.95 MiB 0.23 15460 -1 -1 1 0.54 -1 -1 38248 -1 -1 238 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83920 22 19 3708 2673 1 2193 291 24 24 576 mult_36 auto 45.0 MiB 4.33 13774 73555 16192 46647 10716 82.0 MiB 1.46 0.02 9.6448 -1052.98 -9.6448 9.6448 1.52 0.00687889 0.00625267 0.576273 0.519917 46 26820 34 1.53347e+07 7.76936e+06 1.63708e+06 2842.15 12.57 2.22723 1.97058 51922 389946 -1 19910 22 11722 13342 1538729 394957 8.92065 8.92065 -1217.74 -8.92065 0 0 2.00908e+06 3487.99 0.58 0.68 0.34 -1 -1 0.58 0.322809 0.287497 1792 1014 779 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 75.37 vpr 82.31 MiB 0.25 15500 -1 -1 1 0.55 -1 -1 39040 -1 -1 244 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84284 22 19 3810 2741 1 2260 297 24 24 576 mult_36 auto 45.3 MiB 4.36 15294 72567 16999 48927 6641 82.3 MiB 1.48 0.02 9.95249 -1072.69 -9.95249 9.95249 1.35 0.00618323 0.00557959 0.504221 0.454675 50 27136 38 1.53347e+07 7.84543e+06 1.78400e+06 3097.22 61.55 4.21398 3.72757 53074 415989 -1 21583 25 13148 15539 1852620 442221 9.20791 9.20791 -1298.24 -9.20791 0 0 2.13454e+06 3705.80 0.59 0.79 0.35 -1 -1 0.59 0.361183 0.320661 1840 1043 798 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 79.78 vpr 82.90 MiB 0.25 15664 -1 -1 1 0.57 -1 -1 38352 -1 -1 249 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84892 22 19 3884 2798 1 2296 302 24 24 576 mult_36 auto 45.8 MiB 4.45 15221 82274 19194 54089 8991 82.9 MiB 1.67 0.03 9.8158 -1110.51 -9.8158 9.8158 1.51 0.0104062 0.00925367 0.634658 0.572543 50 26086 35 1.53347e+07 7.90882e+06 1.78400e+06 3097.22 65.58 4.08599 3.60983 53074 415989 -1 21306 22 12457 14331 1700869 411393 9.06854 9.06854 -1533.06 -9.06854 0 0 2.13454e+06 3705.80 0.59 0.68 0.35 -1 -1 0.59 0.315896 0.281763 1878 1062 817 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 22.00 vpr 83.36 MiB 0.27 16076 -1 -1 1 0.66 -1 -1 40428 -1 -1 256 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85360 22 19 3989 2869 1 2368 310 24 24 576 mult_36 auto 46.3 MiB 4.47 16170 76814 16744 54012 6058 83.4 MiB 1.63 0.02 9.69686 -1053.48 -9.69686 9.69686 1.51 0.00733892 0.00667215 0.584672 0.525516 48 27771 33 1.53347e+07 8.39357e+06 1.71014e+06 2969.00 7.65 2.13518 1.89576 52498 402441 -1 23267 23 14444 16589 2052278 495094 9.46445 9.46445 -1673.39 -9.46445 0 0 2.06880e+06 3591.66 0.60 0.85 0.29 -1 -1 0.60 0.365172 0.325707 1929 1094 836 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 23.54 vpr 84.10 MiB 0.26 16096 -1 -1 1 0.61 -1 -1 40696 -1 -1 260 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86116 22 19 4063 2926 1 2404 314 24 24 576 mult_36 auto 47.2 MiB 4.78 15339 80264 18599 54196 7469 84.1 MiB 1.70 0.02 10.1503 -1097.92 -10.1503 10.1503 1.37 0.0080052 0.0071957 0.606251 0.544168 48 26539 34 1.53347e+07 8.44428e+06 1.71014e+06 2969.00 8.51 2.26702 2.00623 52498 402441 -1 22415 22 12869 14913 1883761 456417 9.18285 9.18285 -1669.24 -9.18285 0 0 2.06880e+06 3591.66 0.59 0.79 0.34 -1 -1 0.59 0.345793 0.309364 1967 1113 855 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 26.53 vpr 84.31 MiB 0.29 16492 -1 -1 1 0.68 -1 -1 40776 -1 -1 267 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86336 22 19 4167 2996 1 2473 321 24 24 576 mult_36 auto 47.5 MiB 5.05 15911 94749 24093 55772 14884 84.3 MiB 1.98 0.02 9.84328 -1100.98 -9.84328 9.84328 1.68 0.00765987 0.00694488 0.760369 0.680609 52 27975 40 1.53347e+07 8.53303e+06 1.82869e+06 3174.81 10.22 2.77005 2.44505 54222 439550 -1 21924 24 13845 15738 1880408 458130 8.78434 8.78434 -1662.3 -8.78434 0 0 2.25030e+06 3906.77 0.65 0.81 0.38 -1 -1 0.65 0.378633 0.337232 2017 1144 874 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 25.99 vpr 84.62 MiB 0.29 16564 -1 -1 1 0.63 -1 -1 40944 -1 -1 272 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86648 22 19 4241 3053 1 2509 326 24 24 576 mult_36 auto 47.7 MiB 6.23 15944 93369 22969 60571 9829 84.6 MiB 1.86 0.02 9.94149 -1112.36 -9.94149 9.94149 1.50 0.00790326 0.00716165 0.704684 0.633056 50 26180 41 1.53347e+07 8.59642e+06 1.78400e+06 3097.22 9.35 2.73074 2.41335 53074 415989 -1 22294 22 12263 14109 1550803 400013 9.21811 9.21811 -1447.05 -9.21811 0 0 2.13454e+06 3705.80 0.63 0.76 0.34 -1 -1 0.63 0.376921 0.336261 2055 1163 893 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 92.37 vpr 85.45 MiB 0.30 17076 -1 -1 1 0.68 -1 -1 41244 -1 -1 278 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87500 22 19 4346 3124 1 2580 333 24 24 576 mult_36 auto 48.5 MiB 5.26 18639 82196 17887 55028 9281 85.4 MiB 1.80 0.03 10.1199 -1094.39 -10.1199 10.1199 1.48 0.00810252 0.00735418 0.615338 0.551741 54 32315 41 1.53347e+07 9.06848e+06 1.87785e+06 3260.16 76.74 4.47045 3.92869 54798 452027 -1 25408 23 16681 18924 2499757 584710 9.44433 9.44433 -1646.09 -9.44433 0 0 2.31032e+06 4010.97 0.64 0.81 0.37 -1 -1 0.64 0.310612 0.278159 2106 1195 912 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 44.38 vpr 85.66 MiB 0.28 16984 -1 -1 1 0.69 -1 -1 41024 -1 -1 283 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87716 22 19 4420 3181 1 2615 338 24 24 576 mult_36 auto 48.7 MiB 5.13 16819 90890 20456 61609 8825 85.7 MiB 1.91 0.02 9.83124 -1136.37 -9.83124 9.83124 1.48 0.00820024 0.00746465 0.69337 0.62291 50 29302 34 1.53347e+07 9.13187e+06 1.78400e+06 3097.22 28.50 3.77803 3.32315 53074 415989 -1 24032 23 14858 17059 1869577 469952 9.23208 9.23208 -1987.04 -9.23208 0 0 2.13454e+06 3705.80 0.60 0.84 0.33 -1 -1 0.60 0.39261 0.347239 2144 1214 931 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 28.49 vpr 86.68 MiB 0.31 17460 -1 -1 1 0.66 -1 -1 41080 -1 -1 291 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88764 22 19 4524 3251 1 2687 346 24 24 576 mult_36 auto 49.9 MiB 5.31 17860 96252 23037 63427 9788 86.7 MiB 2.08 0.04 9.89212 -1219.82 -9.89212 9.89212 1.49 0.0112647 0.010345 0.704374 0.633733 50 30437 43 1.53347e+07 9.2333e+06 1.78400e+06 3097.22 12.36 2.86336 2.52904 53074 415989 -1 24870 23 13651 16114 1898625 469043 8.91645 8.91645 -1976.59 -8.91645 0 0 2.13454e+06 3705.80 0.60 0.68 0.36 -1 -1 0.60 0.341573 0.304629 2194 1245 950 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 51.59 vpr 86.66 MiB 0.31 17436 -1 -1 1 0.76 -1 -1 39432 -1 -1 295 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88740 22 19 4598 3308 1 2721 350 24 24 576 mult_36 auto 49.9 MiB 5.50 17189 98990 22861 62622 13507 86.7 MiB 1.92 0.02 9.76536 -1203.1 -9.76536 9.76536 1.43 0.00744143 0.00671723 0.647346 0.580014 50 31153 48 1.53347e+07 9.28401e+06 1.78400e+06 3097.22 34.97 4.03022 3.53737 53074 415989 -1 24769 26 16106 18580 2257536 556719 9.168 9.168 -1995.91 -9.168 0 0 2.13454e+06 3705.80 0.58 0.93 0.34 -1 -1 0.58 0.431785 0.383795 2232 1264 969 19 0 0 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 26941add41a..3b5b7fa0f97 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 @@ -1,391 +1,391 @@ 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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -k6_frac_2ripple_N8_22nm.xml fir_pipe_14.v common 9.62 vpr 71.48 MiB 0.09 10584 -1 -1 1 0.22 -1 -1 35488 -1 -1 65 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73196 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 33.8 MiB 0.68 5272 15101 3393 9968 1740 71.5 MiB 0.56 0.01 4.0831 -1115.98 -4.0831 4.0831 0.71 0.00367671 0.00328075 0.228291 0.20457 64 9828 23 6.59459e+06 2.52492e+06 943753. 3686.54 4.32 1.12173 0.990389 27892 240595 -1 8477 16 3926 4549 486168 112677 4.27196 4.27196 -1212.54 -4.27196 0 0 1.19033e+06 4649.74 0.36 0.25 0.24 -1 -1 0.36 0.144501 0.132256 481 649 247 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_15.v common 14.66 vpr 72.48 MiB 0.11 10808 -1 -1 1 0.25 -1 -1 36920 -1 -1 72 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74216 22 19 2144 1789 1 1110 118 16 16 256 mult_36 auto 34.8 MiB 0.96 6136 19192 4400 11965 2827 72.5 MiB 0.71 0.01 4.07762 -1246.61 -4.07762 4.07762 0.72 0.00398223 0.00355085 0.288623 0.258218 68 11309 29 6.59459e+06 3.02225e+06 1.00038e+06 3907.74 8.71 1.81488 1.60176 28404 252462 -1 9516 17 4344 4959 564949 131023 4.27196 4.27196 -1329.64 -4.27196 0 0 1.24648e+06 4869.04 0.36 0.30 0.25 -1 -1 0.36 0.174617 0.158265 521 704 266 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_16.v common 11.88 vpr 72.92 MiB 0.11 10964 -1 -1 1 0.25 -1 -1 36948 -1 -1 74 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74668 22 19 2218 1846 1 1154 120 16 16 256 mult_36 auto 35.3 MiB 0.86 6159 16935 3952 11063 1920 72.9 MiB 0.68 0.01 4.14666 -1298.68 -4.14666 4.14666 0.71 0.00422731 0.00378432 0.268154 0.240667 64 13073 22 6.59459e+06 3.0512e+06 943753. 3686.54 5.96 1.25543 1.11023 27892 240595 -1 10191 20 4784 5574 648344 144961 4.39726 4.39726 -1411.91 -4.39726 0 0 1.19033e+06 4649.74 0.36 0.37 0.26 -1 -1 0.36 0.208838 0.188178 540 723 285 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_17.v common 14.96 vpr 74.27 MiB 0.13 11780 -1 -1 1 0.28 -1 -1 36604 -1 -1 83 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76056 22 19 2536 2130 1 1256 129 16 16 256 mult_36 auto 36.9 MiB 1.08 6865 15729 3064 11003 1662 74.3 MiB 0.67 0.01 4.27196 -1448.46 -4.27196 4.27196 0.68 0.00457632 0.00407959 0.264176 0.237013 68 12800 19 6.59459e+06 3.18149e+06 1.00038e+06 3907.74 8.43 2.02598 1.78349 28404 252462 -1 10503 19 4671 5430 563206 129904 4.27196 4.27196 -1537.77 -4.27196 0 0 1.24648e+06 4869.04 0.44 0.39 0.27 -1 -1 0.44 0.234765 0.212242 617 851 304 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_18.v common 16.11 vpr 74.91 MiB 0.12 11796 -1 -1 1 0.29 -1 -1 37120 -1 -1 86 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76708 22 19 2610 2187 1 1305 132 16 16 256 mult_36 auto 37.6 MiB 1.11 6869 16212 3205 10695 2312 74.9 MiB 0.65 0.01 4.03926 -1468.2 -4.03926 4.03926 0.69 0.004926 0.00440501 0.258598 0.231473 70 12353 27 6.59459e+06 3.22491e+06 1.02522e+06 4004.78 9.33 2.07207 1.82471 28912 262511 -1 10716 20 5011 5723 704649 159235 4.27196 4.27196 -1543.19 -4.27196 0 0 1.29210e+06 5047.26 0.49 0.40 0.27 -1 -1 0.49 0.234524 0.211076 636 870 323 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_19.v common 16.60 vpr 75.56 MiB 0.11 12256 -1 -1 1 0.27 -1 -1 36900 -1 -1 91 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77376 22 19 2778 2321 1 1401 138 16 16 256 mult_36 auto 38.1 MiB 0.98 7751 20074 4172 13462 2440 75.6 MiB 0.81 0.01 4.20832 -1614.09 -4.20832 4.20832 0.70 0.00511316 0.0045461 0.319026 0.285017 70 14091 32 6.59459e+06 3.69329e+06 1.02522e+06 4004.78 9.94 2.45739 2.16583 28912 262511 -1 11597 19 5221 6080 670296 155538 4.27196 4.27196 -1747.26 -4.27196 0 0 1.29210e+06 5047.26 0.39 0.41 0.29 -1 -1 0.39 0.244725 0.221408 676 925 342 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_20.v common 29.98 vpr 76.14 MiB 0.15 12496 -1 -1 1 0.34 -1 -1 37092 -1 -1 93 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77968 22 19 2852 2378 1 1441 140 16 16 256 mult_36 auto 38.9 MiB 1.14 7701 24098 5487 15382 3229 76.1 MiB 0.97 0.01 4.14666 -1615.69 -4.14666 4.14666 0.75 0.00532442 0.00473561 0.381949 0.340888 68 15216 40 6.59459e+06 3.72224e+06 1.00038e+06 3907.74 22.96 3.14997 2.75883 28404 252462 -1 12039 17 5419 6476 661435 153008 4.27196 4.27196 -1732.55 -4.27196 0 0 1.24648e+06 4869.04 0.38 0.36 0.24 -1 -1 0.38 0.214779 0.19311 695 944 361 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_21.v common 17.72 vpr 77.16 MiB 0.16 12832 -1 -1 1 0.34 -1 -1 37864 -1 -1 97 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79008 22 19 3057 2549 1 1544 144 16 16 256 mult_36 auto 40.0 MiB 1.29 9367 24272 5008 16124 3140 77.2 MiB 1.04 0.02 4.39726 -1835.45 -4.39726 4.39726 0.69 0.00564672 0.00501964 0.393635 0.351028 78 15648 32 6.59459e+06 3.78015e+06 1.11577e+06 4358.47 10.28 2.62793 2.31367 30188 289496 -1 13380 17 5537 6378 789386 168362 4.39726 4.39726 -1915.7 -4.39726 0 0 1.40012e+06 5469.22 0.42 0.43 0.29 -1 -1 0.42 0.252449 0.22663 742 1017 380 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_22.v common 18.22 vpr 77.21 MiB 0.21 12976 -1 -1 1 0.36 -1 -1 37932 -1 -1 100 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79064 22 19 3131 2606 1 1587 147 16 16 256 mult_36 auto 40.2 MiB 1.13 8900 25689 5397 16690 3602 77.2 MiB 1.07 0.02 4.27196 -1832.45 -4.27196 4.27196 0.69 0.00589896 0.00525559 0.420518 0.375668 74 16546 36 6.59459e+06 3.82357e+06 1.07073e+06 4182.55 10.87 2.67856 2.36428 29424 273870 -1 13593 21 6218 7124 883830 200504 4.27196 4.27196 -1953.42 -4.27196 0 0 1.33358e+06 5209.30 0.41 0.50 0.29 -1 -1 0.41 0.288344 0.260546 762 1036 399 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_23.v common 21.48 vpr 78.19 MiB 0.16 13284 -1 -1 1 0.41 -1 -1 37880 -1 -1 107 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80064 22 19 3301 2742 1 1685 155 18 18 324 mult_36 auto 41.0 MiB 1.05 9550 28859 6368 19463 3028 78.2 MiB 1.22 0.02 4.27196 -1973.15 -4.27196 4.27196 0.92 0.00622034 0.00552944 0.468708 0.418993 68 18693 46 8.13932e+06 4.3209e+06 1.31159e+06 4048.11 13.18 3.03449 2.67889 36620 334356 -1 14822 18 6572 7617 914655 195234 4.39726 4.39726 -2060.9 -4.39726 0 0 1.63345e+06 5041.52 0.55 0.48 0.32 -1 -1 0.55 0.277403 0.250261 802 1091 418 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_24.v common 15.80 vpr 78.57 MiB 0.16 13476 -1 -1 1 0.39 -1 -1 38184 -1 -1 109 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80460 22 19 3375 2799 1 1732 157 18 18 324 mult_36 auto 41.5 MiB 0.89 10056 25960 5726 17532 2702 78.6 MiB 1.11 0.02 4.27196 -2004.23 -4.27196 4.27196 0.91 0.00644854 0.00576784 0.41873 0.374342 76 17719 30 8.13932e+06 4.34985e+06 1.43297e+06 4422.75 7.76 2.29838 2.02776 38232 369828 -1 14833 17 6600 7437 899992 195667 4.39726 4.39726 -2169.68 -4.39726 0 0 1.77541e+06 5479.65 0.55 0.47 0.35 -1 -1 0.55 0.266696 0.240784 821 1110 437 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_25.v common 22.45 vpr 79.93 MiB 0.12 13876 -1 -1 1 0.42 -1 -1 38112 -1 -1 116 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81848 22 19 3615 3005 1 1836 164 18 18 324 mult_36 auto 42.9 MiB 1.04 10729 33764 7877 22457 3430 79.9 MiB 1.43 0.02 4.39726 -2180.78 -4.39726 4.39726 0.99 0.0071867 0.00645814 0.561676 0.501753 76 19342 24 8.13932e+06 4.45118e+06 1.43297e+06 4422.75 13.52 3.2092 2.82983 38232 369828 -1 16315 17 6932 7862 1003575 222232 4.39726 4.39726 -2258.25 -4.39726 0 0 1.77541e+06 5479.65 0.57 0.51 0.35 -1 -1 0.57 0.289479 0.261721 877 1201 456 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_26.v common 23.77 vpr 80.55 MiB 0.19 14104 -1 -1 1 0.43 -1 -1 38436 -1 -1 118 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82484 22 19 3689 3062 1 1874 166 18 18 324 mult_36 auto 43.4 MiB 1.17 10442 30262 6705 20097 3460 80.6 MiB 1.37 0.02 4.27196 -2184.83 -4.27196 4.27196 0.93 0.00703116 0.00637461 0.51184 0.458429 72 20476 50 8.13932e+06 4.48013e+06 1.37338e+06 4238.83 14.98 3.81344 3.36587 37588 355536 -1 16153 20 7464 8416 998033 217072 4.14666 4.14666 -2311.78 -4.14666 0 0 1.72054e+06 5310.31 0.59 0.57 0.34 -1 -1 0.59 0.337364 0.305471 896 1220 475 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_27.v common 41.26 vpr 81.77 MiB 0.17 14444 -1 -1 1 0.46 -1 -1 38408 -1 -1 126 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83732 22 19 3871 3210 1 1982 175 18 18 324 mult_36 auto 44.7 MiB 1.39 11174 29515 6552 19982 2981 81.8 MiB 1.27 0.02 4.27196 -2274.04 -4.27196 4.27196 0.97 0.00715393 0.00639726 0.481405 0.429638 68 21260 31 8.13932e+06 4.99193e+06 1.31159e+06 4048.11 32.28 4.73501 4.15419 36620 334356 -1 17367 17 7795 9201 990857 222794 4.39726 4.39726 -2515.29 -4.39726 0 0 1.63345e+06 5041.52 0.53 0.57 0.31 -1 -1 0.53 0.326031 0.29563 944 1275 494 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_28.v common 16.61 vpr 81.71 MiB 0.14 14556 -1 -1 1 0.50 -1 -1 38488 -1 -1 128 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83668 22 19 3945 3267 1 2025 177 18 18 324 mult_36 auto 44.8 MiB 1.16 11734 34897 7640 23359 3898 81.7 MiB 1.52 0.02 4.27196 -2285.03 -4.27196 4.27196 0.94 0.00752032 0.00671136 0.566186 0.505839 72 22190 34 8.13932e+06 5.02088e+06 1.37338e+06 4238.83 7.46 2.48846 2.20141 37588 355536 -1 17870 17 7943 9223 1126928 247605 4.39726 4.39726 -2508.33 -4.39726 0 0 1.72054e+06 5310.31 0.56 0.59 0.34 -1 -1 0.56 0.326073 0.295641 962 1294 513 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_29.v common 21.33 vpr 82.97 MiB 0.18 14932 -1 -1 1 0.52 -1 -1 39664 -1 -1 135 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84960 22 19 4159 3447 1 2141 185 22 22 484 mult_36 auto 46.0 MiB 1.55 13174 35953 8427 24187 3339 83.0 MiB 1.61 0.02 4.22237 -2488.49 -4.22237 4.22237 1.48 0.00787947 0.00702852 0.572824 0.509806 72 25377 43 1.32347e+07 5.5182e+06 2.11301e+06 4365.72 9.71 2.74748 2.43321 56918 551676 -1 20346 15 8444 9848 1257155 262005 4.39726 4.39726 -2750.66 -4.39726 0 0 2.64603e+06 5467.00 0.94 0.59 0.54 -1 -1 0.94 0.306769 0.277592 1015 1367 532 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_30.v common 81.48 vpr 82.83 MiB 0.19 15068 -1 -1 1 0.60 -1 -1 40908 -1 -1 137 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84816 22 19 4233 3504 1 2181 187 22 22 484 mult_36 auto 46.0 MiB 1.46 13110 38635 8392 26373 3870 82.8 MiB 1.70 0.02 4.08302 -2563.57 -4.08302 4.08302 1.60 0.0079044 0.00704707 0.6191 0.551599 68 25874 37 1.32347e+07 5.54715e+06 2.01763e+06 4168.66 69.73 5.20592 4.5528 55470 518816 -1 20145 22 8858 10316 1212837 260181 4.14666 4.14666 -2787.95 -4.14666 0 0 2.51205e+06 5190.18 0.82 0.63 0.53 -1 -1 0.82 0.374354 0.334319 1034 1386 551 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_31.v common 33.95 vpr 92.03 MiB 0.21 15536 -1 -1 1 0.54 -1 -1 40968 -1 -1 143 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94240 22 19 4410 3647 1 2284 193 22 22 484 mult_36 auto 47.3 MiB 1.64 14030 46981 10944 31495 4542 85.1 MiB 2.05 0.02 4.39726 -2691.53 -4.39726 4.39726 1.69 0.00826396 0.00735181 0.750864 0.669867 76 25587 29 1.32347e+07 5.63401e+06 2.20457e+06 4554.90 21.39 4.37181 3.86185 57882 574062 -1 21637 17 8701 9904 1360390 269571 4.64786 4.64786 -2958.16 -4.64786 0 0 2.73077e+06 5642.09 0.95 0.66 0.53 -1 -1 0.95 0.359117 0.325289 1077 1441 570 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_32.v common 34.65 vpr 91.80 MiB 0.21 15584 -1 -1 1 0.56 -1 -1 40596 -1 -1 145 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94008 22 19 4484 3704 1 2331 195 22 22 484 mult_36 auto 47.7 MiB 1.41 14336 39180 9212 26344 3624 84.7 MiB 1.77 0.03 4.27196 -2750.64 -4.27196 4.27196 1.62 0.00858636 0.00767632 0.634309 0.56725 74 27846 43 1.32347e+07 5.66296e+06 2.15943e+06 4461.62 22.41 4.32683 3.82383 57402 562966 -1 21950 17 9362 10872 1422997 286951 4.52256 4.52256 -3005.56 -4.52256 0 0 2.68771e+06 5553.12 0.94 0.68 0.52 -1 -1 0.94 0.362014 0.327545 1096 1460 589 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_33.v common 33.46 vpr 95.49 MiB 0.23 16652 -1 -1 1 0.60 -1 -1 41676 -1 -1 157 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97780 22 19 4843 4029 1 2441 208 22 22 484 mult_36 auto 49.4 MiB 1.72 14676 47024 10400 32136 4488 86.0 MiB 2.05 0.03 4.39726 -2845.68 -4.39726 4.39726 1.55 0.00893022 0.00792876 0.739729 0.658447 78 24684 29 1.32347e+07 6.23266e+06 2.25108e+06 4650.99 20.38 4.30357 3.80095 58850 595650 -1 21723 14 8860 10340 1224784 254736 4.39726 4.39726 -3004.01 -4.39726 0 0 2.82299e+06 5832.63 1.10 0.62 0.56 -1 -1 1.10 0.350478 0.318813 1185 1606 608 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_34.v common 35.27 vpr 92.53 MiB 0.24 16792 -1 -1 1 0.64 -1 -1 41540 -1 -1 160 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94748 22 19 4917 4086 1 2486 211 22 22 484 mult_36 auto 50.2 MiB 1.74 14916 46609 10188 31704 4717 86.8 MiB 2.06 0.03 4.27196 -2997.24 -4.27196 4.27196 1.65 0.00935006 0.00833923 0.745256 0.663758 80 25429 32 1.32347e+07 6.27609e+06 2.29262e+06 4736.82 22.13 4.82122 4.25478 59334 607116 -1 22295 17 9208 10622 1372836 273552 4.27196 4.27196 -3123.26 -4.27196 0 0 2.87723e+06 5944.70 1.03 0.70 0.59 -1 -1 1.03 0.39724 0.359123 1205 1625 627 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_35.v common 23.91 vpr 87.37 MiB 0.25 17148 -1 -1 1 0.68 -1 -1 41872 -1 -1 163 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89464 22 19 5093 4228 1 2588 214 22 22 484 mult_36 auto 51.0 MiB 1.72 15536 45583 9917 31556 4110 87.4 MiB 2.02 0.03 4.27196 -3005.45 -4.27196 4.27196 1.52 0.00816537 0.00720526 0.721311 0.642068 76 28352 31 1.32347e+07 6.31951e+06 2.20457e+06 4554.90 10.72 3.1787 2.81406 57882 574062 -1 23607 17 9965 11831 1457758 304984 4.39726 4.39726 -3480.44 -4.39726 0 0 2.73077e+06 5642.09 1.09 0.77 0.58 -1 -1 1.09 0.434285 0.393955 1248 1680 646 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_36.v common 34.24 vpr 97.46 MiB 0.24 17400 -1 -1 1 0.66 -1 -1 41956 -1 -1 165 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99800 22 19 5167 4285 1 2632 216 22 22 484 mult_36 auto 51.2 MiB 1.70 15667 41624 8267 29885 3472 87.8 MiB 1.96 0.03 4.33362 -3152.9 -4.33362 4.33362 1.77 0.00950253 0.00843866 0.677369 0.598666 78 26435 27 1.32347e+07 6.34846e+06 2.25108e+06 4650.99 21.05 4.39077 3.8778 58850 595650 -1 23212 16 9749 11083 1295204 265440 4.39726 4.39726 -3388.18 -4.39726 0 0 2.82299e+06 5832.63 1.05 0.69 0.58 -1 -1 1.05 0.401206 0.363134 1267 1699 665 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_37.v common 27.21 vpr 89.38 MiB 0.20 17716 -1 -1 1 0.72 -1 -1 40804 -1 -1 173 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 91528 22 19 5380 4464 1 2743 225 24 24 576 mult_36 auto 53.0 MiB 1.89 17323 51525 11897 34432 5196 89.4 MiB 2.23 0.03 4.28601 -3284.49 -4.28601 4.28601 1.90 0.00966654 0.00858012 0.810665 0.716744 74 30303 40 1.59675e+07 6.86027e+06 2.56259e+06 4448.94 12.46 3.54689 3.1294 67906 667765 -1 25244 18 10317 12089 1522453 322878 4.39726 4.39726 -3731.23 -4.39726 0 0 3.19068e+06 5539.38 1.23 0.83 0.61 -1 -1 1.23 0.469646 0.425703 1321 1772 684 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_38.v common 28.01 vpr 89.96 MiB 0.26 17920 -1 -1 1 0.72 -1 -1 42312 -1 -1 176 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 92120 22 19 5454 4521 1 2787 228 24 24 576 mult_36 auto 53.0 MiB 2.00 17173 57996 13827 39781 4388 89.4 MiB 2.56 0.03 4.52256 -3242.13 -4.52256 4.52256 1.85 0.0104984 0.00938227 0.915907 0.814242 74 29865 34 1.59675e+07 6.90369e+06 2.56259e+06 4448.94 12.90 3.62968 3.2077 67906 667765 -1 25656 15 10421 12099 1547300 316808 4.64786 4.64786 -3606.77 -4.64786 0 0 3.19068e+06 5539.38 1.17 0.75 0.61 -1 -1 1.17 0.407995 0.370024 1340 1791 703 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_39.v common 31.09 vpr 90.31 MiB 0.20 18316 -1 -1 1 0.75 -1 -1 40148 -1 -1 180 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 92480 22 19 5629 4662 1 2884 232 24 24 576 mult_36 auto 53.5 MiB 2.13 18624 55768 13035 37822 4911 90.0 MiB 2.54 0.03 4.39726 -3391.54 -4.39726 4.39726 1.79 0.010358 0.00921556 0.894479 0.795788 76 33253 33 1.59675e+07 6.9616e+06 2.61600e+06 4541.67 15.82 4.23232 3.73812 68478 680951 -1 27050 17 10922 12570 1623278 339627 4.52256 4.52256 -3618.17 -4.52256 0 0 3.24203e+06 5628.53 1.17 0.85 0.66 -1 -1 1.17 0.466246 0.422387 1381 1846 722 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_40.v common 39.33 vpr 108.11 MiB 0.18 18376 -1 -1 1 0.75 -1 -1 42372 -1 -1 182 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 110700 22 19 5703 4719 1 2932 234 24 24 576 mult_36 auto 54.0 MiB 2.17 17761 53514 12161 36873 4480 90.4 MiB 2.44 0.03 4.3337 -3472.19 -4.3337 4.3337 1.79 0.010727 0.0095841 0.844577 0.750354 78 29081 31 1.59675e+07 6.99055e+06 2.67122e+06 4637.53 23.83 4.74573 4.18894 69630 706637 -1 25751 15 10304 11709 1422578 300730 4.52256 4.52256 -3658.69 -4.52256 0 0 3.35110e+06 5817.88 1.41 0.79 0.73 -1 -1 1.41 0.443078 0.403159 1400 1865 741 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_41.v common 39.74 vpr 108.50 MiB 0.27 18820 -1 -1 1 0.84 -1 -1 41520 -1 -1 190 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 111108 22 19 5950 4932 1 3040 243 24 24 576 mult_36 auto 55.4 MiB 2.28 19478 54819 12176 38018 4625 91.5 MiB 2.49 0.03 4.41131 -3650.22 -4.41131 4.41131 1.86 0.0108045 0.00967977 0.884909 0.781199 80 31276 23 1.59675e+07 7.50235e+06 2.72095e+06 4723.87 23.96 4.93786 4.35749 70206 720185 -1 27478 16 10740 12213 1485213 299160 4.52256 4.52256 -3708.57 -4.52256 0 0 3.41546e+06 5929.62 1.25 0.80 0.67 -1 -1 1.25 0.468096 0.424175 1461 1956 760 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_42.v common 31.03 vpr 92.28 MiB 0.34 19000 -1 -1 1 0.82 -1 -1 42796 -1 -1 193 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94496 22 19 6024 4989 1 3083 246 24 24 576 mult_36 auto 55.8 MiB 2.16 19232 63386 14561 42862 5963 92.1 MiB 2.85 0.03 4.64786 -3641.46 -4.64786 4.64786 1.79 0.0109499 0.00972621 0.976979 0.866865 76 33762 25 1.59675e+07 7.54578e+06 2.61600e+06 4541.67 14.93 4.37764 3.86802 68478 680951 -1 28522 16 11374 13382 1767274 362795 4.77316 4.77316 -3938.14 -4.77316 0 0 3.24203e+06 5628.53 1.18 0.86 0.61 -1 -1 1.18 0.47005 0.425792 1480 1975 779 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_43.v common 44.44 vpr 110.86 MiB 0.25 19420 -1 -1 1 0.81 -1 -1 43432 -1 -1 199 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 113516 22 19 6198 5129 1 3182 252 24 24 576 mult_36 auto 56.8 MiB 2.22 20650 59877 13155 41281 5441 93.0 MiB 2.69 0.03 4.39726 -3811.72 -4.39726 4.39726 1.80 0.0113989 0.0101425 0.93249 0.82293 78 35628 33 1.59675e+07 7.63263e+06 2.67122e+06 4637.53 28.08 6.09299 5.36447 69630 706637 -1 29571 16 11494 13119 1806404 359043 4.64786 4.64786 -3950.34 -4.64786 0 0 3.35110e+06 5817.88 1.62 0.88 0.64 -1 -1 1.62 0.485586 0.439574 1523 2030 798 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_44.v common 41.47 vpr 119.62 MiB 0.29 19552 -1 -1 1 0.86 -1 -1 43288 -1 -1 200 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 122492 22 19 6272 5186 1 3228 253 24 24 576 mult_36 auto 57.2 MiB 2.37 21041 60977 14663 40942 5372 93.3 MiB 2.90 0.04 4.39726 -3882.95 -4.39726 4.39726 1.83 0.0120339 0.0107479 0.965688 0.853539 88 32563 34 1.59675e+07 7.64711e+06 2.98162e+06 5176.42 24.81 5.68218 5.00279 73078 787199 -1 29194 16 11469 13191 1649656 338458 4.52256 4.52256 -4202.34 -4.52256 0 0 3.70823e+06 6437.90 1.37 0.86 0.74 -1 -1 1.37 0.490463 0.443956 1542 2049 817 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_45.v common 31.63 vpr 96.93 MiB 0.31 19788 -1 -1 1 0.96 -1 -1 43684 -1 -1 208 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99256 22 19 6485 5365 1 3341 262 24 24 576 mult_36 auto 58.2 MiB 2.18 21508 64788 14398 44765 5625 94.3 MiB 2.96 0.04 4.39726 -3920.4 -4.39726 4.39726 1.82 0.0120655 0.0107353 1.00404 0.891916 80 36519 26 1.59675e+07 8.15891e+06 2.72095e+06 4723.87 14.95 4.18603 3.70344 70206 720185 -1 30728 17 12367 14306 1778984 366147 4.52256 4.52256 -4282.82 -4.52256 0 0 3.41546e+06 5929.62 1.23 0.96 0.66 -1 -1 1.23 0.563856 0.512964 1593 2122 836 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_46.v common 43.60 vpr 113.10 MiB 0.31 20108 -1 -1 1 0.96 -1 -1 43992 -1 -1 210 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 115812 22 19 6559 5422 1 3381 264 24 24 576 mult_36 auto 58.8 MiB 2.29 20947 70482 16577 47310 6595 94.9 MiB 3.17 0.04 4.14666 -3968.32 -4.14666 4.14666 1.85 0.012008 0.01068 1.09312 0.969505 78 35129 34 1.59675e+07 8.18786e+06 2.67122e+06 4637.53 26.58 6.53109 5.74824 69630 706637 -1 30447 20 12649 14767 1718007 358511 4.39726 4.39726 -4098.93 -4.39726 0 0 3.35110e+06 5817.88 1.22 1.01 0.66 -1 -1 1.22 0.600636 0.541695 1613 2141 855 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_47.v common 47.16 vpr 122.21 MiB 0.31 20408 -1 -1 1 0.96 -1 -1 44568 -1 -1 216 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 125140 22 19 6735 5564 1 3478 270 24 24 576 mult_36 auto 59.6 MiB 2.53 22209 70030 15451 47782 6797 95.8 MiB 3.27 0.04 4.41516 -4128.21 -4.41516 4.41516 1.90 0.012367 0.0110883 1.07519 0.950715 84 37671 32 1.59675e+07 8.27472e+06 2.84938e+06 4946.85 29.46 6.41562 5.64855 71930 760447 -1 31070 17 12543 14162 1836210 367421 4.52256 4.52256 -4366.36 -4.52256 0 0 3.60864e+06 6265.01 1.28 0.95 0.71 -1 -1 1.28 0.546066 0.493656 1656 2196 874 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_48.v common 33.64 vpr 100.38 MiB 0.29 20636 -1 -1 1 1.00 -1 -1 44136 -1 -1 218 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102784 22 19 6809 5621 1 3528 272 24 24 576 mult_36 auto 60.0 MiB 2.57 22399 68109 15563 46856 5690 96.1 MiB 3.22 0.04 4.28601 -4165.16 -4.28601 4.28601 1.83 0.0127296 0.011338 1.05848 0.937827 84 37990 31 1.59675e+07 8.30367e+06 2.84938e+06 4946.85 15.89 4.85017 4.28337 71930 760447 -1 31425 16 12475 14355 1676213 339117 4.64786 4.64786 -4427.09 -4.64786 0 0 3.60864e+06 6265.01 1.31 0.90 0.69 -1 -1 1.31 0.528691 0.478665 1674 2215 893 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_49.v common 91.19 vpr 100.55 MiB 0.26 21136 -1 -1 1 1.07 -1 -1 44496 -1 -1 228 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102960 22 19 7094 5872 1 3643 283 24 24 576 mult_36 auto 61.5 MiB 2.56 22044 72667 16155 50381 6131 97.7 MiB 3.44 0.05 4.16456 -4302.53 -4.16456 4.16456 1.96 0.0139971 0.0126181 1.13535 0.99667 78 36952 26 1.59675e+07 8.84444e+06 2.67122e+06 4637.53 73.01 8.13038 7.12655 69630 706637 -1 31678 15 13251 15339 1784571 373556 4.39726 4.39726 -4573.37 -4.39726 0 0 3.35110e+06 5817.88 1.22 0.95 0.65 -1 -1 1.22 0.53672 0.486946 1745 2324 912 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_50.v common 47.51 vpr 124.69 MiB 0.33 21372 -1 -1 1 1.05 -1 -1 44172 -1 -1 230 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 127684 22 19 7168 5929 1 3677 285 24 24 576 mult_36 auto 62.2 MiB 2.58 23518 76182 17449 52130 6603 98.2 MiB 3.52 0.04 4.39726 -4337.05 -4.39726 4.39726 1.95 0.013027 0.0115988 1.15545 1.02334 80 39367 34 1.59675e+07 8.87339e+06 2.72095e+06 4723.87 29.16 6.8551 6.04215 70206 720185 -1 33218 16 13686 16071 1927329 395418 4.39726 4.39726 -4628.99 -4.39726 0 0 3.41546e+06 5929.62 1.23 1.02 0.66 -1 -1 1.23 0.569225 0.516719 1764 2343 931 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_51.v common 37.21 vpr 104.31 MiB 0.34 21684 -1 -1 1 1.07 -1 -1 44784 -1 -1 235 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 106812 22 19 7344 6071 1 3784 290 24 24 576 mult_36 auto 62.9 MiB 2.60 23160 75092 17160 51061 6871 98.9 MiB 3.59 0.05 4.28601 -4423.35 -4.28601 4.28601 1.86 0.0133835 0.0120262 1.17155 1.0373 80 39279 28 1.59675e+07 8.94577e+06 2.72095e+06 4723.87 19.00 5.43037 4.78029 70206 720185 -1 33312 15 13811 15847 1871805 392568 4.52256 4.52256 -4830.06 -4.52256 0 0 3.41546e+06 5929.62 1.23 0.98 0.66 -1 -1 1.23 0.557587 0.504951 1808 2398 950 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_52.v common 47.22 vpr 126.42 MiB 0.31 21888 -1 -1 1 1.09 -1 -1 45120 -1 -1 237 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 129456 22 19 7418 6128 1 3829 292 24 24 576 mult_36 auto 63.2 MiB 2.64 24388 75796 17173 51253 7370 99.2 MiB 3.56 0.05 4.39726 -4541.6 -4.39726 4.39726 1.80 0.0126601 0.011379 1.16188 1.02792 82 40166 40 1.59675e+07 8.97472e+06 2.78508e+06 4835.20 28.67 7.23256 6.3758 70778 734779 -1 34142 16 13821 15840 1861707 392582 4.52256 4.52256 -4916.53 -4.52256 0 0 3.48632e+06 6052.64 1.23 1.01 0.67 -1 -1 1.23 0.581493 0.525221 1827 2417 969 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_14.v common 13.47 vpr 67.50 MiB 0.07 9492 -1 -1 1 0.16 -1 -1 34716 -1 -1 43 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69120 22 19 1246 925 1 719 88 16 16 256 mult_36 auto 29.6 MiB 1.09 3708 12178 3140 7111 1927 67.5 MiB 0.44 0.01 7.85627 -369.053 -7.85627 7.85627 0.72 0.00258406 0.0023508 0.173232 0.157969 56 7704 42 6.59459e+06 2.20645e+06 849745. 3319.32 8.06 1.27986 1.14263 26364 208198 -1 6616 32 8380 9269 1473487 377056 8.18784 8.18784 -442.129 -8.18784 0 0 1.04740e+06 4091.43 0.32 0.52 0.20 -1 -1 0.32 0.183807 0.166157 299 285 247 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_15.v common 9.95 vpr 68.09 MiB 0.10 9632 -1 -1 1 0.16 -1 -1 35108 -1 -1 46 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69728 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 30.5 MiB 1.08 4253 11891 2718 7916 1257 68.1 MiB 0.45 0.01 8.06786 -397.609 -8.06786 8.06786 0.69 0.00279181 0.00254478 0.172785 0.157679 54 9006 35 6.59459e+06 2.64588e+06 829453. 3240.05 4.65 0.906662 0.813326 26108 202796 -1 7077 27 6857 7815 969928 231501 8.88753 8.88753 -500.255 -8.88753 0 0 1.02522e+06 4004.78 0.31 0.38 0.19 -1 -1 0.31 0.162094 0.146534 321 304 266 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_16.v common 14.64 vpr 68.57 MiB 0.09 9792 -1 -1 1 0.17 -1 -1 35092 -1 -1 48 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70216 22 19 1418 1046 1 822 94 16 16 256 mult_36 auto 30.8 MiB 1.12 4528 13087 3331 8118 1638 68.6 MiB 0.49 0.01 7.80064 -415.87 -7.80064 7.80064 0.68 0.0029328 0.00267154 0.191162 0.173985 60 8307 44 6.59459e+06 2.67484e+06 890343. 3477.90 9.18 1.52543 1.36184 27128 224764 -1 7269 23 7299 8032 994162 223606 8.50533 8.50533 -467.681 -8.50533 0 0 1.11577e+06 4358.47 0.33 0.38 0.21 -1 -1 0.33 0.153916 0.139574 340 323 285 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_17.v common 11.89 vpr 69.04 MiB 0.12 10252 -1 -1 1 0.18 -1 -1 35440 -1 -1 52 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70692 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 31.3 MiB 1.06 4723 16523 4141 9979 2403 69.0 MiB 0.63 0.01 8.49449 -420.557 -8.49449 8.49449 0.73 0.00312711 0.00281815 0.24095 0.218853 56 9780 47 6.59459e+06 2.73274e+06 849745. 3319.32 6.06 1.22168 1.09344 26364 208198 -1 8101 27 9367 10451 1358860 310210 9.29868 9.29868 -518.713 -9.29868 0 0 1.04740e+06 4091.43 0.35 0.48 0.20 -1 -1 0.35 0.184547 0.16676 365 342 304 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_18.v common 12.83 vpr 69.46 MiB 0.09 10440 -1 -1 1 0.21 -1 -1 34912 -1 -1 55 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71132 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 31.8 MiB 1.37 5255 15846 3816 10145 1885 69.5 MiB 0.63 0.01 8.73075 -474.97 -8.73075 8.73075 0.68 0.0032004 0.00290607 0.232108 0.210858 58 9951 50 6.59459e+06 2.77617e+06 871168. 3403.00 6.75 1.30445 1.16503 26872 219187 -1 8328 26 8188 9162 1100395 244875 8.96668 8.96668 -544.981 -8.96668 0 0 1.09288e+06 4269.05 0.33 0.43 0.21 -1 -1 0.33 0.185688 0.167834 383 361 323 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_19.v common 33.22 vpr 69.91 MiB 0.39 10476 -1 -1 1 0.19 -1 -1 35380 -1 -1 58 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71588 22 19 1688 1231 1 975 105 16 16 256 mult_36 auto 32.3 MiB 1.26 5522 18136 4926 9933 3277 69.9 MiB 0.66 0.01 8.61576 -458.576 -8.61576 8.61576 0.94 0.00294088 0.00264858 0.263798 0.240651 58 11561 41 6.59459e+06 3.21559e+06 871168. 3403.00 26.17 2.03831 1.82425 26872 219187 -1 8681 26 8638 9740 1126779 262997 9.32648 9.32648 -596.474 -9.32648 0 0 1.09288e+06 4269.05 0.35 0.52 0.23 -1 -1 0.35 0.221009 0.20158 404 380 342 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_20.v common 17.23 vpr 70.36 MiB 0.07 10684 -1 -1 1 0.22 -1 -1 35604 -1 -1 59 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72044 22 19 1762 1288 1 1013 106 16 16 256 mult_36 auto 32.8 MiB 1.47 5934 14856 3578 9339 1939 70.4 MiB 0.75 0.01 8.51815 -499.89 -8.51815 8.51815 0.72 0.00346063 0.00318757 0.224912 0.203368 70 10400 29 6.59459e+06 3.23007e+06 1.02522e+06 4004.78 10.76 1.83565 1.6389 28912 262511 -1 9026 25 8234 9301 1245461 261737 8.78618 8.78618 -561.652 -8.78618 0 0 1.29210e+06 5047.26 0.39 0.47 0.26 -1 -1 0.39 0.197869 0.179098 423 399 361 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_21.v common 17.02 vpr 71.02 MiB 0.13 11072 -1 -1 1 0.23 -1 -1 35820 -1 -1 62 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72720 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 33.4 MiB 1.34 6071 17789 4553 10762 2474 71.0 MiB 0.75 0.01 8.64699 -503.256 -8.64699 8.64699 0.71 0.00463067 0.00432019 0.275507 0.250627 70 10334 32 6.59459e+06 3.2735e+06 1.02522e+06 4004.78 10.49 2.02782 1.81459 28912 262511 -1 9048 24 8163 9276 1068033 251456 8.68598 8.68598 -630.827 -8.68598 0 0 1.29210e+06 5047.26 0.44 0.47 0.26 -1 -1 0.44 0.217339 0.196573 445 418 380 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_22.v common 14.95 vpr 71.12 MiB 0.13 11072 -1 -1 1 0.24 -1 -1 35876 -1 -1 66 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72824 22 19 1933 1408 1 1112 113 16 16 256 mult_36 auto 33.6 MiB 1.62 6284 16766 3772 10688 2306 71.1 MiB 0.74 0.01 8.66433 -531.367 -8.66433 8.66433 0.68 0.00368851 0.00333019 0.265203 0.240262 64 12202 40 6.59459e+06 3.3314e+06 943753. 3686.54 8.18 1.60171 1.43542 27892 240595 -1 9937 26 8773 9855 1261410 275837 8.85048 8.85048 -653.969 -8.85048 0 0 1.19033e+06 4649.74 0.36 0.51 0.24 -1 -1 0.36 0.222544 0.20077 464 437 399 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_23.v common 14.83 vpr 71.54 MiB 0.12 11532 -1 -1 1 0.27 -1 -1 36092 -1 -1 68 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73260 22 19 2031 1472 1 1172 116 18 18 324 mult_36 auto 33.9 MiB 1.81 6825 18164 4253 11642 2269 71.5 MiB 0.79 0.01 8.63545 -565.294 -8.63545 8.63545 0.91 0.00421301 0.00383285 0.283864 0.257445 64 12993 44 8.13932e+06 3.75635e+06 1.23838e+06 3822.15 6.98 1.43978 1.29215 35972 318676 -1 10932 27 9839 11273 1504542 329887 9.41448 9.41448 -741.79 -9.41448 0 0 1.56068e+06 4816.91 0.51 0.58 0.35 -1 -1 0.51 0.242034 0.218526 486 456 418 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_24.v common 42.09 vpr 72.06 MiB 0.15 11512 -1 -1 1 0.27 -1 -1 36288 -1 -1 71 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73788 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 34.3 MiB 1.82 7123 25231 6335 15708 3188 72.1 MiB 1.10 0.01 8.55031 -569.619 -8.55031 8.55031 0.91 0.00443936 0.00399423 0.389871 0.353056 60 14337 47 8.13932e+06 3.79978e+06 1.16833e+06 3605.96 33.87 2.57253 2.29241 35004 297736 -1 11588 24 11181 12858 1586113 344104 8.96778 8.96778 -766.812 -8.96778 0 0 1.46313e+06 4515.82 0.46 0.60 0.31 -1 -1 0.46 0.233833 0.2119 505 475 437 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_25.v common 51.46 vpr 72.31 MiB 0.16 11872 -1 -1 1 0.30 -1 -1 36508 -1 -1 73 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74048 22 19 2201 1591 1 1267 121 18 18 324 mult_36 auto 35.0 MiB 1.71 7919 21948 5452 13185 3311 72.3 MiB 0.99 0.01 8.66171 -618.683 -8.66171 8.66171 0.99 0.00453531 0.004069 0.356443 0.322407 60 16508 37 8.13932e+06 3.82873e+06 1.16833e+06 3605.96 43.11 2.77267 2.47002 35004 297736 -1 12761 25 12967 14678 2069285 453276 9.40498 9.40498 -864.999 -9.40498 0 0 1.46313e+06 4515.82 0.51 0.74 0.31 -1 -1 0.51 0.256249 0.232151 526 494 456 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_26.v common 15.02 vpr 73.08 MiB 0.15 11972 -1 -1 1 0.28 -1 -1 37336 -1 -1 76 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74832 22 19 2275 1648 1 1304 124 18 18 324 mult_36 auto 35.6 MiB 1.88 8331 21445 5256 13853 2336 73.1 MiB 0.99 0.01 8.87612 -625.532 -8.87612 8.87612 0.94 0.00465293 0.00422627 0.345585 0.312888 68 14555 27 8.13932e+06 3.87216e+06 1.31159e+06 4048.11 6.67 1.46 1.30432 36620 334356 -1 12285 27 11023 12770 1526505 337406 8.79728 8.79728 -914.308 -8.79728 0 0 1.63345e+06 5041.52 0.51 0.62 0.33 -1 -1 0.51 0.27222 0.245931 546 513 475 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_27.v common 19.14 vpr 73.50 MiB 0.15 12220 -1 -1 1 0.32 -1 -1 36708 -1 -1 82 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75264 22 19 2385 1724 1 1377 131 18 18 324 mult_36 auto 36.1 MiB 1.83 8472 26027 6274 16532 3221 73.5 MiB 1.13 0.01 8.72365 -592.733 -8.72365 8.72365 0.92 0.00481193 0.00436938 0.406245 0.368109 58 17784 50 8.13932e+06 4.35501e+06 1.14310e+06 3528.09 10.50 2.00245 1.78959 34680 290288 -1 14148 29 14549 16458 2410411 525176 9.27518 9.27518 -913.009 -9.27518 0 0 1.43297e+06 4422.75 0.50 0.77 0.28 -1 -1 0.50 0.282901 0.255 575 532 494 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_28.v common 21.96 vpr 74.06 MiB 0.17 12284 -1 -1 1 0.32 -1 -1 36784 -1 -1 83 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75840 22 19 2459 1781 1 1418 132 18 18 324 mult_36 auto 36.7 MiB 1.98 8415 20232 4376 13738 2118 74.1 MiB 0.91 0.02 8.74245 -615.172 -8.74245 8.74245 0.91 0.00496277 0.00449133 0.33096 0.299663 68 14718 31 8.13932e+06 4.36948e+06 1.31159e+06 4048.11 13.59 2.46318 2.19044 36620 334356 -1 12434 24 10798 12644 1438060 323636 8.84138 8.84138 -805.552 -8.84138 0 0 1.63345e+06 5041.52 0.50 0.60 0.32 -1 -1 0.50 0.267251 0.241829 594 551 513 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_29.v common 20.32 vpr 74.46 MiB 0.16 12520 -1 -1 1 0.33 -1 -1 37132 -1 -1 85 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76252 22 19 2565 1853 1 1483 135 22 22 484 mult_36 auto 37.1 MiB 2.35 8830 25047 6081 16121 2845 74.5 MiB 1.19 0.02 8.91879 -700.843 -8.91879 8.91879 1.50 0.00530016 0.00482398 0.40549 0.367647 62 17709 48 1.32347e+07 4.79443e+06 1.85176e+06 3825.95 9.46 1.85364 1.6594 53538 472186 -1 13797 24 12694 14750 1732893 386603 9.08828 9.08828 -955.656 -9.08828 0 0 2.29262e+06 4736.82 0.75 0.68 0.43 -1 -1 0.75 0.28444 0.257296 619 570 532 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_30.v common 31.37 vpr 82.55 MiB 0.18 12716 -1 -1 1 0.33 -1 -1 37284 -1 -1 89 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84532 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 37.8 MiB 2.36 9348 24192 5766 15227 3199 75.0 MiB 1.09 0.02 8.94231 -671.912 -8.94231 8.94231 1.47 0.00553517 0.00502224 0.386505 0.350359 72 16803 30 1.32347e+07 4.85233e+06 2.11301e+06 4365.72 19.96 2.95833 2.63835 56918 551676 -1 14084 25 12303 13644 1958815 410079 9.25628 9.25628 -846.537 -9.25628 0 0 2.64603e+06 5467.00 1.12 0.80 0.59 -1 -1 1.12 0.305967 0.277995 639 589 551 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_31.v common 68.48 vpr 75.51 MiB 0.16 12984 -1 -1 1 0.35 -1 -1 37416 -1 -1 93 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77324 22 19 2744 1981 1 1589 143 22 22 484 mult_36 auto 38.3 MiB 2.25 10398 27745 6556 18229 2960 75.5 MiB 1.33 0.02 8.84777 -733.653 -8.84777 8.84777 1.48 0.00563605 0.00512436 0.453526 0.409742 66 19015 48 1.32347e+07 4.91023e+06 1.96511e+06 4060.15 57.27 3.54831 3.16135 54986 507526 -1 15704 25 13107 15387 2042442 427316 9.33938 9.33938 -1025.78 -9.33938 0 0 2.45963e+06 5081.88 0.84 0.81 0.46 -1 -1 0.84 0.32621 0.29639 665 608 570 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_32.v common 65.53 vpr 75.58 MiB 0.19 13036 -1 -1 1 0.34 -1 -1 36932 -1 -1 96 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77392 22 19 2818 2038 1 1626 146 22 22 484 mult_36 auto 38.4 MiB 2.67 10138 32786 8279 20912 3595 75.6 MiB 1.52 0.02 8.84685 -737.429 -8.84685 8.84685 1.54 0.00586955 0.00533458 0.520564 0.470392 66 19171 39 1.32347e+07 4.95366e+06 1.96511e+06 4060.15 53.63 3.58634 3.19575 54986 507526 -1 15563 25 13541 16004 2089577 446360 8.79458 8.79458 -1157.81 -8.79458 0 0 2.45963e+06 5081.88 0.88 0.83 0.47 -1 -1 0.88 0.329431 0.298828 684 627 589 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_33.v common 32.92 vpr 82.66 MiB 0.20 13708 -1 -1 1 0.41 -1 -1 37484 -1 -1 100 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84648 22 19 2923 2109 1 1697 151 22 22 484 mult_36 auto 39.3 MiB 2.61 10339 29825 6892 19522 3411 76.5 MiB 1.50 0.02 9.50859 -774.184 -9.50859 9.50859 1.70 0.00601725 0.00547101 0.473221 0.430001 70 17933 28 1.32347e+07 5.40755e+06 2.06816e+06 4273.05 20.43 3.13313 2.7995 56434 539830 -1 15780 25 14300 16269 2262443 466889 9.80182 9.80182 -1112.67 -9.80182 0 0 2.60483e+06 5381.88 0.89 0.84 0.52 -1 -1 0.89 0.332473 0.300837 710 646 608 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_34.v common 33.98 vpr 82.27 MiB 0.16 13812 -1 -1 1 0.40 -1 -1 37836 -1 -1 101 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84244 22 19 2997 2166 1 1733 152 22 22 484 mult_36 auto 39.4 MiB 3.66 11393 32957 7932 21559 3466 76.7 MiB 1.54 0.02 9.96699 -781.499 -9.96699 9.96699 1.47 0.00619522 0.00553741 0.530832 0.479876 74 20099 33 1.32347e+07 5.42203e+06 2.15943e+06 4461.62 20.71 3.1816 2.84071 57402 562966 -1 17098 27 14084 16238 2342761 480686 10.2744 10.2744 -1145.98 -10.2744 0 0 2.68771e+06 5553.12 0.94 0.94 0.52 -1 -1 0.94 0.377366 0.342241 729 665 627 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_35.v common 26.49 vpr 77.30 MiB 0.18 14160 -1 -1 1 0.44 -1 -1 37884 -1 -1 106 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79156 22 19 3101 2236 1 1798 157 22 22 484 mult_36 auto 39.9 MiB 3.17 11076 33151 7719 21806 3626 77.3 MiB 1.64 0.04 9.46565 -787.471 -9.46565 9.46565 1.49 0.00617733 0.00569105 0.525675 0.475764 68 20627 48 1.32347e+07 5.49441e+06 2.01763e+06 4168.66 13.68 2.34622 2.10248 55470 518816 -1 16941 23 14184 16448 2056200 451208 9.46312 9.46312 -1330.53 -9.46312 0 0 2.51205e+06 5190.18 0.85 0.81 0.48 -1 -1 0.85 0.336439 0.305002 755 684 646 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_36.v common 25.59 vpr 77.69 MiB 0.22 14152 -1 -1 1 0.42 -1 -1 38064 -1 -1 107 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79556 22 19 3175 2293 1 1835 158 22 22 484 mult_36 auto 40.6 MiB 3.81 11333 30475 6946 20367 3162 77.7 MiB 1.43 0.02 9.75629 -817.637 -9.75629 9.75629 1.48 0.00649147 0.00590146 0.493745 0.447768 72 20591 43 1.32347e+07 5.50888e+06 2.11301e+06 4365.72 12.20 2.40662 2.16213 56918 551676 -1 17175 24 14921 17420 2216072 475647 9.56212 9.56212 -1266.13 -9.56212 0 0 2.64603e+06 5467.00 0.92 0.87 0.51 -1 -1 0.92 0.353933 0.318575 773 703 665 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_37.v common 46.09 vpr 93.44 MiB 0.16 14484 -1 -1 1 0.45 -1 -1 37564 -1 -1 111 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 95680 22 19 3280 2364 1 1905 163 24 24 576 mult_36 auto 41.2 MiB 3.80 12992 37988 9582 24747 3659 78.2 MiB 1.85 0.02 9.59371 -904.981 -9.59371 9.59371 1.81 0.00671007 0.0061004 0.60633 0.547181 72 23175 47 1.59675e+07 5.96278e+06 2.50747e+06 4353.24 31.07 4.22254 3.76282 67330 654343 -1 18905 25 16599 18922 2890425 575861 10.1337 10.1337 -1166.9 -10.1337 0 0 3.14081e+06 5452.80 1.09 1.02 0.60 -1 -1 1.09 0.370976 0.335353 798 722 684 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_38.v common 30.55 vpr 79.25 MiB 0.27 14552 -1 -1 1 0.47 -1 -1 37992 -1 -1 113 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81156 22 19 3354 2421 1 1940 165 24 24 576 mult_36 auto 41.6 MiB 4.09 12402 35873 8875 23165 3833 78.7 MiB 1.70 0.02 9.44139 -985.249 -9.44139 9.44139 1.84 0.00683413 0.00620033 0.581529 0.522968 78 19594 28 1.59675e+07 5.99174e+06 2.67122e+06 4637.53 15.24 2.76789 2.48397 69630 706637 -1 17513 23 14127 16340 2018929 414501 9.66552 9.66552 -1278.49 -9.66552 0 0 3.35110e+06 5817.88 1.21 0.82 0.65 -1 -1 1.21 0.353132 0.31993 818 741 703 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_39.v common 38.96 vpr 95.54 MiB 0.19 14952 -1 -1 1 0.49 -1 -1 38264 -1 -1 117 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97832 22 19 3457 2490 1 2006 169 24 24 576 mult_36 auto 42.2 MiB 4.23 13614 27255 5416 19238 2601 79.4 MiB 1.33 0.02 9.69926 -906.242 -9.69926 9.69926 1.86 0.00706968 0.00642164 0.444678 0.402447 84 20933 31 1.59675e+07 6.04964e+06 2.84938e+06 4946.85 23.85 3.54978 3.17031 71930 760447 -1 18580 22 13085 14994 1871344 387873 9.79872 9.79872 -1115.89 -9.79872 0 0 3.60864e+06 6265.01 1.26 0.80 0.72 -1 -1 1.26 0.357236 0.324121 842 760 722 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_40.v common 31.46 vpr 79.49 MiB 0.28 15000 -1 -1 1 0.53 -1 -1 38816 -1 -1 120 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81396 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 42.6 MiB 4.52 12855 39846 9122 26150 4574 79.5 MiB 1.98 0.02 9.60743 -951.577 -9.60743 9.60743 1.83 0.00715563 0.00648843 0.646643 0.583276 70 22646 29 1.59675e+07 6.09306e+06 2.45377e+06 4260.01 15.29 2.80319 2.5069 66754 640332 -1 19155 26 16387 18725 2648043 543957 9.41322 9.41322 -1230.64 -9.41322 0 0 3.09179e+06 5367.68 1.11 1.03 0.59 -1 -1 1.11 0.413521 0.373105 862 779 741 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_41.v common 43.29 vpr 93.64 MiB 0.26 15364 -1 -1 1 0.52 -1 -1 38008 -1 -1 122 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 95888 22 19 3634 2616 1 2109 175 24 24 576 mult_36 auto 43.1 MiB 4.19 13732 39784 9257 26530 3997 80.0 MiB 1.90 0.01 9.77499 -937.901 -9.77499 9.77499 1.91 0.00364268 0.00326392 0.632842 0.570919 70 23378 41 1.59675e+07 6.51802e+06 2.45377e+06 4260.01 27.42 4.58091 4.09563 66754 640332 -1 19768 25 16507 18827 2418548 524828 9.67842 9.67842 -1441.57 -9.67842 0 0 3.09179e+06 5367.68 1.08 1.01 0.59 -1 -1 1.08 0.418007 0.378816 886 798 760 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_42.v common 44.73 vpr 97.15 MiB 0.29 15304 -1 -1 1 0.49 -1 -1 38376 -1 -1 125 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99480 22 19 3708 2673 1 2146 178 24 24 576 mult_36 auto 43.4 MiB 4.79 14252 40678 9580 27421 3677 80.7 MiB 2.00 0.02 9.70673 -1014.41 -9.70673 9.70673 1.96 0.00748921 0.006782 0.655664 0.587736 76 23229 30 1.59675e+07 6.56144e+06 2.61600e+06 4541.67 27.63 4.31102 3.84789 68478 680951 -1 20019 25 15618 18078 2466250 501398 9.74542 9.74542 -1430.37 -9.74542 0 0 3.24203e+06 5628.53 1.20 1.00 0.69 -1 -1 1.20 0.424869 0.384398 906 817 779 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_43.v common 31.93 vpr 81.47 MiB 0.13 15600 -1 -1 1 0.54 -1 -1 38888 -1 -1 129 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83428 22 19 3810 2741 1 2211 182 24 24 576 mult_36 auto 43.7 MiB 4.77 14383 37777 8939 25288 3550 80.9 MiB 1.84 0.03 9.56815 -970.936 -9.56815 9.56815 2.11 0.00794176 0.0072101 0.62453 0.562609 70 25146 43 1.59675e+07 6.61934e+06 2.45377e+06 4260.01 14.69 3.04493 2.72148 66754 640332 -1 20927 25 18462 21016 2744808 580983 9.95542 9.95542 -1312.26 -9.95542 0 0 3.09179e+06 5367.68 1.20 1.11 0.63 -1 -1 1.20 0.448634 0.404801 930 836 798 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_44.v common 43.58 vpr 93.62 MiB 0.18 15792 -1 -1 1 0.55 -1 -1 38428 -1 -1 132 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 95864 22 19 3884 2798 1 2252 185 24 24 576 mult_36 auto 44.2 MiB 4.82 14460 39635 8934 27519 3182 81.3 MiB 2.04 0.03 9.61645 -992.888 -9.61645 9.61645 1.93 0.00776654 0.00703702 0.638645 0.572582 74 24935 34 1.59675e+07 6.66277e+06 2.56259e+06 4448.94 25.96 4.28464 3.81525 67906 667765 -1 21311 26 17785 20500 2693830 566652 10.0696 10.0696 -1333.67 -10.0696 0 0 3.19068e+06 5539.38 1.15 1.13 0.69 -1 -1 1.15 0.46633 0.420578 949 855 817 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_45.v common 43.31 vpr 98.71 MiB 0.23 15972 -1 -1 1 0.60 -1 -1 40540 -1 -1 135 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 101080 22 19 3989 2869 1 2317 189 24 24 576 mult_36 auto 44.8 MiB 4.97 14618 41381 9719 27735 3927 81.9 MiB 2.03 0.03 9.77027 -1011.74 -9.77027 9.77027 1.76 0.00837097 0.00763983 0.656671 0.592194 78 23011 26 1.59675e+07 7.1022e+06 2.67122e+06 4637.53 26.34 4.14805 3.71301 69630 706637 -1 20474 24 15067 17561 2112975 457095 9.55112 9.55112 -1317.87 -9.55112 0 0 3.35110e+06 5817.88 1.24 0.97 0.68 -1 -1 1.24 0.451627 0.408853 975 874 836 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_46.v common 45.09 vpr 98.08 MiB 0.22 16236 -1 -1 1 0.64 -1 -1 40460 -1 -1 136 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100436 22 19 4063 2926 1 2354 190 24 24 576 mult_36 auto 44.8 MiB 5.30 16350 37864 7792 26746 3326 81.8 MiB 1.93 0.03 9.83665 -1114.77 -9.83665 9.83665 1.79 0.00838578 0.00746845 0.6195 0.552372 82 25929 47 1.59675e+07 7.11667e+06 2.78508e+06 4835.20 27.62 4.54267 4.04585 70778 734779 -1 22200 23 15637 18321 2342525 476667 9.76082 9.76082 -1542.32 -9.76082 0 0 3.48632e+06 6052.64 1.34 1.02 0.69 -1 -1 1.34 0.437433 0.397511 993 893 855 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_47.v common 46.44 vpr 98.12 MiB 0.24 16664 -1 -1 1 0.72 -1 -1 40796 -1 -1 141 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100476 22 19 4167 2996 1 2420 195 24 24 576 mult_36 auto 45.5 MiB 5.15 16260 49350 11375 33104 4871 82.6 MiB 2.46 0.03 9.79725 -1090.73 -9.79725 9.79725 1.78 0.00859969 0.00767609 0.784526 0.704854 76 27046 30 1.59675e+07 7.18905e+06 2.61600e+06 4541.67 28.05 4.84586 4.32708 68478 680951 -1 22864 26 18735 21708 2814560 591545 10.3465 10.3465 -1365.53 -10.3465 0 0 3.24203e+06 5628.53 1.28 1.26 0.67 -1 -1 1.28 0.515085 0.464694 1019 912 874 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_48.v common 37.18 vpr 82.97 MiB 0.23 16724 -1 -1 1 0.73 -1 -1 40952 -1 -1 144 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84960 22 19 4241 3053 1 2458 198 24 24 576 mult_36 auto 46.0 MiB 5.89 15592 42822 9203 28894 4725 83.0 MiB 2.05 0.03 9.79149 -1061.63 -9.79149 9.79149 1.85 0.00860221 0.00780729 0.67235 0.608023 68 28638 50 1.59675e+07 7.23248e+06 2.39371e+06 4155.74 18.46 3.81537 3.40882 65606 615345 -1 22680 27 19526 22864 2812735 612091 10.3416 10.3416 -1585.91 -10.3416 0 0 2.98162e+06 5176.42 1.38 1.29 0.64 -1 -1 1.38 0.574749 0.519624 1038 931 893 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_49.v common 49.47 vpr 98.13 MiB 0.30 17048 -1 -1 1 0.65 -1 -1 41184 -1 -1 145 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100484 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 46.9 MiB 6.45 16724 42832 9460 29682 3690 83.5 MiB 2.25 0.03 10.0387 -1078.78 -10.0387 10.0387 1.77 0.00873391 0.00792061 0.70171 0.633138 76 27160 30 1.59675e+07 7.64295e+06 2.61600e+06 4541.67 29.55 5.00556 4.47073 68478 680951 -1 23572 25 18876 21876 2791246 590608 10.4455 10.4455 -1489.69 -10.4455 0 0 3.24203e+06 5628.53 1.30 1.18 0.65 -1 -1 1.30 0.513756 0.465738 1062 950 912 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_50.v common 52.31 vpr 98.34 MiB 0.24 17068 -1 -1 1 0.73 -1 -1 41188 -1 -1 148 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100700 22 19 4420 3181 1 2563 203 24 24 576 mult_36 auto 47.2 MiB 6.89 17398 44307 10226 29911 4170 84.0 MiB 2.30 0.04 9.9037 -1079.02 -9.9037 9.9037 1.81 0.0120094 0.0106863 0.7585 0.681719 74 29993 39 1.59675e+07 7.68637e+06 2.56259e+06 4448.94 32.01 5.3123 4.72228 67906 667765 -1 25064 27 22957 25885 3706669 745505 9.89712 9.89712 -1512.67 -9.89712 0 0 3.19068e+06 5539.38 1.26 1.45 0.66 -1 -1 1.26 0.552055 0.499442 1082 969 931 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_51.v common 52.83 vpr 100.36 MiB 0.23 17364 -1 -1 1 0.68 -1 -1 41072 -1 -1 152 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102768 22 19 4524 3251 1 2633 207 24 24 576 mult_36 auto 47.5 MiB 6.50 17274 43047 9353 29279 4415 84.4 MiB 2.18 0.03 9.72425 -1170.65 -9.72425 9.72425 2.09 0.00925345 0.00820721 0.717702 0.643242 76 29407 46 1.59675e+07 7.74428e+06 2.61600e+06 4541.67 32.35 5.51574 4.91647 68478 680951 -1 24555 25 19224 22166 3043731 614947 10.2548 10.2548 -1642.4 -10.2548 0 0 3.24203e+06 5628.53 1.36 1.26 0.67 -1 -1 1.36 0.531197 0.479962 1107 988 950 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_52.v common 37.57 vpr 84.71 MiB 0.29 17564 -1 -1 1 0.71 -1 -1 39692 -1 -1 155 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86740 22 19 4598 3308 1 2667 210 24 24 576 mult_36 auto 47.9 MiB 7.27 17604 46386 10173 32285 3928 84.7 MiB 2.49 0.03 9.68009 -1080.95 -9.68009 9.68009 2.07 0.00912963 0.00810555 0.736098 0.656102 72 30917 38 1.59675e+07 7.7877e+06 2.50747e+06 4353.24 16.27 3.67596 3.27995 67330 654343 -1 25360 25 21418 25117 3240485 694413 10.206 10.206 -1662.84 -10.206 0 0 3.14081e+06 5452.80 1.16 1.32 0.60 -1 -1 1.16 0.536879 0.486697 1127 1007 969 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_14.v common 12.54 vpr 71.41 MiB 0.38 10492 -1 -1 1 0.26 -1 -1 35596 -1 -1 65 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73120 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 33.5 MiB 0.47 5297 17205 4342 10377 2486 71.4 MiB 0.65 0.01 4.14666 -1129.87 -4.14666 4.14666 0.77 0.00389449 0.003499 0.274996 0.247356 56 11347 43 6.62819e+06 2.54052e+06 849745. 3319.32 6.67 1.53833 1.38262 26364 208198 -1 9317 19 4256 4818 612410 141530 4.39726 4.39726 -1244.22 -4.39726 0 0 1.04740e+06 4091.43 0.41 0.37 0.23 -1 -1 0.41 0.201028 0.185088 481 649 247 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_15.v common 13.09 vpr 72.32 MiB 0.11 10828 -1 -1 1 0.35 -1 -1 36872 -1 -1 72 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74052 22 19 2144 1789 1 1107 118 16 16 256 mult_36 auto 34.5 MiB 0.66 5790 18036 4123 11366 2547 72.3 MiB 0.73 0.01 4.11968 -1267.13 -4.11968 4.11968 0.83 0.00408083 0.0036654 0.284678 0.253937 58 11809 27 6.62819e+06 3.03953e+06 871168. 3403.00 6.44 1.37992 1.23826 26872 219187 -1 9868 19 4677 5264 620916 144337 4.14666 4.14666 -1356.44 -4.14666 0 0 1.09288e+06 4269.05 0.50 0.35 0.26 -1 -1 0.50 0.200813 0.183769 521 704 266 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_16.v common 16.61 vpr 72.57 MiB 0.12 10912 -1 -1 1 0.29 -1 -1 36952 -1 -1 74 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74308 22 19 2218 1846 1 1153 120 16 16 256 mult_36 auto 34.8 MiB 0.81 5931 16640 3652 10868 2120 72.6 MiB 0.64 0.02 4.14666 -1288.47 -4.14666 4.14666 0.82 0.00565532 0.00517099 0.249613 0.225053 70 10951 32 6.62819e+06 3.06896e+06 1.02522e+06 4004.78 10.00 2.1249 1.89063 28912 262511 -1 9237 17 4015 4580 517449 115293 4.27196 4.27196 -1349.99 -4.27196 0 0 1.29210e+06 5047.26 0.55 0.37 0.35 -1 -1 0.55 0.210278 0.192783 540 723 285 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_17.v common 16.80 vpr 74.08 MiB 0.13 11724 -1 -1 1 0.33 -1 -1 36600 -1 -1 83 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75856 22 19 2536 2130 1 1255 129 16 16 256 mult_36 auto 36.6 MiB 0.88 7206 19304 4115 12842 2347 74.1 MiB 0.80 0.01 4.27196 -1488.47 -4.27196 4.27196 0.85 0.00360836 0.00321784 0.304144 0.273611 68 13179 24 6.62819e+06 3.20141e+06 1.00038e+06 3907.74 9.96 2.39198 2.12367 28404 252462 -1 10979 16 4588 5239 608954 134222 4.27196 4.27196 -1564.42 -4.27196 0 0 1.24648e+06 4869.04 0.56 0.44 0.30 -1 -1 0.56 0.253209 0.236336 617 851 304 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_18.v common 14.11 vpr 74.47 MiB 0.10 11880 -1 -1 1 0.35 -1 -1 37056 -1 -1 86 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76256 22 19 2610 2187 1 1302 132 16 16 256 mult_36 auto 37.0 MiB 0.86 7013 22242 5431 13535 3276 74.5 MiB 0.96 0.01 4.14666 -1468.71 -4.14666 4.14666 0.89 0.00508327 0.00460341 0.374456 0.335463 66 13234 41 6.62819e+06 3.24555e+06 974584. 3806.97 7.32 2.22086 1.98172 28148 247068 -1 10694 15 4618 5355 589723 135547 4.27196 4.27196 -1523.57 -4.27196 0 0 1.22072e+06 4768.46 0.44 0.34 0.25 -1 -1 0.44 0.204024 0.185415 636 870 323 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_19.v common 17.26 vpr 75.59 MiB 0.14 12196 -1 -1 1 0.37 -1 -1 36900 -1 -1 91 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77404 22 19 2778 2321 1 1398 138 16 16 256 mult_36 auto 38.3 MiB 0.86 7745 26482 5909 16658 3915 75.6 MiB 1.07 0.01 4.32767 -1601.95 -4.32767 4.32767 0.84 0.00522459 0.00465641 0.408514 0.367358 68 13647 22 6.62819e+06 3.71513e+06 1.00038e+06 3907.74 9.93 2.41161 2.14709 28404 252462 -1 11177 18 4911 5677 568054 138793 4.14666 4.14666 -1691.92 -4.14666 0 0 1.24648e+06 4869.04 0.51 0.40 0.33 -1 -1 0.51 0.246327 0.224012 676 925 342 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_20.v common 15.18 vpr 75.70 MiB 0.12 12484 -1 -1 1 0.39 -1 -1 36984 -1 -1 93 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77512 22 19 2852 2378 1 1440 140 16 16 256 mult_36 auto 38.4 MiB 1.02 8294 22646 5123 14901 2622 75.7 MiB 0.96 0.02 4.2084 -1649.58 -4.2084 4.2084 0.84 0.00493415 0.00439635 0.350784 0.314349 68 16097 38 6.62819e+06 3.74456e+06 1.00038e+06 3907.74 7.73 1.79391 1.60061 28404 252462 -1 12428 32 5526 6490 1025857 306320 4.39726 4.39726 -1796.73 -4.39726 0 0 1.24648e+06 4869.04 0.40 0.69 0.28 -1 -1 0.40 0.389664 0.35196 695 944 361 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_21.v common 18.86 vpr 76.87 MiB 0.15 12820 -1 -1 1 0.33 -1 -1 37840 -1 -1 97 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78716 22 19 3057 2549 1 1542 144 16 16 256 mult_36 auto 39.7 MiB 0.90 8673 23895 5161 15228 3506 76.9 MiB 1.04 0.02 4.52256 -1743.09 -4.52256 4.52256 0.79 0.00591072 0.00528056 0.388672 0.348748 74 15361 35 6.62819e+06 3.80343e+06 1.07073e+06 4182.55 11.59 2.76893 2.4746 29424 273870 -1 12772 16 5516 6283 721984 162116 4.39726 4.39726 -1867.34 -4.39726 0 0 1.33358e+06 5209.30 0.53 0.50 0.28 -1 -1 0.53 0.282664 0.262231 742 1017 380 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_22.v common 14.02 vpr 76.99 MiB 0.16 12984 -1 -1 1 0.42 -1 -1 37960 -1 -1 100 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78840 22 19 3131 2606 1 1585 147 16 16 256 mult_36 auto 39.6 MiB 0.88 8566 16401 3002 11439 1960 77.0 MiB 0.77 0.02 4.20292 -1804.73 -4.20292 4.20292 0.72 0.00639425 0.00561843 0.29417 0.262989 70 15569 27 6.62819e+06 3.84757e+06 1.02522e+06 4004.78 6.63 2.05093 1.83607 28912 262511 -1 12915 18 5834 6628 735961 170375 4.27196 4.27196 -1954.66 -4.27196 0 0 1.29210e+06 5047.26 0.42 0.51 0.30 -1 -1 0.42 0.306462 0.283626 762 1036 399 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_23.v common 23.59 vpr 78.30 MiB 0.11 13308 -1 -1 1 0.39 -1 -1 38008 -1 -1 107 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80184 22 19 3301 2742 1 1683 155 18 18 324 mult_36 auto 41.0 MiB 0.85 9538 29691 6508 19815 3368 78.3 MiB 1.37 0.02 4.16456 -1929.44 -4.16456 4.16456 1.01 0.00651902 0.00564099 0.505468 0.449721 74 17207 25 8.18539e+06 4.34658e+06 1.40368e+06 4332.34 14.86 3.10953 2.78383 37912 362744 -1 14522 15 6182 7157 877389 187757 4.39726 4.39726 -2097.58 -4.39726 0 0 1.74764e+06 5393.95 0.64 0.48 0.47 -1 -1 0.64 0.285741 0.262587 802 1091 418 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_24.v common 20.35 vpr 78.35 MiB 0.12 13472 -1 -1 1 0.39 -1 -1 38144 -1 -1 109 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80228 22 19 3375 2799 1 1730 157 18 18 324 mult_36 auto 41.1 MiB 0.83 9993 25960 5685 17809 2466 78.3 MiB 1.14 0.02 4.14666 -1987.87 -4.14666 4.14666 0.92 0.00583762 0.00527699 0.424406 0.380724 66 20196 47 8.18539e+06 4.37601e+06 1.27759e+06 3943.17 12.21 2.93061 2.60958 36296 327148 -1 15425 16 6577 7667 933401 201564 4.27196 4.27196 -2140.03 -4.27196 0 0 1.59950e+06 4936.74 0.55 0.54 0.33 -1 -1 0.55 0.28953 0.264468 821 1110 437 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_25.v common 25.41 vpr 79.34 MiB 0.17 13948 -1 -1 1 0.41 -1 -1 38112 -1 -1 116 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81240 22 19 3615 3005 1 1835 164 18 18 324 mult_36 auto 41.9 MiB 0.87 11154 29284 6310 19654 3320 79.3 MiB 1.33 0.02 4.14666 -2148.01 -4.14666 4.14666 0.96 0.00663514 0.00589264 0.493038 0.436759 74 20993 41 8.18539e+06 4.47902e+06 1.40368e+06 4332.34 16.48 3.47207 3.08394 37912 362744 -1 16756 18 7134 8004 1128968 235536 4.39726 4.39726 -2385.21 -4.39726 0 0 1.74764e+06 5393.95 0.72 0.64 0.41 -1 -1 0.72 0.357518 0.329767 877 1201 456 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_26.v common 22.82 vpr 80.09 MiB 0.12 14064 -1 -1 1 0.45 -1 -1 38404 -1 -1 118 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82012 22 19 3689 3062 1 1872 166 18 18 324 mult_36 auto 43.0 MiB 0.81 10890 31630 7268 20957 3405 80.1 MiB 1.44 0.02 4.27196 -2181.76 -4.27196 4.27196 1.00 0.00695031 0.00619136 0.552019 0.492722 70 19335 31 8.18539e+06 4.50845e+06 1.34436e+06 4149.26 13.65 3.30762 2.93629 37264 347768 -1 16326 14 6732 7802 873866 193746 4.64786 4.64786 -2351.91 -4.64786 0 0 1.69344e+06 5226.66 0.65 0.51 0.40 -1 -1 0.65 0.290478 0.265202 896 1220 475 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_27.v common 24.53 vpr 81.17 MiB 0.20 14552 -1 -1 1 0.47 -1 -1 38420 -1 -1 126 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83120 22 19 3871 3210 1 1979 175 18 18 324 mult_36 auto 43.9 MiB 1.01 11935 36361 8458 24158 3745 81.2 MiB 1.67 0.02 4.27196 -2285.74 -4.27196 4.27196 1.13 0.00737938 0.00658958 0.619487 0.55111 74 21341 43 8.18539e+06 5.02217e+06 1.40368e+06 4332.34 14.03 3.65868 3.22889 37912 362744 -1 17442 28 7329 8264 1322461 328195 4.39726 4.39726 -2440.95 -4.39726 0 0 1.74764e+06 5393.95 0.58 0.84 0.42 -1 -1 0.58 0.457725 0.41824 944 1275 494 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_28.v common 19.02 vpr 81.30 MiB 0.19 14744 -1 -1 1 0.49 -1 -1 38380 -1 -1 128 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83248 22 19 3945 3267 1 2024 177 18 18 324 mult_36 auto 44.0 MiB 0.99 12138 33905 7358 22743 3804 81.3 MiB 1.60 0.05 4.2084 -2321.46 -4.2084 4.2084 1.04 0.00887878 0.00772164 0.611826 0.54221 70 21577 28 8.18539e+06 5.0516e+06 1.34436e+06 4149.26 9.25 2.96519 2.62851 37264 347768 -1 17740 16 7557 8666 1010701 226948 4.39726 4.39726 -2498.89 -4.39726 0 0 1.69344e+06 5226.66 0.54 0.59 0.31 -1 -1 0.54 0.33897 0.310704 962 1294 513 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_29.v common 21.70 vpr 82.27 MiB 0.15 14980 -1 -1 1 0.52 -1 -1 39588 -1 -1 135 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84244 22 19 4159 3447 1 2140 185 22 22 484 mult_36 auto 45.0 MiB 0.92 12922 36479 8016 24715 3748 82.3 MiB 1.59 0.02 4.27196 -2537.11 -4.27196 4.27196 1.57 0.00929844 0.0084066 0.576506 0.51597 72 24568 26 1.33067e+07 5.5506e+06 2.11301e+06 4365.72 10.31 2.49471 2.21037 56918 551676 -1 19622 18 7762 9120 1147231 234160 4.52256 4.52256 -2684.21 -4.52256 0 0 2.64603e+06 5467.00 0.94 0.67 0.55 -1 -1 0.94 0.381883 0.348702 1015 1367 532 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_30.v common 24.06 vpr 82.65 MiB 0.24 15148 -1 -1 1 0.53 -1 -1 40864 -1 -1 137 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84632 22 19 4233 3504 1 2179 187 22 22 484 mult_36 auto 45.5 MiB 1.14 12963 38101 8862 25522 3717 82.6 MiB 1.71 0.02 4.16456 -2491.22 -4.16456 4.16456 1.60 0.0083631 0.00737349 0.626872 0.553373 68 24170 26 1.33067e+07 5.58003e+06 2.01763e+06 4168.66 12.10 3.02798 2.6734 55470 518816 -1 19865 19 8475 9594 1119874 244580 4.27196 4.27196 -2605.99 -4.27196 0 0 2.51205e+06 5190.18 0.94 0.67 0.52 -1 -1 0.94 0.388266 0.350862 1034 1386 551 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_31.v common 23.73 vpr 84.73 MiB 0.18 15488 -1 -1 1 0.55 -1 -1 40880 -1 -1 143 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86760 22 19 4410 3647 1 2283 193 22 22 484 mult_36 auto 46.6 MiB 1.13 13261 42525 9859 28389 4277 84.7 MiB 1.83 0.02 4.20292 -2606.72 -4.20292 4.20292 1.51 0.00917471 0.00830888 0.687912 0.611902 68 26796 45 1.33067e+07 5.66832e+06 2.01763e+06 4168.66 11.70 3.03794 2.68558 55470 518816 -1 20620 18 9122 10596 1262791 274069 4.27196 4.27196 -2850.79 -4.27196 0 0 2.51205e+06 5190.18 0.92 0.70 0.52 -1 -1 0.92 0.387914 0.352007 1077 1441 570 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_32.v common 31.29 vpr 90.83 MiB 0.20 15756 -1 -1 1 0.57 -1 -1 40668 -1 -1 145 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93012 22 19 4484 3704 1 2328 195 22 22 484 mult_36 auto 47.1 MiB 1.12 14086 42570 10140 28365 4065 84.2 MiB 1.91 0.02 4.27196 -2656.53 -4.27196 4.27196 1.70 0.00810111 0.00718083 0.694282 0.617216 76 25174 22 1.33067e+07 5.69776e+06 2.20457e+06 4554.90 18.17 3.83211 3.38819 57882 574062 -1 21201 17 8736 10203 1208112 256654 4.52256 4.52256 -2899.81 -4.52256 0 0 2.73077e+06 5642.09 1.01 0.66 0.60 -1 -1 1.01 0.381544 0.345727 1096 1460 589 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_33.v common 24.22 vpr 86.46 MiB 0.23 16772 -1 -1 1 0.66 -1 -1 41604 -1 -1 157 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88532 22 19 4843 4029 1 2439 208 22 22 484 mult_36 auto 48.9 MiB 1.10 14930 47640 11114 32188 4338 86.5 MiB 2.14 0.03 4.39726 -2986.1 -4.39726 4.39726 1.52 0.00897482 0.00798636 0.751531 0.666893 72 28519 46 1.33067e+07 6.27034e+06 2.11301e+06 4365.72 11.08 3.35728 2.96296 56918 551676 -1 22603 18 8941 10278 1322426 274519 4.52256 4.52256 -3196.98 -4.52256 0 0 2.64603e+06 5467.00 0.97 0.75 0.61 -1 -1 0.97 0.437831 0.395824 1185 1606 608 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_34.v common 25.12 vpr 86.08 MiB 0.20 16740 -1 -1 1 0.69 -1 -1 41528 -1 -1 160 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88148 22 19 4917 4086 1 2483 211 22 22 484 mult_36 auto 49.3 MiB 1.13 15547 44101 10019 30168 3914 86.1 MiB 2.02 0.03 4.52256 -2910.9 -4.52256 4.52256 1.60 0.0103958 0.00935693 0.718325 0.639228 72 28972 45 1.33067e+07 6.31449e+06 2.11301e+06 4365.72 12.11 3.61535 3.1925 56918 551676 -1 23425 15 9029 10536 1317654 275619 4.77316 4.77316 -3227.02 -4.77316 0 0 2.64603e+06 5467.00 0.96 0.68 0.53 -1 -1 0.96 0.363173 0.330082 1205 1625 627 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_35.v common 24.49 vpr 86.95 MiB 0.16 17092 -1 -1 1 0.67 -1 -1 41836 -1 -1 163 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89036 22 19 5093 4228 1 2586 214 22 22 484 mult_36 auto 50.4 MiB 1.15 14368 50056 10737 34290 5029 86.9 MiB 2.25 0.03 4.0831 -3007.04 -4.0831 4.0831 1.55 0.00933172 0.00830807 0.807604 0.717283 70 26841 32 1.33067e+07 6.35863e+06 2.06816e+06 4273.05 11.63 3.73121 3.28917 56434 539830 -1 22266 17 9508 10903 1285918 285062 4.27196 4.27196 -3253.37 -4.27196 0 0 2.60483e+06 5381.88 0.90 0.72 0.57 -1 -1 0.90 0.421414 0.380492 1248 1680 646 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_36.v common 37.56 vpr 94.38 MiB 0.21 17288 -1 -1 1 0.70 -1 -1 41812 -1 -1 165 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 96640 22 19 5167 4285 1 2630 216 22 22 484 mult_36 auto 50.8 MiB 1.20 17033 50682 11615 34548 4519 87.3 MiB 2.36 0.03 4.41516 -3107.93 -4.41516 4.41516 1.63 0.00977843 0.00869045 0.814758 0.724528 78 30105 32 1.33067e+07 6.38806e+06 2.25108e+06 4650.99 24.11 5.06672 4.46215 58850 595650 -1 24920 16 9692 11251 1483545 305489 4.52256 4.52256 -3425.17 -4.52256 0 0 2.82299e+06 5832.63 1.01 0.75 0.58 -1 -1 1.01 0.400748 0.36351 1267 1699 665 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_37.v common 101.50 vpr 88.41 MiB 0.20 17848 -1 -1 1 0.70 -1 -1 40804 -1 -1 173 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 90528 22 19 5380 4464 1 2739 225 24 24 576 mult_36 auto 52.0 MiB 1.25 16600 56313 12680 38864 4769 88.4 MiB 2.54 0.03 4.39726 -3260.8 -4.39726 4.39726 1.97 0.00987506 0.00878209 0.902503 0.800047 70 30941 28 1.60519e+07 6.90179e+06 2.45377e+06 4260.01 87.12 7.07916 6.22511 66754 640332 -1 25189 16 10124 11953 1441066 304403 4.52256 4.52256 -3510.18 -4.52256 0 0 3.09179e+06 5367.68 1.11 0.73 0.69 -1 -1 1.11 0.409232 0.370167 1321 1772 684 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_38.v common 28.61 vpr 89.55 MiB 0.21 17968 -1 -1 1 0.73 -1 -1 42288 -1 -1 176 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 91696 22 19 5454 4521 1 2784 228 24 24 576 mult_36 auto 52.2 MiB 1.25 17686 58692 14006 39560 5126 88.5 MiB 2.51 0.04 4.20237 -3287.95 -4.20237 4.20237 1.97 0.01024 0.00902885 0.887185 0.784212 80 27661 18 1.60519e+07 6.94594e+06 2.72095e+06 4723.87 13.92 4.29471 3.79093 70206 720185 -1 25044 17 9392 10797 1238597 262408 4.39726 4.39726 -3387.93 -4.39726 0 0 3.41546e+06 5929.62 1.23 0.76 0.72 -1 -1 1.23 0.450298 0.406773 1340 1791 703 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_39.v common 27.69 vpr 89.64 MiB 0.20 18276 -1 -1 1 0.70 -1 -1 40140 -1 -1 180 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 91796 22 19 5629 4662 1 2882 232 24 24 576 mult_36 auto 52.8 MiB 1.29 17139 55056 12561 37747 4748 89.3 MiB 2.49 0.03 4.39726 -3372.5 -4.39726 4.39726 1.85 0.0108606 0.00970924 0.891074 0.789521 72 32360 40 1.60519e+07 7.0048e+06 2.50747e+06 4353.24 13.18 3.90568 3.44738 67330 654343 -1 26063 15 10213 11721 1450566 306425 4.52256 4.52256 -3562.16 -4.52256 0 0 3.14081e+06 5452.80 1.18 0.75 0.64 -1 -1 1.18 0.445679 0.406454 1381 1846 722 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_40.v common 40.28 vpr 107.68 MiB 0.21 18368 -1 -1 1 0.80 -1 -1 42324 -1 -1 182 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 110264 22 19 5703 4719 1 2929 234 24 24 576 mult_36 auto 53.3 MiB 1.37 17730 54234 12385 37329 4520 89.9 MiB 2.51 0.03 4.27196 -3426.27 -4.27196 4.27196 2.00 0.0104797 0.00930317 0.895116 0.795585 78 29812 34 1.60519e+07 7.03423e+06 2.67122e+06 4637.53 25.14 5.50059 4.85463 69630 706637 -1 25782 16 10020 11318 1368457 290534 4.39726 4.39726 -3587.86 -4.39726 0 0 3.35110e+06 5817.88 1.34 0.76 0.71 -1 -1 1.34 0.464696 0.41961 1400 1865 741 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_41.v common 30.87 vpr 91.25 MiB 0.25 18948 -1 -1 1 0.82 -1 -1 41464 -1 -1 190 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93440 22 19 5950 4932 1 3039 243 24 24 576 mult_36 auto 54.8 MiB 1.44 18494 48755 10232 33831 4692 91.0 MiB 2.35 0.03 4.14666 -3593.15 -4.14666 4.14666 1.92 0.0110588 0.00984351 0.805861 0.712483 78 30524 25 1.60519e+07 7.54795e+06 2.67122e+06 4637.53 15.12 4.70536 4.1482 69630 706637 -1 26409 17 10464 12149 1422734 303195 4.27196 4.27196 -3758.11 -4.27196 0 0 3.35110e+06 5817.88 1.28 0.83 0.70 -1 -1 1.28 0.476775 0.432353 1461 1956 760 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_42.v common 31.12 vpr 98.07 MiB 0.32 19004 -1 -1 1 0.88 -1 -1 42740 -1 -1 193 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100420 22 19 6024 4989 1 3082 246 24 24 576 mult_36 auto 55.0 MiB 1.41 20030 64926 14885 44112 5929 91.3 MiB 2.96 0.03 4.39726 -3645.71 -4.39726 4.39726 1.89 0.0109592 0.00974474 1.02112 0.912004 80 32802 29 1.60519e+07 7.5921e+06 2.72095e+06 4723.87 14.72 4.60746 4.06648 70206 720185 -1 28669 20 10800 12748 1500228 308279 4.39726 4.39726 -3926.07 -4.39726 0 0 3.41546e+06 5929.62 1.29 0.95 0.75 -1 -1 1.29 0.588277 0.534231 1480 1975 779 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_43.v common 28.37 vpr 96.73 MiB 0.38 19424 -1 -1 1 0.91 -1 -1 43432 -1 -1 199 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99052 22 19 6198 5129 1 3181 252 24 24 576 mult_36 auto 56.6 MiB 1.46 20168 59082 13911 39065 6106 92.8 MiB 2.72 0.03 4.64786 -3811.84 -4.64786 4.64786 1.95 0.0114629 0.0102076 0.953552 0.847742 74 34701 31 1.60519e+07 7.68039e+06 2.56259e+06 4448.94 12.02 4.02337 3.55353 67906 667765 -1 29515 15 11276 13062 1613817 335267 4.64786 4.64786 -4088.62 -4.64786 0 0 3.19068e+06 5539.38 1.25 0.85 0.62 -1 -1 1.25 0.475859 0.429991 1523 2030 798 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_44.v common 113.91 vpr 95.87 MiB 0.33 19440 -1 -1 1 0.89 -1 -1 43252 -1 -1 200 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98168 22 19 6272 5186 1 3226 253 24 24 576 mult_36 auto 56.9 MiB 1.45 20928 66570 15265 44565 6740 93.0 MiB 3.06 0.04 4.52256 -3840.7 -4.52256 4.52256 1.97 0.0128759 0.0109156 1.05074 0.930047 78 34552 50 1.60519e+07 7.69511e+06 2.67122e+06 4637.53 97.33 8.98357 7.93897 69630 706637 -1 28997 15 11195 13019 1576795 325150 4.64786 4.64786 -4270.29 -4.64786 0 0 3.35110e+06 5817.88 1.57 0.84 0.70 -1 -1 1.57 0.4793 0.434718 1542 2049 817 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_45.v common 31.84 vpr 96.03 MiB 0.27 19976 -1 -1 1 1.00 -1 -1 43796 -1 -1 208 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98336 22 19 6485 5365 1 3338 262 24 24 576 mult_36 auto 57.4 MiB 1.50 21050 68140 15742 46206 6192 93.5 MiB 3.14 0.04 4.3337 -3866.62 -4.3337 4.3337 1.99 0.0130606 0.0113546 1.09593 0.970136 76 37388 40 1.60519e+07 8.20883e+06 2.61600e+06 4541.67 14.55 4.54669 4.02546 68478 680951 -1 29833 26 12212 14243 1891537 439336 4.39726 4.39726 -4071.65 -4.39726 0 0 3.24203e+06 5628.53 1.33 1.21 0.72 -1 -1 1.33 0.71891 0.646488 1593 2122 836 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_46.v common 29.49 vpr 96.26 MiB 0.30 20068 -1 -1 1 0.95 -1 -1 43852 -1 -1 210 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98572 22 19 6559 5422 1 3380 264 24 24 576 mult_36 auto 58.3 MiB 1.55 20986 65406 14272 45368 5766 94.3 MiB 3.10 0.04 4.41516 -3851.32 -4.41516 4.41516 2.05 0.0130388 0.0114636 1.06093 0.941705 76 35918 33 1.60519e+07 8.23826e+06 2.61600e+06 4541.67 12.15 4.3779 3.86721 68478 680951 -1 30049 16 12176 14229 1658356 357526 4.39726 4.39726 -4137.94 -4.39726 0 0 3.24203e+06 5628.53 1.33 0.97 0.78 -1 -1 1.33 0.545743 0.495124 1613 2141 855 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_47.v common 49.54 vpr 125.25 MiB 0.34 20316 -1 -1 1 0.95 -1 -1 44640 -1 -1 216 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 128256 22 19 6735 5564 1 3477 270 24 24 576 mult_36 auto 59.6 MiB 1.59 24055 64798 13570 44576 6652 95.6 MiB 3.04 0.04 4.39726 -4157.74 -4.39726 4.39726 1.90 0.0137508 0.0123888 1.02747 0.912426 92 37176 29 1.60519e+07 8.32656e+06 3.09179e+06 5367.68 32.29 6.62638 5.85002 74806 826289 -1 32144 16 12332 14007 1800258 356940 4.52256 4.52256 -4381.37 -4.52256 0 0 3.85454e+06 6691.90 1.45 0.92 0.80 -1 -1 1.45 0.549788 0.499017 1656 2196 874 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_48.v common 37.03 vpr 100.81 MiB 0.32 20688 -1 -1 1 1.08 -1 -1 44064 -1 -1 218 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 103228 22 19 6809 5621 1 3526 272 24 24 576 mult_36 auto 59.3 MiB 1.56 22900 73395 16707 49770 6918 95.4 MiB 3.59 0.05 4.39726 -4153.76 -4.39726 4.39726 2.10 0.0129588 0.0113879 1.18609 1.05599 80 37824 42 1.60519e+07 8.35599e+06 2.72095e+06 4723.87 19.07 5.68243 5.01049 70206 720185 -1 31870 17 12170 14127 1643072 340205 4.52256 4.52256 -4448.16 -4.52256 0 0 3.41546e+06 5929.62 1.32 0.99 0.71 -1 -1 1.32 0.567825 0.514553 1674 2215 893 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_49.v common 33.01 vpr 104.45 MiB 0.33 21128 -1 -1 1 1.05 -1 -1 44392 -1 -1 228 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 106952 22 19 7094 5872 1 3640 283 24 24 576 mult_36 auto 60.5 MiB 1.68 22621 68027 14330 47033 6664 96.7 MiB 3.23 0.04 4.32767 -4362.09 -4.32767 4.32767 1.94 0.0128609 0.0114328 1.08657 0.963957 78 38472 32 1.60519e+07 8.89916e+06 2.67122e+06 4637.53 15.11 5.00365 4.42283 69630 706637 -1 32337 18 12793 14786 1774390 369345 4.39726 4.39726 -4662.48 -4.39726 0 0 3.35110e+06 5817.88 1.35 1.04 0.72 -1 -1 1.35 0.612111 0.552232 1745 2324 912 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_50.v common 157.29 vpr 101.54 MiB 0.32 21220 -1 -1 1 1.07 -1 -1 44184 -1 -1 230 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 103976 22 19 7168 5929 1 3676 285 24 24 576 mult_36 auto 61.1 MiB 1.66 23567 73371 16206 50485 6680 97.1 MiB 3.52 0.04 4.52256 -4404.95 -4.52256 4.52256 2.00 0.0141077 0.0123453 1.1561 1.02358 80 39688 35 1.60519e+07 8.92859e+06 2.72095e+06 4723.87 139.76 9.44688 8.30922 70206 720185 -1 33305 16 12887 14936 1843889 377237 4.64786 4.64786 -4684.92 -4.64786 0 0 3.41546e+06 5929.62 1.26 0.99 0.69 -1 -1 1.26 0.568974 0.515978 1764 2343 931 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_51.v common 117.05 vpr 107.18 MiB 0.23 21648 -1 -1 1 1.13 -1 -1 44780 -1 -1 235 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 109756 22 19 7344 6071 1 3782 290 24 24 576 mult_36 auto 61.9 MiB 1.71 23722 73174 15715 50579 6880 97.9 MiB 3.45 0.04 4.459 -4442.21 -4.459 4.459 1.87 0.0138071 0.0123339 1.15639 1.01923 78 40381 49 1.60519e+07 9.00217e+06 2.67122e+06 4637.53 98.64 9.78332 8.59395 69630 706637 -1 33812 17 13492 15556 1913676 402938 4.39726 4.39726 -4781.62 -4.39726 0 0 3.35110e+06 5817.88 1.35 1.11 0.58 -1 -1 1.35 0.664036 0.604729 1808 2398 950 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_52.v common 45.50 vpr 125.78 MiB 0.36 21776 -1 -1 1 1.23 -1 -1 45176 -1 -1 237 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 128800 22 19 7418 6128 1 3828 292 24 24 576 mult_36 auto 62.3 MiB 1.76 25005 78700 18301 52935 7464 98.5 MiB 3.78 0.05 4.3337 -4441.83 -4.3337 4.3337 1.89 0.0176361 0.0157764 1.25232 1.10714 86 38742 27 1.60519e+07 9.0316e+06 2.91907e+06 5067.82 25.97 6.71917 5.94313 72506 773887 -1 34151 16 12823 14818 1803598 380692 4.52256 4.52256 -4797.16 -4.52256 0 0 3.65856e+06 6351.67 1.33 1.04 0.77 -1 -1 1.33 0.59238 0.538835 1827 2417 969 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_14.v common 9.67 vpr 67.56 MiB 0.10 9368 -1 -1 1 0.16 -1 -1 34732 -1 -1 43 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69180 22 19 1246 925 1 718 88 16 16 256 mult_36 auto 29.6 MiB 0.39 3890 12373 3373 7466 1534 67.6 MiB 0.46 0.01 7.60941 -361.611 -7.60941 7.60941 0.79 0.00261471 0.00237564 0.194267 0.178168 48 8671 44 6.62819e+06 2.21677e+06 755748. 2952.14 4.89 0.915644 0.822046 25088 180500 -1 6645 23 6937 7779 935577 227413 8.26573 8.26573 -437.931 -8.26573 0 0 916467. 3579.95 0.31 0.36 0.21 -1 -1 0.31 0.142476 0.129056 299 285 247 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_15.v common 9.57 vpr 67.92 MiB 0.09 9524 -1 -1 1 0.19 -1 -1 35320 -1 -1 46 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69552 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 30.2 MiB 0.39 4185 14168 4013 8552 1603 67.9 MiB 0.54 0.01 7.6175 -392.139 -7.6175 7.6175 0.73 0.0028462 0.00259262 0.217393 0.198321 60 7437 28 6.62819e+06 2.65692e+06 890343. 3477.90 4.63 0.921047 0.82795 27128 224764 -1 6562 26 6006 6790 825899 214119 7.65538 7.65538 -446.805 -7.65538 0 0 1.11577e+06 4358.47 0.38 0.37 0.26 -1 -1 0.38 0.162518 0.147299 321 304 266 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_16.v common 10.04 vpr 68.29 MiB 0.11 9700 -1 -1 1 0.17 -1 -1 35144 -1 -1 48 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69924 22 19 1418 1046 1 821 94 16 16 256 mult_36 auto 30.7 MiB 0.44 4487 13513 3432 8383 1698 68.3 MiB 0.53 0.01 7.60494 -393.597 -7.60494 7.60494 0.73 0.0029823 0.0027163 0.204296 0.18634 56 8390 28 6.62819e+06 2.68636e+06 849745. 3319.32 5.13 1.11286 0.995627 26364 208198 -1 7216 25 7078 7963 962371 230897 7.99013 7.99013 -460.438 -7.99013 0 0 1.04740e+06 4091.43 0.33 0.34 0.20 -1 -1 0.33 0.153525 0.139031 340 323 285 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_17.v common 32.76 vpr 68.87 MiB 0.13 10236 -1 -1 1 0.20 -1 -1 35460 -1 -1 52 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70524 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 31.0 MiB 0.44 4625 16298 4224 8851 3223 68.9 MiB 0.62 0.01 8.32683 -417.873 -8.32683 8.32683 0.72 0.00273634 0.00243712 0.245622 0.222867 58 9112 39 6.62819e+06 2.74522e+06 871168. 3403.00 27.31 1.85282 1.65446 26872 219187 -1 7252 25 7366 7878 922895 225342 9.12512 9.12512 -480.323 -9.12512 0 0 1.09288e+06 4269.05 0.39 0.41 0.25 -1 -1 0.39 0.180534 0.163745 365 342 304 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_18.v common 12.82 vpr 69.13 MiB 0.08 10304 -1 -1 1 0.20 -1 -1 34976 -1 -1 55 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70788 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 31.3 MiB 0.49 5347 16316 4097 10275 1944 69.1 MiB 0.68 0.01 8.4422 -469.823 -8.4422 8.4422 0.72 0.00349253 0.00318724 0.256082 0.233279 56 10897 47 6.62819e+06 2.78937e+06 849745. 3319.32 7.49 1.20637 1.08242 26364 208198 -1 9026 32 9275 10182 1519161 349464 9.30818 9.30818 -562.145 -9.30818 0 0 1.04740e+06 4091.43 0.32 0.50 0.21 -1 -1 0.32 0.188159 0.170267 383 361 323 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_19.v common 11.40 vpr 69.65 MiB 0.08 10692 -1 -1 1 0.20 -1 -1 35340 -1 -1 58 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71324 22 19 1688 1231 1 976 105 16 16 256 mult_36 auto 31.9 MiB 0.52 5523 17642 4653 10328 2661 69.7 MiB 0.69 0.01 8.2901 -468.025 -8.2901 8.2901 0.78 0.00344518 0.00313659 0.272717 0.248458 58 10958 42 6.62819e+06 3.22951e+06 871168. 3403.00 5.88 1.33451 1.19718 26872 219187 -1 8881 23 8148 9336 1045786 240112 9.19702 9.19702 -670.638 -9.19702 0 0 1.09288e+06 4269.05 0.34 0.49 0.22 -1 -1 0.34 0.196 0.177358 404 380 342 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_20.v common 12.75 vpr 70.02 MiB 0.09 10620 -1 -1 1 0.23 -1 -1 35572 -1 -1 59 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71696 22 19 1762 1288 1 1014 106 16 16 256 mult_36 auto 32.3 MiB 0.54 5650 16606 4202 10324 2080 70.0 MiB 0.68 0.01 8.4978 -488.18 -8.4978 8.4978 0.71 0.00363795 0.00329333 0.25968 0.235472 56 11507 38 6.62819e+06 3.24423e+06 849745. 3319.32 7.21 1.45135 1.29756 26364 208198 -1 9516 27 10307 11396 1607507 371242 9.22112 9.22112 -579.067 -9.22112 0 0 1.04740e+06 4091.43 0.32 0.60 0.20 -1 -1 0.32 0.220759 0.199861 423 399 361 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_21.v common 12.08 vpr 70.55 MiB 0.08 10952 -1 -1 1 0.24 -1 -1 35744 -1 -1 62 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72240 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 32.9 MiB 0.55 6035 17789 4471 10978 2340 70.5 MiB 0.79 0.01 8.38109 -487.093 -8.38109 8.38109 0.73 0.00386091 0.00351001 0.286585 0.260311 60 12117 48 6.62819e+06 3.28838e+06 890343. 3477.90 6.36 1.56018 1.39804 27128 224764 -1 9393 23 8484 9643 1075611 255217 9.04658 9.04658 -638.837 -9.04658 0 0 1.11577e+06 4358.47 0.34 0.50 0.22 -1 -1 0.34 0.220157 0.198716 445 418 380 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_22.v common 15.91 vpr 70.72 MiB 0.09 11084 -1 -1 1 0.25 -1 -1 35856 -1 -1 66 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72420 22 19 1933 1408 1 1111 113 16 16 256 mult_36 auto 33.1 MiB 0.68 6447 14582 3335 9243 2004 70.7 MiB 0.66 0.01 8.38225 -539.049 -8.38225 8.38225 0.75 0.00400764 0.00363649 0.233289 0.212174 66 12032 36 6.62819e+06 3.34724e+06 974584. 3806.97 9.84 1.89993 1.69786 28148 247068 -1 9826 24 8221 9433 1042848 236369 8.80852 8.80852 -690.661 -8.80852 0 0 1.22072e+06 4768.46 0.38 0.48 0.27 -1 -1 0.38 0.222918 0.202043 464 437 399 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_23.v common 15.61 vpr 71.14 MiB 0.11 11420 -1 -1 1 0.27 -1 -1 36052 -1 -1 68 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72848 22 19 2031 1472 1 1174 116 18 18 324 mult_36 auto 33.4 MiB 0.66 6930 17882 4089 11335 2458 71.1 MiB 0.83 0.01 8.41364 -547.214 -8.41364 8.41364 1.10 0.0043955 0.00390949 0.299819 0.270806 60 13146 46 8.18539e+06 3.77267e+06 1.16833e+06 3605.96 8.65 1.72912 1.5446 35004 297736 -1 10629 25 9789 11037 1322884 293485 8.79022 8.79022 -667.882 -8.79022 0 0 1.46313e+06 4515.82 0.54 0.55 0.32 -1 -1 0.54 0.246313 0.223302 486 456 418 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_24.v common 18.45 vpr 71.89 MiB 0.10 11496 -1 -1 1 0.27 -1 -1 36192 -1 -1 71 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73612 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 34.2 MiB 0.73 6947 19099 4545 12489 2065 71.9 MiB 0.91 0.01 8.54591 -592.304 -8.54591 8.54591 1.19 0.00382875 0.00351188 0.344286 0.312246 64 12283 30 8.18539e+06 3.81682e+06 1.23838e+06 3822.15 11.10 1.96687 1.75296 35972 318676 -1 10910 23 9010 10282 1251347 277592 8.77098 8.77098 -740.46 -8.77098 0 0 1.56068e+06 4816.91 0.51 0.53 0.32 -1 -1 0.51 0.229116 0.207372 505 475 437 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_25.v common 21.58 vpr 72.43 MiB 0.15 11852 -1 -1 1 0.29 -1 -1 36504 -1 -1 73 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74164 22 19 2201 1591 1 1268 121 18 18 324 mult_36 auto 35.0 MiB 0.66 7634 22247 5441 14246 2560 72.4 MiB 0.99 0.01 8.41835 -567.959 -8.41835 8.41835 0.95 0.00454859 0.00411811 0.365239 0.331367 64 14202 44 8.18539e+06 3.84625e+06 1.23838e+06 3822.15 14.43 2.59332 2.32568 35972 318676 -1 11820 29 12088 13740 1940094 442042 8.68898 8.68898 -781.144 -8.68898 0 0 1.56068e+06 4816.91 0.50 0.76 0.31 -1 -1 0.50 0.29344 0.264595 526 494 456 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_26.v common 34.47 vpr 72.49 MiB 0.15 12036 -1 -1 1 0.28 -1 -1 37380 -1 -1 76 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74232 22 19 2275 1648 1 1306 124 18 18 324 mult_36 auto 34.9 MiB 0.76 7751 20827 4662 13516 2649 72.5 MiB 0.94 0.01 8.56929 -568.623 -8.56929 8.56929 0.93 0.00469695 0.00426902 0.34576 0.313758 60 14701 32 8.18539e+06 3.8904e+06 1.16833e+06 3605.96 27.29 2.60289 2.31615 35004 297736 -1 12032 25 10795 12330 1483067 336752 8.81798 8.81798 -886.816 -8.81798 0 0 1.46313e+06 4515.82 0.47 0.62 0.31 -1 -1 0.47 0.26334 0.238218 546 513 475 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_27.v common 22.48 vpr 73.10 MiB 0.13 12156 -1 -1 1 0.35 -1 -1 36708 -1 -1 82 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74852 22 19 2385 1724 1 1378 131 18 18 324 mult_36 auto 35.8 MiB 0.82 8283 20383 4936 13018 2429 73.1 MiB 0.91 0.01 8.5461 -628.049 -8.5461 8.5461 0.98 0.00495476 0.00449128 0.318675 0.288941 68 14535 41 8.18539e+06 4.37469e+06 1.31159e+06 4048.11 14.60 2.79931 2.5047 36620 334356 -1 12409 26 10631 12441 1427422 320553 8.58227 8.58227 -875.158 -8.58227 0 0 1.63345e+06 5041.52 0.70 0.66 0.34 -1 -1 0.70 0.288528 0.262612 575 532 494 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_28.v common 42.85 vpr 73.40 MiB 0.12 12320 -1 -1 1 0.31 -1 -1 36944 -1 -1 83 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75160 22 19 2459 1781 1 1417 132 18 18 324 mult_36 auto 36.1 MiB 0.73 8787 24252 5813 15988 2451 73.4 MiB 1.14 0.02 8.59036 -640.13 -8.59036 8.59036 1.03 0.00508918 0.00462357 0.409063 0.370585 58 18144 50 8.18539e+06 4.3894e+06 1.14310e+06 3528.09 35.21 3.25559 2.9017 34680 290288 -1 13981 22 13072 15000 1915715 426043 9.02382 9.02382 -822.024 -9.02382 0 0 1.43297e+06 4422.75 0.46 0.71 0.29 -1 -1 0.46 0.263123 0.238689 594 551 513 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_29.v common 23.26 vpr 74.05 MiB 0.17 12576 -1 -1 1 0.33 -1 -1 37128 -1 -1 85 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75824 22 19 2565 1853 1 1485 135 22 22 484 mult_36 auto 36.8 MiB 0.76 9693 25047 5824 16462 2761 74.0 MiB 1.18 0.02 8.56824 -658.817 -8.56824 8.56824 1.51 0.00519537 0.00471804 0.405552 0.368346 64 18425 33 1.33067e+07 4.81483e+06 1.90554e+06 3937.06 13.36 2.09161 1.87606 54502 494576 -1 15063 28 14458 16832 2340289 516030 8.76628 8.76628 -928.497 -8.76628 0 0 2.40101e+06 4960.76 1.07 0.97 0.49 -1 -1 1.07 0.347947 0.317749 619 570 532 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_30.v common 18.04 vpr 74.70 MiB 0.13 12844 -1 -1 1 0.27 -1 -1 37316 -1 -1 89 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76492 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 37.2 MiB 0.80 9384 25628 5988 16697 2943 74.7 MiB 1.19 0.02 8.44238 -674.317 -8.44238 8.44238 1.47 0.00497115 0.00451422 0.411582 0.372177 70 15871 29 1.33067e+07 4.87369e+06 2.06816e+06 4273.05 8.61 1.7569 1.57544 56434 539830 -1 14145 24 11726 13596 1807233 398151 9.10687 9.10687 -826.57 -9.10687 0 0 2.60483e+06 5381.88 0.91 0.72 0.52 -1 -1 0.91 0.295643 0.267847 639 589 551 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_31.v common 82.38 vpr 74.93 MiB 0.13 12928 -1 -1 1 0.37 -1 -1 37440 -1 -1 93 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76724 22 19 2744 1981 1 1590 143 22 22 484 mult_36 auto 37.6 MiB 0.81 9784 30356 7187 19530 3639 74.9 MiB 1.42 0.02 8.38567 -675.978 -8.38567 8.38567 1.51 0.00566731 0.00506787 0.483612 0.435548 64 18972 47 1.33067e+07 4.93255e+06 1.90554e+06 3937.06 72.43 3.88184 3.46103 54502 494576 -1 15109 27 13335 15415 2075489 440624 9.05667 9.05667 -930.353 -9.05667 0 0 2.40101e+06 4960.76 0.86 0.87 0.50 -1 -1 0.86 0.349833 0.316353 665 608 570 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_32.v common 28.51 vpr 81.35 MiB 0.18 13056 -1 -1 1 0.36 -1 -1 36832 -1 -1 96 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83304 22 19 2818 2038 1 1627 146 22 22 484 mult_36 auto 37.9 MiB 0.93 9765 27794 6626 18138 3030 75.2 MiB 1.31 0.02 8.43423 -706.833 -8.43423 8.43423 1.76 0.00583259 0.00529427 0.429465 0.387814 74 16569 27 1.33067e+07 4.9767e+06 2.15943e+06 4461.62 18.06 2.89002 2.57685 57402 562966 -1 14339 27 12280 14513 1864875 390039 8.48327 8.48327 -1035.16 -8.48327 0 0 2.68771e+06 5553.12 0.94 0.77 0.54 -1 -1 0.94 0.336831 0.304035 684 627 589 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_33.v common 30.01 vpr 81.04 MiB 0.20 13848 -1 -1 1 0.38 -1 -1 37424 -1 -1 100 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82980 22 19 2923 2109 1 1695 151 22 22 484 mult_36 auto 38.5 MiB 0.82 10394 32632 7799 20384 4449 75.9 MiB 1.60 0.02 9.15948 -780.094 -9.15948 9.15948 1.46 0.00602493 0.00538381 0.526779 0.475321 68 19006 40 1.33067e+07 5.43155e+06 2.01763e+06 4168.66 20.05 3.23323 2.88588 55470 518816 -1 15474 24 12536 14090 1741858 383228 9.73142 9.73142 -1174.71 -9.73142 0 0 2.51205e+06 5190.18 0.85 0.73 0.47 -1 -1 0.85 0.318534 0.288235 710 646 608 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_34.v common 19.76 vpr 76.07 MiB 0.20 13800 -1 -1 1 0.38 -1 -1 37816 -1 -1 101 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77896 22 19 2997 2166 1 1734 152 22 22 484 mult_36 auto 38.9 MiB 1.14 10711 29717 6877 19660 3180 76.1 MiB 1.34 0.02 9.29828 -782.067 -9.29828 9.29828 1.47 0.00610806 0.0055429 0.476263 0.430823 68 19336 39 1.33067e+07 5.44627e+06 2.01763e+06 4168.66 9.52 2.06781 1.85135 55470 518816 -1 15822 25 13222 15017 1923830 410698 9.61867 9.61867 -1083.26 -9.61867 0 0 2.51205e+06 5190.18 0.88 0.81 0.48 -1 -1 0.88 0.346646 0.313197 729 665 627 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_35.v common 24.64 vpr 76.66 MiB 0.20 14004 -1 -1 1 0.42 -1 -1 37680 -1 -1 106 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78496 22 19 3101 2236 1 1801 157 22 22 484 mult_36 auto 39.4 MiB 1.13 11402 28075 6295 18501 3279 76.7 MiB 1.37 0.02 9.47066 -829.471 -9.47066 9.47066 1.46 0.00794496 0.00731606 0.453256 0.411137 70 19800 47 1.33067e+07 5.51985e+06 2.06816e+06 4273.05 14.08 2.57784 2.30452 56434 539830 -1 16867 24 13697 15802 2138431 452706 9.74781 9.74781 -1050.32 -9.74781 0 0 2.60483e+06 5381.88 0.89 0.83 0.50 -1 -1 0.89 0.342171 0.309771 755 684 646 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_36.v common 70.01 vpr 76.95 MiB 0.21 14152 -1 -1 1 0.44 -1 -1 38012 -1 -1 107 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78800 22 19 3175 2293 1 1836 158 22 22 484 mult_36 auto 39.8 MiB 1.27 11170 30902 7166 20385 3351 77.0 MiB 1.45 0.02 9.18378 -834.69 -9.18378 9.18378 1.45 0.0064923 0.00589708 0.503411 0.454593 60 23060 49 1.33067e+07 5.53456e+06 1.79840e+06 3715.71 59.31 4.24917 3.7809 53054 462096 -1 17670 24 14840 17527 2134269 458631 9.53001 9.53001 -1214.3 -9.53001 0 0 2.25108e+06 4650.99 0.83 0.88 0.45 -1 -1 0.83 0.358272 0.324648 773 703 665 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_37.v common 26.00 vpr 77.64 MiB 0.19 14584 -1 -1 1 0.48 -1 -1 37508 -1 -1 111 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79508 22 19 3280 2364 1 1904 163 24 24 576 mult_36 auto 40.5 MiB 1.23 11916 36653 8512 22659 5482 77.6 MiB 1.67 0.02 9.503 -813.596 -9.503 9.503 1.77 0.00690126 0.00617172 0.6011 0.542808 68 21847 36 1.60519e+07 5.98942e+06 2.39371e+06 4155.74 13.97 2.39342 2.14552 65606 615345 -1 17297 31 13826 16479 2281397 551091 9.31947 9.31947 -1215.55 -9.31947 0 0 2.98162e+06 5176.42 1.02 1.01 0.56 -1 -1 1.02 0.437939 0.395008 798 722 684 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_38.v common 88.72 vpr 78.41 MiB 0.21 14552 -1 -1 1 0.47 -1 -1 37980 -1 -1 113 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80292 22 19 3354 2421 1 1941 165 24 24 576 mult_36 auto 41.2 MiB 1.42 13091 35421 8629 23184 3608 78.4 MiB 1.72 0.02 9.56954 -911.791 -9.56954 9.56954 1.78 0.00697025 0.00631218 0.579032 0.522049 70 22176 36 1.60519e+07 6.01886e+06 2.45377e+06 4260.01 76.64 4.59468 4.08424 66754 640332 -1 18678 23 12610 14627 1802919 388775 9.66152 9.66152 -1189.17 -9.66152 0 0 3.09179e+06 5367.68 1.10 0.78 0.62 -1 -1 1.10 0.344841 0.311865 818 741 703 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_39.v common 34.90 vpr 91.68 MiB 0.19 14756 -1 -1 1 0.48 -1 -1 38208 -1 -1 117 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93884 22 19 3457 2490 1 2007 169 24 24 576 mult_36 auto 41.2 MiB 1.40 13257 37062 8849 24893 3320 78.4 MiB 1.79 0.02 9.53513 -973.946 -9.53513 9.53513 1.79 0.00685254 0.00620387 0.597007 0.539319 66 24364 31 1.60519e+07 6.07772e+06 2.33135e+06 4047.49 22.52 3.63919 3.25047 65030 601923 -1 19382 25 15180 17874 2138458 453487 9.76651 9.76651 -1308.99 -9.76651 0 0 2.91907e+06 5067.82 1.00 0.89 0.58 -1 -1 1.00 0.386807 0.349718 842 760 722 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_40.v common 27.28 vpr 79.18 MiB 0.21 14852 -1 -1 1 0.49 -1 -1 38840 -1 -1 120 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81076 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 41.8 MiB 1.48 13416 38890 9004 25965 3921 79.2 MiB 1.95 0.02 9.43624 -981.01 -9.43624 9.43624 1.88 0.00718784 0.00650653 0.621154 0.558695 70 23523 44 1.60519e+07 6.12186e+06 2.45377e+06 4260.01 14.18 2.64483 2.36847 66754 640332 -1 19563 25 14474 17290 2278221 477004 9.83772 9.83772 -1353.33 -9.83772 0 0 3.09179e+06 5367.68 1.09 0.92 0.59 -1 -1 1.09 0.396605 0.358328 862 779 741 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_41.v common 40.04 vpr 93.46 MiB 0.52 15160 -1 -1 1 0.50 -1 -1 38168 -1 -1 122 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 95708 22 19 3634 2616 1 2113 175 24 24 576 mult_36 auto 42.1 MiB 1.40 14260 37339 8299 25744 3296 79.4 MiB 1.88 0.02 9.48942 -936.304 -9.48942 9.48942 2.09 0.00743325 0.00675433 0.604351 0.543811 76 24101 46 1.60519e+07 6.5473e+06 2.61600e+06 4541.67 26.53 4.35322 3.87931 68478 680951 -1 20450 26 13980 16375 2275565 472356 10.0482 10.0482 -1255.71 -10.0482 0 0 3.24203e+06 5628.53 1.12 0.96 0.62 -1 -1 1.12 0.420655 0.380318 886 798 760 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_42.v common 93.56 vpr 79.95 MiB 0.25 15420 -1 -1 1 0.50 -1 -1 38220 -1 -1 125 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81872 22 19 3708 2673 1 2147 178 24 24 576 mult_36 auto 42.8 MiB 1.54 13247 38178 8698 26287 3193 80.0 MiB 1.85 0.02 9.34555 -911.748 -9.34555 9.34555 1.77 0.00767632 0.00697167 0.623997 0.565842 68 24266 46 1.60519e+07 6.59144e+06 2.39371e+06 4155.74 80.53 4.95262 4.41691 65606 615345 -1 19305 25 14215 16917 2027268 431068 9.41247 9.41247 -1370.03 -9.41247 0 0 2.98162e+06 5176.42 1.13 0.95 0.67 -1 -1 1.13 0.433534 0.391567 906 817 779 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_43.v common 43.81 vpr 94.00 MiB 0.18 15620 -1 -1 1 0.54 -1 -1 38864 -1 -1 129 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 96256 22 19 3810 2741 1 2214 182 24 24 576 mult_36 auto 43.1 MiB 1.49 14854 39322 8760 27092 3470 80.4 MiB 1.99 0.03 9.43515 -973.044 -9.43515 9.43515 1.75 0.00787505 0.00715575 0.625663 0.566841 70 26179 39 1.60519e+07 6.6503e+06 2.45377e+06 4260.01 30.63 4.92335 4.38951 66754 640332 -1 21790 27 16236 19013 2690277 570799 10.0622 10.0622 -1353.82 -10.0622 0 0 3.09179e+06 5367.68 1.05 1.08 0.59 -1 -1 1.05 0.454425 0.410612 930 836 798 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_44.v common 88.49 vpr 80.56 MiB 0.24 15812 -1 -1 1 0.53 -1 -1 38408 -1 -1 132 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82496 22 19 3884 2798 1 2251 185 24 24 576 mult_36 auto 43.5 MiB 1.80 14264 43317 10157 28920 4240 80.6 MiB 2.13 0.03 9.54931 -1049.89 -9.54931 9.54931 1.87 0.00790514 0.00716399 0.718464 0.649499 70 23866 43 1.60519e+07 6.69445e+06 2.45377e+06 4260.01 74.78 5.42895 4.8407 66754 640332 -1 20739 24 16345 18902 2422633 514103 9.94026 9.94026 -1346.73 -9.94026 0 0 3.09179e+06 5367.68 1.06 0.99 0.62 -1 -1 1.06 0.419403 0.379951 949 855 817 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_45.v common 39.66 vpr 95.97 MiB 0.25 15992 -1 -1 1 0.66 -1 -1 40432 -1 -1 135 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98276 22 19 3989 2869 1 2318 189 24 24 576 mult_36 auto 43.8 MiB 1.61 15002 45717 10664 29972 5081 81.0 MiB 2.20 0.03 9.30374 -1001.57 -9.30374 9.30374 1.90 0.00815237 0.00740455 0.728317 0.657914 74 24106 34 1.60519e+07 7.1346e+06 2.56259e+06 4448.94 25.66 4.84108 4.33028 67906 667765 -1 21115 26 15678 18406 2326491 502931 9.44027 9.44027 -1425.49 -9.44027 0 0 3.19068e+06 5539.38 1.17 1.05 0.67 -1 -1 1.17 0.475369 0.431321 975 874 836 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_46.v common 101.08 vpr 81.41 MiB 0.27 16132 -1 -1 1 0.61 -1 -1 40492 -1 -1 136 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83364 22 19 4063 2926 1 2357 190 24 24 576 mult_36 auto 44.4 MiB 1.72 15384 39502 8716 27417 3369 81.4 MiB 2.00 0.03 9.25444 -1065.06 -9.25444 9.25444 1.82 0.00835579 0.00743201 0.651622 0.58416 68 28280 44 1.60519e+07 7.14931e+06 2.39371e+06 4155.74 87.13 5.4443 4.84378 65606 615345 -1 22363 25 16582 19483 2454716 510839 9.51877 9.51877 -1579.55 -9.51877 0 0 2.98162e+06 5176.42 1.45 1.08 0.59 -1 -1 1.45 0.477189 0.433645 993 893 855 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_47.v common 90.83 vpr 82.05 MiB 0.27 16448 -1 -1 1 0.63 -1 -1 40736 -1 -1 141 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84016 22 19 4167 2996 1 2421 195 24 24 576 mult_36 auto 45.1 MiB 1.69 15434 47655 11175 32212 4268 82.0 MiB 2.45 0.03 9.32624 -1067.91 -9.32624 9.32624 1.85 0.00941871 0.00803498 0.786575 0.702128 68 26939 44 1.60519e+07 7.22289e+06 2.39371e+06 4155.74 76.54 5.49501 4.88447 65606 615345 -1 22408 22 17205 20128 2344851 525433 9.69172 9.69172 -1531.77 -9.69172 0 0 2.98162e+06 5176.42 1.04 0.99 0.56 -1 -1 1.04 0.42772 0.387547 1019 912 874 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_48.v common 40.00 vpr 95.11 MiB 0.18 16676 -1 -1 1 0.68 -1 -1 40812 -1 -1 144 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97396 22 19 4241 3053 1 2459 198 24 24 576 mult_36 auto 45.1 MiB 1.86 16101 43398 9885 28969 4544 82.4 MiB 2.28 0.03 9.15276 -1137.39 -9.15276 9.15276 1.87 0.00881582 0.00791312 0.704404 0.629925 80 24936 26 1.60519e+07 7.26704e+06 2.72095e+06 4723.87 25.59 4.61135 4.10248 70206 720185 -1 22062 25 17374 20305 2655222 541042 9.25847 9.25847 -1663.82 -9.25847 0 0 3.41546e+06 5929.62 1.26 1.13 0.68 -1 -1 1.26 0.487181 0.440914 1038 931 893 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_49.v common 39.41 vpr 96.69 MiB 0.29 16992 -1 -1 1 0.63 -1 -1 41068 -1 -1 145 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99008 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 46.3 MiB 1.76 16303 42248 9563 28218 4467 82.9 MiB 2.07 0.03 9.38798 -1053.9 -9.38798 9.38798 1.95 0.00885662 0.00806096 0.669442 0.602751 76 26459 35 1.60519e+07 7.67775e+06 2.61600e+06 4541.67 24.98 4.63327 4.13696 68478 680951 -1 22900 23 17127 19789 2450260 525170 9.49071 9.49071 -1363.71 -9.49071 0 0 3.24203e+06 5628.53 1.26 1.05 0.62 -1 -1 1.26 0.460657 0.416961 1062 950 912 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_50.v common 29.29 vpr 82.96 MiB 0.30 17112 -1 -1 1 0.64 -1 -1 41064 -1 -1 148 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84952 22 19 4420 3181 1 2564 203 24 24 576 mult_36 auto 46.3 MiB 1.90 16495 43711 9469 30201 4041 83.0 MiB 2.20 0.03 9.43609 -1064.71 -9.43609 9.43609 1.87 0.00883368 0.00800404 0.714975 0.643276 74 29023 44 1.60519e+07 7.72189e+06 2.56259e+06 4448.94 14.67 3.18161 2.84407 67906 667765 -1 23678 25 18523 22416 2877968 597216 9.48707 9.48707 -1821.24 -9.48707 0 0 3.19068e+06 5539.38 1.11 1.16 0.64 -1 -1 1.11 0.497174 0.449343 1082 969 931 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_51.v common 43.59 vpr 97.60 MiB 0.31 17444 -1 -1 1 0.65 -1 -1 41052 -1 -1 152 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99940 22 19 4524 3251 1 2634 207 24 24 576 mult_36 auto 46.6 MiB 1.83 16985 41823 9101 28954 3768 83.4 MiB 2.17 0.03 9.734 -1168.67 -9.734 9.734 1.92 0.00969234 0.0088337 0.69198 0.623676 72 29204 35 1.60519e+07 7.78076e+06 2.50747e+06 4353.24 28.62 5.15664 4.59556 67330 654343 -1 24180 25 18625 21935 2835680 592310 9.95301 9.95301 -1799.32 -9.95301 0 0 3.14081e+06 5452.80 1.35 1.22 0.65 -1 -1 1.35 0.529839 0.48122 1107 988 950 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_52.v common 30.02 vpr 87.61 MiB 0.17 17568 -1 -1 1 0.66 -1 -1 39608 -1 -1 155 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89708 22 19 4598 3308 1 2668 210 24 24 576 mult_36 auto 47.1 MiB 1.89 17259 43266 9678 28409 5179 83.8 MiB 2.20 0.03 9.7565 -1135.89 -9.7565 9.7565 1.86 0.00981061 0.00904252 0.711602 0.642606 72 30374 50 1.60519e+07 7.8249e+06 2.50747e+06 4353.24 15.55 3.60691 3.22262 67330 654343 -1 24994 25 20197 24076 3112218 653789 9.59001 9.59001 -1667.66 -9.59001 0 0 3.14081e+06 5452.80 1.15 1.30 0.62 -1 -1 1.15 0.535474 0.484882 1127 1007 969 19 0 0 -k6_frac_N8_22nm.xml fir_pipe_14.v common 13.91 vpr 70.14 MiB 0.11 10572 -1 -1 8 0.49 -1 -1 34476 -1 -1 79 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71824 22 19 1764 1664 1 1014 124 16 16 256 mult_36 auto 32.2 MiB 0.61 6309 13720 2598 9792 1330 70.1 MiB 0.46 0.01 4.27196 -1341.5 -4.27196 4.27196 0.69 0.0038812 0.00344392 0.192745 0.171982 68 11233 36 6.45408e+06 2.64829e+06 1.00038e+06 3907.74 8.42 1.76019 1.55223 27844 252052 -1 9748 14 3990 6751 507713 116006 4.27196 4.27196 -1332.2 -4.27196 0 0 1.24648e+06 4869.04 0.38 0.28 0.26 -1 -1 0.38 0.151528 0.137444 599 909 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_15.v common 10.39 vpr 71.35 MiB 0.11 10832 -1 -1 8 0.50 -1 -1 36248 -1 -1 85 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73060 22 19 1918 1801 1 1104 131 16 16 256 mult_36 auto 33.0 MiB 0.62 6626 16731 3359 11755 1617 71.3 MiB 0.56 0.01 4.52256 -1452.91 -4.52256 4.52256 0.69 0.00433904 0.00386186 0.238118 0.212623 64 12736 29 6.45408e+06 3.12512e+06 943753. 3686.54 4.51 1.32466 1.17132 27332 240185 -1 10846 16 4390 7653 589954 137377 4.39726 4.39726 -1545.05 -4.39726 0 0 1.19033e+06 4649.74 0.43 0.34 0.24 -1 -1 0.43 0.183887 0.166897 651 984 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_16.v common 10.52 vpr 71.75 MiB 0.11 10916 -1 -1 8 0.56 -1 -1 37480 -1 -1 87 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73468 22 19 1976 1859 1 1141 133 16 16 256 mult_36 auto 33.5 MiB 0.68 7164 16066 3216 11368 1482 71.7 MiB 0.56 0.01 4.28601 -1479.04 -4.28601 4.28601 0.74 0.00444475 0.00396314 0.233166 0.207601 66 14097 31 6.45408e+06 3.15206e+06 974584. 3806.97 4.58 1.35173 1.19255 27588 246658 -1 11314 14 4644 8048 628529 143762 4.39726 4.39726 -1506.32 -4.39726 0 0 1.22072e+06 4768.46 0.41 0.32 0.24 -1 -1 0.41 0.170003 0.154253 679 1023 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_17.v common 13.38 vpr 72.70 MiB 0.10 11732 -1 -1 8 0.66 -1 -1 37128 -1 -1 102 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74444 22 19 2278 2144 1 1269 148 16 16 256 mult_36 auto 34.7 MiB 0.72 8095 16961 3169 12034 1758 72.7 MiB 0.60 0.01 4.27196 -1685.47 -4.27196 4.27196 0.75 0.00487339 0.00431926 0.243786 0.217106 66 15895 38 6.45408e+06 3.35414e+06 974584. 3806.97 7.03 1.83049 1.60994 27588 246658 -1 12871 17 5512 9156 773452 182436 4.14666 4.14666 -1714.79 -4.14666 0 0 1.22072e+06 4768.46 0.41 0.42 0.25 -1 -1 0.41 0.211945 0.192146 768 1171 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_18.v common 15.90 vpr 73.00 MiB 0.09 11940 -1 -1 8 0.66 -1 -1 37804 -1 -1 105 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74752 22 19 2336 2202 1 1299 151 16 16 256 mult_36 auto 35.1 MiB 0.78 8142 19800 3855 14118 1827 73.0 MiB 0.69 0.01 4.27196 -1743.36 -4.27196 4.27196 0.69 0.0052703 0.00471752 0.279445 0.249324 66 16357 31 6.45408e+06 3.39456e+06 974584. 3806.97 9.32 2.19485 1.933 27588 246658 -1 13041 16 5315 9387 790244 175589 4.27196 4.27196 -1778.91 -4.27196 0 0 1.22072e+06 4768.46 0.36 0.41 0.27 -1 -1 0.36 0.216098 0.195239 794 1210 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_19.v common 13.12 vpr 74.31 MiB 0.10 12260 -1 -1 8 0.68 -1 -1 37452 -1 -1 111 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76096 22 19 2488 2337 1 1399 158 16 16 256 mult_36 auto 36.4 MiB 0.82 9188 20654 3849 14830 1975 74.3 MiB 0.73 0.01 4.52256 -1895.49 -4.52256 4.52256 0.71 0.00546577 0.00499219 0.296915 0.264545 74 16375 28 6.45408e+06 3.87139e+06 1.07073e+06 4182.55 6.35 1.92056 1.69565 28864 273460 -1 14011 14 5529 9825 855293 187374 4.52256 4.52256 -1963.81 -4.52256 0 0 1.33358e+06 5209.30 0.40 0.43 0.28 -1 -1 0.40 0.224165 0.203803 837 1285 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_20.v common 13.40 vpr 74.62 MiB 0.14 12396 -1 -1 8 0.75 -1 -1 37528 -1 -1 114 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76412 22 19 2546 2395 1 1440 161 16 16 256 mult_36 auto 36.6 MiB 0.85 9425 20700 4100 14535 2065 74.6 MiB 0.76 0.02 4.32767 -1936.05 -4.32767 4.32767 0.69 0.00561857 0.00499322 0.301521 0.266358 70 17071 27 6.45408e+06 3.91181e+06 1.02522e+06 4004.78 6.41 1.7617 1.55734 28352 262101 -1 14775 14 5841 10666 895010 199961 4.39726 4.39726 -1935.26 -4.39726 0 0 1.29210e+06 5047.26 0.38 0.39 0.26 -1 -1 0.38 0.190323 0.173294 867 1324 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_21.v common 15.44 vpr 75.64 MiB 0.16 13040 -1 -1 8 0.87 -1 -1 37688 -1 -1 122 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77460 22 19 2735 2567 1 1547 169 16 16 256 mult_36 auto 37.6 MiB 0.87 10400 22118 4046 16008 2064 75.6 MiB 0.83 0.02 4.52256 -2137.28 -4.52256 4.52256 0.69 0.00574318 0.00520623 0.329986 0.292518 70 19515 48 6.45408e+06 4.01958e+06 1.02522e+06 4004.78 8.11 2.36955 2.09122 28352 262101 -1 15796 16 6443 11250 987187 224359 4.39726 4.39726 -2218.61 -4.39726 0 0 1.29210e+06 5047.26 0.41 0.49 0.26 -1 -1 0.41 0.2525 0.228038 931 1417 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_22.v common 16.54 vpr 75.61 MiB 0.11 13128 -1 -1 8 0.90 -1 -1 38104 -1 -1 126 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77420 22 19 2793 2625 1 1580 173 16 16 256 mult_36 auto 38.0 MiB 0.99 10482 25185 5093 17461 2631 75.6 MiB 0.89 0.02 4.39726 -2104.19 -4.39726 4.39726 0.69 0.00616876 0.00547718 0.353888 0.314132 72 20575 41 6.45408e+06 4.07347e+06 1.04740e+06 4091.43 8.93 2.61702 2.30942 28608 268066 -1 16169 16 6398 11556 979161 224597 4.39726 4.39726 -2198.12 -4.39726 0 0 1.31294e+06 5128.69 0.42 0.51 0.29 -1 -1 0.42 0.2639 0.23883 962 1456 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_23.v common 18.58 vpr 76.29 MiB 0.12 13396 -1 -1 8 0.91 -1 -1 38444 -1 -1 131 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78120 22 19 2947 2762 1 1693 179 18 18 324 mult_36 auto 38.7 MiB 0.98 10552 29411 6189 20863 2359 76.3 MiB 1.09 0.02 4.33362 -2228.91 -4.33362 4.33362 1.20 0.00652333 0.00579445 0.431017 0.38086 68 20948 46 7.94662e+06 4.53683e+06 1.31159e+06 4048.11 9.56 2.85032 2.50962 35852 333792 -1 17072 17 7143 12403 1006005 225429 4.27196 4.27196 -2354.78 -4.27196 0 0 1.63345e+06 5041.52 0.54 0.56 0.32 -1 -1 0.54 0.305952 0.277964 1008 1531 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_24.v common 16.77 vpr 76.65 MiB 0.14 13568 -1 -1 8 0.92 -1 -1 38716 -1 -1 135 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78492 22 19 3005 2820 1 1720 183 18 18 324 mult_36 auto 39.1 MiB 0.99 11450 28728 5932 20637 2159 76.7 MiB 1.07 0.02 4.52256 -2356.78 -4.52256 4.52256 1.00 0.00664037 0.00601447 0.405939 0.362916 72 21726 43 7.94662e+06 4.59072e+06 1.37338e+06 4238.83 8.12 2.31324 2.044 36820 354972 -1 17934 15 7047 12424 1077888 233656 4.52256 4.52256 -2526.88 -4.52256 0 0 1.72054e+06 5310.31 0.54 0.54 0.35 -1 -1 0.54 0.275691 0.250224 1039 1570 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_25.v common 24.91 vpr 77.51 MiB 0.18 14088 -1 -1 8 1.02 -1 -1 40452 -1 -1 145 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79372 22 19 3229 3027 1 1824 193 18 18 324 mult_36 auto 40.1 MiB 1.04 12352 31385 6347 23011 2027 77.5 MiB 1.16 0.02 4.39726 -2511.96 -4.39726 4.39726 0.92 0.00662621 0.00595368 0.445723 0.395705 70 22936 50 7.94662e+06 4.72544e+06 1.34436e+06 4149.26 15.67 3.73281 3.28122 36496 347204 -1 19370 16 7698 13674 1225432 265565 4.39726 4.39726 -2525.78 -4.39726 0 0 1.69344e+06 5226.66 0.64 0.60 0.34 -1 -1 0.64 0.305248 0.276175 1106 1681 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_26.v common 24.35 vpr 78.10 MiB 0.12 14208 -1 -1 8 1.13 -1 -1 40620 -1 -1 151 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79976 22 19 3287 3085 1 1862 199 18 18 324 mult_36 auto 40.7 MiB 1.07 12525 30939 6097 22880 1962 78.1 MiB 1.14 0.02 4.39726 -2537.22 -4.39726 4.39726 0.93 0.00732081 0.00649204 0.429495 0.380496 78 21256 27 7.94662e+06 4.80627e+06 1.46313e+06 4515.82 15.06 3.41488 3.01438 38112 383040 -1 19362 15 7415 13494 1162678 245723 4.31116 4.31116 -2618.24 -4.31116 0 0 1.83526e+06 5664.38 0.62 0.58 0.37 -1 -1 0.62 0.299232 0.271159 1134 1720 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_27.v common 20.81 vpr 79.90 MiB 0.17 14528 -1 -1 8 1.18 -1 -1 39436 -1 -1 156 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81816 22 19 3453 3234 1 1964 205 18 18 324 mult_36 auto 41.6 MiB 1.14 13681 31613 6009 23435 2169 79.9 MiB 1.16 0.02 4.45297 -2674.52 -4.45297 4.45297 0.92 0.00764482 0.00677504 0.437188 0.387192 74 25230 39 7.94662e+06 5.26963e+06 1.40368e+06 4332.34 11.36 2.92689 2.58073 37144 362180 -1 20914 15 8108 14439 1272992 270691 4.39726 4.39726 -2705.27 -4.39726 0 0 1.74764e+06 5393.95 0.57 0.64 0.35 -1 -1 0.57 0.323341 0.294569 1189 1795 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_28.v common 18.97 vpr 80.04 MiB 0.25 14812 -1 -1 8 1.17 -1 -1 41196 -1 -1 160 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81960 22 19 3511 3292 1 2001 209 18 18 324 mult_36 auto 41.7 MiB 1.16 13533 36169 7851 25670 2648 80.0 MiB 1.31 0.02 4.27196 -2716.32 -4.27196 4.27196 0.95 0.00758634 0.00669665 0.485058 0.429344 76 24958 37 7.94662e+06 5.32352e+06 1.43297e+06 4422.75 9.15 2.63277 2.32429 37464 369264 -1 20464 15 8254 14560 1239406 267344 4.27196 4.27196 -2808.92 -4.27196 0 0 1.77541e+06 5479.65 0.57 0.62 0.35 -1 -1 0.57 0.320412 0.290428 1221 1834 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_29.v common 31.81 vpr 88.39 MiB 0.20 15132 -1 -1 8 1.32 -1 -1 39952 -1 -1 168 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 90516 22 19 3709 3473 1 2127 218 22 22 484 mult_36 auto 43.2 MiB 1.25 14602 39518 9141 27857 2520 81.4 MiB 1.43 0.02 4.64786 -2935.24 -4.64786 4.64786 1.54 0.00809922 0.0071665 0.543067 0.478884 72 26438 32 1.29336e+07 5.8273e+06 2.11301e+06 4365.72 19.90 3.56355 3.14379 55718 550791 -1 22616 14 8048 14017 1235710 262139 4.64786 4.64786 -3093.81 -4.64786 0 0 2.64603e+06 5467.00 0.93 0.63 0.50 -1 -1 0.93 0.328588 0.298688 1281 1927 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_30.v common 21.57 vpr 81.68 MiB 0.15 15380 -1 -1 8 1.26 -1 -1 40280 -1 -1 170 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83640 22 19 3767 3531 1 2168 220 22 22 484 mult_36 auto 43.4 MiB 1.17 14136 38674 7872 27997 2805 81.7 MiB 1.38 0.02 4.27196 -2917.4 -4.27196 4.27196 1.47 0.00830033 0.0073693 0.524715 0.463166 70 26124 28 1.29336e+07 5.85424e+06 2.06816e+06 4273.05 10.02 2.59867 2.28795 55234 538945 -1 23007 16 8701 15898 1397998 301821 4.52256 4.52256 -3212.81 -4.52256 0 0 2.60483e+06 5381.88 0.92 0.72 0.50 -1 -1 0.92 0.365117 0.332259 1309 1966 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_31.v common 25.48 vpr 82.59 MiB 0.21 15824 -1 -1 8 1.46 -1 -1 41872 -1 -1 177 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84576 22 19 3928 3675 1 2252 227 22 22 484 mult_36 auto 44.5 MiB 1.27 15955 41055 8830 29506 2719 82.6 MiB 1.48 0.02 4.64786 -3128.05 -4.64786 4.64786 1.48 0.00858803 0.00762101 0.559367 0.493732 70 29680 35 1.29336e+07 5.94854e+06 2.06816e+06 4273.05 13.17 3.48539 3.07095 55234 538945 -1 25230 18 9528 17282 1610949 332876 4.52256 4.52256 -3269.54 -4.52256 0 0 2.60483e+06 5381.88 0.90 0.78 0.49 -1 -1 0.90 0.393184 0.354134 1363 2041 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_32.v common 24.59 vpr 82.92 MiB 0.22 16060 -1 -1 8 1.39 -1 -1 41904 -1 -1 181 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84908 22 19 3986 3733 1 2287 231 22 22 484 mult_36 auto 44.8 MiB 1.32 15887 40587 8585 29443 2559 82.9 MiB 1.48 0.03 4.39726 -3145.72 -4.39726 4.39726 1.47 0.0087046 0.00769659 0.547152 0.483223 76 29475 26 1.29336e+07 6.00243e+06 2.20457e+06 4554.90 12.19 3.08886 2.72528 56682 573177 -1 24951 17 9277 17002 1468776 311644 4.39726 4.39726 -3289.06 -4.39726 0 0 2.73077e+06 5642.09 0.93 0.76 0.53 -1 -1 0.93 0.398667 0.360877 1391 2080 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_33.v common 33.91 vpr 95.93 MiB 0.23 16876 -1 -1 8 1.60 -1 -1 40892 -1 -1 192 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98232 22 19 4329 4059 1 2422 243 22 22 484 mult_36 auto 46.1 MiB 1.38 16862 44965 10374 31657 2934 84.5 MiB 1.62 0.03 4.39726 -3352.56 -4.39726 4.39726 1.49 0.00925964 0.00819422 0.602206 0.529262 80 27929 33 1.29336e+07 6.54662e+06 2.29262e+06 4736.82 20.54 3.94904 3.46928 58134 606231 -1 25285 15 9077 16221 1406951 292685 4.52256 4.52256 -3440.36 -4.52256 0 0 2.87723e+06 5944.70 1.13 0.75 0.62 -1 -1 1.13 0.397335 0.360006 1494 2246 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_34.v common 24.27 vpr 84.85 MiB 0.18 17136 -1 -1 8 1.59 -1 -1 42796 -1 -1 198 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86888 22 19 4387 4117 1 2459 249 22 22 484 mult_36 auto 46.5 MiB 1.43 17068 44097 9577 31491 3029 84.9 MiB 1.59 0.03 4.39726 -3405.93 -4.39726 4.39726 1.50 0.00928743 0.00819616 0.58332 0.513004 72 32512 35 1.29336e+07 6.62746e+06 2.11301e+06 4365.72 11.21 3.00736 2.64854 55718 550791 -1 26613 16 9838 17813 1459212 312343 4.39726 4.39726 -3610.82 -4.39726 0 0 2.64603e+06 5467.00 0.97 0.78 0.56 -1 -1 0.97 0.414285 0.374471 1521 2285 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_35.v common 27.91 vpr 85.86 MiB 0.24 17568 -1 -1 8 1.83 -1 -1 41572 -1 -1 208 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87916 22 19 4547 4260 1 2575 259 22 22 484 mult_36 auto 47.5 MiB 1.51 17676 47284 9482 34731 3071 85.9 MiB 1.69 0.03 4.45892 -3532.9 -4.45892 4.45892 1.52 0.00994365 0.00881331 0.613052 0.539872 72 34940 49 1.29336e+07 6.76218e+06 2.11301e+06 4365.72 14.12 3.5406 3.11516 55718 550791 -1 27945 15 10572 18938 1649152 351009 4.39726 4.39726 -3764.56 -4.39726 0 0 2.64603e+06 5467.00 0.98 0.83 0.59 -1 -1 0.98 0.413577 0.375034 1571 2360 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_36.v common 28.27 vpr 86.07 MiB 0.25 17528 -1 -1 8 1.80 -1 -1 42904 -1 -1 210 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88136 22 19 4605 4318 1 2609 261 22 22 484 mult_36 auto 47.8 MiB 1.49 19180 50241 11166 35970 3105 86.1 MiB 1.82 0.03 4.64786 -3637.14 -4.64786 4.64786 1.52 0.0100289 0.00889509 0.654987 0.577973 76 35018 33 1.29336e+07 6.78912e+06 2.20457e+06 4554.90 14.22 3.88997 3.41832 56682 573177 -1 28971 16 10574 19278 1656672 344536 4.39726 4.39726 -3778.28 -4.39726 0 0 2.73077e+06 5642.09 0.95 0.85 0.55 -1 -1 0.95 0.435181 0.393318 1597 2399 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_37.v common 38.98 vpr 104.81 MiB 0.26 18016 -1 -1 8 1.77 -1 -1 42580 -1 -1 218 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 107324 22 19 4802 4498 1 2726 270 24 24 576 mult_36 auto 49.2 MiB 1.54 18971 52590 11478 38185 2927 87.0 MiB 1.91 0.03 4.52256 -3767.52 -4.52256 4.52256 1.82 0.0104163 0.00922939 0.69226 0.610631 76 34411 31 1.56141e+07 7.2929e+06 2.61600e+06 4541.67 23.89 4.47747 3.9474 67070 679911 -1 28926 17 10727 19259 1642623 351279 4.64786 4.64786 -3877.51 -4.64786 0 0 3.24203e+06 5628.53 1.17 0.88 0.62 -1 -1 1.17 0.471435 0.426211 1661 2492 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_38.v common 29.85 vpr 89.50 MiB 0.25 18256 -1 -1 8 1.82 -1 -1 43356 -1 -1 221 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 91652 22 19 4860 4556 1 2764 273 24 24 576 mult_36 auto 49.7 MiB 1.60 19598 57798 12862 41398 3538 87.5 MiB 2.07 0.03 4.52256 -3851.3 -4.52256 4.52256 1.81 0.0103343 0.00914461 0.742776 0.652907 74 37110 40 1.56141e+07 7.33331e+06 2.56259e+06 4448.94 14.54 3.74742 3.30253 66498 666725 -1 30085 15 10985 19570 1801298 370615 4.52256 4.52256 -3958.38 -4.52256 0 0 3.19068e+06 5539.38 1.16 0.87 0.61 -1 -1 1.16 0.439199 0.397436 1689 2531 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_39.v common 34.57 vpr 91.49 MiB 0.27 18460 -1 -1 8 2.11 -1 -1 43692 -1 -1 226 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93684 22 19 5019 4698 1 2868 278 24 24 576 mult_36 auto 50.7 MiB 1.64 20910 61047 14284 42574 4189 88.3 MiB 2.23 0.03 4.41131 -4082.11 -4.41131 4.41131 1.93 0.0107312 0.0095031 0.793499 0.697845 78 35683 29 1.56141e+07 7.40067e+06 2.67122e+06 4637.53 18.33 4.20374 3.70172 68222 705597 -1 31672 25 11561 20714 2237775 528335 4.52256 4.52256 -4301.86 -4.52256 0 0 3.35110e+06 5817.88 1.19 1.28 0.67 -1 -1 1.19 0.667975 0.601074 1735 2606 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_40.v common 43.99 vpr 107.71 MiB 0.29 18720 -1 -1 8 2.15 -1 -1 44512 -1 -1 230 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 110300 22 19 5077 4756 1 2904 282 24 24 576 mult_36 auto 50.6 MiB 1.70 20948 66810 16155 46347 4308 88.4 MiB 2.47 0.03 4.64786 -4029.87 -4.64786 4.64786 1.91 0.0110108 0.00973411 0.88098 0.775019 78 35873 43 1.56141e+07 7.45456e+06 2.67122e+06 4637.53 26.98 5.64108 4.96491 68222 705597 -1 31594 14 11574 20582 1892028 402185 4.52256 4.52256 -4297.75 -4.52256 0 0 3.35110e+06 5817.88 1.21 0.88 0.67 -1 -1 1.21 0.440004 0.399451 1765 2645 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_41.v common 44.03 vpr 109.18 MiB 0.25 19308 -1 -1 8 2.25 -1 -1 44260 -1 -1 239 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 111804 22 19 5308 4970 1 3021 292 24 24 576 mult_36 auto 52.0 MiB 1.78 22266 65148 15301 45446 4401 89.6 MiB 2.44 0.03 4.53661 -4284.69 -4.53661 4.53661 1.95 0.0112472 0.00991883 0.8567 0.750833 86 35990 33 1.56141e+07 7.97181e+06 2.91907e+06 5067.82 27.07 6.14064 5.40559 71098 772847 -1 32344 14 10765 19478 1710401 351248 4.52256 4.52256 -4544.8 -4.52256 0 0 3.65856e+06 6351.67 1.32 0.87 0.72 -1 -1 1.32 0.459024 0.41684 1838 2756 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_42.v common 44.84 vpr 109.88 MiB 0.29 19564 -1 -1 8 2.27 -1 -1 44416 -1 -1 242 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 112512 22 19 5366 5028 1 3055 295 24 24 576 mult_36 auto 52.9 MiB 1.80 22679 61117 13773 43741 3603 90.3 MiB 2.33 0.04 4.66191 -4235.07 -4.66191 4.66191 1.86 0.011637 0.010308 0.809699 0.71333 82 39997 47 1.56141e+07 8.01222e+06 2.78508e+06 4835.20 27.58 5.94477 5.23092 69370 733739 -1 33886 15 12156 22275 1970079 405149 4.64786 4.64786 -4496.94 -4.64786 0 0 3.48632e+06 6052.64 1.25 0.96 0.71 -1 -1 1.25 0.493254 0.446963 1862 2795 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_43.v common 44.43 vpr 118.62 MiB 0.36 19852 -1 -1 8 2.35 -1 -1 44716 -1 -1 255 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 121464 22 19 5524 5169 1 3162 308 24 24 576 mult_36 auto 53.3 MiB 1.84 22460 73038 16907 51210 4921 90.0 MiB 2.72 0.04 4.45892 -4390.33 -4.45892 4.45892 2.19 0.0120042 0.0106559 0.936932 0.816483 80 37054 31 1.56141e+07 8.18736e+06 2.72095e+06 4723.87 26.59 5.8605 5.16065 68798 719145 -1 33280 16 11785 21759 1790126 370269 4.64786 4.64786 -4576.22 -4.64786 0 0 3.41546e+06 5929.62 1.22 0.98 0.67 -1 -1 1.22 0.527767 0.477977 1916 2870 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_44.v common 127.54 vpr 98.89 MiB 0.31 19928 -1 -1 8 2.54 -1 -1 45280 -1 -1 254 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 101260 22 19 5582 5227 1 3204 307 24 24 576 mult_36 auto 53.7 MiB 1.89 22502 66547 15787 46972 3788 90.3 MiB 2.55 0.04 4.52256 -4486.19 -4.52256 4.52256 2.11 0.0120297 0.0106204 0.876169 0.76899 74 42787 45 1.56141e+07 8.17389e+06 2.56259e+06 4448.94 109.77 8.48534 7.43281 66498 666725 -1 35196 16 13390 24231 2184528 458821 4.39726 4.39726 -4709.92 -4.39726 0 0 3.19068e+06 5539.38 1.21 1.10 0.61 -1 -1 1.21 0.548485 0.498038 1945 2909 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_45.v common 53.10 vpr 111.36 MiB 0.21 20468 -1 -1 8 2.52 -1 -1 45788 -1 -1 262 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 114028 22 19 5779 5407 1 3306 316 24 24 576 mult_36 auto 54.8 MiB 1.87 24550 70191 16510 49767 3914 93.4 MiB 2.61 0.04 4.64786 -4625.87 -4.64786 4.64786 1.87 0.0132558 0.0118571 0.898244 0.790379 78 43496 43 1.56141e+07 8.67766e+06 2.67122e+06 4637.53 35.04 7.37805 6.49792 68222 705597 -1 36693 16 12990 23039 2177528 443029 4.64786 4.64786 -4872.93 -4.64786 0 0 3.35110e+06 5817.88 1.20 1.07 0.65 -1 -1 1.20 0.547154 0.495264 2012 3002 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_46.v common 116.90 vpr 98.17 MiB 0.25 20700 -1 -1 8 2.51 -1 -1 46176 -1 -1 267 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100528 22 19 5837 5465 1 3341 321 24 24 576 mult_36 auto 55.4 MiB 1.90 23014 78279 19395 54249 4635 93.9 MiB 2.85 0.04 4.77316 -4717.28 -4.77316 4.77316 2.34 0.0124784 0.0110104 0.981124 0.863377 78 41329 31 1.56141e+07 8.74502e+06 2.67122e+06 4637.53 98.26 8.90644 7.81718 68222 705597 -1 35603 14 12924 23433 2097034 435832 4.89846 4.89846 -5046.66 -4.89846 0 0 3.35110e+06 5817.88 1.21 1.02 0.65 -1 -1 1.21 0.520865 0.473461 2043 3041 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_47.v common 40.17 vpr 100.37 MiB 0.32 20904 -1 -1 8 2.60 -1 -1 44612 -1 -1 275 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102776 22 19 5997 5608 1 3446 329 24 24 576 mult_36 auto 55.8 MiB 1.97 23890 79779 19615 56036 4128 94.2 MiB 3.14 0.04 4.52256 -4753.36 -4.52256 4.52256 2.25 0.0133066 0.0118145 1.06823 0.9393 76 42922 43 1.56141e+07 8.8528e+06 2.61600e+06 4541.67 21.09 5.78383 5.09567 67070 679911 -1 36043 16 13572 24201 2071974 442460 4.39726 4.39726 -5108.91 -4.39726 0 0 3.24203e+06 5628.53 1.23 1.22 0.66 -1 -1 1.23 0.649436 0.590222 2100 3116 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_48.v common 35.58 vpr 101.09 MiB 0.35 21064 -1 -1 8 3.30 -1 -1 46332 -1 -1 279 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 103516 22 19 6055 5666 1 3477 333 24 24 576 mult_36 auto 56.2 MiB 1.99 24651 81043 20011 56340 4692 94.7 MiB 3.00 0.05 4.41131 -4877.82 -4.41131 4.41131 1.78 0.0130593 0.0111089 0.969607 0.848464 74 45227 34 1.56141e+07 8.90669e+06 2.56259e+06 4448.94 16.28 4.66617 4.11049 66498 666725 -1 37604 17 14240 25302 2246621 473431 4.39726 4.39726 -5110.14 -4.39726 0 0 3.19068e+06 5539.38 1.17 1.21 0.63 -1 -1 1.17 0.63427 0.577224 2126 3155 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_49.v common 50.13 vpr 123.61 MiB 0.33 21688 -1 -1 8 3.77 -1 -1 46484 -1 -1 285 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 126572 22 19 6324 5918 1 3577 340 24 24 576 mult_36 auto 57.5 MiB 2.03 25847 78616 18544 55831 4241 95.9 MiB 2.96 0.05 4.57827 -4988.8 -4.57827 4.57827 1.76 0.0145383 0.0131995 0.989134 0.869804 80 42456 33 1.56141e+07 9.38352e+06 2.72095e+06 4723.87 30.10 6.70513 5.91963 68798 719145 -1 37978 14 13206 24374 2114449 435929 4.64786 4.64786 -5260.94 -4.64786 0 0 3.41546e+06 5929.62 1.25 1.05 0.80 -1 -1 1.25 0.54389 0.493738 2206 3284 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_50.v common 36.93 vpr 103.39 MiB 0.34 21888 -1 -1 8 3.57 -1 -1 47228 -1 -1 292 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105876 22 19 6382 5976 1 3610 347 24 24 576 mult_36 auto 58.3 MiB 2.03 25875 80735 19460 56548 4727 96.4 MiB 3.09 0.05 4.52256 -5008.91 -4.52256 4.52256 1.82 0.0145607 0.0132347 1.01928 0.880334 78 45028 42 1.56141e+07 9.47782e+06 2.67122e+06 4637.53 17.05 5.65431 4.97048 68222 705597 -1 39583 16 14556 26399 2333973 504210 4.39726 4.39726 -5323.83 -4.39726 0 0 3.35110e+06 5817.88 1.26 1.22 0.65 -1 -1 1.26 0.618924 0.560651 2235 3323 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_51.v common 37.41 vpr 106.48 MiB 0.22 22220 -1 -1 8 3.55 -1 -1 47756 -1 -1 297 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 109036 22 19 6542 6119 1 3736 352 24 24 576 mult_36 auto 58.9 MiB 2.11 27181 89776 22152 62375 5249 97.2 MiB 3.22 0.04 4.77316 -5190.65 -4.77316 4.77316 1.78 0.0139273 0.0123074 1.0906 0.956889 82 46642 29 1.56141e+07 9.54518e+06 2.78508e+06 4835.20 17.26 5.08309 4.4789 69370 733739 -1 39735 14 14219 25417 2265389 476034 4.64786 4.64786 -5370.32 -4.64786 0 0 3.48632e+06 6052.64 1.30 1.20 0.66 -1 -1 1.30 0.62146 0.566651 2287 3398 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_52.v common 37.75 vpr 101.44 MiB 0.34 22320 -1 -1 8 3.04 -1 -1 47404 -1 -1 301 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 103872 22 19 6600 6177 1 3777 356 24 24 576 mult_36 auto 59.2 MiB 2.42 27822 86104 20994 59845 5265 97.3 MiB 3.15 0.05 4.52256 -5230.39 -4.52256 4.52256 1.77 0.014154 0.0125213 1.0556 0.92534 78 47564 41 1.56141e+07 9.59907e+06 2.67122e+06 4637.53 17.78 5.76031 5.08374 68222 705597 -1 41368 15 15230 27813 2474674 526301 4.52256 4.52256 -5391.64 -4.52256 0 0 3.35110e+06 5817.88 1.23 1.22 0.65 -1 -1 1.23 0.612416 0.555171 2318 3437 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_14.v common 11.35 vpr 67.56 MiB 0.10 9232 -1 -1 10 0.49 -1 -1 35192 -1 -1 57 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69184 22 19 1149 1049 1 785 102 16 16 256 mult_36 auto 29.4 MiB 0.42 5037 10336 2127 7192 1017 67.6 MiB 0.35 0.01 13.5769 -436.724 -13.5769 13.5769 0.70 0.00309082 0.00281369 0.150324 0.136838 66 10619 38 6.45408e+06 2.3519e+06 974584. 3806.97 6.34 0.996599 0.872192 27588 246658 -1 9102 21 4960 9680 816171 175522 12.3606 12.3606 -501.162 -12.3606 0 0 1.22072e+06 4768.46 0.37 0.34 0.24 -1 -1 0.37 0.152406 0.137907 433 658 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_15.v common 11.70 vpr 68.02 MiB 0.07 9452 -1 -1 11 0.54 -1 -1 36184 -1 -1 63 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69652 22 19 1261 1144 1 857 109 16 16 256 mult_36 auto 29.9 MiB 0.39 5354 11029 1996 7826 1207 68.0 MiB 0.37 0.01 14.3075 -472.001 -14.3075 14.3075 0.70 0.00338438 0.00308636 0.159168 0.145297 60 11748 49 6.45408e+06 2.82874e+06 890343. 3477.90 6.52 1.22967 1.10669 26568 224354 -1 9547 19 5111 10092 834420 183795 13.1013 13.1013 -568.67 -13.1013 0 0 1.11577e+06 4358.47 0.36 0.39 0.26 -1 -1 0.36 0.167688 0.153945 471 727 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_16.v common 14.85 vpr 68.41 MiB 0.07 9620 -1 -1 11 0.53 -1 -1 35708 -1 -1 70 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70048 22 19 1336 1219 1 919 116 16 16 256 mult_36 auto 30.5 MiB 0.43 5988 14780 3169 10176 1435 68.4 MiB 0.50 0.01 15.4691 -502.458 -15.4691 15.4691 0.69 0.00353865 0.00321576 0.205746 0.186904 60 13547 46 6.45408e+06 2.92304e+06 890343. 3477.90 9.48 1.22961 1.10694 26568 224354 -1 10822 18 5906 11528 997034 212689 13.6285 13.6285 -588.196 -13.6285 0 0 1.11577e+06 4358.47 0.33 0.39 0.28 -1 -1 0.33 0.164213 0.150284 512 783 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_17.v common 13.94 vpr 69.07 MiB 0.08 10152 -1 -1 11 0.59 -1 -1 36216 -1 -1 77 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70732 22 19 1446 1312 1 981 123 16 16 256 mult_36 auto 31.1 MiB 0.40 6289 16593 3435 11440 1718 69.1 MiB 0.56 0.01 14.6023 -516.745 -14.6023 14.6023 0.68 0.0037926 0.00344453 0.228916 0.208255 66 12898 22 6.45408e+06 3.01734e+06 974584. 3806.97 8.51 1.60231 1.43558 27588 246658 -1 10887 20 5514 10873 825256 188929 13.1832 13.1832 -602.54 -13.1832 0 0 1.22072e+06 4768.46 0.41 0.38 0.24 -1 -1 0.41 0.179247 0.162934 558 848 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_18.v common 13.22 vpr 69.92 MiB 0.07 10292 -1 -1 11 0.62 -1 -1 35972 -1 -1 79 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71596 22 19 1507 1373 1 1020 125 16 16 256 mult_36 auto 31.6 MiB 0.47 6726 16037 3280 11223 1534 69.9 MiB 0.56 0.01 14.4834 -543.036 -14.4834 14.4834 0.72 0.00403976 0.00366675 0.2261 0.20557 68 13928 32 6.45408e+06 3.04429e+06 1.00038e+06 3907.74 7.51 1.2378 1.10808 27844 252052 -1 11686 20 6201 12406 990131 213742 13.2267 13.2267 -690.745 -13.2267 0 0 1.24648e+06 4869.04 0.40 0.43 0.25 -1 -1 0.40 0.188951 0.171518 576 890 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_19.v common 13.62 vpr 69.93 MiB 0.13 10552 -1 -1 11 0.72 -1 -1 36080 -1 -1 80 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71604 22 19 1596 1445 1 1103 127 16 16 256 mult_36 auto 32.1 MiB 0.49 7348 16715 3403 11508 1804 69.9 MiB 0.60 0.01 14.8867 -546.505 -14.8867 14.8867 0.68 0.00435362 0.00396239 0.242812 0.220511 74 14383 47 6.45408e+06 3.45376e+06 1.07073e+06 4182.55 7.64 1.68407 1.50836 28864 273460 -1 12301 23 6003 11963 1225113 345124 13.7425 13.7425 -634.512 -13.7425 0 0 1.33358e+06 5209.30 0.40 0.54 0.27 -1 -1 0.40 0.224944 0.20452 615 938 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_20.v common 15.61 vpr 70.28 MiB 0.07 10608 -1 -1 11 0.75 -1 -1 36944 -1 -1 86 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71968 22 19 1656 1505 1 1131 133 16 16 256 mult_36 auto 32.4 MiB 0.53 7846 15049 2924 10833 1292 70.3 MiB 0.58 0.01 15.2396 -554.475 -15.2396 15.2396 0.68 0.00449997 0.00408259 0.229317 0.208696 78 14532 25 6.45408e+06 3.53459e+06 1.11577e+06 4358.47 9.48 1.87453 1.66874 29628 289086 -1 12993 20 6297 12615 1007204 216794 13.8209 13.8209 -719.959 -13.8209 0 0 1.40012e+06 5469.22 0.43 0.45 0.29 -1 -1 0.43 0.208675 0.189366 637 979 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_21.v common 13.18 vpr 70.94 MiB 0.14 10976 -1 -1 12 0.81 -1 -1 36964 -1 -1 91 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72644 22 19 1754 1586 1 1196 138 16 16 256 mult_36 auto 33.1 MiB 0.52 7990 15090 2622 11262 1206 70.9 MiB 0.55 0.01 15.6803 -617.052 -15.6803 15.6803 0.72 0.00477055 0.00429592 0.223226 0.202499 70 15670 41 6.45408e+06 3.60195e+06 1.02522e+06 4004.78 6.95 1.6969 1.5169 28352 262101 -1 13848 20 6781 13005 1123871 254420 14.4006 14.4006 -887.052 -14.4006 0 0 1.29210e+06 5047.26 0.39 0.49 0.26 -1 -1 0.39 0.22146 0.201158 662 1035 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_22.v common 14.80 vpr 71.18 MiB 0.10 11000 -1 -1 11 0.82 -1 -1 37816 -1 -1 97 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72888 22 19 1827 1659 1 1261 144 16 16 256 mult_36 auto 33.4 MiB 0.58 8682 12585 1999 9675 911 71.2 MiB 0.50 0.01 14.4771 -606.777 -14.4771 14.4771 0.70 0.00493102 0.00448143 0.189948 0.17233 74 17628 40 6.45408e+06 3.68278e+06 1.07073e+06 4182.55 8.47 1.86505 1.66642 28864 273460 -1 14632 18 7673 14950 1275962 280127 13.3561 13.3561 -716.782 -13.3561 0 0 1.33358e+06 5209.30 0.40 0.51 0.32 -1 -1 0.40 0.214658 0.195659 708 1089 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_23.v common 13.69 vpr 71.66 MiB 0.10 11320 -1 -1 12 0.84 -1 -1 38220 -1 -1 97 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73384 22 19 1905 1720 1 1293 145 18 18 324 mult_36 auto 33.8 MiB 0.58 9148 21425 4017 15587 1821 71.7 MiB 0.77 0.01 16.7814 -693.289 -16.7814 16.7814 0.92 0.00507533 0.00461416 0.306707 0.277423 72 18160 35 7.94662e+06 4.07878e+06 1.37338e+06 4238.83 6.48 1.57297 1.40899 36820 354972 -1 15344 17 6907 13721 1184988 258891 15.4142 15.4142 -835.99 -15.4142 0 0 1.72054e+06 5310.31 0.53 0.49 0.34 -1 -1 0.53 0.212543 0.193987 722 1124 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_24.v common 15.36 vpr 72.37 MiB 0.15 11412 -1 -1 12 0.91 -1 -1 36888 -1 -1 98 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74108 22 19 1979 1794 1 1336 146 18 18 324 mult_36 auto 34.6 MiB 0.57 8835 18962 3578 13867 1517 72.4 MiB 0.73 0.01 15.6002 -656.607 -15.6002 15.6002 0.91 0.00511339 0.00462928 0.284726 0.256526 70 16906 25 7.94662e+06 4.09226e+06 1.34436e+06 4149.26 8.09 1.89669 1.69773 36496 347204 -1 14857 18 7173 13718 1126372 251932 14.6043 14.6043 -914.656 -14.6043 0 0 1.69344e+06 5226.66 0.52 0.51 0.36 -1 -1 0.52 0.230832 0.210082 739 1179 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_25.v common 15.67 vpr 73.02 MiB 0.11 11816 -1 -1 12 0.99 -1 -1 37380 -1 -1 105 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74772 22 19 2073 1871 1 1394 153 18 18 324 mult_36 auto 35.4 MiB 0.59 9747 21012 4486 14783 1743 73.0 MiB 0.78 0.01 15.9811 -650.584 -15.9811 15.9811 0.93 0.00551704 0.00501391 0.311208 0.281529 74 19181 28 7.94662e+06 4.18656e+06 1.40368e+06 4332.34 7.86 1.77204 1.58665 37144 362180 -1 16561 25 7502 14567 1526972 396424 15.2351 15.2351 -948.371 -15.2351 0 0 1.74764e+06 5393.95 0.56 0.75 0.34 -1 -1 0.56 0.321157 0.292631 791 1232 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_26.v common 18.93 vpr 73.96 MiB 0.13 11884 -1 -1 12 1.45 -1 -1 37376 -1 -1 106 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75732 22 19 2130 1928 1 1451 154 18 18 324 mult_36 auto 36.0 MiB 0.70 10204 19518 3476 14463 1579 74.0 MiB 0.78 0.02 15.2934 -691.341 -15.2934 15.2934 0.92 0.00566394 0.00515417 0.306304 0.277137 78 18594 29 7.94662e+06 4.20003e+06 1.46313e+06 4515.82 10.15 2.17693 1.94635 38112 383040 -1 16631 19 8278 16241 1354684 288682 13.9932 13.9932 -860.935 -13.9932 0 0 1.83526e+06 5664.38 0.57 0.57 0.37 -1 -1 0.57 0.253015 0.230193 811 1270 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_27.v common 19.09 vpr 73.73 MiB 0.12 12108 -1 -1 12 1.36 -1 -1 37992 -1 -1 114 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75496 22 19 2238 2019 1 1541 163 18 18 324 mult_36 auto 36.2 MiB 0.84 11025 22858 4211 16623 2024 73.7 MiB 0.90 0.02 16.3551 -735.488 -16.3551 16.3551 1.24 0.00590853 0.00535699 0.338016 0.302593 76 21114 47 7.94662e+06 4.70381e+06 1.43297e+06 4422.75 9.85 2.20121 1.9685 37464 369264 -1 17850 18 8516 16298 1366025 295170 14.9675 14.9675 -881.208 -14.9675 0 0 1.77541e+06 5479.65 0.57 0.59 0.36 -1 -1 0.57 0.259545 0.236712 851 1323 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_28.v common 25.21 vpr 74.09 MiB 0.14 12312 -1 -1 12 1.18 -1 -1 38132 -1 -1 117 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75872 22 19 2299 2080 1 1575 166 18 18 324 mult_36 auto 36.6 MiB 0.75 10794 23422 4551 16955 1916 74.1 MiB 1.04 0.02 15.946 -732.667 -15.946 15.946 1.11 0.00564105 0.0050757 0.369585 0.331961 78 20079 29 7.94662e+06 4.74422e+06 1.46313e+06 4515.82 16.20 3.11145 2.76668 38112 383040 -1 17907 18 9336 18256 1527559 324376 14.7451 14.7451 -981.151 -14.7451 0 0 1.83526e+06 5664.38 0.58 0.71 0.37 -1 -1 0.58 0.28519 0.25903 874 1365 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_29.v common 25.19 vpr 74.97 MiB 0.10 12460 -1 -1 12 1.19 -1 -1 38848 -1 -1 121 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76768 22 19 2400 2164 1 1649 171 22 22 484 mult_36 auto 37.1 MiB 0.72 11709 28137 5812 19993 2332 75.0 MiB 1.14 0.02 15.3214 -777.403 -15.3214 15.3214 1.79 0.00599311 0.00547182 0.428911 0.384257 74 23883 36 1.29336e+07 5.19411e+06 2.15943e+06 4461.62 14.23 2.42065 2.17052 56202 562081 -1 20484 24 9805 18861 1973610 438335 14.0212 14.0212 -1043.93 -14.0212 0 0 2.68771e+06 5553.12 1.02 0.86 0.53 -1 -1 1.02 0.352613 0.320733 915 1415 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_30.v common 115.34 vpr 75.45 MiB 0.18 12724 -1 -1 12 1.26 -1 -1 38180 -1 -1 127 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77256 22 19 2474 2238 1 1692 177 22 22 484 mult_36 auto 37.5 MiB 0.68 11907 26961 5348 19369 2244 75.4 MiB 1.16 0.02 15.2789 -855.312 -15.2789 15.2789 1.65 0.00612403 0.00556829 0.450459 0.393731 70 24231 42 1.29336e+07 5.27494e+06 2.06816e+06 4273.05 104.46 4.50425 3.96954 55234 538945 -1 20580 19 11208 21825 2041793 427284 14.0646 14.0646 -1208.44 -14.0646 0 0 2.60483e+06 5381.88 0.94 0.78 0.50 -1 -1 0.94 0.298064 0.269819 947 1470 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_31.v common 25.38 vpr 76.46 MiB 0.18 12972 -1 -1 12 1.34 -1 -1 39808 -1 -1 137 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78300 22 19 2603 2350 1 1765 187 22 22 484 mult_36 auto 38.5 MiB 0.75 12262 31159 6432 22219 2508 76.5 MiB 1.30 0.02 16.1203 -785.932 -16.1203 16.1203 1.74 0.00610003 0.00545636 0.501665 0.436193 68 25196 45 1.29336e+07 5.40966e+06 2.01763e+06 4168.66 14.15 2.45032 2.18839 54270 517931 -1 20695 21 10470 20411 1826849 392287 14.5952 14.5952 -1200.15 -14.5952 0 0 2.51205e+06 5190.18 0.88 0.82 0.49 -1 -1 0.88 0.349907 0.319857 1001 1549 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_32.v common 22.96 vpr 76.41 MiB 0.19 13044 -1 -1 12 1.33 -1 -1 38744 -1 -1 141 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78240 22 19 2694 2441 1 1849 191 22 22 484 mult_36 auto 39.1 MiB 0.76 12941 28739 5515 21062 2162 76.4 MiB 1.07 0.02 16.1727 -911.506 -16.1727 16.1727 1.46 0.00709642 0.00642381 0.406837 0.366138 74 24735 34 1.29336e+07 5.46355e+06 2.15943e+06 4461.62 12.26 2.36346 2.1299 56202 562081 -1 21368 18 10183 19389 1708612 353718 14.5728 14.5728 -1178.82 -14.5728 0 0 2.68771e+06 5553.12 0.90 0.72 0.52 -1 -1 0.90 0.313403 0.286335 1040 1621 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_33.v common 28.33 vpr 76.95 MiB 0.23 13648 -1 -1 13 1.48 -1 -1 39888 -1 -1 140 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78796 22 19 2787 2517 1 1916 191 22 22 484 mult_36 auto 39.8 MiB 0.78 13465 35327 7716 24810 2801 76.9 MiB 1.34 0.02 16.2303 -861.433 -16.2303 16.2303 1.53 0.00722275 0.0066535 0.51938 0.465886 72 28617 47 1.29336e+07 5.84608e+06 2.11301e+06 4365.72 16.86 3.10452 2.7818 55718 550791 -1 22968 20 11049 21354 1933552 406347 15.1021 15.1021 -1245.64 -15.1021 0 0 2.64603e+06 5467.00 0.91 0.82 0.56 -1 -1 0.91 0.348317 0.317089 1070 1664 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_34.v common 33.88 vpr 91.44 MiB 0.13 13696 -1 -1 13 1.69 -1 -1 38848 -1 -1 142 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93636 22 19 2834 2564 1 1944 193 22 22 484 mult_36 auto 39.5 MiB 0.82 13469 30271 5714 22234 2323 76.9 MiB 1.18 0.02 16.0453 -909.324 -16.0453 16.0453 1.51 0.00734135 0.00665643 0.448739 0.402102 88 23376 21 1.29336e+07 5.87302e+06 2.51205e+06 5190.18 21.75 3.1979 2.84793 60546 662757 -1 21447 20 10514 20484 1734987 361279 14.7408 14.7408 -1302.44 -14.7408 0 0 3.12290e+06 6452.27 1.59 0.79 0.65 -1 -1 1.59 0.357347 0.327688 1084 1692 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_35.v common 33.51 vpr 84.49 MiB 0.16 14024 -1 -1 13 1.54 -1 -1 40460 -1 -1 150 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86520 22 19 2941 2654 1 2012 201 22 22 484 mult_36 auto 40.1 MiB 0.92 14333 34893 6946 25294 2653 77.5 MiB 1.35 0.02 16.6518 -906.845 -16.6518 16.6518 1.50 0.00771063 0.00698839 0.508414 0.456583 84 25918 26 1.29336e+07 5.9808e+06 2.40101e+06 4960.76 21.54 3.90416 3.48836 59582 640177 -1 22484 20 10291 19738 1555925 325659 15.3638 15.3638 -1059.3 -15.3638 0 0 3.03951e+06 6279.99 1.22 0.83 0.64 -1 -1 1.22 0.377625 0.346935 1131 1750 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_36.v common 104.17 vpr 78.15 MiB 0.15 14164 -1 -1 13 1.69 -1 -1 40660 -1 -1 153 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80028 22 19 3011 2724 1 2050 204 22 22 484 mult_36 auto 40.8 MiB 0.91 14333 33204 6759 24067 2378 78.2 MiB 1.31 0.02 16.0901 -925.304 -16.0901 16.0901 1.54 0.00775424 0.00701376 0.492869 0.440859 76 28442 48 1.29336e+07 6.02122e+06 2.20457e+06 4554.90 91.77 5.49768 4.88846 56682 573177 -1 23842 28 12073 23670 2540531 638646 14.9173 14.9173 -1511.95 -14.9173 0 0 2.73077e+06 5642.09 1.00 1.19 0.55 -1 -1 1.00 0.495584 0.448092 1168 1801 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_37.v common 42.22 vpr 96.56 MiB 0.21 14428 -1 -1 13 1.67 -1 -1 39628 -1 -1 158 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98876 22 19 3132 2828 1 2123 210 24 24 576 mult_36 auto 41.3 MiB 0.95 16072 33282 6623 24362 2297 78.5 MiB 1.28 0.02 16.4965 -1047.3 -16.4965 16.4965 1.87 0.00804989 0.00729218 0.48557 0.435192 80 28099 43 1.56141e+07 6.48458e+06 2.72095e+06 4723.87 27.98 4.4373 3.96091 68798 719145 -1 24743 19 11538 21936 2036930 411178 15.1133 15.1133 -1392.4 -15.1133 0 0 3.41546e+06 5929.62 1.78 0.96 0.90 -1 -1 1.78 0.398478 0.36252 1192 1872 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_38.v common 31.12 vpr 80.66 MiB 0.22 14704 -1 -1 13 1.78 -1 -1 41208 -1 -1 160 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82600 22 19 3159 2855 1 2172 212 24 24 576 mult_36 auto 41.6 MiB 0.91 15400 37441 7616 27633 2192 78.7 MiB 1.49 0.02 16.6277 -1074.04 -16.6277 16.6277 2.03 0.00820937 0.00744248 0.560994 0.500915 72 31514 49 1.56141e+07 6.51152e+06 2.50747e+06 4353.24 17.65 2.89091 2.57864 65922 653303 -1 25605 20 12401 23528 2242204 463472 15.3358 15.3358 -1479.25 -15.3358 0 0 3.14081e+06 5452.80 1.12 0.96 0.64 -1 -1 1.12 0.406272 0.369537 1207 1880 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_39.v common 36.15 vpr 95.03 MiB 0.14 14880 -1 -1 13 1.86 -1 -1 39820 -1 -1 169 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97308 22 19 3284 2963 1 2259 221 24 24 576 mult_36 auto 42.1 MiB 0.99 15993 38907 8122 28363 2422 79.4 MiB 1.58 0.02 17.5627 -1048.03 -17.5627 17.5627 1.92 0.00869342 0.00803954 0.60321 0.540584 76 30113 42 1.56141e+07 6.63277e+06 2.61600e+06 4541.67 22.65 4.21902 3.75403 67070 679911 -1 25981 19 11896 23197 1973836 423116 16.2556 16.2556 -1391.29 -16.2556 0 0 3.24203e+06 5628.53 1.15 0.89 0.62 -1 -1 1.15 0.396434 0.360051 1267 1957 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_40.v common 31.94 vpr 80.81 MiB 0.23 14976 -1 -1 13 2.01 -1 -1 40008 -1 -1 169 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82752 22 19 3343 3022 1 2282 221 24 24 576 mult_36 auto 42.7 MiB 1.03 15990 43576 9973 30398 3205 79.9 MiB 1.78 0.03 16.4294 -969.621 -16.4294 16.4294 1.97 0.0076462 0.00687074 0.651171 0.572585 76 30952 33 1.56141e+07 6.63277e+06 2.61600e+06 4541.67 17.59 3.35284 2.97238 67070 679911 -1 26278 19 12991 25311 2114866 467584 15.2497 15.2497 -1454.29 -15.2497 0 0 3.24203e+06 5628.53 1.21 0.94 0.63 -1 -1 1.21 0.403956 0.366143 1284 1997 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_41.v common 30.61 vpr 83.10 MiB 0.20 15308 -1 -1 13 1.96 -1 -1 41996 -1 -1 175 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85092 22 19 3448 3110 1 2364 228 24 24 576 mult_36 auto 43.2 MiB 1.00 17394 37812 7382 28088 2342 80.4 MiB 1.54 0.03 16.1075 -1051.7 -16.1075 16.1075 1.96 0.0091916 0.00816496 0.565664 0.501554 84 32424 25 1.56141e+07 7.1096e+06 2.84938e+06 4946.85 16.36 3.19596 2.84616 70522 759407 -1 27143 20 13181 25847 2232179 458376 14.6701 14.6701 -1704.48 -14.6701 0 0 3.60864e+06 6265.01 1.29 0.99 0.70 -1 -1 1.29 0.433358 0.393163 1333 2054 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_42.v common 41.54 vpr 99.73 MiB 0.25 15420 -1 -1 13 2.01 -1 -1 40536 -1 -1 179 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102124 22 19 3510 3172 1 2403 232 24 24 576 mult_36 auto 43.9 MiB 1.00 17180 40816 8418 29993 2405 81.9 MiB 1.65 0.03 16.1912 -1016.75 -16.1912 16.1912 1.92 0.00943541 0.00811199 0.601842 0.534003 78 31825 33 1.56141e+07 7.16349e+06 2.67122e+06 4637.53 27.12 4.50062 4.01776 68222 705597 -1 28178 20 13315 25658 2235495 474011 14.82 14.82 -1393.15 -14.82 0 0 3.35110e+06 5817.88 1.20 0.99 0.69 -1 -1 1.20 0.436056 0.396785 1352 2097 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_43.v common 42.95 vpr 100.11 MiB 0.25 15636 -1 -1 13 2.06 -1 -1 38528 -1 -1 182 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102508 22 19 3598 3243 1 2469 235 24 24 576 mult_36 auto 44.1 MiB 1.10 18304 36435 6715 27575 2145 81.2 MiB 1.44 0.03 16.7224 -1137.41 -16.7224 16.7224 1.83 0.00950788 0.00861486 0.535366 0.479578 88 30863 23 1.56141e+07 7.2039e+06 2.98162e+06 5176.42 28.48 4.58797 4.09861 71670 786159 -1 28269 19 12789 25360 2127309 449806 15.2028 15.2028 -1535.9 -15.2028 0 0 3.70823e+06 6437.90 1.38 0.98 0.73 -1 -1 1.38 0.439993 0.39998 1391 2138 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_44.v common 36.66 vpr 82.73 MiB 0.25 15820 -1 -1 13 2.37 -1 -1 42648 -1 -1 189 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84712 22 19 3689 3334 1 2527 242 24 24 576 mult_36 auto 44.7 MiB 1.02 17450 43163 8464 32497 2202 82.7 MiB 1.75 0.03 15.8215 -1053.59 -15.8215 15.8215 1.87 0.00966782 0.00877291 0.625764 0.558675 78 32864 35 1.56141e+07 7.29821e+06 2.67122e+06 4637.53 21.24 3.9983 3.56033 68222 705597 -1 29085 22 13883 27525 2405573 500719 14.7058 14.7058 -1423.85 -14.7058 0 0 3.35110e+06 5817.88 1.52 1.21 0.75 -1 -1 1.52 0.550453 0.505497 1433 2210 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_45.v common 39.42 vpr 84.47 MiB 0.26 15984 -1 -1 13 2.55 -1 -1 38912 -1 -1 191 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86500 22 19 3763 3391 1 2591 245 24 24 576 mult_36 auto 45.2 MiB 1.38 18844 45439 9758 33174 2507 83.1 MiB 1.80 0.03 16.1092 -1223.71 -16.1092 16.1092 2.12 0.00991911 0.00879704 0.648735 0.576618 80 34440 28 1.56141e+07 7.72115e+06 2.72095e+06 4723.87 23.11 3.98395 3.54367 68798 719145 -1 29823 19 14053 27150 2539938 517717 14.6981 14.6981 -1643.43 -14.6981 0 0 3.41546e+06 5929.62 1.30 1.13 0.66 -1 -1 1.30 0.475454 0.434477 1453 2234 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_46.v common 37.03 vpr 88.12 MiB 0.19 16252 -1 -1 13 2.33 -1 -1 42536 -1 -1 195 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 90236 22 19 3845 3473 1 2635 249 24 24 576 mult_36 auto 46.0 MiB 1.28 19078 44880 9246 33148 2486 83.8 MiB 1.84 0.03 16.4066 -1156.75 -16.4066 16.4066 1.88 0.00981128 0.00888823 0.6433 0.571552 76 38277 49 1.56141e+07 7.77504e+06 2.61600e+06 4541.67 21.50 4.07744 3.62204 67070 679911 -1 31279 21 14604 28625 2614110 539811 15.1678 15.1678 -1537.76 -15.1678 0 0 3.24203e+06 5628.53 1.18 1.18 0.64 -1 -1 1.18 0.511052 0.464385 1482 2297 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_47.v common 40.44 vpr 85.01 MiB 0.26 16648 -1 -1 13 2.49 -1 -1 42600 -1 -1 206 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87052 22 19 3983 3594 1 2724 260 24 24 576 mult_36 auto 46.7 MiB 1.29 19564 47513 9947 35207 2359 84.8 MiB 2.07 0.03 16.197 -1214.31 -16.197 16.197 1.91 0.0103002 0.00930994 0.731318 0.63829 78 35422 40 1.56141e+07 7.92323e+06 2.67122e+06 4637.53 24.08 4.49553 3.97299 68222 705597 -1 31712 20 14679 29149 2638098 545103 14.8312 14.8312 -1689.11 -14.8312 0 0 3.35110e+06 5817.88 1.25 1.19 0.69 -1 -1 1.25 0.514723 0.469525 1559 2386 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_48.v common 48.69 vpr 103.20 MiB 0.23 16920 -1 -1 13 2.70 -1 -1 38980 -1 -1 202 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105676 22 19 4025 3636 1 2760 256 24 24 576 mult_36 auto 46.6 MiB 1.14 19865 44104 8235 32908 2961 84.7 MiB 1.82 0.03 16.5555 -1237.6 -16.5555 16.5555 1.83 0.0106454 0.00938154 0.636794 0.566158 80 34964 32 1.56141e+07 7.86934e+06 2.72095e+06 4723.87 31.70 5.58405 4.95092 68798 719145 -1 31055 19 14926 29473 2357968 493685 15.3246 15.3246 -1886.04 -15.3246 0 0 3.41546e+06 5929.62 1.39 1.15 0.82 -1 -1 1.39 0.502736 0.456104 1547 2409 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_49.v common 35.00 vpr 86.87 MiB 0.30 17224 -1 -1 13 2.67 -1 -1 39336 -1 -1 213 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88956 22 19 4164 3758 1 2857 268 24 24 576 mult_36 auto 48.0 MiB 1.26 20771 46007 8890 34471 2646 84.7 MiB 1.89 0.03 17.0529 -1256.54 -17.0529 17.0529 2.70 0.0108775 0.0098649 0.671756 0.598882 82 37329 31 1.56141e+07 8.41354e+06 2.78508e+06 4835.20 18.38 4.38845 3.90838 69370 733739 -1 32313 17 14152 27191 2278999 483397 15.8336 15.8336 -1741.68 -15.8336 0 0 3.48632e+06 6052.64 1.29 1.04 0.68 -1 -1 1.29 0.46722 0.426463 1622 2498 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_50.v common 50.20 vpr 104.60 MiB 0.29 17200 -1 -1 13 2.63 -1 -1 39168 -1 -1 212 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 107108 22 19 4190 3784 1 2864 267 24 24 576 mult_36 auto 48.3 MiB 1.23 20719 47512 9780 35035 2697 85.9 MiB 2.01 0.03 16.5956 -1264.91 -16.5956 16.5956 2.49 0.0106191 0.0097618 0.725692 0.648399 80 37198 33 1.56141e+07 8.40006e+06 2.72095e+06 4723.87 33.09 5.93602 5.28955 68798 719145 -1 32760 21 15413 30452 2837390 559448 15.403 15.403 -1780.07 -15.403 0 0 3.41546e+06 5929.62 1.42 1.28 0.66 -1 -1 1.42 0.574448 0.524818 1618 2505 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_51.v common 46.99 vpr 107.77 MiB 0.25 17488 -1 -1 13 2.74 -1 -1 43488 -1 -1 216 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 110352 22 19 4305 3882 1 2950 271 24 24 576 mult_36 auto 48.8 MiB 1.27 21440 51079 10257 37415 3407 86.5 MiB 2.19 0.03 16.714 -1309.99 -16.714 16.714 2.60 0.0109961 0.00996674 0.730513 0.647643 84 38763 39 1.56141e+07 8.45395e+06 2.84938e+06 4946.85 29.53 5.48423 4.89653 70522 759407 -1 32428 20 15429 30918 2308593 493125 15.4073 15.4073 -1971.83 -15.4073 0 0 3.60864e+06 6265.01 1.36 1.17 0.73 -1 -1 1.36 0.553978 0.504952 1666 2571 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_52.v common 52.81 vpr 114.72 MiB 0.24 17768 -1 -1 13 2.96 -1 -1 39812 -1 -1 227 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 117476 22 19 4363 3940 1 3005 282 24 24 576 mult_36 auto 49.2 MiB 1.39 21730 54798 11168 40568 3062 86.9 MiB 2.26 0.03 17.192 -1314.04 -17.192 17.192 2.76 0.0112846 0.0102195 0.762881 0.674531 84 38697 41 1.56141e+07 8.60214e+06 2.84938e+06 4946.85 34.46 6.3173 5.58542 70522 759407 -1 33367 20 15703 30464 2340147 493397 15.7005 15.7005 -2117.86 -15.7005 0 0 3.60864e+06 6265.01 1.37 1.25 0.71 -1 -1 1.37 0.586033 0.530189 1697 2610 -1 -1 -1 -1 -k6_frac_ripple_N8_22nm.xml fir_pipe_14.v common 12.60 vpr 70.74 MiB 0.08 10500 -1 -1 1 0.23 -1 -1 35580 -1 -1 81 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72436 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 32.8 MiB 0.42 5707 14616 2612 9996 2008 70.7 MiB 0.58 0.01 4.27196 -1191.29 -4.27196 4.27196 0.71 0.00362092 0.00322572 0.197333 0.177154 60 9610 24 6.52434e+06 2.71588e+06 890343. 3477.90 7.29 1.62864 1.43774 27128 224764 -1 8185 17 3699 4190 423433 108714 4.39726 4.39726 -1140.75 -4.39726 0 0 1.11577e+06 4358.47 0.35 0.28 0.33 -1 -1 0.35 0.165097 0.148489 605 649 247 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_15.v common 12.00 vpr 71.70 MiB 0.12 10852 -1 -1 1 0.21 -1 -1 36912 -1 -1 88 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73420 22 19 2144 1789 1 1119 134 16 16 256 mult_36 auto 33.6 MiB 0.43 6078 18944 3753 12931 2260 71.7 MiB 0.76 0.01 4.22492 -1354.66 -4.22492 4.22492 0.71 0.00413521 0.00370395 0.248019 0.222369 58 10904 20 6.52434e+06 3.20969e+06 871168. 3403.00 6.66 1.50331 1.32519 26872 219187 -1 9500 16 4135 4897 496261 124326 4.29396 4.29396 -1391.71 -4.29396 0 0 1.09288e+06 4269.05 0.35 0.29 0.21 -1 -1 0.35 0.165473 0.15004 654 704 266 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_16.v common 10.36 vpr 72.01 MiB 0.11 10964 -1 -1 1 0.24 -1 -1 36920 -1 -1 91 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73740 22 19 2218 1846 1 1161 137 16 16 256 mult_36 auto 34.0 MiB 0.48 6793 19199 3651 12642 2906 72.0 MiB 0.75 0.01 4.29396 -1376.37 -4.29396 4.29396 0.70 0.00430525 0.00384631 0.249823 0.22394 56 12610 23 6.52434e+06 3.25161e+06 849745. 3319.32 4.91 1.40494 1.23965 26364 208198 -1 10765 21 4657 5400 648059 162428 4.52256 4.52256 -1436.25 -4.52256 0 0 1.04740e+06 4091.43 0.32 0.38 0.21 -1 -1 0.32 0.209652 0.188251 683 723 285 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_17.v common 10.54 vpr 73.37 MiB 0.09 11904 -1 -1 1 0.28 -1 -1 36612 -1 -1 103 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75128 22 19 2536 2130 1 1274 149 16 16 256 mult_36 auto 35.4 MiB 0.55 7563 19849 3721 13396 2732 73.4 MiB 0.80 0.01 4.29396 -1555.03 -4.29396 4.29396 0.70 0.0047578 0.00424546 0.262179 0.23436 54 14934 45 6.52434e+06 3.4193e+06 829453. 3240.05 4.89 1.58307 1.39736 26108 202796 -1 11220 19 5009 5929 575456 150599 4.29396 4.29396 -1585.29 -4.29396 0 0 1.02522e+06 4004.78 0.31 0.39 0.16 -1 -1 0.31 0.22944 0.207883 770 851 304 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_18.v common 13.75 vpr 73.82 MiB 0.09 11852 -1 -1 1 0.31 -1 -1 37244 -1 -1 107 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75596 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 35.9 MiB 0.54 7580 22648 4139 15538 2971 73.8 MiB 0.92 0.02 4.22437 -1603.12 -4.22437 4.22437 0.71 0.00487685 0.00434746 0.297399 0.266234 56 14991 32 6.52434e+06 3.47519e+06 849745. 3319.32 7.45 1.83891 1.61984 26364 208198 -1 12118 24 5442 6385 763550 186400 5.14906 5.14906 -1681.4 -5.14906 0 0 1.04740e+06 4091.43 0.32 0.47 0.20 -1 -1 0.32 0.268099 0.239276 798 870 323 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_19.v common 12.73 vpr 74.71 MiB 0.08 12220 -1 -1 1 0.36 -1 -1 36832 -1 -1 113 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76504 22 19 2778 2321 1 1410 160 16 16 256 mult_36 auto 37.0 MiB 0.61 8169 22294 4065 14927 3302 74.7 MiB 0.94 0.02 4.2304 -1681.23 -4.2304 4.2304 0.69 0.00554343 0.0049623 0.301267 0.269493 58 14770 47 6.52434e+06 3.95503e+06 871168. 3403.00 6.19 1.76212 1.55073 26872 219187 -1 12035 18 5167 5841 646056 165802 4.29396 4.29396 -1705.82 -4.29396 0 0 1.09288e+06 4269.05 0.40 0.38 0.21 -1 -1 0.40 0.221543 0.198544 846 925 342 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_20.v common 17.12 vpr 75.66 MiB 0.12 12404 -1 -1 1 0.39 -1 -1 36936 -1 -1 118 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77472 22 19 2852 2378 1 1454 165 16 16 256 mult_36 auto 37.5 MiB 0.67 8808 21861 3843 15034 2984 75.7 MiB 0.90 0.02 4.28986 -1739.48 -4.28986 4.28986 0.76 0.00537901 0.00479796 0.284204 0.254098 60 14824 27 6.52434e+06 4.0249e+06 890343. 3477.90 10.83 2.42221 2.13192 27128 224764 -1 12480 16 5276 6100 595745 151457 4.41926 4.41926 -1762.84 -4.41926 0 0 1.11577e+06 4358.47 0.36 0.36 0.22 -1 -1 0.36 0.210673 0.192991 875 944 361 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_21.v common 12.97 vpr 75.95 MiB 0.11 12808 -1 -1 1 0.37 -1 -1 37892 -1 -1 122 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77768 22 19 3057 2549 1 1559 169 16 16 256 mult_36 auto 38.1 MiB 0.70 9015 24920 4571 15619 4730 75.9 MiB 1.09 0.02 4.20237 -1905.04 -4.20237 4.20237 0.72 0.00588898 0.0052545 0.349692 0.312596 60 16024 44 6.52434e+06 4.0808e+06 890343. 3477.90 6.34 1.92285 1.69391 27128 224764 -1 13134 16 5600 6594 636756 160290 4.29396 4.29396 -1928.97 -4.29396 0 0 1.11577e+06 4358.47 0.34 0.38 0.22 -1 -1 0.34 0.226866 0.204383 932 1017 380 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_22.v common 19.05 vpr 76.38 MiB 0.16 13088 -1 -1 1 0.35 -1 -1 38088 -1 -1 125 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78208 22 19 3131 2606 1 1599 172 16 16 256 mult_36 auto 38.6 MiB 0.60 9644 27896 4964 18195 4737 76.4 MiB 1.23 0.02 4.09962 -1964.96 -4.09962 4.09962 0.80 0.00611473 0.00542615 0.379087 0.335614 66 17711 35 6.52434e+06 4.12272e+06 974584. 3806.97 11.96 2.80697 2.46794 28148 247068 -1 13707 17 5831 6659 781116 185151 4.29396 4.29396 -1959.31 -4.29396 0 0 1.22072e+06 4768.46 0.47 0.43 0.24 -1 -1 0.47 0.24787 0.223643 961 1036 399 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_23.v common 19.47 vpr 77.13 MiB 0.15 13468 -1 -1 1 0.38 -1 -1 37804 -1 -1 133 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78984 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 39.4 MiB 0.71 10087 30330 5799 21301 3230 77.1 MiB 1.29 0.02 4.29396 -2075.2 -4.29396 4.29396 0.94 0.00625865 0.00557228 0.40312 0.359865 60 18320 28 8.04299e+06 4.63052e+06 1.16833e+06 3605.96 11.65 2.80171 2.46399 35004 297736 -1 15010 17 6849 7695 873963 206522 4.29396 4.29396 -2095.97 -4.29396 0 0 1.46313e+06 4515.82 0.49 0.47 0.28 -1 -1 0.49 0.258722 0.233117 1012 1091 418 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_24.v common 16.07 vpr 77.49 MiB 0.16 13420 -1 -1 1 0.38 -1 -1 38120 -1 -1 137 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79352 22 19 3375 2799 1 1743 185 18 18 324 mult_36 auto 39.8 MiB 0.79 10300 29115 5219 20674 3222 77.5 MiB 1.36 0.02 4.22437 -2073.88 -4.22437 4.22437 0.94 0.00638202 0.00569795 0.392331 0.351465 58 18565 31 8.04299e+06 4.68641e+06 1.14310e+06 3528.09 8.01 2.01068 1.77339 34680 290288 -1 15595 17 6816 7782 901255 220455 4.29396 4.29396 -2160.36 -4.29396 0 0 1.43297e+06 4422.75 0.46 0.48 0.29 -1 -1 0.46 0.263504 0.237282 1041 1110 437 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_25.v common 16.35 vpr 78.42 MiB 0.13 13920 -1 -1 1 0.43 -1 -1 38068 -1 -1 146 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80300 22 19 3615 3005 1 1847 194 18 18 324 mult_36 auto 40.8 MiB 0.76 10975 29927 5204 21640 3083 78.4 MiB 1.32 0.02 4.29396 -2273.15 -4.29396 4.29396 0.94 0.00681803 0.00607217 0.404898 0.361135 58 20078 36 8.04299e+06 4.81218e+06 1.14310e+06 3528.09 8.10 2.44569 2.15077 34680 290288 -1 16168 17 7089 8219 904291 224983 4.41926 4.41926 -2410.63 -4.41926 0 0 1.43297e+06 4422.75 0.46 0.54 0.29 -1 -1 0.46 0.303171 0.273998 1107 1201 456 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_26.v common 16.49 vpr 78.98 MiB 0.11 14116 -1 -1 1 0.46 -1 -1 38400 -1 -1 148 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80872 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 41.1 MiB 0.80 10816 33767 6403 23789 3575 79.0 MiB 1.59 0.03 4.09962 -2289.16 -4.09962 4.09962 0.94 0.0071237 0.0062438 0.470466 0.417032 60 19765 47 8.04299e+06 4.84013e+06 1.16833e+06 3605.96 8.25 2.39104 2.09943 35004 297736 -1 15783 16 6853 7919 833754 202360 4.41926 4.41926 -2402.93 -4.41926 0 0 1.46313e+06 4515.82 0.46 0.48 0.29 -1 -1 0.46 0.271922 0.244925 1135 1220 475 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_27.v common 15.57 vpr 80.27 MiB 0.26 14408 -1 -1 1 0.46 -1 -1 38300 -1 -1 156 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82192 22 19 3871 3210 1 1998 205 18 18 324 mult_36 auto 42.5 MiB 0.84 12132 28593 4296 20787 3510 80.3 MiB 1.32 0.03 4.41926 -2393.12 -4.41926 4.41926 0.95 0.00729505 0.00653513 0.390081 0.34819 64 20586 19 8.04299e+06 5.34793e+06 1.23838e+06 3822.15 7.09 2.35122 2.07463 35972 318676 -1 17280 19 7116 8295 869286 210992 4.41926 4.41926 -2474.76 -4.41926 0 0 1.56068e+06 4816.91 0.56 0.55 0.31 -1 -1 0.56 0.325718 0.292122 1191 1275 494 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_28.v common 17.95 vpr 80.37 MiB 0.19 14552 -1 -1 1 0.44 -1 -1 38560 -1 -1 160 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82296 22 19 3945 3267 1 2043 209 18 18 324 mult_36 auto 42.6 MiB 0.86 12721 34929 5952 24376 4601 80.4 MiB 1.52 0.03 4.26697 -2429.16 -4.26697 4.26697 0.94 0.00741866 0.00662054 0.453309 0.404577 60 21797 48 8.04299e+06 5.40382e+06 1.16833e+06 3605.96 8.24 2.90111 2.55028 35004 297736 -1 18182 20 8118 9346 1020381 253908 4.41926 4.41926 -2516.38 -4.41926 0 0 1.46313e+06 4515.82 0.48 0.60 0.28 -1 -1 0.48 0.334724 0.302496 1219 1294 513 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_29.v common 23.55 vpr 81.59 MiB 0.22 15088 -1 -1 1 0.46 -1 -1 39568 -1 -1 170 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83544 22 19 4159 3447 1 2157 220 22 22 484 mult_36 auto 43.9 MiB 0.88 13597 41989 8196 30469 3324 81.6 MiB 1.80 0.03 4.16866 -2687.48 -4.16866 4.16866 1.55 0.00784712 0.00700074 0.52798 0.468802 56 27289 30 1.30842e+07 5.93957e+06 1.71605e+06 3545.56 11.94 2.89187 2.54279 51606 428054 -1 21919 20 9434 11001 1516906 343088 4.52256 4.52256 -2855.36 -4.52256 0 0 2.11301e+06 4365.72 0.77 0.77 0.40 -1 -1 0.77 0.406731 0.367347 1283 1367 532 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_30.v common 23.94 vpr 82.74 MiB 0.18 15128 -1 -1 1 0.57 -1 -1 40816 -1 -1 173 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84728 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 44.2 MiB 1.03 14316 43487 8493 30718 4276 82.7 MiB 1.99 0.03 4.41926 -2750.54 -4.41926 4.41926 1.52 0.00781634 0.00695303 0.564649 0.502132 58 27441 46 1.30842e+07 5.98149e+06 1.75961e+06 3635.55 11.96 2.79862 2.46501 52570 450426 -1 21701 17 9112 10561 1278143 292476 4.54456 4.54456 -2870.39 -4.54456 0 0 2.20457e+06 4554.90 0.77 0.66 0.46 -1 -1 0.77 0.342114 0.307331 1311 1386 551 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_31.v common 27.60 vpr 83.71 MiB 0.19 15608 -1 -1 1 0.55 -1 -1 40872 -1 -1 179 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85724 22 19 4410 3647 1 2304 229 22 22 484 mult_36 auto 45.1 MiB 0.95 14559 42929 8301 31079 3549 83.7 MiB 1.94 0.03 4.54456 -2849.05 -4.54456 4.54456 1.51 0.00839327 0.00747603 0.555947 0.494878 60 26138 29 1.30842e+07 6.06533e+06 1.79840e+06 3715.71 15.34 3.41498 3.00974 53054 462096 -1 21367 18 8865 10303 1128192 264808 4.54456 4.54456 -2991.12 -4.54456 0 0 2.25108e+06 4650.99 0.77 0.65 0.44 -1 -1 0.77 0.361417 0.324723 1363 1441 570 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_32.v common 24.01 vpr 82.95 MiB 0.20 15604 -1 -1 1 0.52 -1 -1 40512 -1 -1 183 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84944 22 19 4484 3704 1 2346 233 22 22 484 mult_36 auto 45.3 MiB 0.95 14169 51069 10204 36498 4367 83.0 MiB 2.34 0.03 4.35562 -2870.14 -4.35562 4.35562 1.61 0.00856569 0.00758184 0.655665 0.585624 58 28562 42 1.30842e+07 6.12123e+06 1.75961e+06 3635.55 12.28 2.97627 2.62407 52570 450426 -1 21935 18 9198 10981 1225293 282955 4.41926 4.41926 -3046.59 -4.41926 0 0 2.20457e+06 4554.90 0.75 0.73 0.43 -1 -1 0.75 0.394794 0.354957 1393 1460 589 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_33.v common 27.61 vpr 85.36 MiB 0.25 16668 -1 -1 1 0.62 -1 -1 41596 -1 -1 196 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87412 22 19 4843 4029 1 2462 247 22 22 484 mult_36 auto 46.9 MiB 1.00 15624 49783 9117 36437 4229 85.4 MiB 2.28 0.04 4.64786 -3017.99 -4.64786 4.64786 1.58 0.00896 0.00795191 0.626951 0.559088 60 29459 48 1.30842e+07 6.6989e+06 1.79840e+06 3715.71 15.68 3.20912 2.82754 53054 462096 -1 23118 17 9322 10866 1279018 283870 4.54456 4.54456 -3177.97 -4.54456 0 0 2.25108e+06 4650.99 0.77 0.70 0.43 -1 -1 0.77 0.388806 0.350115 1490 1606 608 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_34.v common 30.83 vpr 87.03 MiB 0.19 16796 -1 -1 1 0.67 -1 -1 41572 -1 -1 199 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89116 22 19 4917 4086 1 2503 250 22 22 484 mult_36 auto 47.4 MiB 0.99 16182 52192 10276 36322 5594 84.9 MiB 2.36 0.03 4.41926 -3092.45 -4.41926 4.41926 1.61 0.00907153 0.00813393 0.674739 0.603024 64 28538 36 1.30842e+07 6.74082e+06 1.90554e+06 3937.06 18.38 4.31934 3.8058 54502 494576 -1 22667 18 8811 10602 1146289 263961 4.54456 4.54456 -3188.99 -4.54456 0 0 2.40101e+06 4960.76 0.81 0.68 0.45 -1 -1 0.81 0.397885 0.357216 1519 1625 627 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_35.v common 23.38 vpr 85.71 MiB 0.20 17040 -1 -1 1 0.67 -1 -1 41916 -1 -1 207 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87764 22 19 5093 4228 1 2606 258 22 22 484 mult_36 auto 48.2 MiB 1.01 15281 55265 10444 39810 5011 85.7 MiB 2.53 0.04 4.16866 -3231.81 -4.16866 4.16866 1.65 0.00937927 0.00832765 0.694616 0.618824 60 28985 37 1.30842e+07 6.85261e+06 1.79840e+06 3715.71 10.95 3.45089 3.05062 53054 462096 -1 22720 20 9865 11925 1244020 294578 4.41926 4.41926 -3325.32 -4.41926 0 0 2.25108e+06 4650.99 0.82 0.77 0.44 -1 -1 0.82 0.451671 0.40508 1572 1680 646 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_36.v common 22.49 vpr 86.11 MiB 0.25 17232 -1 -1 1 0.65 -1 -1 41632 -1 -1 209 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88172 22 19 5167 4285 1 2653 260 22 22 484 mult_36 auto 48.4 MiB 1.05 16606 54145 10648 38527 4970 86.1 MiB 2.51 0.04 4.16866 -3259.63 -4.16866 4.16866 1.45 0.010637 0.00937319 0.679867 0.603675 64 29957 28 1.30842e+07 6.88056e+06 1.90554e+06 3937.06 9.78 3.13247 2.76199 54502 494576 -1 23683 18 9902 11325 1259385 289004 4.41926 4.41926 -3287.54 -4.41926 0 0 2.40101e+06 4960.76 0.88 0.75 0.51 -1 -1 0.88 0.431761 0.38986 1600 1699 665 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_37.v common 33.09 vpr 97.65 MiB 0.19 17720 -1 -1 1 0.69 -1 -1 40768 -1 -1 218 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99992 22 19 5380 4464 1 2755 270 24 24 576 mult_36 auto 49.8 MiB 1.13 18567 56078 10962 40406 4710 88.1 MiB 2.51 0.04 4.41926 -3517.74 -4.41926 4.41926 1.96 0.00985968 0.00880044 0.693688 0.615215 62 34089 42 1.57908e+07 7.40233e+06 2.19658e+06 3813.51 19.42 4.3801 3.87426 63306 560109 -1 25982 17 10013 11925 1290386 299725 4.54456 4.54456 -3709.06 -4.54456 0 0 2.72095e+06 4723.87 0.99 0.74 0.50 -1 -1 0.99 0.422904 0.38067 1662 1772 684 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_38.v common 37.40 vpr 97.70 MiB 0.26 17852 -1 -1 1 0.79 -1 -1 42448 -1 -1 220 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100044 22 19 5454 4521 1 2802 272 24 24 576 mult_36 auto 49.9 MiB 1.15 18582 51370 9929 37950 3491 87.4 MiB 2.53 0.04 4.41926 -3447.93 -4.41926 4.41926 1.84 0.0098559 0.0087391 0.663664 0.587725 64 34209 36 1.57908e+07 7.43028e+06 2.26035e+06 3924.22 23.49 4.89984 4.32021 64454 586630 -1 26870 18 10485 12283 1454697 328137 4.54456 4.54456 -3636.25 -4.54456 0 0 2.84938e+06 4946.85 1.01 0.80 0.54 -1 -1 1.01 0.446622 0.402258 1690 1791 703 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_39.v common 37.66 vpr 97.94 MiB 0.22 18244 -1 -1 1 0.77 -1 -1 40132 -1 -1 228 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100292 22 19 5629 4662 1 2909 280 24 24 576 mult_36 auto 51.0 MiB 1.24 18512 58840 11287 42675 4878 88.1 MiB 2.66 0.04 4.53661 -3591.01 -4.53661 4.53661 1.85 0.0101684 0.00904111 0.732766 0.651439 64 33376 33 1.57908e+07 7.54207e+06 2.26035e+06 3924.22 23.45 5.15666 4.5456 64454 586630 -1 26570 18 10607 12773 1398491 323531 4.52256 4.52256 -3729.32 -4.52256 0 0 2.84938e+06 4946.85 1.03 0.80 0.59 -1 -1 1.03 0.456749 0.41083 1742 1846 722 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_40.v common 99.08 vpr 91.30 MiB 0.21 18452 -1 -1 1 0.81 -1 -1 42248 -1 -1 232 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93492 22 19 5703 4719 1 2951 284 24 24 576 mult_36 auto 51.9 MiB 1.20 19527 61862 12354 44168 5340 89.9 MiB 2.84 0.04 4.51758 -3660.42 -4.51758 4.51758 1.86 0.0105331 0.00934588 0.761831 0.673535 64 35385 33 1.57908e+07 7.59797e+06 2.26035e+06 3924.22 84.61 7.06296 6.18525 64454 586630 -1 27678 18 10750 12796 1471921 331561 4.64786 4.64786 -3839.37 -4.64786 0 0 2.84938e+06 4946.85 1.02 0.84 0.54 -1 -1 1.02 0.473036 0.426382 1771 1865 741 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_41.v common 31.90 vpr 91.43 MiB 0.28 18820 -1 -1 1 0.86 -1 -1 41516 -1 -1 240 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93620 22 19 5950 4932 1 3065 293 24 24 576 mult_36 auto 52.5 MiB 1.24 20313 68333 13912 49003 5418 89.7 MiB 3.20 0.04 4.35562 -3781.12 -4.35562 4.35562 1.94 0.0110323 0.00979128 0.840954 0.744164 64 37437 47 1.57908e+07 8.10576e+06 2.26035e+06 3924.22 16.06 4.7769 4.19609 64454 586630 -1 29393 20 11515 13868 1578948 357275 4.54456 4.54456 -4027.56 -4.54456 0 0 2.84938e+06 4946.85 1.07 0.96 0.54 -1 -1 1.07 0.55197 0.497829 1841 1956 760 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_42.v common 31.01 vpr 92.52 MiB 0.26 18996 -1 -1 1 0.85 -1 -1 42852 -1 -1 242 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94744 22 19 6024 4989 1 3106 295 24 24 576 mult_36 auto 53.1 MiB 1.25 21018 65041 12819 46780 5442 90.1 MiB 3.09 0.05 4.54456 -3823.47 -4.54456 4.54456 1.96 0.0110842 0.00995596 0.82207 0.733767 64 36534 49 1.57908e+07 8.13371e+06 2.26035e+06 3924.22 15.90 4.96529 4.37362 64454 586630 -1 29646 18 11267 13244 1541469 352337 4.66986 4.66986 -3955.02 -4.66986 0 0 2.84938e+06 4946.85 1.04 0.91 0.59 -1 -1 1.04 0.510102 0.459718 1869 1975 779 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_43.v common 41.13 vpr 104.11 MiB 0.30 19348 -1 -1 1 0.94 -1 -1 43220 -1 -1 250 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 106612 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 53.9 MiB 1.27 22338 66408 13114 47625 5669 91.0 MiB 3.26 0.05 4.47497 -4072.8 -4.47497 4.47497 2.09 0.0115042 0.0102388 0.853752 0.756701 68 37694 34 1.57908e+07 8.2455e+06 2.39371e+06 4155.74 25.38 5.73056 5.04983 65606 615345 -1 30383 15 11489 13385 1484469 334786 4.66986 4.66986 -4189.73 -4.66986 0 0 2.98162e+06 5176.42 1.15 0.81 0.58 -1 -1 1.15 0.455337 0.411334 1921 2030 798 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_44.v common 41.04 vpr 105.69 MiB 0.29 19500 -1 -1 1 0.89 -1 -1 43304 -1 -1 253 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 108224 22 19 6272 5186 1 3253 306 24 24 576 mult_36 auto 54.3 MiB 1.29 22629 67256 12828 47647 6781 91.3 MiB 3.09 0.05 4.41926 -4066.4 -4.41926 4.41926 1.86 0.0116099 0.0103121 0.821498 0.727615 70 37350 43 1.57908e+07 8.28742e+06 2.45377e+06 4260.01 25.55 6.1074 5.39521 66754 640332 -1 30782 20 11655 13506 1570135 362351 4.41926 4.41926 -4119.98 -4.41926 0 0 3.09179e+06 5367.68 1.10 0.95 0.59 -1 -1 1.10 0.557671 0.50094 1949 2049 817 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_45.v common 41.90 vpr 108.14 MiB 0.31 19816 -1 -1 1 0.93 -1 -1 43696 -1 -1 262 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 110732 22 19 6485 5365 1 3362 316 24 24 576 mult_36 auto 55.3 MiB 1.38 21577 68041 12652 49574 5815 92.3 MiB 3.26 0.05 4.34967 -4219.28 -4.34967 4.34967 1.89 0.0120317 0.0107262 0.831214 0.73176 72 36507 46 1.57908e+07 8.80919e+06 2.50747e+06 4353.24 25.83 6.13147 5.39352 67330 654343 -1 29810 22 11462 13137 1601544 361852 4.39726 4.39726 -4238.31 -4.39726 0 0 3.14081e+06 5452.80 1.15 1.03 0.60 -1 -1 1.15 0.642762 0.578632 2011 2122 836 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_46.v common 41.71 vpr 106.51 MiB 0.21 20068 -1 -1 1 0.92 -1 -1 43812 -1 -1 266 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 109068 22 19 6559 5422 1 3404 320 24 24 576 mult_36 auto 55.5 MiB 1.36 24101 72524 13138 53102 6284 92.7 MiB 3.55 0.05 4.66986 -4291.45 -4.66986 4.66986 1.86 0.0119228 0.0105799 0.885425 0.786966 68 40255 40 1.57908e+07 8.86508e+06 2.39371e+06 4155.74 25.86 6.28341 5.54 65606 615345 -1 32521 18 12015 14089 1546690 340905 4.66986 4.66986 -4364.43 -4.66986 0 0 2.98162e+06 5176.42 1.08 0.91 0.61 -1 -1 1.08 0.524906 0.471422 2040 2141 855 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_47.v common 33.00 vpr 96.96 MiB 0.22 20312 -1 -1 1 0.98 -1 -1 44580 -1 -1 273 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99284 22 19 6735 5564 1 3511 327 24 24 576 mult_36 auto 56.5 MiB 1.41 22785 72391 13683 52096 6612 93.6 MiB 3.51 0.04 4.36967 -4379.74 -4.36967 4.36967 1.81 0.0131305 0.0118361 0.88108 0.779868 66 39572 35 1.57908e+07 8.9629e+06 2.33135e+06 4047.49 16.86 5.05545 4.44848 65030 601923 -1 31611 19 12384 14268 1564989 359786 4.54456 4.54456 -4464.94 -4.54456 0 0 2.91907e+06 5067.82 1.14 0.99 0.55 -1 -1 1.14 0.596918 0.538102 2092 2196 874 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_48.v common 32.62 vpr 98.26 MiB 0.32 20568 -1 -1 1 0.96 -1 -1 44228 -1 -1 276 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100616 22 19 6809 5621 1 3555 330 24 24 576 mult_36 auto 56.9 MiB 1.44 23066 80060 16107 55507 8446 93.9 MiB 3.80 0.05 4.29396 -4332.56 -4.29396 4.29396 1.83 0.012246 0.0108577 0.953793 0.843568 70 39582 34 1.57908e+07 9.00482e+06 2.45377e+06 4260.01 16.00 5.02812 4.41858 66754 640332 -1 32506 18 12951 15266 1774464 412111 4.41926 4.41926 -4460.37 -4.41926 0 0 3.09179e+06 5367.68 1.12 1.01 0.63 -1 -1 1.12 0.580252 0.523059 2121 2215 893 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_49.v common 44.50 vpr 109.61 MiB 0.32 21192 -1 -1 1 1.01 -1 -1 44396 -1 -1 287 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 112240 22 19 7094 5872 1 3669 342 24 24 576 mult_36 auto 58.2 MiB 1.50 24245 82797 16885 57326 8586 95.3 MiB 3.90 0.05 4.52256 -4714.45 -4.52256 4.52256 1.76 0.0128813 0.0114258 0.961456 0.848861 72 41230 32 1.57908e+07 9.55454e+06 2.50747e+06 4353.24 27.44 6.5171 5.72714 67330 654343 -1 33608 16 12552 14465 1746432 385070 4.64786 4.64786 -4951.91 -4.64786 0 0 3.14081e+06 5452.80 1.19 1.00 0.74 -1 -1 1.19 0.577628 0.522485 2200 2324 912 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_50.v common 45.35 vpr 109.82 MiB 0.27 21328 -1 -1 1 1.04 -1 -1 44096 -1 -1 290 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 112460 22 19 7168 5929 1 3710 345 24 24 576 mult_36 auto 58.5 MiB 1.56 24589 80139 15697 56982 7460 95.5 MiB 3.76 0.05 4.41926 -4634.65 -4.41926 4.41926 1.77 0.0135877 0.0121319 0.939469 0.827898 70 40446 44 1.57908e+07 9.59646e+06 2.45377e+06 4260.01 28.23 7.44435 6.53589 66754 640332 -1 34146 18 13413 15667 1907396 427492 4.54456 4.54456 -4822.29 -4.54456 0 0 3.09179e+06 5367.68 1.46 1.09 0.62 -1 -1 1.46 0.612549 0.552542 2229 2343 931 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_51.v common 33.49 vpr 102.93 MiB 0.29 21636 -1 -1 1 1.08 -1 -1 44832 -1 -1 297 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105400 22 19 7344 6071 1 3814 352 24 24 576 mult_36 auto 59.3 MiB 1.54 25956 86050 17957 59580 8513 96.4 MiB 4.05 0.06 4.54456 -4790.18 -4.54456 4.54456 1.78 0.0132006 0.0117234 0.998492 0.878344 72 43615 28 1.57908e+07 9.69428e+06 2.50747e+06 4353.24 15.98 5.18613 4.55826 67330 654343 -1 35657 17 13386 15768 1879694 426603 4.64786 4.64786 -4925.15 -4.64786 0 0 3.14081e+06 5452.80 1.34 1.06 0.67 -1 -1 1.34 0.603049 0.543414 2282 2398 950 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_52.v common 46.24 vpr 115.37 MiB 0.28 21924 -1 -1 1 1.12 -1 -1 45188 -1 -1 301 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 118136 22 19 7418 6128 1 3859 356 24 24 576 mult_36 auto 59.7 MiB 1.52 27555 81060 16090 57104 7866 96.7 MiB 3.96 0.06 4.54456 -4802.82 -4.54456 4.54456 1.78 0.0138315 0.0123277 0.96815 0.850814 76 44587 45 1.57908e+07 9.75017e+06 2.61600e+06 4541.67 28.46 6.87985 6.05083 68478 680951 -1 37419 17 14263 16730 1964169 440460 4.52256 4.52256 -5062.61 -4.52256 0 0 3.24203e+06 5628.53 1.61 1.13 0.64 -1 -1 1.61 0.630318 0.57036 2310 2417 969 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_14.v common 13.07 vpr 67.13 MiB 0.06 9300 -1 -1 1 0.14 -1 -1 34756 -1 -1 58 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68740 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 28.8 MiB 2.54 3886 14081 3199 8271 2611 67.1 MiB 0.50 0.01 8.43746 -386.648 -8.43746 8.43746 0.69 0.00265214 0.00241773 0.162969 0.148653 44 8107 32 6.52434e+06 2.39448e+06 686998. 2683.59 6.51 1.23946 1.10541 24576 170172 -1 6188 24 5707 6417 667481 172985 7.87084 7.87084 -462.711 -7.87084 0 0 871168. 3403.00 0.27 0.30 0.17 -1 -1 0.27 0.135537 0.122326 421 285 247 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_15.v common 10.19 vpr 67.87 MiB 0.07 9616 -1 -1 1 0.17 -1 -1 35160 -1 -1 61 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69496 22 19 1344 989 1 793 107 16 16 256 mult_36 auto 29.6 MiB 1.97 4415 16299 3732 8915 3652 67.9 MiB 0.55 0.01 8.61109 -402.505 -8.61109 8.61109 0.69 0.00293067 0.00268043 0.193674 0.176594 44 9925 41 6.52434e+06 2.8324e+06 686998. 2683.59 4.01 0.823669 0.738623 24576 170172 -1 7024 25 6220 7095 698142 184212 8.45004 8.45004 -463.679 -8.45004 0 0 871168. 3403.00 0.27 0.34 0.17 -1 -1 0.27 0.154867 0.1398 453 304 266 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_16.v common 11.80 vpr 68.26 MiB 0.07 9696 -1 -1 1 0.18 -1 -1 35168 -1 -1 65 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69900 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 30.3 MiB 2.71 4724 16869 4045 10706 2118 68.3 MiB 0.69 0.01 8.43651 -410.772 -8.43651 8.43651 0.72 0.00288626 0.00263056 0.202418 0.184288 48 9176 31 6.52434e+06 2.88829e+06 755748. 2952.14 4.64 0.910157 0.814743 25088 180500 -1 7305 24 6692 7397 851322 211567 7.80584 7.80584 -467.143 -7.80584 0 0 916467. 3579.95 0.28 0.36 0.20 -1 -1 0.28 0.153289 0.138398 481 323 285 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_17.v common 10.59 vpr 68.39 MiB 0.15 10324 -1 -1 1 0.18 -1 -1 35316 -1 -1 71 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70036 22 19 1518 1112 1 896 117 16 16 256 mult_36 auto 30.4 MiB 2.48 5238 17563 3887 11404 2272 68.4 MiB 0.73 0.01 9.04171 -433.063 -9.04171 9.04171 0.68 0.00314482 0.00286228 0.206609 0.187966 48 10177 28 6.52434e+06 2.97214e+06 755748. 2952.14 3.58 0.888491 0.799679 25088 180500 -1 8176 22 6890 7606 917926 237751 8.68028 8.68028 -493.626 -8.68028 0 0 916467. 3579.95 0.28 0.38 0.18 -1 -1 0.28 0.161126 0.146051 514 342 304 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_18.v common 18.36 vpr 68.78 MiB 0.11 10444 -1 -1 1 0.20 -1 -1 34956 -1 -1 74 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70432 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 30.9 MiB 3.31 5243 15755 3475 9888 2392 68.8 MiB 0.66 0.01 9.04775 -490.252 -9.04775 9.04775 0.69 0.00335622 0.00302692 0.195379 0.177758 48 11232 37 6.52434e+06 3.01406e+06 755748. 2952.14 10.56 1.59396 1.42048 25088 180500 -1 8633 23 7736 8750 1034775 249786 8.80158 8.80158 -540.639 -8.80158 0 0 916467. 3579.95 0.28 0.41 0.19 -1 -1 0.28 0.167326 0.151342 542 361 323 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_19.v common 12.46 vpr 69.20 MiB 0.12 10588 -1 -1 1 0.20 -1 -1 35360 -1 -1 79 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70860 22 19 1688 1231 1 994 126 16 16 256 mult_36 auto 31.2 MiB 2.81 5618 18711 3986 11280 3445 69.2 MiB 0.75 0.01 9.18492 -482.658 -9.18492 9.18492 0.69 0.00352585 0.00321082 0.224411 0.204619 52 10842 44 6.52434e+06 3.47993e+06 808720. 3159.06 4.93 1.16387 1.04291 25852 197779 -1 8271 22 6752 7535 845938 215127 8.23108 8.23108 -551.85 -8.23108 0 0 1.00038e+06 3907.74 0.33 0.37 0.19 -1 -1 0.33 0.172018 0.155903 573 380 342 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_20.v common 11.96 vpr 69.64 MiB 0.13 10680 -1 -1 1 0.21 -1 -1 35496 -1 -1 81 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71312 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 31.6 MiB 3.36 6535 19770 4199 12093 3478 69.6 MiB 0.83 0.01 9.33493 -488.07 -9.33493 9.33493 0.68 0.00366446 0.0033248 0.238986 0.216586 48 12219 33 6.52434e+06 3.50787e+06 755748. 2952.14 3.68 0.994782 0.889351 25088 180500 -1 9898 22 7504 8327 1040791 265119 8.96258 8.96258 -581.233 -8.96258 0 0 916467. 3579.95 0.28 0.46 0.18 -1 -1 0.28 0.191498 0.174543 601 399 361 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_21.v common 16.21 vpr 70.19 MiB 0.09 11044 -1 -1 1 0.23 -1 -1 35892 -1 -1 85 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71872 22 19 1859 1351 1 1093 132 16 16 256 mult_36 auto 32.2 MiB 3.29 6792 15542 2589 10760 2193 70.2 MiB 0.68 0.02 9.32007 -525.351 -9.32007 9.32007 0.71 0.00381547 0.00347501 0.192317 0.175124 52 13770 38 6.52434e+06 3.56377e+06 808720. 3159.06 8.22 1.70682 1.5235 25852 197779 -1 10144 26 8345 9522 1119762 274391 8.76698 8.76698 -629.803 -8.76698 0 0 1.00038e+06 3907.74 0.32 0.49 0.19 -1 -1 0.32 0.21413 0.193503 632 418 380 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_22.v common 16.45 vpr 70.80 MiB 0.14 11188 -1 -1 1 0.22 -1 -1 35896 -1 -1 90 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72496 22 19 1933 1408 1 1131 137 16 16 256 mult_36 auto 32.9 MiB 3.78 7153 18846 3425 12209 3212 70.8 MiB 0.82 0.02 9.31293 -505.408 -9.31293 9.31293 0.69 0.00396524 0.00359895 0.224706 0.203955 56 11937 28 6.52434e+06 3.63364e+06 849745. 3319.32 7.76 1.63798 1.46052 26364 208198 -1 10148 23 7351 8481 910874 235258 8.45968 8.45968 -707.138 -8.45968 0 0 1.04740e+06 4091.43 0.32 0.43 0.20 -1 -1 0.32 0.197811 0.178429 661 437 399 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_23.v common 20.56 vpr 71.00 MiB 0.10 11392 -1 -1 1 0.25 -1 -1 36036 -1 -1 94 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72708 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 32.9 MiB 3.83 7470 21602 4449 14485 2668 71.0 MiB 0.89 0.02 9.36191 -552.695 -9.36191 9.36191 0.93 0.00420395 0.00382153 0.255575 0.232304 50 14673 42 8.04299e+06 4.08553e+06 1.03391e+06 3191.07 10.95 2.04111 1.82213 32744 246704 -1 11207 23 8954 10315 1227188 301096 8.80128 8.80128 -805.076 -8.80128 0 0 1.23838e+06 3822.15 0.39 0.50 0.24 -1 -1 0.39 0.212947 0.192707 693 456 418 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_24.v common 38.91 vpr 71.41 MiB 0.08 11504 -1 -1 1 0.26 -1 -1 36228 -1 -1 97 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73120 22 19 2105 1529 1 1232 145 18 18 324 mult_36 auto 33.4 MiB 3.96 7507 21425 4200 14405 2820 71.4 MiB 0.97 0.02 9.44155 -614.321 -9.44155 9.44155 0.92 0.00392629 0.00353809 0.264081 0.239424 50 14797 40 8.04299e+06 4.12745e+06 1.03391e+06 3191.07 29.15 2.51543 2.24108 32744 246704 -1 11508 23 9004 10353 1255675 301759 8.51938 8.51938 -832.526 -8.51938 0 0 1.23838e+06 3822.15 0.41 0.53 0.24 -1 -1 0.41 0.221173 0.19969 721 475 437 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_25.v common 22.09 vpr 71.84 MiB 0.16 11872 -1 -1 1 0.28 -1 -1 36488 -1 -1 101 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73564 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 34.0 MiB 3.85 8738 27335 5810 17606 3919 71.8 MiB 1.24 0.02 9.29835 -606.15 -9.29835 9.29835 0.92 0.00458849 0.0041533 0.341976 0.30985 54 16607 42 8.04299e+06 4.18335e+06 1.08842e+06 3359.33 11.85 2.33803 2.08829 33712 268580 -1 12763 24 9307 10561 1197981 287506 8.67428 8.67428 -895.049 -8.67428 0 0 1.34436e+06 4149.26 0.41 0.53 0.26 -1 -1 0.41 0.236263 0.213113 751 494 456 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_26.v common 22.11 vpr 72.09 MiB 0.16 11912 -1 -1 1 0.33 -1 -1 37396 -1 -1 105 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73816 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 34.3 MiB 4.43 8508 22239 4415 15566 2258 72.1 MiB 1.05 0.02 9.42265 -590.577 -9.42265 9.42265 0.94 0.00468257 0.00424886 0.282668 0.256395 58 14084 47 8.04299e+06 4.23924e+06 1.14310e+06 3528.09 11.27 2.32565 2.07061 34680 290288 -1 11882 25 8955 10040 1155840 295020 8.75428 8.75428 -771.843 -8.75428 0 0 1.43297e+06 4422.75 0.47 0.52 0.29 -1 -1 0.47 0.243321 0.218728 779 513 475 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_27.v common 17.76 vpr 72.66 MiB 0.14 12272 -1 -1 1 0.30 -1 -1 36708 -1 -1 111 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74400 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 34.8 MiB 4.30 8706 29238 6495 17225 5518 72.7 MiB 1.20 0.02 9.5032 -657.318 -9.5032 9.5032 0.91 0.00491028 0.00445885 0.359337 0.326482 54 15872 37 8.04299e+06 4.7191e+06 1.08842e+06 3359.33 6.85 1.64682 1.47584 33712 268580 -1 12564 25 10940 12275 1423270 343940 8.66928 8.66928 -791.778 -8.66928 0 0 1.34436e+06 4149.26 0.45 0.63 0.26 -1 -1 0.45 0.269621 0.243375 817 532 494 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_28.v common 23.18 vpr 73.16 MiB 0.17 12272 -1 -1 1 0.31 -1 -1 36860 -1 -1 114 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74916 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 35.5 MiB 4.92 9504 27753 5644 18640 3469 73.2 MiB 1.24 0.02 9.43607 -634.384 -9.43607 9.43607 0.91 0.00507822 0.00461794 0.340536 0.308709 56 17407 31 8.04299e+06 4.76102e+06 1.11497e+06 3441.27 11.68 2.23625 1.99785 34036 275796 -1 14124 23 11371 13051 1664037 404424 8.71328 8.71328 -982.566 -8.71328 0 0 1.37338e+06 4238.83 0.46 0.64 0.28 -1 -1 0.46 0.250223 0.22569 845 551 513 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_29.v common 21.10 vpr 73.73 MiB 0.17 12692 -1 -1 1 0.33 -1 -1 37140 -1 -1 118 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75500 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 36.1 MiB 4.85 9474 28874 6138 19875 2861 73.7 MiB 1.35 0.03 9.50133 -723.607 -9.50133 9.50133 1.45 0.00686193 0.00635036 0.356711 0.32406 48 19694 45 1.30842e+07 5.21292e+06 1.52614e+06 3153.19 7.65 1.72213 1.54813 49190 371334 -1 15172 26 14085 16168 2028455 476792 9.32778 9.32778 -1106.44 -9.32778 0 0 1.85176e+06 3825.95 0.71 0.79 0.40 -1 -1 0.71 0.301579 0.272848 881 570 532 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_30.v common 61.70 vpr 73.91 MiB 0.18 12800 -1 -1 1 0.39 -1 -1 37272 -1 -1 123 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75684 22 19 2639 1910 1 1549 173 22 22 484 mult_36 auto 36.3 MiB 5.29 9440 36248 7919 24781 3548 73.9 MiB 1.60 0.02 9.36191 -670.158 -9.36191 9.36191 1.45 0.0052976 0.00478326 0.428277 0.386868 48 20360 50 1.30842e+07 5.28279e+06 1.52614e+06 3153.19 47.49 3.21938 2.86042 49190 371334 -1 15247 24 13469 15202 1910838 455736 8.95958 8.95958 -928.137 -8.95958 0 0 1.85176e+06 3825.95 0.80 0.76 0.35 -1 -1 0.80 0.290473 0.263122 910 589 551 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_31.v common 28.41 vpr 74.67 MiB 0.19 12988 -1 -1 1 0.41 -1 -1 37388 -1 -1 128 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76460 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 37.2 MiB 5.20 9993 32678 6812 22677 3189 74.7 MiB 1.52 0.02 9.39202 -797.918 -9.39202 9.39202 1.49 0.00558456 0.00506463 0.403432 0.365541 52 20164 36 1.30842e+07 5.35266e+06 1.63434e+06 3376.74 14.64 2.55146 2.27629 50638 406276 -1 15115 23 10350 12253 1361270 325763 8.90628 8.90628 -1265.96 -8.90628 0 0 2.01763e+06 4168.66 0.65 0.60 0.36 -1 -1 0.65 0.27538 0.248331 946 608 570 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_32.v common 27.90 vpr 74.56 MiB 0.16 13048 -1 -1 1 0.40 -1 -1 36832 -1 -1 131 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76352 22 19 2818 2038 1 1657 181 22 22 484 mult_36 auto 37.1 MiB 6.60 10870 36462 7947 25089 3426 74.6 MiB 1.69 0.02 9.40709 -760.111 -9.40709 9.40709 1.50 0.00592117 0.00532314 0.442725 0.399117 54 20481 29 1.30842e+07 5.39458e+06 1.67518e+06 3461.11 12.52 2.38344 2.12807 51122 416746 -1 16006 25 13662 15590 1847779 424015 8.83758 8.83758 -1053.02 -8.83758 0 0 2.06816e+06 4273.05 0.66 0.74 0.31 -1 -1 0.66 0.305389 0.275174 974 627 589 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_33.v common 24.31 vpr 75.61 MiB 0.20 13616 -1 -1 1 0.39 -1 -1 37472 -1 -1 137 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77420 22 19 2923 2109 1 1726 188 22 22 484 mult_36 auto 38.1 MiB 5.87 10997 40538 8465 27874 4199 75.6 MiB 1.88 0.02 10.2864 -775.869 -10.2864 10.2864 1.46 0.00604798 0.00542647 0.479536 0.432484 52 22517 47 1.30842e+07 5.87443e+06 1.63434e+06 3376.74 8.72 2.1151 1.88978 50638 406276 -1 16574 24 12868 14850 1713334 417624 9.69202 9.69202 -1312.41 -9.69202 0 0 2.01763e+06 4168.66 1.12 0.81 0.44 -1 -1 1.12 0.337232 0.307033 1009 646 608 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_34.v common 33.52 vpr 75.45 MiB 0.17 13744 -1 -1 1 0.45 -1 -1 37788 -1 -1 140 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77264 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 38.1 MiB 8.61 11197 34229 7090 23850 3289 75.5 MiB 1.59 0.02 10.179 -781.353 -10.179 10.179 1.50 0.00615474 0.00557098 0.410421 0.371393 54 21293 29 1.30842e+07 5.91636e+06 1.67518e+06 3461.11 15.81 2.76284 2.46677 51122 416746 -1 16721 23 13120 14891 1633684 395631 9.53142 9.53142 -1224.14 -9.53142 0 0 2.06816e+06 4273.05 0.68 0.71 0.38 -1 -1 0.68 0.307516 0.277757 1037 665 627 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_35.v common 35.60 vpr 76.23 MiB 0.21 14068 -1 -1 1 0.40 -1 -1 37836 -1 -1 145 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78056 22 19 3101 2236 1 1831 196 22 22 484 mult_36 auto 38.7 MiB 7.91 12065 39457 7984 27451 4022 76.2 MiB 1.90 0.03 10.526 -851.981 -10.526 10.526 1.48 0.0063573 0.00577627 0.468896 0.424608 56 22258 29 1.30842e+07 5.98623e+06 1.71605e+06 3545.56 18.21 3.3784 3.01833 51606 428054 -1 18193 24 12714 14593 1871341 439910 10.0876 10.0876 -1238.72 -10.0876 0 0 2.11301e+06 4365.72 0.68 0.78 0.41 -1 -1 0.68 0.330267 0.298419 1072 684 646 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_36.v common 27.66 vpr 76.53 MiB 0.23 14100 -1 -1 1 0.45 -1 -1 38008 -1 -1 148 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78368 22 19 3175 2293 1 1871 199 22 22 484 mult_36 auto 39.0 MiB 9.57 12207 40799 8234 28761 3804 76.5 MiB 1.92 0.03 10.1611 -829.474 -10.1611 10.1611 1.52 0.00655227 0.00594453 0.483653 0.436997 54 22885 31 1.30842e+07 6.02815e+06 1.67518e+06 3461.11 8.52 2.05561 1.83578 51122 416746 -1 17842 26 13429 15225 1699944 411787 9.66272 9.66272 -1103.79 -9.66272 0 0 2.06816e+06 4273.05 0.76 0.87 0.38 -1 -1 0.76 0.394011 0.358205 1100 703 665 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_37.v common 32.54 vpr 77.05 MiB 0.22 14476 -1 -1 1 0.42 -1 -1 37396 -1 -1 152 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78900 22 19 3280 2364 1 1938 204 24 24 576 mult_36 auto 39.6 MiB 8.70 12485 42204 8471 30168 3565 77.1 MiB 2.46 0.03 10.4948 -891.974 -10.4948 10.4948 2.08 0.00663975 0.00602791 0.523308 0.466349 54 24624 44 1.57908e+07 6.48005e+06 1.98675e+06 3449.22 12.51 2.66939 2.37527 60430 494267 -1 18748 25 15039 16700 2047326 478961 9.80372 9.80372 -1341.07 -9.80372 0 0 2.45377e+06 4260.01 0.85 0.88 0.48 -1 -1 0.85 0.367482 0.331922 1135 722 684 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_38.v common 42.88 vpr 82.35 MiB 0.27 14700 -1 -1 1 0.44 -1 -1 37964 -1 -1 157 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84324 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 40.2 MiB 10.27 13772 42989 9121 30100 3768 77.6 MiB 2.15 0.03 10.1171 -857.01 -10.1171 10.1171 2.28 0.00680797 0.0061791 0.547178 0.481807 58 24942 46 1.57908e+07 6.54992e+06 2.08734e+06 3623.85 21.06 3.43991 3.05443 62154 534210 -1 19326 22 13894 15955 2071566 466040 9.47212 9.47212 -1334.31 -9.47212 0 0 2.61600e+06 4541.67 0.92 0.82 0.51 -1 -1 0.92 0.330813 0.298276 1164 741 703 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_39.v common 38.34 vpr 81.94 MiB 0.23 14712 -1 -1 1 0.47 -1 -1 38328 -1 -1 161 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83904 22 19 3457 2490 1 2044 213 24 24 576 mult_36 auto 40.5 MiB 9.50 13552 45933 9854 31922 4157 77.8 MiB 2.32 0.03 10.2548 -903.58 -10.2548 10.2548 1.78 0.00724144 0.00659299 0.580914 0.528412 56 23176 27 1.57908e+07 6.60581e+06 2.03561e+06 3534.04 17.30 3.29372 2.94105 61006 507707 -1 19371 24 12670 14651 1649493 401965 9.71472 9.71472 -1420.41 -9.71472 0 0 2.50747e+06 4353.24 1.30 0.87 0.49 -1 -1 1.30 0.399715 0.364604 1198 760 722 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_40.v common 37.25 vpr 78.21 MiB 0.23 15008 -1 -1 1 0.47 -1 -1 38944 -1 -1 164 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80088 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 40.9 MiB 11.26 14377 40977 8198 29796 2983 78.2 MiB 2.13 0.04 10.1711 -960.277 -10.1711 10.1711 1.77 0.00811636 0.00736848 0.489171 0.442608 54 25953 34 1.57908e+07 6.64774e+06 1.98675e+06 3449.22 15.02 2.78784 2.48678 60430 494267 -1 20022 24 14385 16625 1937405 463879 9.81632 9.81632 -1428.6 -9.81632 0 0 2.45377e+06 4260.01 0.87 0.87 0.46 -1 -1 0.87 0.37826 0.341295 1226 779 741 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_41.v common 43.32 vpr 82.72 MiB 0.21 15264 -1 -1 1 0.50 -1 -1 38100 -1 -1 170 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84708 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 41.4 MiB 9.46 15712 55655 12202 38909 4544 78.6 MiB 2.61 0.03 10.3763 -978.657 -10.3763 10.3763 1.73 0.0069833 0.00633755 0.640702 0.576773 58 28102 35 1.57908e+07 7.12758e+06 2.08734e+06 3623.85 20.96 3.55838 3.17405 62154 534210 -1 22155 26 15175 17368 2377028 526488 9.93862 9.93862 -1498.09 -9.93862 0 0 2.61600e+06 4541.67 1.46 0.99 0.61 -1 -1 1.46 0.393771 0.356172 1261 798 760 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_42.v common 47.09 vpr 82.39 MiB 0.23 15344 -1 -1 1 0.61 -1 -1 38236 -1 -1 173 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84372 22 19 3708 2673 1 2187 226 24 24 576 mult_36 auto 41.7 MiB 10.51 15421 43570 8598 29045 5927 79.2 MiB 2.07 0.02 10.3695 -1008.01 -10.3695 10.3695 2.45 0.00630558 0.00587863 0.527026 0.471227 58 26702 46 1.57908e+07 7.1695e+06 2.08734e+06 3623.85 23.85 3.93073 3.50127 62154 534210 -1 21054 23 15341 17740 2211258 504766 9.93232 9.93232 -1535.11 -9.93232 0 0 2.61600e+06 4541.67 1.06 1.10 0.49 -1 -1 1.06 0.44254 0.404929 1289 817 779 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_43.v common 45.38 vpr 85.18 MiB 0.21 15528 -1 -1 1 0.54 -1 -1 38852 -1 -1 178 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87228 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 42.2 MiB 10.59 15931 45543 9198 31101 5244 79.6 MiB 2.23 0.03 10.2488 -1034.23 -10.2488 10.2488 1.79 0.00767964 0.0069628 0.531794 0.4799 58 28790 31 1.57908e+07 7.23937e+06 2.08734e+06 3623.85 23.27 3.85011 3.44161 62154 534210 -1 22784 25 17469 20003 2871017 629000 9.78802 9.78802 -1425.18 -9.78802 0 0 2.61600e+06 4541.67 0.91 1.14 0.50 -1 -1 0.91 0.444416 0.402389 1323 836 798 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_44.v common 43.03 vpr 84.36 MiB 0.22 15720 -1 -1 1 0.54 -1 -1 38404 -1 -1 181 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86384 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 42.5 MiB 12.19 15026 47034 9339 32867 4828 79.8 MiB 2.23 0.03 10.6634 -975.806 -10.6634 10.6634 1.79 0.00781892 0.00708191 0.548896 0.493693 56 25505 43 1.57908e+07 7.28129e+06 2.03561e+06 3534.04 19.72 3.83024 3.42612 61006 507707 -1 21177 24 13604 15932 1830861 450606 10.1266 10.1266 -1497.53 -10.1266 0 0 2.50747e+06 4353.24 0.83 0.86 0.46 -1 -1 0.83 0.406122 0.366578 1351 855 817 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_45.v common 39.56 vpr 80.32 MiB 0.25 15900 -1 -1 1 0.57 -1 -1 40456 -1 -1 186 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82244 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 43.1 MiB 11.21 16504 49410 9364 35589 4457 80.3 MiB 2.40 0.04 10.4128 -1039.57 -10.4128 10.4128 1.86 0.00818522 0.00741589 0.584553 0.526423 58 28065 31 1.57908e+07 7.74716e+06 2.08734e+06 3623.85 16.03 2.6317 2.35095 62154 534210 -1 23178 24 14780 17083 2031719 479355 10.0216 10.0216 -1620.1 -10.0216 0 0 2.61600e+06 4541.67 1.37 1.04 0.52 -1 -1 1.37 0.466061 0.425302 1387 874 836 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_46.v common 39.09 vpr 80.46 MiB 0.25 16100 -1 -1 1 0.53 -1 -1 40516 -1 -1 189 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82388 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 43.3 MiB 13.06 15456 49513 9815 35157 4541 80.5 MiB 2.73 0.04 10.3988 -1055.79 -10.3988 10.3988 2.08 0.00815232 0.00737227 0.611438 0.535989 54 30376 49 1.57908e+07 7.78909e+06 1.98675e+06 3449.22 13.97 3.09856 2.75585 60430 494267 -1 22258 25 14010 16246 1792980 437746 10.0703 10.0703 -1496.13 -10.0703 0 0 2.45377e+06 4260.01 0.84 0.90 0.45 -1 -1 0.84 0.445044 0.401556 1414 893 855 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_47.v common 45.96 vpr 87.56 MiB 0.28 16692 -1 -1 1 0.56 -1 -1 40796 -1 -1 194 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89660 22 19 4167 2996 1 2466 248 24 24 576 mult_36 auto 43.9 MiB 12.44 16457 49262 9642 34224 5396 81.0 MiB 2.54 0.06 10.2964 -1023.88 -10.2964 10.2964 1.79 0.00744902 0.00675293 0.613147 0.552559 62 27413 41 1.57908e+07 7.85896e+06 2.19658e+06 3813.51 21.64 4.42953 3.94767 63306 560109 -1 22126 24 15880 18201 1967159 487181 9.26852 9.26852 -1515.46 -9.26852 0 0 2.72095e+06 4723.87 0.92 0.96 0.53 -1 -1 0.92 0.45535 0.41238 1449 912 874 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_48.v common 42.76 vpr 81.41 MiB 0.28 16620 -1 -1 1 0.66 -1 -1 40920 -1 -1 197 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83368 22 19 4241 3053 1 2505 251 24 24 576 mult_36 auto 44.1 MiB 13.77 16971 46920 8877 33152 4891 81.4 MiB 2.55 0.04 10.3426 -1105.68 -10.3426 10.3426 1.75 0.0102117 0.00944011 0.577389 0.511211 58 28357 39 1.57908e+07 7.90088e+06 2.08734e+06 3623.85 16.91 3.39493 3.01467 62154 534210 -1 23109 25 14819 17069 1985321 468184 9.32312 9.32312 -1714.79 -9.32312 0 0 2.61600e+06 4541.67 0.92 0.98 0.48 -1 -1 0.92 0.468329 0.422452 1477 931 893 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_49.v common 46.53 vpr 91.94 MiB 0.28 16968 -1 -1 1 0.64 -1 -1 41168 -1 -1 204 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94144 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 44.8 MiB 13.13 17818 58009 12065 38423 7521 82.0 MiB 2.75 0.04 10.4215 -1066.19 -10.4215 10.4215 1.86 0.00896625 0.00815044 0.652098 0.583204 64 27669 29 1.57908e+07 8.3947e+06 2.26035e+06 3924.22 21.14 3.93491 3.50453 64454 586630 -1 23761 23 15470 17571 1974721 480976 10.0026 10.0026 -1667.25 -10.0026 0 0 2.84938e+06 4946.85 0.97 0.93 0.54 -1 -1 0.97 0.440564 0.397646 1512 950 912 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_50.v common 42.97 vpr 82.24 MiB 0.20 17196 -1 -1 1 0.69 -1 -1 41028 -1 -1 206 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84212 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 45.1 MiB 13.17 18113 59404 12055 41197 6152 82.2 MiB 2.84 0.04 10.7633 -1102.87 -10.7633 10.7633 2.09 0.00897832 0.00813593 0.670958 0.603728 58 30827 50 1.57908e+07 8.42264e+06 2.08734e+06 3623.85 16.53 3.20335 2.85436 62154 534210 -1 25105 24 17430 20166 2474881 582739 9.91802 9.91802 -1434.59 -9.91802 0 0 2.61600e+06 4541.67 0.92 1.15 0.49 -1 -1 0.92 0.475445 0.431167 1541 969 931 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_51.v common 56.02 vpr 89.57 MiB 0.30 17472 -1 -1 1 0.67 -1 -1 41200 -1 -1 211 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 91720 22 19 4524 3251 1 2681 266 24 24 576 mult_36 auto 45.6 MiB 12.19 17903 58406 11821 39335 7250 82.7 MiB 2.74 0.04 10.1189 -1113.35 -10.1189 10.1189 2.41 0.00913782 0.00827654 0.667678 0.598269 66 28650 46 1.57908e+07 8.49251e+06 2.33135e+06 4047.49 29.94 5.26651 4.68916 65030 601923 -1 23838 22 15662 18095 2053216 483046 9.32782 9.32782 -1570.64 -9.32782 0 0 2.91907e+06 5067.82 0.99 0.97 0.55 -1 -1 0.99 0.44678 0.403961 1576 988 950 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_52.v common 96.34 vpr 82.88 MiB 0.23 17468 -1 -1 1 0.66 -1 -1 39416 -1 -1 215 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84872 22 19 4598 3308 1 2718 270 24 24 576 mult_36 auto 45.8 MiB 14.12 18499 60438 12754 41701 5983 82.9 MiB 2.85 0.04 10.3652 -1274.39 -10.3652 10.3652 2.33 0.00951332 0.00844289 0.692048 0.621204 60 30704 47 1.57908e+07 8.54841e+06 2.13333e+06 3703.69 68.57 6.35371 5.65859 62730 548095 -1 24767 24 17273 19354 2179586 520270 9.64242 9.64242 -1770.68 -9.64242 0 0 2.67122e+06 4637.53 0.90 1.02 0.49 -1 -1 0.90 0.479763 0.432708 1605 1007 969 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_14.v common 11.38 vpr 70.48 MiB 0.07 10492 -1 -1 1 0.22 -1 -1 35504 -1 -1 81 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72172 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 32.2 MiB 0.35 5566 18081 3979 11568 2534 70.5 MiB 0.67 0.01 4.18656 -1184 -4.18656 4.18656 0.72 0.00378121 0.00337431 0.234163 0.210213 50 12015 26 6.54114e+06 2.7256e+06 787708. 3076.99 6.51 1.52052 1.33578 25344 186282 -1 9252 17 4107 4636 547995 139041 4.41926 4.41926 -1238.23 -4.41926 0 0 943753. 3686.54 0.33 0.29 0.18 -1 -1 0.33 0.156498 0.140926 605 649 247 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_15.v common 24.11 vpr 71.27 MiB 0.09 10916 -1 -1 1 0.26 -1 -1 36948 -1 -1 88 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72980 22 19 2144 1789 1 1120 134 16 16 256 mult_36 auto 33.2 MiB 0.38 6319 20654 4053 14159 2442 71.3 MiB 0.80 0.01 4.29396 -1347.48 -4.29396 4.29396 0.71 0.00397352 0.00353702 0.264933 0.237366 50 12838 32 6.54114e+06 3.22025e+06 787708. 3076.99 18.86 2.11251 1.85656 25344 186282 -1 10194 15 4381 5331 543271 135603 4.41926 4.41926 -1427.22 -4.41926 0 0 943753. 3686.54 0.28 0.28 0.18 -1 -1 0.28 0.159752 0.144723 654 704 266 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_16.v common 11.77 vpr 71.98 MiB 0.08 10976 -1 -1 1 0.23 -1 -1 36848 -1 -1 91 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73704 22 19 2218 1846 1 1162 137 16 16 256 mult_36 auto 33.7 MiB 0.39 6746 20611 4243 13930 2438 72.0 MiB 0.81 0.01 4.27196 -1343.11 -4.27196 4.27196 0.69 0.00419717 0.00375079 0.264637 0.236937 56 12205 20 6.54114e+06 3.26253e+06 849745. 3319.32 6.54 1.5134 1.33077 26364 208198 -1 10886 18 4466 5238 632605 153751 4.54456 4.54456 -1414.59 -4.54456 0 0 1.04740e+06 4091.43 0.31 0.32 0.20 -1 -1 0.31 0.17518 0.157124 683 723 285 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_17.v common 12.04 vpr 72.87 MiB 0.13 11760 -1 -1 1 0.29 -1 -1 36564 -1 -1 103 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74620 22 19 2536 2130 1 1275 149 16 16 256 mult_36 auto 34.7 MiB 0.49 7309 25759 5410 16752 3597 72.9 MiB 0.97 0.01 4.22437 -1538.56 -4.22437 4.22437 0.71 0.00479837 0.00428134 0.31548 0.281148 54 15370 50 6.54114e+06 3.43166e+06 829453. 3240.05 6.15 1.86152 1.63469 26108 202796 -1 11251 20 4866 5650 591941 150326 4.41926 4.41926 -1554.25 -4.41926 0 0 1.02522e+06 4004.78 0.30 0.37 0.21 -1 -1 0.30 0.21684 0.194045 770 851 304 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_18.v common 14.07 vpr 73.36 MiB 0.09 11992 -1 -1 1 0.29 -1 -1 37124 -1 -1 107 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75120 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 35.3 MiB 0.39 7489 21012 3652 14420 2940 73.4 MiB 0.89 0.02 4.05741 -1594.66 -4.05741 4.05741 0.95 0.00469532 0.00432007 0.290653 0.262061 58 14224 36 6.54114e+06 3.48803e+06 871168. 3403.00 7.98 2.0802 1.84144 26872 219187 -1 11540 19 4929 5820 646042 159250 4.41926 4.41926 -1618.92 -4.41926 0 0 1.09288e+06 4269.05 0.33 0.37 0.21 -1 -1 0.33 0.215755 0.193291 798 870 323 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_19.v common 13.24 vpr 74.03 MiB 0.19 12140 -1 -1 1 0.30 -1 -1 36776 -1 -1 113 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75808 22 19 2778 2321 1 1412 160 16 16 256 mult_36 auto 36.2 MiB 0.40 8590 28804 5795 19118 3891 74.0 MiB 1.28 0.02 4.16866 -1754.96 -4.16866 4.16866 0.95 0.00555672 0.00504423 0.395899 0.356176 60 14551 41 6.54114e+06 3.96859e+06 890343. 3477.90 6.08 1.80025 1.59494 27128 224764 -1 12108 19 5195 6165 612347 148881 4.29396 4.29396 -1780.33 -4.29396 0 0 1.11577e+06 4358.47 0.34 0.39 0.22 -1 -1 0.34 0.234318 0.210966 846 925 342 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_20.v common 13.42 vpr 74.60 MiB 0.10 12412 -1 -1 1 0.33 -1 -1 36896 -1 -1 118 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76388 22 19 2852 2378 1 1455 165 16 16 256 mult_36 auto 36.8 MiB 0.52 8719 21409 3812 14750 2847 74.6 MiB 0.95 0.02 4.23032 -1751.68 -4.23032 4.23032 0.69 0.00500252 0.00445072 0.294825 0.263791 58 15488 34 6.54114e+06 4.03906e+06 871168. 3403.00 7.37 1.74355 1.53987 26872 219187 -1 12591 16 5346 6342 671911 168571 4.29396 4.29396 -1828.31 -4.29396 0 0 1.09288e+06 4269.05 0.33 0.38 0.21 -1 -1 0.33 0.210528 0.189481 875 944 361 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_21.v common 13.55 vpr 75.41 MiB 0.18 12888 -1 -1 1 0.37 -1 -1 37816 -1 -1 122 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77224 22 19 3057 2549 1 1560 169 16 16 256 mult_36 auto 37.5 MiB 0.53 9662 28189 5474 18473 4242 75.4 MiB 1.37 0.02 4.27196 -1924.27 -4.27196 4.27196 0.69 0.00642709 0.00584763 0.394218 0.350814 60 16376 39 6.54114e+06 4.09544e+06 890343. 3477.90 6.92 2.02198 1.79611 27128 224764 -1 13229 17 5417 6865 651246 161214 4.52256 4.52256 -1946.8 -4.52256 0 0 1.11577e+06 4358.47 0.34 0.39 0.22 -1 -1 0.34 0.233524 0.210131 932 1017 380 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_22.v common 13.26 vpr 75.82 MiB 0.12 12988 -1 -1 1 0.35 -1 -1 37912 -1 -1 125 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77636 22 19 3131 2606 1 1600 172 16 16 256 mult_36 auto 37.9 MiB 0.52 9746 26940 4762 17615 4563 75.8 MiB 1.19 0.02 4.1051 -1925.37 -4.1051 4.1051 0.71 0.00582703 0.0051886 0.361517 0.321222 64 17025 40 6.54114e+06 4.13772e+06 943753. 3686.54 6.73 2.15537 1.91959 27892 240595 -1 13419 19 5604 6604 696533 174227 4.41926 4.41926 -1888.34 -4.41926 0 0 1.19033e+06 4649.74 0.36 0.44 0.25 -1 -1 0.36 0.260811 0.233391 961 1036 399 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_23.v common 19.63 vpr 76.63 MiB 0.18 13332 -1 -1 1 0.38 -1 -1 37848 -1 -1 133 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78472 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 38.6 MiB 0.56 10073 29819 5770 20700 3349 76.6 MiB 1.25 0.02 4.29396 -2072.96 -4.29396 4.29396 0.91 0.00623253 0.00556062 0.392768 0.351453 58 20039 44 8.06603e+06 4.64648e+06 1.14310e+06 3528.09 12.13 2.73918 2.43029 34680 290288 -1 15296 19 6397 7351 896472 206109 4.52256 4.52256 -2107.99 -4.52256 0 0 1.43297e+06 4422.75 0.48 0.52 0.28 -1 -1 0.48 0.294954 0.266598 1012 1091 418 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_24.v common 28.49 vpr 76.93 MiB 0.16 13448 -1 -1 1 0.46 -1 -1 38132 -1 -1 137 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78772 22 19 3375 2799 1 1744 185 18 18 324 mult_36 auto 39.0 MiB 0.60 10242 28589 5033 20765 2791 76.9 MiB 1.20 0.02 4.16866 -2095.84 -4.16866 4.16866 0.97 0.00641405 0.00569661 0.36757 0.327642 56 19239 34 8.06603e+06 4.70285e+06 1.11497e+06 3441.27 20.82 2.85587 2.50954 34036 275796 -1 15430 18 6668 8155 902923 218175 4.66986 4.66986 -2283.29 -4.66986 0 0 1.37338e+06 4238.83 0.42 0.49 0.28 -1 -1 0.42 0.26827 0.240715 1041 1110 437 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_25.v common 15.03 vpr 77.96 MiB 0.15 13976 -1 -1 1 0.41 -1 -1 38092 -1 -1 146 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79836 22 19 3615 3005 1 1848 194 18 18 324 mult_36 auto 40.0 MiB 0.72 11381 30488 5169 21849 3470 78.0 MiB 1.30 0.02 4.29396 -2317.79 -4.29396 4.29396 1.08 0.00674007 0.00607127 0.402737 0.358988 60 19735 24 8.06603e+06 4.8297e+06 1.16833e+06 3605.96 6.20 2.03203 1.7934 35004 297736 -1 15899 18 6600 7758 807688 195562 4.41926 4.41926 -2334.44 -4.41926 0 0 1.46313e+06 4515.82 0.50 0.48 0.28 -1 -1 0.50 0.286431 0.256913 1107 1201 456 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_26.v common 28.99 vpr 78.52 MiB 0.25 14112 -1 -1 1 0.42 -1 -1 38412 -1 -1 148 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80400 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 40.6 MiB 0.63 11433 29784 5199 21859 2726 78.5 MiB 1.40 0.03 4.24437 -2303.41 -4.24437 4.24437 0.95 0.00695109 0.00628204 0.419904 0.377051 58 20982 37 8.06603e+06 4.85789e+06 1.14310e+06 3528.09 21.00 3.25851 2.87498 34680 290288 -1 16695 16 7063 8326 925400 221942 4.41926 4.41926 -2385.92 -4.41926 0 0 1.43297e+06 4422.75 0.45 0.50 0.28 -1 -1 0.45 0.27248 0.245402 1135 1220 475 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_27.v common 16.86 vpr 79.51 MiB 0.14 14548 -1 -1 1 0.49 -1 -1 38368 -1 -1 156 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81416 22 19 3871 3210 1 2002 205 18 18 324 mult_36 auto 41.5 MiB 0.66 12765 36445 6420 26320 3705 79.5 MiB 1.68 0.03 4.54456 -2408.49 -4.54456 4.54456 0.98 0.00729171 0.00665155 0.482117 0.431921 64 23264 38 8.06603e+06 5.36665e+06 1.23838e+06 3822.15 8.12 2.50455 2.22003 35972 318676 -1 18200 18 7220 8450 972098 233171 4.52256 4.52256 -2487.12 -4.52256 0 0 1.56068e+06 4816.91 0.51 0.55 0.31 -1 -1 0.51 0.312079 0.280533 1191 1275 494 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_28.v common 21.90 vpr 79.95 MiB 0.17 14560 -1 -1 1 0.54 -1 -1 38372 -1 -1 160 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81872 22 19 3945 3267 1 2045 209 18 18 324 mult_36 auto 42.0 MiB 0.70 12597 35549 6371 25304 3874 80.0 MiB 1.61 0.03 4.26697 -2505.98 -4.26697 4.26697 1.00 0.00743147 0.00662208 0.471627 0.419287 68 21534 29 8.06603e+06 5.42302e+06 1.31159e+06 4048.11 13.18 3.30767 2.92366 36620 334356 -1 17403 19 7212 8305 866718 201384 4.29396 4.29396 -2504.3 -4.29396 0 0 1.63345e+06 5041.52 0.51 0.56 0.32 -1 -1 0.51 0.337354 0.303196 1219 1294 513 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_29.v common 60.65 vpr 81.01 MiB 0.55 15024 -1 -1 1 0.60 -1 -1 39524 -1 -1 170 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82956 22 19 4159 3447 1 2159 220 22 22 484 mult_36 auto 43.1 MiB 0.84 13941 43978 8874 31271 3833 81.0 MiB 1.86 0.03 4.35022 -2631.97 -4.35022 4.35022 1.63 0.00768855 0.0068308 0.549717 0.489106 58 24926 40 1.31202e+07 5.95997e+06 1.75961e+06 3635.55 49.32 4.53904 3.99936 52570 450426 -1 20690 17 8007 9443 1068841 244740 4.54456 4.54456 -2664.53 -4.54456 0 0 2.20457e+06 4554.90 0.72 0.56 0.41 -1 -1 0.72 0.3121 0.280059 1283 1367 532 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_30.v common 22.10 vpr 81.06 MiB 0.19 15120 -1 -1 1 0.57 -1 -1 40812 -1 -1 173 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83004 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 43.2 MiB 0.81 14275 43487 8406 30788 4293 81.1 MiB 1.95 0.03 4.29396 -2676.94 -4.29396 4.29396 1.94 0.00798649 0.00713048 0.549465 0.488799 62 26940 39 1.31202e+07 6.00225e+06 1.85176e+06 3825.95 10.44 2.73876 2.42508 53538 472186 -1 20137 19 7963 9293 978277 226339 4.39726 4.39726 -2703.02 -4.39726 0 0 2.29262e+06 4736.82 0.78 0.61 0.45 -1 -1 0.78 0.355644 0.319291 1311 1386 551 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_31.v common 24.85 vpr 83.09 MiB 0.16 15528 -1 -1 1 0.59 -1 -1 40896 -1 -1 179 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85080 22 19 4410 3647 1 2305 229 22 22 484 mult_36 auto 44.3 MiB 0.81 14328 48529 9744 34610 4175 83.1 MiB 2.19 0.03 4.31186 -2776.62 -4.31186 4.31186 2.08 0.00824528 0.00739659 0.618548 0.550067 60 26322 48 1.31202e+07 6.08682e+06 1.79840e+06 3715.71 12.60 3.05738 2.67011 53054 462096 -1 20969 18 8442 9887 1082581 257139 4.39726 4.39726 -2815.55 -4.39726 0 0 2.25108e+06 4650.99 0.80 0.63 0.44 -1 -1 0.80 0.358227 0.322298 1363 1441 570 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_32.v common 27.04 vpr 83.28 MiB 0.18 15656 -1 -1 1 0.56 -1 -1 40732 -1 -1 183 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85280 22 19 4484 3704 1 2348 233 22 22 484 mult_36 auto 44.5 MiB 0.78 14525 45341 8355 32699 4287 82.3 MiB 2.03 0.03 4.41926 -2881.16 -4.41926 4.41926 1.50 0.00837078 0.00746071 0.567344 0.506455 60 25283 24 1.31202e+07 6.14319e+06 1.79840e+06 3715.71 15.88 3.52164 3.13183 53054 462096 -1 21198 18 8307 9417 1043367 244738 4.41926 4.41926 -2865.53 -4.41926 0 0 2.25108e+06 4650.99 0.79 0.66 0.42 -1 -1 0.79 0.385039 0.347738 1393 1460 589 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_33.v common 24.30 vpr 84.41 MiB 0.22 16524 -1 -1 1 0.82 -1 -1 41568 -1 -1 196 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86440 22 19 4843 4029 1 2463 247 22 22 484 mult_36 auto 45.8 MiB 1.02 15998 49783 9671 35687 4425 84.4 MiB 2.26 0.04 4.54456 -3078.09 -4.54456 4.54456 1.52 0.0091638 0.00814293 0.621865 0.551191 62 30039 29 1.31202e+07 6.72242e+06 1.85176e+06 3825.95 11.66 2.99326 2.63647 53538 472186 -1 22471 18 8965 10546 1092220 257195 4.41926 4.41926 -3312.48 -4.41926 0 0 2.29262e+06 4736.82 0.75 0.67 0.43 -1 -1 0.75 0.395594 0.355618 1490 1606 608 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_34.v common 26.27 vpr 84.16 MiB 0.20 16800 -1 -1 1 0.75 -1 -1 41532 -1 -1 199 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86180 22 19 4917 4086 1 2505 250 22 22 484 mult_36 auto 46.2 MiB 1.28 15240 53766 10631 37846 5289 84.2 MiB 2.41 0.03 4.29396 -3047.21 -4.29396 4.29396 1.54 0.00919275 0.00818695 0.690253 0.614728 60 28229 35 1.31202e+07 6.7647e+06 1.79840e+06 3715.71 12.89 3.7354 3.29972 53054 462096 -1 22321 17 8852 10511 1134513 265850 4.52256 4.52256 -3384.85 -4.52256 0 0 2.25108e+06 4650.99 1.22 0.77 0.47 -1 -1 1.22 0.453684 0.415185 1519 1625 627 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_35.v common 48.54 vpr 85.02 MiB 0.24 17232 -1 -1 1 0.74 -1 -1 41772 -1 -1 207 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87064 22 19 5093 4228 1 2607 258 22 22 484 mult_36 auto 47.1 MiB 1.19 16561 53623 9690 39001 4932 85.0 MiB 2.50 0.04 4.27196 -3266.59 -4.27196 4.27196 1.70 0.00952453 0.00848314 0.685967 0.610687 60 31544 47 1.31202e+07 6.87745e+06 1.79840e+06 3715.71 34.81 5.02602 4.4182 53054 462096 -1 24567 20 9974 11801 1384303 319840 4.64786 4.64786 -3518.09 -4.64786 0 0 2.25108e+06 4650.99 0.77 0.85 0.43 -1 -1 0.77 0.495263 0.446935 1572 1680 646 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_36.v common 23.95 vpr 85.27 MiB 0.19 17332 -1 -1 1 0.67 -1 -1 42052 -1 -1 209 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87316 22 19 5167 4285 1 2655 260 22 22 484 mult_36 auto 47.5 MiB 0.90 17463 54974 10444 39030 5500 85.3 MiB 2.61 0.03 4.35562 -3241.22 -4.35562 4.35562 2.16 0.00998321 0.00891839 0.724446 0.644574 66 29932 33 1.31202e+07 6.90564e+06 1.96511e+06 4060.15 10.56 3.50421 3.10149 54986 507526 -1 24310 15 9330 10872 1221412 282633 4.41926 4.41926 -3341.91 -4.41926 0 0 2.45963e+06 5081.88 0.84 0.67 0.46 -1 -1 0.84 0.366872 0.330843 1600 1699 665 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_37.v common 35.19 vpr 87.35 MiB 0.16 17660 -1 -1 1 0.72 -1 -1 40772 -1 -1 218 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89444 22 19 5380 4464 1 2756 270 24 24 576 mult_36 auto 48.7 MiB 0.95 18706 56950 10603 41531 4816 87.3 MiB 2.69 0.04 4.35562 -3473.4 -4.35562 4.35562 2.58 0.0096782 0.00876401 0.733555 0.656002 60 36033 48 1.58331e+07 7.42849e+06 2.13333e+06 3703.69 20.42 3.86962 3.4235 62730 548095 -1 27276 19 10671 12691 1595594 352262 4.54456 4.54456 -3667.6 -4.54456 0 0 2.67122e+06 4637.53 0.93 0.90 0.56 -1 -1 0.93 0.485974 0.440448 1662 1772 684 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_38.v common 30.11 vpr 86.62 MiB 0.22 17812 -1 -1 1 0.77 -1 -1 42264 -1 -1 220 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88696 22 19 5454 4521 1 2804 272 24 24 576 mult_36 auto 48.8 MiB 1.09 18631 58418 11427 42785 4206 86.6 MiB 2.81 0.04 4.29396 -3507.9 -4.29396 4.29396 2.02 0.00965294 0.00863172 0.744135 0.659218 62 35211 42 1.58331e+07 7.45668e+06 2.19658e+06 3813.51 15.88 4.65275 4.12152 63306 560109 -1 26641 17 10663 12453 1388485 323603 4.39726 4.39726 -3646.05 -4.39726 0 0 2.72095e+06 4723.87 0.97 0.78 0.51 -1 -1 0.97 0.43215 0.389711 1690 1791 703 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_39.v common 45.16 vpr 96.89 MiB 0.26 18104 -1 -1 1 0.79 -1 -1 40280 -1 -1 228 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99216 22 19 5629 4662 1 2910 280 24 24 576 mult_36 auto 49.9 MiB 1.00 20090 64330 13333 46393 4604 87.3 MiB 3.10 0.04 4.55861 -3641.68 -4.55861 4.55861 2.47 0.0113336 0.00992669 0.841238 0.741184 66 38359 44 1.58331e+07 7.56943e+06 2.33135e+06 4047.49 29.21 5.80053 5.09983 65030 601923 -1 28690 16 10858 13238 1585011 358083 4.54456 4.54456 -3858.1 -4.54456 0 0 2.91907e+06 5067.82 1.03 0.82 0.71 -1 -1 1.03 0.42674 0.384578 1742 1846 722 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_40.v common 29.97 vpr 87.45 MiB 0.28 18344 -1 -1 1 0.72 -1 -1 42380 -1 -1 232 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89552 22 19 5703 4719 1 2952 284 24 24 576 mult_36 auto 50.1 MiB 1.00 18947 59996 11849 42843 5304 87.5 MiB 2.99 0.04 4.34967 -3655.08 -4.34967 4.34967 2.20 0.0102186 0.00929649 0.812512 0.708497 60 35879 41 1.58331e+07 7.62581e+06 2.13333e+06 3703.69 14.27 4.08142 3.5994 62730 548095 -1 27199 19 10579 12398 1314935 306848 4.41926 4.41926 -3778.74 -4.41926 0 0 2.67122e+06 4637.53 1.41 1.03 0.66 -1 -1 1.41 0.610592 0.55043 1771 1865 741 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_41.v common 102.19 vpr 92.43 MiB 0.29 18872 -1 -1 1 0.85 -1 -1 41696 -1 -1 240 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94652 22 19 5950 4932 1 3067 293 24 24 576 mult_36 auto 51.3 MiB 1.10 20012 62501 12151 44656 5694 88.8 MiB 3.02 0.04 4.29396 -3822.03 -4.29396 4.29396 2.42 0.0109472 0.00973069 0.788484 0.694512 64 35939 46 1.58331e+07 8.13456e+06 2.26035e+06 3924.22 86.91 7.61413 6.66948 64454 586630 -1 28402 20 10993 12737 1517197 352014 4.41926 4.41926 -3929.74 -4.41926 0 0 2.84938e+06 4946.85 0.95 0.89 0.53 -1 -1 0.95 0.512511 0.459461 1841 1956 760 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_42.v common 40.84 vpr 102.39 MiB 0.22 19092 -1 -1 1 0.85 -1 -1 42780 -1 -1 242 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 104852 22 19 6024 4989 1 3108 295 24 24 576 mult_36 auto 51.6 MiB 1.06 19910 60136 10755 44360 5021 89.1 MiB 3.19 0.05 4.29396 -3823.01 -4.29396 4.29396 2.13 0.0110489 0.00979717 0.80342 0.720453 68 34391 30 1.58331e+07 8.16275e+06 2.39371e+06 4155.74 25.54 5.38072 4.75976 65606 615345 -1 27865 17 10555 12711 1355075 308860 4.39726 4.39726 -4100.32 -4.39726 0 0 2.98162e+06 5176.42 1.16 0.84 0.59 -1 -1 1.16 0.500254 0.452225 1869 1975 779 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_43.v common 42.26 vpr 103.31 MiB 0.30 19304 -1 -1 1 0.86 -1 -1 43416 -1 -1 250 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105792 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 52.6 MiB 1.04 22784 60306 10847 44895 4564 90.0 MiB 2.81 0.05 4.66986 -4092.44 -4.66986 4.66986 1.84 0.0127938 0.0112669 0.736929 0.656056 68 38832 41 1.58331e+07 8.2755e+06 2.39371e+06 4155.74 27.46 6.3718 5.61617 65606 615345 -1 31135 17 11588 13651 1552306 353970 4.54456 4.54456 -4162.55 -4.54456 0 0 2.98162e+06 5176.42 1.12 0.93 0.60 -1 -1 1.12 0.516048 0.464557 1921 2030 798 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_44.v common 38.86 vpr 102.75 MiB 0.30 19608 -1 -1 1 0.90 -1 -1 43252 -1 -1 253 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105220 22 19 6272 5186 1 3255 306 24 24 576 mult_36 auto 53.0 MiB 1.05 21212 62106 11016 45638 5452 90.3 MiB 2.92 0.05 4.29396 -3963.31 -4.29396 4.29396 1.80 0.0116831 0.0104245 0.749681 0.665321 66 38086 47 1.58331e+07 8.31778e+06 2.33135e+06 4047.49 23.38 5.92509 5.19738 65030 601923 -1 29668 16 11714 13642 1536421 356784 4.52256 4.52256 -4103.45 -4.52256 0 0 2.91907e+06 5067.82 1.22 0.84 0.69 -1 -1 1.22 0.466079 0.419654 1949 2049 817 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_45.v common 28.13 vpr 95.61 MiB 0.26 19872 -1 -1 1 0.97 -1 -1 43732 -1 -1 262 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97904 22 19 6485 5365 1 3364 316 24 24 576 mult_36 auto 54.1 MiB 1.11 21665 63741 11956 46622 5163 91.4 MiB 2.92 0.05 4.41926 -4168.43 -4.41926 4.41926 1.79 0.0122189 0.0109183 0.766961 0.681215 64 37095 22 1.58331e+07 8.84063e+06 2.26035e+06 3924.22 13.29 3.92341 3.4735 64454 586630 -1 31001 18 12007 14131 1617183 372391 4.54456 4.54456 -4244.66 -4.54456 0 0 2.84938e+06 4946.85 1.04 0.95 0.54 -1 -1 1.04 0.54547 0.489158 2011 2122 836 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_46.v common 34.50 vpr 93.95 MiB 0.31 19956 -1 -1 1 0.94 -1 -1 43744 -1 -1 266 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 96200 22 19 6559 5422 1 3406 320 24 24 576 mult_36 auto 54.3 MiB 1.12 22395 70336 13410 49504 7422 91.6 MiB 3.31 0.05 4.29396 -4167.58 -4.29396 4.29396 1.80 0.0121666 0.0108191 0.840222 0.743943 68 38012 39 1.58331e+07 8.897e+06 2.39371e+06 4155.74 18.90 4.37914 3.86273 65606 615345 -1 30883 18 11581 13686 1504829 345509 4.41926 4.41926 -4245.28 -4.41926 0 0 2.98162e+06 5176.42 1.20 0.94 0.60 -1 -1 1.20 0.561498 0.505196 2040 2141 855 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_47.v common 55.24 vpr 96.22 MiB 0.28 20424 -1 -1 1 0.98 -1 -1 44720 -1 -1 273 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98528 22 19 6735 5564 1 3513 327 24 24 576 mult_36 auto 55.1 MiB 1.15 22461 75769 14339 54266 7164 92.6 MiB 3.52 0.05 4.3557 -4269.53 -4.3557 4.3557 1.78 0.0121185 0.0107542 0.90968 0.808417 66 37826 29 1.58331e+07 8.99566e+06 2.33135e+06 4047.49 39.50 7.5275 6.61814 65030 601923 -1 31148 17 12152 14476 1574318 372450 4.41926 4.41926 -4319 -4.41926 0 0 2.91907e+06 5067.82 1.21 0.96 0.57 -1 -1 1.21 0.553841 0.499837 2092 2196 874 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_48.v common 30.07 vpr 96.99 MiB 0.27 20452 -1 -1 1 1.03 -1 -1 44168 -1 -1 276 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99320 22 19 6809 5621 1 3556 330 24 24 576 mult_36 auto 55.5 MiB 1.17 24443 75504 14693 54581 6230 92.9 MiB 3.57 0.05 4.54456 -4333.82 -4.54456 4.54456 1.80 0.0123117 0.0109306 0.888676 0.786709 68 41304 32 1.58331e+07 9.03794e+06 2.39371e+06 4155.74 14.14 4.46422 3.95931 65606 615345 -1 32992 16 12193 14996 1577116 364367 4.66986 4.66986 -4785.3 -4.66986 0 0 2.98162e+06 5176.42 1.07 0.91 0.58 -1 -1 1.07 0.516725 0.465739 2121 2215 893 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_49.v common 46.31 vpr 111.59 MiB 0.31 21276 -1 -1 1 0.99 -1 -1 44344 -1 -1 287 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 114268 22 19 7094 5872 1 3671 342 24 24 576 mult_36 auto 56.8 MiB 1.21 24412 81602 15797 59095 6710 94.4 MiB 3.96 0.06 4.66986 -4735 -4.66986 4.66986 1.83 0.0130857 0.0116387 0.954295 0.842149 76 38504 31 1.58331e+07 9.58898e+06 2.61600e+06 4541.67 29.37 6.8577 6.04702 68478 680951 -1 32830 17 11929 13673 1640992 357972 4.92046 4.92046 -4741.32 -4.92046 0 0 3.24203e+06 5628.53 1.31 1.01 0.64 -1 -1 1.31 0.576819 0.520317 2200 2324 912 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_50.v common 31.86 vpr 100.75 MiB 0.33 21308 -1 -1 1 1.04 -1 -1 44160 -1 -1 290 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 103168 22 19 7168 5929 1 3712 345 24 24 576 mult_36 auto 57.3 MiB 1.21 25160 76512 14255 54563 7694 94.7 MiB 3.55 0.05 4.47552 -4598.48 -4.47552 4.47552 1.79 0.0132486 0.0118063 0.893307 0.79298 70 41615 40 1.58331e+07 9.63126e+06 2.45377e+06 4260.01 15.78 4.98065 4.3777 66754 640332 -1 34443 17 12525 14659 1724396 391207 4.64786 4.64786 -4803.4 -4.64786 0 0 3.09179e+06 5367.68 1.10 1.01 0.59 -1 -1 1.10 0.570513 0.514912 2229 2343 931 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_51.v common 43.31 vpr 101.60 MiB 0.34 21632 -1 -1 1 1.13 -1 -1 44704 -1 -1 297 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 104036 22 19 7344 6071 1 3815 352 24 24 576 mult_36 auto 57.9 MiB 1.23 26112 84808 17528 58730 8550 95.6 MiB 3.98 0.06 4.41926 -4718.92 -4.41926 4.41926 1.91 0.0134537 0.0119714 0.985229 0.871016 72 45711 45 1.58331e+07 9.72992e+06 2.50747e+06 4353.24 25.37 6.23815 5.45844 67330 654343 -1 35468 17 13268 15995 2013855 438885 4.54456 4.54456 -4858.33 -4.54456 0 0 3.14081e+06 5452.80 1.58 1.10 0.75 -1 -1 1.58 0.607669 0.547589 2282 2398 950 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_52.v common 34.67 vpr 103.78 MiB 0.46 21688 -1 -1 1 1.09 -1 -1 45284 -1 -1 301 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 106272 22 19 7418 6128 1 3860 356 24 24 576 mult_36 auto 58.7 MiB 1.26 25970 87365 17770 61046 8549 96.3 MiB 4.12 0.06 4.34967 -4804.09 -4.34967 4.34967 1.97 0.0138025 0.0123442 1.02647 0.89933 72 44233 45 1.58331e+07 9.78629e+06 2.50747e+06 4353.24 17.39 5.84306 5.15283 67330 654343 -1 35405 17 12953 15244 1834273 401238 4.54456 4.54456 -4810.48 -4.54456 0 0 3.14081e+06 5452.80 1.14 1.03 0.60 -1 -1 1.14 0.588523 0.530301 2310 2417 969 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_14.v common 8.90 vpr 66.82 MiB 0.08 9312 -1 -1 1 0.22 -1 -1 34712 -1 -1 58 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68428 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 28.5 MiB 1.56 4023 13117 2985 8070 2062 66.8 MiB 0.50 0.01 8.30942 -383.734 -8.30942 8.30942 0.71 0.00267083 0.00243339 0.158571 0.144609 44 7728 28 6.54114e+06 2.40144e+06 686998. 2683.59 3.19 0.681957 0.611916 24576 170172 -1 6158 22 4604 5291 512140 133084 7.47753 7.47753 -455.971 -7.47753 0 0 871168. 3403.00 0.27 0.26 0.17 -1 -1 0.27 0.129634 0.117161 421 285 247 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_15.v common 9.84 vpr 67.48 MiB 0.07 9524 -1 -1 1 0.14 -1 -1 35136 -1 -1 61 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69100 22 19 1344 989 1 791 107 16 16 256 mult_36 auto 29.3 MiB 0.98 4575 14022 3062 9140 1820 67.5 MiB 0.53 0.01 8.46467 -389.974 -8.46467 8.46467 0.96 0.00287669 0.00262672 0.165077 0.150558 42 9875 50 6.54114e+06 2.83972e+06 649763. 2538.14 4.14 0.98936 0.891648 24068 159480 -1 7244 23 6090 6933 810054 211687 7.95378 7.95378 -494.958 -7.95378 0 0 829453. 3240.05 0.31 0.34 0.16 -1 -1 0.31 0.145601 0.131784 453 304 266 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_16.v common 11.44 vpr 68.04 MiB 0.17 9792 -1 -1 1 0.17 -1 -1 35064 -1 -1 65 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69668 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 29.7 MiB 1.31 4773 16071 3747 10021 2303 68.0 MiB 0.63 0.01 8.40964 -409.362 -8.40964 8.40964 0.97 0.00305769 0.00277669 0.191584 0.174016 46 9093 31 6.54114e+06 2.89609e+06 723233. 2825.13 4.88 0.936375 0.841258 24832 174915 -1 7344 26 5474 6088 675835 171589 8.05383 8.05383 -514.535 -8.05383 0 0 890343. 3477.90 0.27 0.35 0.17 -1 -1 0.27 0.169665 0.152379 481 323 285 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_17.v common 13.41 vpr 68.36 MiB 0.07 10328 -1 -1 1 0.22 -1 -1 35348 -1 -1 71 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70000 22 19 1518 1112 1 895 117 16 16 256 mult_36 auto 30.0 MiB 1.24 5128 15847 3477 10520 1850 68.4 MiB 0.77 0.01 8.98451 -441.089 -8.98451 8.98451 0.99 0.00325804 0.00296122 0.198 0.179415 46 10202 35 6.54114e+06 2.98066e+06 723233. 2825.13 5.85 1.03455 0.928867 24832 174915 -1 8120 24 6873 7643 882202 231673 8.64522 8.64522 -508.026 -8.64522 0 0 890343. 3477.90 0.49 0.45 0.24 -1 -1 0.49 0.191787 0.175454 514 342 304 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_18.v common 16.32 vpr 68.71 MiB 0.11 10240 -1 -1 1 0.21 -1 -1 34964 -1 -1 74 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70364 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 30.6 MiB 2.01 5562 18410 4023 12076 2311 68.7 MiB 0.92 0.01 9.11545 -462.729 -9.11545 9.11545 0.89 0.00305054 0.00273429 0.235478 0.213746 50 10839 29 6.54114e+06 3.02294e+06 787708. 3076.99 9.12 1.81393 1.63828 25344 186282 -1 8621 24 6644 7427 822442 205516 8.84223 8.84223 -564.118 -8.84223 0 0 943753. 3686.54 0.33 0.38 0.18 -1 -1 0.33 0.172482 0.155703 542 361 323 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_19.v common 11.07 vpr 68.94 MiB 0.10 10596 -1 -1 1 0.20 -1 -1 35392 -1 -1 79 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70596 22 19 1688 1231 1 993 126 16 16 256 mult_36 auto 31.0 MiB 1.59 5905 19656 4339 11653 3664 68.9 MiB 0.80 0.01 9.37523 -468.383 -9.37523 9.37523 0.69 0.00376798 0.00348407 0.241625 0.219853 48 11452 47 6.54114e+06 3.48941e+06 755748. 2952.14 4.09 1.10894 1.00304 25088 180500 -1 8957 23 5555 6342 718459 187069 8.83268 8.83268 -558.947 -8.83268 0 0 916467. 3579.95 0.46 0.57 0.21 -1 -1 0.46 0.219612 0.203279 573 380 342 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_20.v common 30.94 vpr 69.19 MiB 0.12 10612 -1 -1 1 0.24 -1 -1 35504 -1 -1 81 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70852 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 31.0 MiB 1.77 6159 20092 4300 10622 5170 69.2 MiB 0.79 0.01 9.0553 -504.795 -9.0553 9.0553 0.78 0.00378076 0.00344765 0.24808 0.225877 48 12002 45 6.54114e+06 3.51759e+06 755748. 2952.14 23.26 2.38778 2.1226 25088 180500 -1 9426 26 8013 9013 1087933 263252 8.51952 8.51952 -758.559 -8.51952 0 0 916467. 3579.95 0.28 0.47 0.18 -1 -1 0.28 0.205109 0.184774 601 399 361 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_21.v common 12.34 vpr 69.63 MiB 0.13 11004 -1 -1 1 0.23 -1 -1 35944 -1 -1 85 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71304 22 19 1859 1351 1 1092 132 16 16 256 mult_36 auto 31.6 MiB 2.10 6816 20232 4108 12738 3386 69.6 MiB 0.96 0.02 9.21366 -510.538 -9.21366 9.21366 0.74 0.00400939 0.00368743 0.251655 0.229113 54 12156 29 6.54114e+06 3.57397e+06 829453. 3240.05 5.14 1.22589 1.10453 26108 202796 -1 9502 23 6442 7334 699332 184639 8.23497 8.23497 -611.204 -8.23497 0 0 1.02522e+06 4004.78 0.31 0.41 0.20 -1 -1 0.31 0.20559 0.187645 632 418 380 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_22.v common 13.48 vpr 70.16 MiB 0.14 11080 -1 -1 1 0.24 -1 -1 35916 -1 -1 90 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71848 22 19 1933 1408 1 1130 137 16 16 256 mult_36 auto 32.2 MiB 1.95 6953 18846 3874 11726 3246 70.2 MiB 0.80 0.01 9.25639 -524.337 -9.25639 9.25639 0.87 0.00402615 0.00365713 0.222939 0.202276 54 12678 28 6.54114e+06 3.64444e+06 829453. 3240.05 5.95 1.24225 1.11428 26108 202796 -1 10018 23 7514 8545 880687 221653 8.27422 8.27422 -608.588 -8.27422 0 0 1.02522e+06 4004.78 0.30 0.42 0.19 -1 -1 0.30 0.201968 0.182501 661 437 399 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_23.v common 21.02 vpr 70.37 MiB 0.11 11432 -1 -1 1 0.30 -1 -1 36192 -1 -1 94 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72060 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 32.2 MiB 1.97 7735 24562 5200 16532 2830 70.4 MiB 1.13 0.02 9.45758 -535.83 -9.45758 9.45758 1.31 0.00411781 0.00373487 0.296329 0.267762 50 14484 31 8.06603e+06 4.09681e+06 1.03391e+06 3191.07 11.53 2.07228 1.87141 32744 246704 -1 11690 23 7230 8414 1076073 253853 8.46493 8.46493 -695.821 -8.46493 0 0 1.23838e+06 3822.15 0.60 0.53 0.27 -1 -1 0.60 0.237209 0.218307 693 456 418 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_24.v common 16.51 vpr 70.91 MiB 0.12 11576 -1 -1 1 0.32 -1 -1 36244 -1 -1 97 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72612 22 19 2105 1529 1 1230 145 18 18 324 mult_36 auto 32.9 MiB 2.22 7180 26745 5794 17769 3182 70.9 MiB 1.43 0.02 9.12646 -589.17 -9.12646 9.12646 0.93 0.00441278 0.00398527 0.356904 0.323208 46 15589 39 8.06603e+06 4.13909e+06 948677. 2928.01 7.50 1.42368 1.27824 32096 231720 -1 11052 22 7422 8604 958262 236388 8.28608 8.28608 -757.327 -8.28608 0 0 1.16833e+06 3605.96 0.60 0.52 0.27 -1 -1 0.60 0.218409 0.198864 721 475 437 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_25.v common 40.07 vpr 71.57 MiB 0.12 11976 -1 -1 1 0.31 -1 -1 36476 -1 -1 101 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73288 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 33.7 MiB 2.18 8299 21425 4201 14721 2503 71.6 MiB 1.02 0.02 9.40561 -605.89 -9.40561 9.40561 0.91 0.00464376 0.00419042 0.274185 0.249031 50 15707 32 8.06603e+06 4.19547e+06 1.03391e+06 3191.07 31.67 2.57831 2.30491 32744 246704 -1 12541 26 8887 10206 1316343 305538 8.90953 8.90953 -711.282 -8.90953 0 0 1.23838e+06 3822.15 0.39 0.59 0.24 -1 -1 0.39 0.256657 0.231514 751 494 456 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_26.v common 37.07 vpr 71.46 MiB 0.15 12104 -1 -1 1 0.30 -1 -1 37396 -1 -1 105 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73180 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 33.6 MiB 2.61 8365 28783 6260 16543 5980 71.5 MiB 1.28 0.02 9.59957 -610.286 -9.59957 9.59957 1.15 0.0048078 0.00437708 0.348784 0.315715 48 16675 42 8.06603e+06 4.25184e+06 991730. 3060.90 27.47 3.00993 2.68727 32420 239176 -1 12949 23 9827 11166 1462580 349293 8.88453 8.88453 -788.036 -8.88453 0 0 1.20291e+06 3712.69 0.48 0.57 0.32 -1 -1 0.48 0.232193 0.209435 779 513 475 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_27.v common 16.44 vpr 71.95 MiB 0.15 12152 -1 -1 1 0.37 -1 -1 36616 -1 -1 111 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73672 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 34.1 MiB 2.22 9241 28370 5807 18956 3607 71.9 MiB 1.55 0.02 9.27331 -683.845 -9.27331 9.27331 0.91 0.00408393 0.0036888 0.384937 0.351323 54 17136 39 8.06603e+06 4.73242e+06 1.08842e+06 3359.33 7.15 1.73344 1.56237 33712 268580 -1 13437 24 10877 12354 1477729 344669 8.64193 8.64193 -919.251 -8.64193 0 0 1.34436e+06 4149.26 0.42 0.62 0.25 -1 -1 0.42 0.259171 0.233586 817 532 494 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_28.v common 22.72 vpr 72.35 MiB 0.15 12312 -1 -1 1 0.32 -1 -1 36720 -1 -1 114 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74084 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 34.4 MiB 2.69 9764 21523 4098 13503 3922 72.3 MiB 1.04 0.03 9.32934 -687.124 -9.32934 9.32934 0.92 0.00493721 0.00450656 0.262727 0.238905 56 16775 37 8.06603e+06 4.7747e+06 1.11497e+06 3441.27 13.11 2.43264 2.18285 34036 275796 -1 13980 23 9350 10755 1348955 317758 8.77023 8.77023 -898.217 -8.77023 0 0 1.37338e+06 4238.83 0.62 0.66 0.28 -1 -1 0.62 0.296604 0.271386 845 551 513 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_29.v common 60.84 vpr 73.03 MiB 0.17 12616 -1 -1 1 0.33 -1 -1 37088 -1 -1 118 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74780 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 35.1 MiB 2.19 9948 31652 6879 21519 3254 73.0 MiB 1.58 0.02 9.31996 -692.815 -9.31996 9.31996 2.19 0.00538114 0.00491033 0.392336 0.354734 50 19158 34 1.31202e+07 5.22708e+06 1.59181e+06 3288.87 48.99 3.01719 2.68693 49674 382800 -1 14996 23 11360 12976 1660239 391147 8.81467 8.81467 -918.954 -8.81467 0 0 1.90554e+06 3937.06 0.64 0.66 0.36 -1 -1 0.64 0.265376 0.239664 881 570 532 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_30.v common 19.67 vpr 73.29 MiB 0.16 12656 -1 -1 1 0.33 -1 -1 37324 -1 -1 123 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75052 22 19 2639 1910 1 1548 173 22 22 484 mult_36 auto 35.5 MiB 2.36 9542 32881 6991 22506 3384 73.3 MiB 1.59 0.02 9.26617 -728.584 -9.26617 9.26617 2.06 0.00538548 0.00491086 0.393646 0.357378 48 19580 38 1.31202e+07 5.29755e+06 1.52614e+06 3153.19 7.96 1.70338 1.52886 49190 371334 -1 15243 26 13014 14790 1866040 442392 8.73812 8.73812 -1114.85 -8.73812 0 0 1.85176e+06 3825.95 0.62 0.77 0.36 -1 -1 0.62 0.3114 0.280231 910 589 551 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_31.v common 59.15 vpr 73.71 MiB 0.20 12928 -1 -1 1 0.34 -1 -1 37348 -1 -1 128 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75484 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 35.9 MiB 2.21 10316 35178 7031 23952 4195 73.7 MiB 1.78 0.03 9.59887 -815.227 -9.59887 9.59887 1.57 0.00566921 0.00517657 0.426446 0.383836 50 19789 33 1.31202e+07 5.36802e+06 1.59181e+06 3288.87 47.81 3.31192 2.92167 49674 382800 -1 15490 27 12044 14151 1818410 427333 9.02988 9.02988 -1082.14 -9.02988 0 0 1.90554e+06 3937.06 0.63 0.78 0.35 -1 -1 0.63 0.328461 0.296876 946 608 570 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_32.v common 28.83 vpr 73.81 MiB 0.16 12952 -1 -1 1 0.36 -1 -1 36824 -1 -1 131 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75580 22 19 2818 2038 1 1656 181 22 22 484 mult_36 auto 36.1 MiB 2.65 10985 33396 7014 22006 4376 73.8 MiB 1.73 0.03 9.18872 -729.727 -9.18872 9.18872 1.57 0.00640126 0.00572527 0.473781 0.43195 52 21147 46 1.31202e+07 5.4103e+06 1.63434e+06 3376.74 16.74 2.83092 2.53569 50638 406276 -1 15805 26 12963 14588 1925572 461503 8.66113 8.66113 -888.638 -8.66113 0 0 2.01763e+06 4168.66 0.95 0.94 0.42 -1 -1 0.95 0.375103 0.322451 974 627 589 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_33.v common 21.76 vpr 74.73 MiB 0.15 13688 -1 -1 1 0.39 -1 -1 37564 -1 -1 137 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76524 22 19 2923 2109 1 1725 188 22 22 484 mult_36 auto 37.2 MiB 2.37 11534 41076 8921 25709 6446 74.7 MiB 1.89 0.03 10.2924 -835.387 -10.2924 10.2924 1.56 0.00583391 0.00536751 0.475426 0.429119 54 21231 38 1.31202e+07 5.89087e+06 1.67518e+06 3461.11 9.97 2.16373 1.93762 51122 416746 -1 16854 24 11734 13578 1615248 384384 9.39377 9.39377 -1134.87 -9.39377 0 0 2.06816e+06 4273.05 0.68 0.71 0.48 -1 -1 0.68 0.311168 0.281181 1009 646 608 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_34.v common 35.58 vpr 74.89 MiB 0.16 13808 -1 -1 1 0.39 -1 -1 37800 -1 -1 140 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76684 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 37.1 MiB 3.56 12266 39170 8245 26892 4033 74.9 MiB 1.92 0.03 9.97834 -770.817 -9.97834 9.97834 1.44 0.00608846 0.00552813 0.463995 0.418833 56 21922 39 1.31202e+07 5.93316e+06 1.71605e+06 3545.56 22.31 3.49199 3.12737 51606 428054 -1 18215 24 13841 15896 2255928 507616 9.94227 9.94227 -1246.47 -9.94227 0 0 2.11301e+06 4365.72 1.14 0.84 0.48 -1 -1 1.14 0.325407 0.294176 1037 665 627 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_35.v common 23.54 vpr 75.37 MiB 0.21 14012 -1 -1 1 0.41 -1 -1 37748 -1 -1 145 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77176 22 19 3101 2236 1 1830 196 22 22 484 mult_36 auto 37.6 MiB 3.16 11422 38319 7965 26269 4085 75.4 MiB 1.84 0.03 9.90229 -825.692 -9.90229 9.90229 1.53 0.00632115 0.00574135 0.456883 0.41249 54 21987 30 1.31202e+07 6.00363e+06 1.67518e+06 3461.11 10.35 2.15176 1.93309 51122 416746 -1 17198 23 12943 14962 1754919 421016 9.26291 9.26291 -1135.22 -9.26291 0 0 2.06816e+06 4273.05 0.99 0.75 0.55 -1 -1 0.99 0.319956 0.289217 1072 684 646 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_36.v common 24.77 vpr 75.95 MiB 0.17 14152 -1 -1 1 0.58 -1 -1 38000 -1 -1 148 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77768 22 19 3175 2293 1 1870 199 22 22 484 mult_36 auto 38.2 MiB 3.69 11959 40219 8453 27913 3853 75.9 MiB 1.82 0.03 10.2141 -827.99 -10.2141 10.2141 1.52 0.00649602 0.0058904 0.476914 0.430441 54 22244 37 1.31202e+07 6.04591e+06 1.67518e+06 3461.11 11.04 2.48964 2.22205 51122 416746 -1 17420 23 11578 13322 1482709 359973 9.58852 9.58852 -1256.36 -9.58852 0 0 2.06816e+06 4273.05 0.96 0.82 0.41 -1 -1 0.96 0.3614 0.331685 1100 703 665 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_37.v common 86.82 vpr 76.46 MiB 0.22 14536 -1 -1 1 0.45 -1 -1 37556 -1 -1 152 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78300 22 19 3280 2364 1 1940 204 24 24 576 mult_36 auto 38.8 MiB 4.17 12413 41604 8759 29253 3592 76.5 MiB 1.99 0.03 10.1414 -859.737 -10.1414 10.1414 2.08 0.00669268 0.0060799 0.495663 0.447289 50 25735 44 1.58331e+07 6.49829e+06 1.88759e+06 3277.06 71.27 4.05155 3.60083 58706 454005 -1 18389 25 12459 14636 1793419 425436 9.27766 9.27766 -1319.74 -9.27766 0 0 2.26035e+06 3924.22 0.83 0.82 0.47 -1 -1 0.83 0.364868 0.329323 1135 722 684 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_38.v common 25.63 vpr 77.21 MiB 0.19 14444 -1 -1 1 0.54 -1 -1 37912 -1 -1 157 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79060 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 39.6 MiB 4.65 12700 43609 9545 30570 3494 77.2 MiB 2.15 0.03 10.0282 -917.593 -10.0282 10.0282 2.13 0.00672846 0.00609621 0.525052 0.471752 56 21119 26 1.58331e+07 6.56876e+06 2.03561e+06 3534.04 9.55 2.14807 1.9198 61006 507707 -1 18139 27 11695 13188 1690980 410021 9.18442 9.18442 -1340.55 -9.18442 0 0 2.50747e+06 4353.24 0.88 0.80 0.48 -1 -1 0.88 0.379935 0.341536 1164 741 703 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_39.v common 26.50 vpr 77.07 MiB 0.19 14716 -1 -1 1 0.46 -1 -1 38248 -1 -1 161 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78920 22 19 3457 2490 1 2042 213 24 24 576 mult_36 auto 39.4 MiB 3.83 12894 46568 10474 28732 7362 77.1 MiB 2.30 0.03 10.1583 -949.474 -10.1583 10.1583 2.09 0.00725246 0.00670114 0.560989 0.503584 54 24143 46 1.58331e+07 6.62513e+06 1.98675e+06 3449.22 11.20 2.51381 2.24536 60430 494267 -1 18677 25 12663 14801 1632827 390484 9.97257 9.97257 -1318.13 -9.97257 0 0 2.45377e+06 4260.01 0.83 0.82 0.45 -1 -1 0.83 0.387062 0.35015 1198 760 722 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_40.v common 28.14 vpr 77.61 MiB 0.23 14904 -1 -1 1 0.49 -1 -1 38736 -1 -1 164 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79476 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 39.9 MiB 4.61 13807 43565 9165 30733 3667 77.6 MiB 2.32 0.03 9.99186 -925.764 -9.99186 9.99186 2.24 0.00760576 0.00665866 0.56218 0.501754 54 25418 49 1.58331e+07 6.66742e+06 1.98675e+06 3449.22 11.88 2.53592 2.24936 60430 494267 -1 20060 24 14263 16167 1965856 473886 9.29411 9.29411 -1401.97 -9.29411 0 0 2.45377e+06 4260.01 0.83 0.87 0.45 -1 -1 0.83 0.374714 0.337669 1226 779 741 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_41.v common 29.89 vpr 77.95 MiB 0.25 15380 -1 -1 1 0.53 -1 -1 38048 -1 -1 170 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79824 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 40.3 MiB 4.19 14145 47543 9891 33901 3751 78.0 MiB 2.44 0.03 9.91159 -1035.36 -9.91159 9.91159 2.08 0.0072808 0.00669045 0.56067 0.505246 54 26939 44 1.58331e+07 7.14798e+06 1.98675e+06 3449.22 14.13 3.06497 2.74367 60430 494267 -1 20614 24 15058 17233 2074607 480593 9.79086 9.79086 -1391.86 -9.79086 0 0 2.45377e+06 4260.01 0.86 0.88 0.44 -1 -1 0.86 0.37967 0.342553 1261 798 760 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_42.v common 42.86 vpr 83.43 MiB 0.24 15348 -1 -1 1 0.55 -1 -1 38312 -1 -1 173 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85428 22 19 3708 2673 1 2186 226 24 24 576 mult_36 auto 40.8 MiB 4.89 16104 42194 8322 28032 5840 78.4 MiB 1.89 0.03 10.4136 -1012.01 -10.4136 10.4136 1.81 0.00779738 0.00713442 0.429003 0.387594 62 27815 40 1.58331e+07 7.19026e+06 2.19658e+06 3813.51 25.82 3.6689 3.27256 63306 560109 -1 21638 25 14219 16394 2291368 490734 9.41877 9.41877 -1577.24 -9.41877 0 0 2.72095e+06 4723.87 1.44 1.10 0.55 -1 -1 1.44 0.479689 0.438416 1289 817 779 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_43.v common 35.24 vpr 79.09 MiB 0.19 15624 -1 -1 1 0.50 -1 -1 38924 -1 -1 178 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80992 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 41.4 MiB 4.17 15296 41295 8139 29365 3791 79.1 MiB 2.18 0.04 10.16 -1063.97 -10.16 10.16 1.86 0.00787894 0.00716212 0.511222 0.459688 56 28472 50 1.58331e+07 7.26073e+06 2.03561e+06 3534.04 19.73 3.40716 3.03022 61006 507707 -1 22090 23 15206 17473 2444394 558097 9.42572 9.42572 -1494.13 -9.42572 0 0 2.50747e+06 4353.24 0.86 0.98 0.46 -1 -1 0.86 0.408745 0.369816 1323 836 798 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_44.v common 27.55 vpr 79.29 MiB 0.25 15712 -1 -1 1 0.60 -1 -1 38500 -1 -1 181 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81196 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 41.6 MiB 4.70 15489 47034 9365 34232 3437 79.3 MiB 2.32 0.03 10.121 -975.462 -10.121 10.121 1.76 0.00789001 0.00715898 0.556089 0.500276 60 24207 29 1.58331e+07 7.30301e+06 2.13333e+06 3703.69 10.87 2.47086 2.20958 62730 548095 -1 21032 24 12683 14355 1753295 422656 9.00722 9.00722 -1352.2 -9.00722 0 0 2.67122e+06 4637.53 1.36 0.89 0.62 -1 -1 1.36 0.440699 0.402131 1351 855 817 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_45.v common 32.51 vpr 79.47 MiB 0.26 15988 -1 -1 1 0.56 -1 -1 40396 -1 -1 186 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81376 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 41.9 MiB 5.32 16340 50155 10505 31575 8075 79.5 MiB 2.30 0.03 10.0722 -985.253 -10.0722 10.0722 2.28 0.00825621 0.00750867 0.591546 0.533471 62 27929 47 1.58331e+07 7.76948e+06 2.19658e+06 3813.51 15.24 3.37737 3.01058 63306 560109 -1 21607 23 12498 14826 1663854 396826 9.12307 9.12307 -1451.12 -9.12307 0 0 2.72095e+06 4723.87 0.92 0.86 0.54 -1 -1 0.92 0.399133 0.360941 1387 874 836 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_46.v common 38.09 vpr 86.33 MiB 0.17 16148 -1 -1 1 0.55 -1 -1 40576 -1 -1 189 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88400 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 42.1 MiB 5.06 16549 53303 11025 37595 4683 79.8 MiB 2.48 0.03 10.5357 -1123.54 -10.5357 10.5357 2.19 0.0082252 0.00745019 0.619482 0.556261 64 25587 38 1.58331e+07 7.81177e+06 2.26035e+06 3924.22 20.38 4.17895 3.72981 64454 586630 -1 22060 23 10577 12608 1472265 347313 9.67737 9.67737 -1524.22 -9.67737 0 0 2.84938e+06 4946.85 1.00 0.74 0.57 -1 -1 1.00 0.395616 0.358087 1414 893 855 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_47.v common 36.56 vpr 86.98 MiB 0.27 16624 -1 -1 1 0.61 -1 -1 40820 -1 -1 194 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89068 22 19 4167 2996 1 2465 248 24 24 576 mult_36 auto 42.6 MiB 4.68 16473 59376 11937 40248 7191 80.2 MiB 2.80 0.04 10.4408 -1061.77 -10.4408 10.4408 1.75 0.00795436 0.00714584 0.666381 0.601639 60 26903 48 1.58331e+07 7.88224e+06 2.13333e+06 3703.69 20.02 4.13529 3.68926 62730 548095 -1 21754 23 12304 14126 1550289 380177 9.28402 9.28402 -1464.85 -9.28402 0 0 2.67122e+06 4637.53 0.92 0.83 0.49 -1 -1 0.92 0.424062 0.382806 1449 912 874 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_48.v common 37.73 vpr 87.44 MiB 0.23 16644 -1 -1 1 0.62 -1 -1 40928 -1 -1 197 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89536 22 19 4241 3053 1 2504 251 24 24 576 mult_36 auto 42.9 MiB 5.36 16474 57994 11394 40219 6381 80.4 MiB 2.83 0.04 10.5013 -1047.39 -10.5013 10.5013 1.78 0.00882031 0.00804916 0.663568 0.597136 64 25175 29 1.58331e+07 7.92452e+06 2.26035e+06 3924.22 20.17 4.27809 3.80259 64454 586630 -1 22200 23 12490 14529 1711643 410861 9.39387 9.39387 -1359.3 -9.39387 0 0 2.84938e+06 4946.85 1.01 0.88 0.54 -1 -1 1.01 0.432059 0.389409 1477 931 893 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_49.v common 38.08 vpr 87.54 MiB 0.28 16988 -1 -1 1 0.60 -1 -1 41068 -1 -1 204 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89636 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 43.4 MiB 5.12 17944 60484 12294 40037 8153 80.9 MiB 2.90 0.04 10.2711 -1057.18 -10.2711 10.2711 1.81 0.00819571 0.00740488 0.700145 0.62922 60 28418 34 1.58331e+07 8.41918e+06 2.13333e+06 3703.69 20.51 4.19681 3.7411 62730 548095 -1 23860 21 13375 15404 1783547 434526 9.48426 9.48426 -1463.7 -9.48426 0 0 2.67122e+06 4637.53 0.91 0.87 0.55 -1 -1 0.91 0.41483 0.37537 1512 950 912 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_50.v common 31.99 vpr 81.06 MiB 0.20 17020 -1 -1 1 0.61 -1 -1 40956 -1 -1 206 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83004 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 43.7 MiB 5.73 17532 50241 9749 32850 7642 81.1 MiB 2.19 0.03 10.0416 -1157.63 -10.0416 10.0416 1.77 0.00889221 0.00805436 0.571657 0.512315 58 28679 43 1.58331e+07 8.44736e+06 2.08734e+06 3623.85 14.53 3.09452 2.76864 62154 534210 -1 23883 25 16571 18768 2358557 558388 9.36196 9.36196 -1664.67 -9.36196 0 0 2.61600e+06 4541.67 0.90 1.07 0.49 -1 -1 0.90 0.483431 0.435221 1541 969 931 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_51.v common 29.21 vpr 81.21 MiB 0.30 17376 -1 -1 1 0.67 -1 -1 41112 -1 -1 211 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83164 22 19 4524 3251 1 2680 266 24 24 576 mult_36 auto 43.6 MiB 5.35 18368 60116 11930 38131 10055 81.2 MiB 2.67 0.04 10.5845 -1178.84 -10.5845 10.5845 1.71 0.00908059 0.00822022 0.688751 0.619631 66 27293 26 1.58331e+07 8.51783e+06 2.33135e+06 4047.49 11.30 2.87226 2.57059 65030 601923 -1 23810 20 12167 13847 1609632 377723 9.57737 9.57737 -1575.72 -9.57737 0 0 2.91907e+06 5067.82 1.27 0.82 0.68 -1 -1 1.27 0.415059 0.376079 1576 988 950 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_52.v common 38.52 vpr 81.42 MiB 0.31 17568 -1 -1 1 0.64 -1 -1 39420 -1 -1 215 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83376 22 19 4598 3308 1 2717 270 24 24 576 mult_36 auto 43.8 MiB 5.90 18189 61310 12677 40484 8149 81.4 MiB 2.85 0.04 10.1072 -1112.57 -10.1072 10.1072 1.72 0.00933908 0.00844848 0.69867 0.62706 58 33606 48 1.58331e+07 8.57421e+06 2.08734e+06 3623.85 20.07 3.8881 3.46496 62154 534210 -1 25197 24 15147 17510 2264940 516528 9.45177 9.45177 -1662.09 -9.45177 0 0 2.61600e+06 4541.67 0.91 1.06 0.49 -1 -1 0.91 0.488159 0.440255 1605 1007 969 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_14.v common 8.50 vpr 71.57 MiB 0.11 10472 -1 -1 1 0.27 -1 -1 35440 -1 -1 65 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73284 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 34.0 MiB 0.69 5272 15101 3393 9968 1740 71.6 MiB 0.37 0.01 4.0831 -1115.98 -4.0831 4.0831 0.58 0.0034759 0.00313328 0.217026 0.195977 64 9828 23 6.59459e+06 2.52492e+06 943753. 3686.54 3.60 0.988199 0.864659 27892 240595 -1 8477 16 3926 4549 486168 112677 4.27196 4.27196 -1212.54 -4.27196 0 0 1.19033e+06 4649.74 0.30 0.24 0.21 -1 -1 0.30 0.136181 0.121699 481 708 247 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_15.v common 9.16 vpr 72.44 MiB 0.06 10800 -1 -1 1 0.24 -1 -1 36992 -1 -1 72 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74180 22 19 2144 1789 1 1110 118 16 16 256 mult_36 auto 34.8 MiB 0.98 6136 19192 4400 11965 2827 72.4 MiB 0.47 0.01 4.07762 -1246.61 -4.07762 4.07762 0.53 0.00377881 0.00340845 0.27241 0.245631 68 11309 29 6.59459e+06 3.02225e+06 1.00038e+06 3907.74 3.77 1.15784 1.01647 28404 252462 -1 9516 17 4344 4959 564949 131023 4.27196 4.27196 -1329.64 -4.27196 0 0 1.24648e+06 4869.04 0.30 0.28 0.24 -1 -1 0.30 0.159052 0.141737 521 769 266 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_16.v common 10.44 vpr 72.95 MiB 0.08 10940 -1 -1 1 0.23 -1 -1 36856 -1 -1 74 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74700 22 19 2218 1846 1 1154 120 16 16 256 mult_36 auto 35.3 MiB 0.88 6159 16935 3952 11063 1920 72.9 MiB 0.44 0.01 4.14666 -1298.68 -4.14666 4.14666 0.59 0.00394912 0.00355481 0.245771 0.221636 64 13073 22 6.59459e+06 3.0512e+06 943753. 3686.54 5.23 1.15014 1.00888 27892 240595 -1 10191 20 4784 5574 648344 144961 4.39726 4.39726 -1411.91 -4.39726 0 0 1.19033e+06 4649.74 0.29 0.30 0.21 -1 -1 0.29 0.170515 0.151369 540 788 285 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_17.v common 28.01 vpr 74.32 MiB 0.10 11684 -1 -1 1 0.28 -1 -1 36576 -1 -1 83 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76104 22 19 2536 2130 1 1256 129 16 16 256 mult_36 auto 36.9 MiB 1.18 6865 15729 3064 11003 1662 74.3 MiB 0.42 0.01 4.27196 -1448.46 -4.27196 4.27196 0.58 0.00465454 0.00412377 0.234476 0.211013 62 14881 44 6.59459e+06 3.18149e+06 916467. 3579.95 22.37 2.23199 1.9324 27384 229598 -1 10624 18 4845 5517 591644 141708 4.27196 4.27196 -1513.48 -4.27196 0 0 1.13630e+06 4438.68 0.26 0.30 0.19 -1 -1 0.26 0.179178 0.159375 617 924 304 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_18.v common 9.57 vpr 74.83 MiB 0.10 11884 -1 -1 1 0.31 -1 -1 37200 -1 -1 86 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76624 22 19 2610 2187 1 1305 132 16 16 256 mult_36 auto 37.5 MiB 0.99 6869 16212 3205 10695 2312 74.8 MiB 0.42 0.01 4.03926 -1468.2 -4.03926 4.03926 0.58 0.00449043 0.00402742 0.234775 0.2109 70 12353 27 6.59459e+06 3.22491e+06 1.02522e+06 4004.78 3.93 1.22954 1.06835 28912 262511 -1 10716 20 5011 5723 704649 159235 4.27196 4.27196 -1543.19 -4.27196 0 0 1.29210e+06 5047.26 0.31 0.34 0.25 -1 -1 0.31 0.199818 0.1773 636 943 323 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_19.v common 10.50 vpr 75.61 MiB 0.11 12332 -1 -1 1 0.23 -1 -1 36868 -1 -1 91 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77428 22 19 2778 2321 1 1401 138 16 16 256 mult_36 auto 38.4 MiB 0.98 7751 20074 4172 13462 2440 75.6 MiB 0.50 0.01 4.20832 -1614.09 -4.20832 4.20832 0.59 0.00455987 0.00407148 0.282142 0.252858 70 14091 32 6.59459e+06 3.69329e+06 1.02522e+06 4004.78 4.69 1.46178 1.27549 28912 262511 -1 11597 19 5221 6080 670296 155538 4.27196 4.27196 -1747.26 -4.27196 0 0 1.29210e+06 5047.26 0.31 0.34 0.25 -1 -1 0.31 0.20489 0.182093 676 1002 342 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_20.v common 11.55 vpr 76.22 MiB 0.14 12328 -1 -1 1 0.36 -1 -1 36916 -1 -1 93 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78052 22 19 2852 2378 1 1441 140 16 16 256 mult_36 auto 39.0 MiB 1.20 7701 24098 5487 15382 3229 76.2 MiB 0.69 0.01 4.14666 -1615.69 -4.14666 4.14666 0.59 0.00482598 0.00432145 0.385718 0.345251 68 15216 40 6.59459e+06 3.72224e+06 1.00038e+06 3907.74 5.20 1.61757 1.41891 28404 252462 -1 12039 17 5419 6476 661435 153008 4.27196 4.27196 -1732.55 -4.27196 0 0 1.24648e+06 4869.04 0.32 0.34 0.23 -1 -1 0.32 0.201544 0.180315 695 1021 361 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_21.v common 13.54 vpr 77.15 MiB 0.15 12796 -1 -1 1 0.34 -1 -1 37844 -1 -1 97 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79000 22 19 3057 2549 1 1544 144 16 16 256 mult_36 auto 40.0 MiB 1.31 9367 24272 5008 16124 3140 77.1 MiB 0.68 0.01 4.39726 -1835.45 -4.39726 4.39726 0.58 0.00532694 0.00478054 0.376655 0.338089 74 16942 47 6.59459e+06 3.78015e+06 1.07073e+06 4182.55 6.89 2.11826 1.85409 29424 273870 -1 13957 14 5924 6833 901877 190814 4.52256 4.52256 -1968.88 -4.52256 0 0 1.33358e+06 5209.30 0.32 0.36 0.25 -1 -1 0.32 0.186047 0.16608 742 1099 380 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_22.v common 12.36 vpr 77.33 MiB 0.11 13000 -1 -1 1 0.38 -1 -1 37952 -1 -1 100 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79184 22 19 3131 2606 1 1587 147 16 16 256 mult_36 auto 40.3 MiB 1.11 8900 25689 5397 16690 3602 77.3 MiB 0.70 0.01 4.27196 -1832.45 -4.27196 4.27196 0.56 0.00564151 0.00505803 0.391706 0.351179 74 16546 36 6.59459e+06 3.82357e+06 1.07073e+06 4182.55 5.80 1.71816 1.50682 29424 273870 -1 13593 21 6218 7124 883830 200504 4.27196 4.27196 -1953.42 -4.27196 0 0 1.33358e+06 5209.30 0.32 0.45 0.24 -1 -1 0.32 0.256768 0.228242 762 1118 399 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_23.v common 14.10 vpr 78.45 MiB 0.13 13308 -1 -1 1 0.37 -1 -1 38060 -1 -1 107 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80332 22 19 3301 2742 1 1685 155 18 18 324 mult_36 auto 41.3 MiB 1.00 9550 28859 6368 19463 3028 78.4 MiB 0.57 0.01 4.27196 -1973.15 -4.27196 4.27196 0.66 0.00634227 0.00573287 0.287066 0.258115 68 18693 46 8.13932e+06 4.3209e+06 1.31159e+06 4048.11 7.26 1.84939 1.62041 36620 334356 -1 14822 18 6572 7617 914655 195234 4.39726 4.39726 -2060.9 -4.39726 0 0 1.63345e+06 5041.52 0.42 0.44 0.31 -1 -1 0.42 0.239853 0.214582 802 1179 418 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_24.v common 12.49 vpr 78.90 MiB 0.14 13444 -1 -1 1 0.29 -1 -1 38112 -1 -1 109 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80796 22 19 3375 2799 1 1732 157 18 18 324 mult_36 auto 41.8 MiB 0.75 10056 25960 5726 17532 2702 78.9 MiB 0.71 0.01 4.27196 -2004.23 -4.27196 4.27196 0.77 0.00625433 0.00566837 0.392726 0.352573 76 17719 30 8.13932e+06 4.34985e+06 1.43297e+06 4422.75 5.70 1.77721 1.56248 38232 369828 -1 14833 17 6600 7437 899992 195667 4.39726 4.39726 -2169.68 -4.39726 0 0 1.77541e+06 5479.65 0.46 0.43 0.33 -1 -1 0.46 0.242617 0.21773 821 1198 437 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_25.v common 13.23 vpr 79.76 MiB 0.14 14020 -1 -1 1 0.37 -1 -1 38096 -1 -1 116 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81676 22 19 3615 3005 1 1836 164 18 18 324 mult_36 auto 42.7 MiB 1.03 10729 33764 7877 22457 3430 79.8 MiB 0.90 0.01 4.39726 -2180.78 -4.39726 4.39726 0.78 0.00623701 0.00557538 0.503163 0.449551 76 19342 24 8.13932e+06 4.45118e+06 1.43297e+06 4422.75 5.58 1.93758 1.70715 38232 369828 -1 16315 17 6932 7862 1003575 222232 4.39726 4.39726 -2258.25 -4.39726 0 0 1.77541e+06 5479.65 0.46 0.52 0.33 -1 -1 0.46 0.27578 0.248193 877 1293 456 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_26.v common 15.22 vpr 80.33 MiB 0.15 14088 -1 -1 1 0.44 -1 -1 38552 -1 -1 118 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82260 22 19 3689 3062 1 1874 166 18 18 324 mult_36 auto 43.3 MiB 1.16 10442 30262 6705 20097 3460 80.3 MiB 0.77 0.01 4.27196 -2184.83 -4.27196 4.27196 0.79 0.00652778 0.00585374 0.404966 0.361867 72 20476 50 8.13932e+06 4.48013e+06 1.37338e+06 4238.83 7.42 2.18124 1.91119 37588 355536 -1 16153 20 7464 8416 998033 217072 4.14666 4.14666 -2311.78 -4.14666 0 0 1.72054e+06 5310.31 0.47 0.50 0.39 -1 -1 0.47 0.292601 0.260921 896 1312 475 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_27.v common 14.26 vpr 81.57 MiB 0.21 14520 -1 -1 1 0.45 -1 -1 38396 -1 -1 126 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83528 22 19 3871 3210 1 1982 175 18 18 324 mult_36 auto 44.4 MiB 1.24 11174 29515 6552 19982 2981 81.6 MiB 0.80 0.01 4.27196 -2274.04 -4.27196 4.27196 0.78 0.00630671 0.00561642 0.439461 0.393044 68 21260 31 8.13932e+06 4.99193e+06 1.31159e+06 4048.11 6.40 2.09377 1.83035 36620 334356 -1 17367 17 7795 9201 990857 222794 4.39726 4.39726 -2515.29 -4.39726 0 0 1.63345e+06 5041.52 0.42 0.49 0.30 -1 -1 0.42 0.282366 0.253531 944 1385 494 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_28.v common 13.93 vpr 81.64 MiB 0.14 14688 -1 -1 1 0.47 -1 -1 38576 -1 -1 128 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83604 22 19 3945 3267 1 2025 177 18 18 324 mult_36 auto 44.7 MiB 1.09 11734 34897 7640 23359 3898 81.6 MiB 0.90 0.01 4.27196 -2285.03 -4.27196 4.27196 0.77 0.00668871 0.00599553 0.483753 0.431257 72 22190 34 8.13932e+06 5.02088e+06 1.37338e+06 4238.83 5.98 2.12639 1.84804 37588 355536 -1 17870 17 7943 9223 1126928 247605 4.39726 4.39726 -2508.33 -4.39726 0 0 1.72054e+06 5310.31 0.45 0.56 0.30 -1 -1 0.45 0.304202 0.272596 962 1404 513 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_29.v common 18.58 vpr 82.79 MiB 0.19 14976 -1 -1 1 0.49 -1 -1 39616 -1 -1 135 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84780 22 19 4159 3447 1 2141 185 22 22 484 mult_36 auto 45.8 MiB 1.44 13174 35953 8427 24187 3339 82.8 MiB 1.04 0.02 4.22237 -2488.49 -4.22237 4.22237 1.18 0.00856951 0.00780558 0.564857 0.507552 72 25377 43 1.32347e+07 5.5182e+06 2.11301e+06 4365.72 8.73 2.57868 2.27583 56918 551676 -1 20346 15 8444 9848 1257155 262005 4.39726 4.39726 -2750.66 -4.39726 0 0 2.64603e+06 5467.00 0.75 0.46 0.50 -1 -1 0.75 0.2482 0.223951 1015 1491 532 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_30.v common 18.97 vpr 84.25 MiB 0.19 15232 -1 -1 1 0.52 -1 -1 40872 -1 -1 137 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86276 22 19 4233 3504 1 2181 187 22 22 484 mult_36 auto 46.4 MiB 1.32 13110 38635 8392 26373 3870 84.3 MiB 1.00 0.01 4.08302 -2563.57 -4.08302 4.08302 1.21 0.00716477 0.00630509 0.530592 0.472881 68 25874 37 1.32347e+07 5.54715e+06 2.01763e+06 4168.66 9.32 2.41307 2.11127 55470 518816 -1 20145 22 8858 10316 1212837 260181 4.14666 4.14666 -2787.95 -4.14666 0 0 2.51205e+06 5190.18 0.65 0.59 0.44 -1 -1 0.65 0.338688 0.299762 1034 1510 551 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_31.v common 18.06 vpr 85.23 MiB 0.23 15608 -1 -1 1 0.54 -1 -1 40796 -1 -1 143 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87276 22 19 4410 3647 1 2284 193 22 22 484 mult_36 auto 47.4 MiB 1.13 14030 46981 10944 31495 4542 85.2 MiB 1.28 0.02 4.39726 -2691.53 -4.39726 4.39726 1.26 0.00865791 0.00769648 0.685382 0.611844 76 25587 29 1.32347e+07 5.63401e+06 2.20457e+06 4554.90 8.03 2.41776 2.11977 57882 574062 -1 21637 17 8701 9904 1360390 269571 4.64786 4.64786 -2958.16 -4.64786 0 0 2.73077e+06 5642.09 0.76 0.63 0.37 -1 -1 0.76 0.339392 0.307222 1077 1578 570 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_32.v common 21.69 vpr 84.51 MiB 0.21 15728 -1 -1 1 0.55 -1 -1 40596 -1 -1 145 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86536 22 19 4484 3704 1 2331 195 22 22 484 mult_36 auto 47.4 MiB 1.32 14336 39180 9212 26344 3624 84.5 MiB 1.07 0.02 4.27196 -2750.64 -4.27196 4.27196 1.30 0.00779802 0.00686165 0.574051 0.513729 74 27846 43 1.32347e+07 5.66296e+06 2.15943e+06 4461.62 11.13 2.7468 2.41532 57402 562966 -1 21950 17 9362 10872 1422997 286951 4.52256 4.52256 -3005.56 -4.52256 0 0 2.68771e+06 5553.12 0.74 0.66 0.53 -1 -1 0.74 0.333597 0.299696 1096 1597 589 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_33.v common 22.52 vpr 86.98 MiB 0.26 16636 -1 -1 1 0.59 -1 -1 41576 -1 -1 157 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89064 22 19 4843 4029 1 2441 208 22 22 484 mult_36 auto 49.7 MiB 1.74 14676 47024 10400 32136 4488 87.0 MiB 1.30 0.02 4.39726 -2845.68 -4.39726 4.39726 1.30 0.00826196 0.00738647 0.697696 0.62331 78 24684 29 1.32347e+07 6.23266e+06 2.25108e+06 4650.99 10.99 3.39692 2.97879 58850 595650 -1 21723 14 8860 10340 1224784 254736 4.39726 4.39726 -3004.01 -4.39726 0 0 2.82299e+06 5832.63 0.74 0.56 0.53 -1 -1 0.74 0.31281 0.283115 1185 1756 608 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_34.v common 23.60 vpr 86.76 MiB 0.29 16752 -1 -1 1 0.62 -1 -1 41480 -1 -1 160 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88844 22 19 4917 4086 1 2486 211 22 22 484 mult_36 auto 50.2 MiB 1.67 14916 46609 10188 31704 4717 86.8 MiB 1.24 0.02 4.27196 -2997.24 -4.27196 4.27196 1.27 0.00858556 0.00770115 0.67088 0.597459 80 25429 32 1.32347e+07 6.27609e+06 2.29262e+06 4736.82 12.34 3.4883 3.04762 59334 607116 -1 22295 17 9208 10622 1372836 273552 4.27196 4.27196 -3123.26 -4.27196 0 0 2.87723e+06 5944.70 0.75 0.61 0.49 -1 -1 0.75 0.336562 0.300767 1205 1775 627 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_35.v common 20.24 vpr 87.50 MiB 0.25 17108 -1 -1 1 0.68 -1 -1 41776 -1 -1 163 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89604 22 19 5093 4228 1 2588 214 22 22 484 mult_36 auto 50.9 MiB 1.67 15536 45583 9917 31556 4110 87.5 MiB 1.27 0.02 4.27196 -3005.45 -4.27196 4.27196 1.31 0.00869664 0.00777674 0.669261 0.594241 76 28352 31 1.32347e+07 6.31951e+06 2.20457e+06 4554.90 9.25 2.8244 2.47362 57882 574062 -1 23607 17 9965 11831 1457758 304984 4.39726 4.39726 -3480.44 -4.39726 0 0 2.73077e+06 5642.09 0.74 0.67 0.43 -1 -1 0.74 0.353488 0.321039 1248 1842 646 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_36.v common 22.73 vpr 87.92 MiB 0.25 17160 -1 -1 1 0.67 -1 -1 41868 -1 -1 165 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90028 22 19 5167 4285 1 2632 216 22 22 484 mult_36 auto 51.4 MiB 1.63 15667 41624 8267 29885 3472 87.9 MiB 1.23 0.02 4.33362 -3152.9 -4.33362 4.33362 1.28 0.00850204 0.00759229 0.636531 0.565249 74 29785 34 1.32347e+07 6.34846e+06 2.15943e+06 4461.62 11.37 3.30946 2.8967 57402 562966 -1 24080 19 10244 12040 1518165 313102 4.52256 4.52256 -3590.71 -4.52256 0 0 2.68771e+06 5553.12 0.75 0.71 0.49 -1 -1 0.75 0.40039 0.357387 1267 1861 665 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_37.v common 23.77 vpr 89.23 MiB 0.26 17788 -1 -1 1 0.66 -1 -1 40800 -1 -1 173 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91368 22 19 5380 4464 1 2743 225 24 24 576 mult_36 auto 52.8 MiB 1.91 17323 51525 11897 34432 5196 89.2 MiB 1.39 0.02 4.28601 -3284.49 -4.28601 4.28601 1.54 0.00857551 0.00763061 0.733055 0.64925 74 30303 40 1.59675e+07 6.86027e+06 2.56259e+06 4448.94 10.91 3.19892 2.80024 67906 667765 -1 25244 18 10317 12089 1522453 322878 4.39726 4.39726 -3731.23 -4.39726 0 0 3.19068e+06 5539.38 0.95 0.75 0.60 -1 -1 0.95 0.40953 0.366886 1321 1947 684 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_38.v common 22.68 vpr 89.94 MiB 0.17 17808 -1 -1 1 0.71 -1 -1 42296 -1 -1 176 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92100 22 19 5454 4521 1 2787 228 24 24 576 mult_36 auto 52.9 MiB 2.02 17173 57996 13827 39781 4388 89.4 MiB 1.61 0.02 4.52256 -3242.13 -4.52256 4.52256 1.46 0.00925643 0.00828699 0.842234 0.748468 74 29865 34 1.59675e+07 6.90369e+06 2.56259e+06 4448.94 9.75 3.22568 2.83864 67906 667765 -1 25656 15 10421 12099 1547300 316808 4.64786 4.64786 -3606.77 -4.64786 0 0 3.19068e+06 5539.38 0.98 0.68 0.62 -1 -1 0.98 0.359616 0.32315 1340 1966 703 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_39.v common 25.20 vpr 90.11 MiB 0.21 18144 -1 -1 1 0.71 -1 -1 40084 -1 -1 180 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92272 22 19 5629 4662 1 2884 232 24 24 576 mult_36 auto 53.8 MiB 2.03 18624 55768 13035 37822 4911 90.1 MiB 1.61 0.02 4.39726 -3391.54 -4.39726 4.39726 1.50 0.0104887 0.00942536 0.862312 0.77126 76 33253 33 1.59675e+07 6.9616e+06 2.61600e+06 4541.67 11.98 3.38951 2.98079 68478 680951 -1 27050 17 10922 12570 1623278 339627 4.52256 4.52256 -3618.17 -4.52256 0 0 3.24203e+06 5628.53 0.93 0.73 0.59 -1 -1 0.93 0.390966 0.349857 1381 2032 722 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_40.v common 106.73 vpr 91.25 MiB 0.15 18340 -1 -1 1 0.75 -1 -1 42292 -1 -1 182 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93440 22 19 5703 4719 1 2932 234 24 24 576 mult_36 auto 54.2 MiB 2.06 17761 53514 12161 36873 4480 90.6 MiB 1.51 0.02 4.3337 -3472.19 -4.3337 4.3337 1.47 0.0105528 0.00951556 0.779612 0.694323 70 33764 46 1.59675e+07 6.99055e+06 2.45377e+06 4260.01 93.93 6.55011 5.67694 66754 640332 -1 27180 18 11294 13295 1660649 350009 4.39726 4.39726 -3935.92 -4.39726 0 0 3.09179e+06 5367.68 0.84 0.73 0.53 -1 -1 0.84 0.400462 0.355338 1400 2051 741 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_41.v common 28.65 vpr 92.59 MiB 0.22 18828 -1 -1 1 0.74 -1 -1 41616 -1 -1 190 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94816 22 19 5950 4932 1 3040 243 24 24 576 mult_36 auto 55.3 MiB 2.19 19478 54819 12176 38018 4625 91.5 MiB 1.41 0.02 4.41131 -3650.22 -4.41131 4.41131 1.44 0.00941679 0.00837831 0.711187 0.628289 80 31276 23 1.59675e+07 7.50235e+06 2.72095e+06 4723.87 15.35 3.98026 3.46891 70206 720185 -1 27478 16 10740 12213 1485213 299160 4.52256 4.52256 -3708.57 -4.52256 0 0 3.41546e+06 5929.62 0.96 0.70 0.62 -1 -1 0.96 0.397874 0.356582 1461 2153 760 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_42.v common 24.36 vpr 92.43 MiB 0.21 19056 -1 -1 1 0.62 -1 -1 42764 -1 -1 193 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94644 22 19 6024 4989 1 3083 246 24 24 576 mult_36 auto 56.0 MiB 2.07 19232 63386 14561 42862 5963 92.0 MiB 1.77 0.02 4.64786 -3641.46 -4.64786 4.64786 1.43 0.0112474 0.010131 0.930823 0.832762 76 33762 25 1.59675e+07 7.54578e+06 2.61600e+06 4541.67 10.82 3.38503 2.97948 68478 680951 -1 28522 16 11374 13382 1767274 362795 4.77316 4.77316 -3938.14 -4.77316 0 0 3.24203e+06 5628.53 0.92 0.78 0.55 -1 -1 0.92 0.417719 0.37574 1480 2172 779 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_43.v common 35.71 vpr 93.63 MiB 0.30 19448 -1 -1 1 0.89 -1 -1 43352 -1 -1 199 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 95880 22 19 6198 5129 1 3182 252 24 24 576 mult_36 auto 56.7 MiB 2.19 20650 59877 13155 41281 5441 92.9 MiB 1.63 0.02 4.39726 -3811.72 -4.39726 4.39726 1.47 0.010274 0.00901819 0.831265 0.734367 78 35628 33 1.59675e+07 7.63263e+06 2.67122e+06 4637.53 21.70 4.45954 3.88855 69630 706637 -1 29571 16 11494 13119 1806404 359043 4.64786 4.64786 -3950.34 -4.64786 0 0 3.35110e+06 5817.88 0.91 0.77 0.65 -1 -1 0.91 0.453584 0.408737 1523 2237 798 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_44.v common 28.11 vpr 96.53 MiB 0.26 19612 -1 -1 1 0.87 -1 -1 43360 -1 -1 200 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98848 22 19 6272 5186 1 3228 253 24 24 576 mult_36 auto 57.2 MiB 2.22 21041 60977 14663 40942 5372 93.6 MiB 1.92 0.02 4.39726 -3882.95 -4.39726 4.39726 1.50 0.0117697 0.0106141 0.99995 0.890587 82 35957 47 1.59675e+07 7.64711e+06 2.78508e+06 4835.20 14.12 4.51457 3.96961 70778 734779 -1 29743 17 11967 13657 1737679 357747 4.52256 4.52256 -4130.14 -4.52256 0 0 3.48632e+06 6052.64 1.01 0.82 0.55 -1 -1 1.01 0.438991 0.392591 1542 2256 817 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_45.v common 34.41 vpr 95.91 MiB 0.27 19884 -1 -1 1 0.93 -1 -1 43888 -1 -1 208 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98212 22 19 6485 5365 1 3341 262 24 24 576 mult_36 auto 58.4 MiB 2.12 21508 64788 14398 44765 5625 94.4 MiB 1.79 0.02 4.39726 -3920.4 -4.39726 4.39726 1.51 0.010682 0.00953596 0.911987 0.812691 80 36519 26 1.59675e+07 8.15891e+06 2.72095e+06 4723.87 20.05 4.42524 3.86615 70206 720185 -1 30728 17 12367 14306 1778984 366147 4.52256 4.52256 -4282.82 -4.52256 0 0 3.41546e+06 5929.62 0.99 0.87 0.60 -1 -1 0.99 0.476257 0.426721 1593 2342 836 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_46.v common 29.34 vpr 97.47 MiB 0.34 19984 -1 -1 1 0.72 -1 -1 43824 -1 -1 210 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99812 22 19 6559 5422 1 3381 264 24 24 576 mult_36 auto 58.8 MiB 2.17 20947 70482 16577 47310 6595 94.9 MiB 1.87 0.02 4.14666 -3968.32 -4.14666 4.14666 1.49 0.0109731 0.00979758 0.958647 0.849793 78 35129 34 1.59675e+07 8.18786e+06 2.67122e+06 4637.53 14.75 4.68983 4.09569 69630 706637 -1 30447 20 12649 14767 1718007 358511 4.39726 4.39726 -4098.93 -4.39726 0 0 3.35110e+06 5817.88 1.02 0.90 0.60 -1 -1 1.02 0.526412 0.470654 1613 2361 855 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_47.v common 34.39 vpr 97.74 MiB 0.31 20324 -1 -1 1 0.93 -1 -1 44544 -1 -1 216 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100084 22 19 6735 5564 1 3478 270 24 24 576 mult_36 auto 59.6 MiB 2.33 22209 70030 15451 47782 6797 95.9 MiB 2.09 0.02 4.41516 -4128.21 -4.41516 4.41516 1.47 0.0129228 0.0116882 1.09035 0.970827 84 37671 32 1.59675e+07 8.27472e+06 2.84938e+06 4946.85 19.62 5.16013 4.52241 71930 760447 -1 31070 17 12543 14162 1836210 367421 4.52256 4.52256 -4366.36 -4.52256 0 0 3.60864e+06 6265.01 1.06 0.86 0.55 -1 -1 1.06 0.485985 0.435523 1656 2428 874 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_48.v common 33.45 vpr 97.87 MiB 0.32 20468 -1 -1 1 0.97 -1 -1 44052 -1 -1 218 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100220 22 19 6809 5621 1 3528 272 24 24 576 mult_36 auto 60.2 MiB 2.27 22399 68109 15563 46856 5690 96.2 MiB 1.89 0.02 4.28601 -4165.16 -4.28601 4.28601 1.51 0.0106728 0.00949716 0.930706 0.824444 84 37990 31 1.59675e+07 8.30367e+06 2.84938e+06 4946.85 18.68 4.78227 4.17358 71930 760447 -1 31425 16 12475 14355 1676213 339117 4.64786 4.64786 -4427.09 -4.64786 0 0 3.60864e+06 6265.01 1.05 0.83 0.62 -1 -1 1.05 0.476709 0.428619 1674 2447 893 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_49.v common 30.74 vpr 104.11 MiB 0.26 21080 -1 -1 1 1.14 -1 -1 44408 -1 -1 228 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106608 22 19 7094 5872 1 3643 283 24 24 576 mult_36 auto 61.6 MiB 2.42 22044 72667 16155 50381 6131 97.9 MiB 2.20 0.03 4.16456 -4302.53 -4.16456 4.16456 1.47 0.0132913 0.0117975 1.12979 0.99479 78 36952 26 1.59675e+07 8.84444e+06 2.67122e+06 4637.53 15.11 5.14497 4.49556 69630 706637 -1 31678 15 13251 15339 1784571 373556 4.39726 4.39726 -4573.37 -4.39726 0 0 3.35110e+06 5817.88 1.01 0.84 0.57 -1 -1 1.01 0.464629 0.417807 1745 2569 912 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_50.v common 37.38 vpr 105.47 MiB 0.26 21224 -1 -1 1 1.08 -1 -1 44328 -1 -1 230 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 108004 22 19 7168 5929 1 3677 285 24 24 576 mult_36 auto 61.9 MiB 2.40 23518 76182 17449 52130 6603 98.0 MiB 2.06 0.02 4.39726 -4337.05 -4.39726 4.39726 1.49 0.0118145 0.0105578 1.03214 0.916432 80 39367 34 1.59675e+07 8.87339e+06 2.72095e+06 4723.87 21.71 5.18845 4.52687 70206 720185 -1 33218 16 13686 16071 1927329 395418 4.39726 4.39726 -4628.99 -4.39726 0 0 3.41546e+06 5929.62 1.01 0.90 0.66 -1 -1 1.01 0.49266 0.442744 1764 2588 931 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_51.v common 35.94 vpr 103.58 MiB 0.37 21508 -1 -1 1 1.11 -1 -1 44760 -1 -1 235 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106064 22 19 7344 6071 1 3784 290 24 24 576 mult_36 auto 62.9 MiB 2.61 23160 75092 17160 51061 6871 99.0 MiB 2.23 0.03 4.28601 -4423.35 -4.28601 4.28601 1.55 0.0133859 0.0120886 1.16131 1.03723 80 39279 28 1.59675e+07 8.94577e+06 2.72095e+06 4723.87 20.13 5.30123 4.63659 70206 720185 -1 33312 15 13811 15847 1871805 392568 4.52256 4.52256 -4830.06 -4.52256 0 0 3.41546e+06 5929.62 1.07 0.89 0.58 -1 -1 1.07 0.477973 0.430588 1808 2655 950 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_52.v common 33.54 vpr 106.84 MiB 0.21 21728 -1 -1 1 0.94 -1 -1 45300 -1 -1 237 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 109400 22 19 7418 6128 1 3829 292 24 24 576 mult_36 auto 63.4 MiB 2.53 24388 75796 17173 51253 7370 99.4 MiB 1.97 0.02 4.39726 -4541.6 -4.39726 4.39726 1.42 0.0121864 0.0108831 0.960739 0.84753 82 40166 40 1.59675e+07 8.97472e+06 2.78508e+06 4835.20 18.23 5.40215 4.7012 70778 734779 -1 34142 16 13821 15840 1861707 392582 4.52256 4.52256 -4916.53 -4.52256 0 0 3.48632e+06 6052.64 0.92 0.89 0.59 -1 -1 0.92 0.502002 0.449718 1827 2674 969 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_14.v common 9.57 vpr 67.63 MiB 0.09 9420 -1 -1 1 0.13 -1 -1 34724 -1 -1 43 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69256 22 19 1246 925 1 719 88 16 16 256 mult_36 auto 29.9 MiB 1.06 3708 12178 3140 7111 1927 67.6 MiB 0.29 0.00 7.85627 -369.053 -7.85627 7.85627 0.56 0.00247974 0.00227123 0.164562 0.151153 56 7704 42 6.59459e+06 2.20645e+06 849745. 3319.32 4.60 0.792333 0.701862 26364 208198 -1 6616 32 8380 9269 1473487 377056 8.18784 8.18784 -442.129 -8.18784 0 0 1.04740e+06 4091.43 0.25 0.51 0.24 -1 -1 0.25 0.174145 0.155285 299 344 247 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_15.v common 8.47 vpr 68.37 MiB 0.10 9592 -1 -1 1 0.16 -1 -1 35180 -1 -1 46 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70012 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 30.5 MiB 0.89 4253 11891 2718 7916 1257 68.4 MiB 0.29 0.00 8.06786 -397.609 -8.06786 8.06786 0.58 0.00265339 0.00243857 0.163296 0.149912 54 9006 35 6.59459e+06 2.64588e+06 829453. 3240.05 3.79 0.796672 0.706837 26108 202796 -1 7077 27 6857 7815 969928 231501 8.88753 8.88753 -500.255 -8.88753 0 0 1.02522e+06 4004.78 0.24 0.35 0.17 -1 -1 0.24 0.148959 0.132915 321 369 266 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_16.v common 9.84 vpr 68.77 MiB 0.11 9752 -1 -1 1 0.17 -1 -1 35168 -1 -1 48 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70424 22 19 1418 1046 1 822 94 16 16 256 mult_36 auto 30.9 MiB 1.08 4528 13087 3331 8118 1638 68.8 MiB 0.34 0.01 7.80064 -415.87 -7.80064 7.80064 0.58 0.00301012 0.00277729 0.190385 0.174644 60 8307 44 6.59459e+06 2.67484e+06 890343. 3477.90 4.96 0.900933 0.799135 27128 224764 -1 7269 23 7299 8032 994162 223606 8.50533 8.50533 -467.681 -8.50533 0 0 1.11577e+06 4358.47 0.27 0.34 0.18 -1 -1 0.27 0.136378 0.121633 340 388 285 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_17.v common 10.49 vpr 69.04 MiB 0.11 10164 -1 -1 1 0.18 -1 -1 35384 -1 -1 52 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70692 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 31.3 MiB 1.02 4723 16523 4141 9979 2403 69.0 MiB 0.48 0.01 8.49449 -420.557 -8.49449 8.49449 0.66 0.00306434 0.00276878 0.261531 0.239561 56 9780 47 6.59459e+06 2.73274e+06 849745. 3319.32 5.12 1.05673 0.940382 26364 208198 -1 8101 27 9367 10451 1358860 310210 9.29868 9.29868 -518.713 -9.29868 0 0 1.04740e+06 4091.43 0.25 0.45 0.19 -1 -1 0.25 0.168453 0.150261 365 415 304 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_18.v common 11.55 vpr 69.42 MiB 0.08 10380 -1 -1 1 0.19 -1 -1 34960 -1 -1 55 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71088 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 31.5 MiB 1.29 5255 15846 3816 10145 1885 69.4 MiB 0.43 0.01 8.73075 -474.97 -8.73075 8.73075 0.54 0.00363037 0.00333098 0.234126 0.214278 58 9951 50 6.59459e+06 2.77617e+06 871168. 3403.00 6.13 1.0597 0.940004 26872 219187 -1 8328 26 8188 9162 1100395 244875 8.96668 8.96668 -544.981 -8.96668 0 0 1.09288e+06 4269.05 0.31 0.41 0.20 -1 -1 0.31 0.174447 0.155683 383 434 323 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_19.v common 11.58 vpr 69.89 MiB 0.05 10540 -1 -1 1 0.22 -1 -1 35332 -1 -1 58 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71564 22 19 1688 1231 1 975 105 16 16 256 mult_36 auto 32.2 MiB 1.26 5522 18136 4926 9933 3277 69.9 MiB 0.33 0.00 8.61576 -458.576 -8.61576 8.61576 0.58 0.00158923 0.00144049 0.173046 0.158003 58 11561 41 6.59459e+06 3.21559e+06 871168. 3403.00 6.32 1.01078 0.895587 26872 219187 -1 8681 26 8638 9740 1126779 262997 9.32648 9.32648 -596.474 -9.32648 0 0 1.09288e+06 4269.05 0.28 0.40 0.19 -1 -1 0.28 0.175645 0.156605 404 457 342 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_20.v common 10.15 vpr 70.29 MiB 0.13 10604 -1 -1 1 0.21 -1 -1 35724 -1 -1 59 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71972 22 19 1762 1288 1 1013 106 16 16 256 mult_36 auto 32.6 MiB 1.39 5934 14856 3578 9339 1939 70.3 MiB 0.41 0.01 8.51815 -499.89 -8.51815 8.51815 0.58 0.00331427 0.00303299 0.218235 0.19912 70 10400 29 6.59459e+06 3.23007e+06 1.02522e+06 4004.78 4.47 1.0271 0.911101 28912 262511 -1 9026 25 8234 9301 1245461 261737 8.78618 8.78618 -561.652 -8.78618 0 0 1.29210e+06 5047.26 0.31 0.41 0.23 -1 -1 0.31 0.172427 0.153817 423 476 361 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_21.v common 10.09 vpr 70.92 MiB 0.13 11064 -1 -1 1 0.22 -1 -1 35788 -1 -1 62 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72620 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 33.2 MiB 1.38 6071 17789 4553 10762 2474 70.9 MiB 0.47 0.01 8.64699 -503.256 -8.64699 8.64699 0.57 0.00350866 0.00321066 0.255118 0.233082 70 10334 32 6.59459e+06 3.2735e+06 1.02522e+06 4004.78 4.12 1.1358 1.00634 28912 262511 -1 9048 24 8163 9276 1068033 251456 8.68598 8.68598 -630.827 -8.68598 0 0 1.29210e+06 5047.26 0.33 0.45 0.26 -1 -1 0.33 0.190795 0.170811 445 500 380 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_22.v common 11.76 vpr 71.06 MiB 0.14 11192 -1 -1 1 0.23 -1 -1 35848 -1 -1 66 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72768 22 19 1933 1408 1 1112 113 16 16 256 mult_36 auto 33.5 MiB 1.56 6284 16766 3772 10688 2306 71.1 MiB 0.44 0.01 8.66433 -531.367 -8.66433 8.66433 0.57 0.00358871 0.00327439 0.235653 0.214767 64 12202 40 6.59459e+06 3.3314e+06 943753. 3686.54 5.63 1.18362 1.04832 27892 240595 -1 9937 26 8773 9855 1261410 275837 8.85048 8.85048 -653.969 -8.85048 0 0 1.19033e+06 4649.74 0.29 0.49 0.23 -1 -1 0.29 0.220799 0.198239 464 519 399 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_23.v common 13.12 vpr 71.43 MiB 0.14 11392 -1 -1 1 0.24 -1 -1 36044 -1 -1 68 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73144 22 19 2031 1472 1 1172 116 18 18 324 mult_36 auto 34.0 MiB 1.74 6825 18164 4253 11642 2269 71.4 MiB 0.49 0.01 8.63545 -565.294 -8.63545 8.63545 0.75 0.00375134 0.00342384 0.258036 0.234917 64 12993 44 8.13932e+06 3.75635e+06 1.23838e+06 3822.15 6.11 1.34456 1.19415 35972 318676 -1 10932 27 9839 11273 1504542 329887 9.41448 9.41448 -741.79 -9.41448 0 0 1.56068e+06 4816.91 0.41 0.54 0.30 -1 -1 0.41 0.227957 0.204155 486 544 418 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_24.v common 14.94 vpr 72.08 MiB 0.10 11480 -1 -1 1 0.21 -1 -1 36180 -1 -1 71 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73812 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 34.6 MiB 1.74 7123 25231 6335 15708 3188 72.1 MiB 0.66 0.01 8.55031 -569.619 -8.55031 8.55031 0.72 0.00385804 0.00347932 0.348154 0.316096 60 14337 47 8.13932e+06 3.79978e+06 1.16833e+06 3605.96 7.99 1.43833 1.27594 35004 297736 -1 11588 24 11181 12858 1586113 344104 8.96778 8.96778 -766.812 -8.96778 0 0 1.46313e+06 4515.82 0.37 0.51 0.27 -1 -1 0.37 0.201048 0.179535 505 563 437 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_25.v common 17.26 vpr 72.73 MiB 0.17 11832 -1 -1 1 0.27 -1 -1 36508 -1 -1 73 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74472 22 19 2201 1591 1 1267 121 18 18 324 mult_36 auto 35.3 MiB 1.60 7919 21948 5452 13185 3311 72.7 MiB 0.61 0.01 8.66171 -618.683 -8.66171 8.66171 0.75 0.00405132 0.00365538 0.319641 0.290242 60 16508 37 8.13932e+06 3.82873e+06 1.16833e+06 3605.96 10.13 1.38308 1.22732 35004 297736 -1 12761 25 12967 14678 2069285 453276 9.40498 9.40498 -864.999 -9.40498 0 0 1.46313e+06 4515.82 0.41 0.62 0.26 -1 -1 0.41 0.214304 0.191321 526 586 456 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_26.v common 12.66 vpr 72.79 MiB 0.16 11984 -1 -1 1 0.25 -1 -1 37432 -1 -1 76 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74540 22 19 2275 1648 1 1304 124 18 18 324 mult_36 auto 35.5 MiB 1.60 8331 21445 5256 13853 2336 72.8 MiB 0.60 0.01 8.87612 -625.532 -8.87612 8.87612 0.75 0.00420155 0.00383333 0.311373 0.282995 68 14555 27 8.13932e+06 3.87216e+06 1.31159e+06 4048.11 5.75 1.30024 1.15267 36620 334356 -1 12285 27 11023 12770 1526505 337406 8.79728 8.79728 -914.308 -8.79728 0 0 1.63345e+06 5041.52 0.41 0.54 0.30 -1 -1 0.41 0.23212 0.206883 546 605 475 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_27.v common 19.02 vpr 73.42 MiB 0.12 12128 -1 -1 1 0.35 -1 -1 36644 -1 -1 82 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75180 22 19 2385 1724 1 1377 131 18 18 324 mult_36 auto 36.2 MiB 1.78 8472 26027 6274 16532 3221 73.4 MiB 0.69 0.01 8.72365 -592.733 -8.72365 8.72365 0.75 0.00437438 0.00398433 0.368738 0.33545 58 17784 50 8.13932e+06 4.35501e+06 1.14310e+06 3528.09 11.45 1.60024 1.4182 34680 290288 -1 14148 29 14549 16458 2410411 525176 9.27518 9.27518 -913.009 -9.27518 0 0 1.43297e+06 4422.75 0.35 0.73 0.25 -1 -1 0.35 0.258717 0.230231 575 642 494 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_28.v common 13.73 vpr 73.90 MiB 0.18 12284 -1 -1 1 0.33 -1 -1 36780 -1 -1 83 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75676 22 19 2459 1781 1 1418 132 18 18 324 mult_36 auto 36.6 MiB 2.05 8415 20232 4376 13738 2118 73.9 MiB 0.55 0.01 8.74245 -615.172 -8.74245 8.74245 0.76 0.00441093 0.00400405 0.289377 0.262855 68 14718 31 8.13932e+06 4.36948e+06 1.31159e+06 4048.11 5.93 1.31648 1.16368 36620 334356 -1 12434 24 10798 12644 1438060 323636 8.84138 8.84138 -805.552 -8.84138 0 0 1.63345e+06 5041.52 0.44 0.58 0.29 -1 -1 0.44 0.248153 0.222193 594 661 513 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_29.v common 17.85 vpr 74.62 MiB 0.18 12472 -1 -1 1 0.34 -1 -1 37076 -1 -1 85 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76408 22 19 2565 1853 1 1483 135 22 22 484 mult_36 auto 37.2 MiB 2.36 8830 25047 6081 16121 2845 74.6 MiB 0.71 0.01 8.91879 -700.843 -8.91879 8.91879 1.20 0.00460922 0.0041981 0.359866 0.327151 62 17709 48 1.32347e+07 4.79443e+06 1.85176e+06 3825.95 8.27 1.6595 1.47179 53538 472186 -1 13797 24 12694 14750 1732893 386603 9.08828 9.08828 -955.656 -9.08828 0 0 2.29262e+06 4736.82 0.59 0.63 0.41 -1 -1 0.59 0.257101 0.229885 619 694 532 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_30.v common 17.54 vpr 74.86 MiB 0.12 12676 -1 -1 1 0.35 -1 -1 37348 -1 -1 89 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76652 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 37.8 MiB 2.38 9348 24192 5766 15227 3199 74.9 MiB 0.67 0.01 8.94231 -671.912 -8.94231 8.94231 1.20 0.00478038 0.0043423 0.346996 0.315622 72 16803 30 1.32347e+07 4.85233e+06 2.11301e+06 4365.72 7.81 1.53012 1.35691 56918 551676 -1 14084 25 12303 13644 1958815 410079 9.25628 9.25628 -846.537 -9.25628 0 0 2.64603e+06 5467.00 0.68 0.66 0.45 -1 -1 0.68 0.260327 0.232409 639 713 551 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_31.v common 72.19 vpr 75.61 MiB 0.18 12936 -1 -1 1 0.34 -1 -1 37408 -1 -1 93 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77420 22 19 2744 1981 1 1589 143 22 22 484 mult_36 auto 38.3 MiB 2.25 10398 27745 6556 18229 2960 75.6 MiB 0.79 0.01 8.84777 -733.653 -8.84777 8.84777 1.21 0.0050278 0.00457911 0.39794 0.361066 60 21030 47 1.32347e+07 4.91023e+06 1.79840e+06 3715.71 62.39 3.13351 2.7603 53054 462096 -1 16299 28 16051 18584 2592891 539995 9.38798 9.38798 -984.877 -9.38798 0 0 2.25108e+06 4650.99 0.59 0.83 0.38 -1 -1 0.59 0.297336 0.264934 665 745 570 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_32.v common 18.89 vpr 75.58 MiB 0.14 12912 -1 -1 1 0.34 -1 -1 36856 -1 -1 96 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77392 22 19 2818 2038 1 1626 146 22 22 484 mult_36 auto 38.4 MiB 2.57 10138 32786 8279 20912 3595 75.6 MiB 0.90 0.01 8.84685 -737.429 -8.84685 8.84685 1.20 0.00517968 0.00470796 0.462384 0.419667 66 19171 39 1.32347e+07 4.95366e+06 1.96511e+06 4060.15 8.58 1.7574 1.55873 54986 507526 -1 15563 25 13541 16004 2089577 446360 8.79458 8.79458 -1157.81 -8.79458 0 0 2.45963e+06 5081.88 0.66 0.69 0.43 -1 -1 0.66 0.274569 0.245214 684 764 589 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_33.v common 80.90 vpr 76.48 MiB 0.14 13660 -1 -1 1 0.41 -1 -1 37412 -1 -1 100 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78312 22 19 2923 2109 1 1697 151 22 22 484 mult_36 auto 39.2 MiB 2.61 10339 29825 6892 19522 3411 76.5 MiB 0.89 0.01 9.50859 -774.184 -9.50859 9.50859 1.22 0.00541053 0.00492536 0.446645 0.406425 64 19486 28 1.32347e+07 5.40755e+06 1.90554e+06 3937.06 70.36 3.49661 3.08494 54502 494576 -1 16301 26 16157 18261 2566029 528186 10.0023 10.0023 -1068.85 -10.0023 0 0 2.40101e+06 4960.76 0.64 0.86 0.43 -1 -1 0.64 0.312502 0.279376 710 796 608 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_34.v common 75.30 vpr 76.67 MiB 0.20 13852 -1 -1 1 0.39 -1 -1 37816 -1 -1 101 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78508 22 19 2997 2166 1 1733 152 22 22 484 mult_36 auto 39.5 MiB 3.43 11393 32957 7932 21559 3466 76.7 MiB 0.91 0.01 9.96699 -781.499 -9.96699 9.96699 1.29 0.00537607 0.00483093 0.471056 0.426502 68 21905 43 1.32347e+07 5.42203e+06 2.01763e+06 4168.66 63.98 3.72082 3.27653 55470 518816 -1 17478 24 15277 17609 2209524 460763 9.70792 9.70792 -1341.02 -9.70792 0 0 2.51205e+06 5190.18 0.64 0.75 0.42 -1 -1 0.64 0.287788 0.256873 729 815 627 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_35.v common 22.46 vpr 77.18 MiB 0.11 13936 -1 -1 1 0.40 -1 -1 38012 -1 -1 106 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79028 22 19 3101 2236 1 1798 157 22 22 484 mult_36 auto 39.9 MiB 3.07 11076 33151 7719 21806 3626 77.2 MiB 1.02 0.01 9.46565 -787.471 -9.46565 9.46565 1.24 0.00569466 0.00517519 0.51332 0.464982 68 20627 48 1.32347e+07 5.49441e+06 2.01763e+06 4168.66 11.24 2.08136 1.84294 55470 518816 -1 16941 23 14184 16448 2056200 451208 9.46312 9.46312 -1330.53 -9.46312 0 0 2.51205e+06 5190.18 0.65 0.72 0.46 -1 -1 0.65 0.290779 0.259806 755 846 646 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_36.v common 69.16 vpr 77.59 MiB 0.21 14212 -1 -1 1 0.40 -1 -1 38020 -1 -1 107 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79456 22 19 3175 2293 1 1835 158 22 22 484 mult_36 auto 40.4 MiB 3.51 11333 30475 6946 20367 3162 77.6 MiB 0.87 0.01 9.75629 -817.637 -9.75629 9.75629 1.21 0.00575594 0.00522535 0.444008 0.402507 66 21761 48 1.32347e+07 5.50888e+06 1.96511e+06 4060.15 57.53 4.0587 3.55958 54986 507526 -1 17539 27 16171 18953 2330366 501744 9.95932 9.95932 -1222.31 -9.95932 0 0 2.45963e+06 5081.88 0.66 0.86 0.43 -1 -1 0.66 0.347439 0.310801 773 865 665 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_37.v common 26.60 vpr 78.42 MiB 0.24 14392 -1 -1 1 0.43 -1 -1 37452 -1 -1 111 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80304 22 19 3280 2364 1 1905 163 24 24 576 mult_36 auto 41.1 MiB 3.60 12992 37988 9582 24747 3659 78.4 MiB 1.15 0.01 9.59371 -904.981 -9.59371 9.59371 1.61 0.00618131 0.00562883 0.574473 0.520007 72 23175 47 1.59675e+07 5.96278e+06 2.50747e+06 4353.24 13.48 2.24929 1.99262 67330 654343 -1 18905 25 16599 18922 2890425 575861 10.1337 10.1337 -1166.9 -10.1337 0 0 3.14081e+06 5452.80 0.83 0.90 0.53 -1 -1 0.83 0.324629 0.288976 798 897 684 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_38.v common 25.36 vpr 78.93 MiB 0.18 14520 -1 -1 1 0.44 -1 -1 37972 -1 -1 113 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80824 22 19 3354 2421 1 1940 165 24 24 576 mult_36 auto 41.8 MiB 3.81 12402 35873 8875 23165 3833 78.9 MiB 1.03 0.01 9.44139 -985.249 -9.44139 9.44139 1.43 0.00630909 0.00574833 0.521188 0.470246 78 19594 28 1.59675e+07 5.99174e+06 2.67122e+06 4637.53 12.46 2.33031 2.06348 69630 706637 -1 17513 23 14127 16340 2018929 414501 9.66552 9.66552 -1278.49 -9.66552 0 0 3.35110e+06 5817.88 0.94 0.74 0.57 -1 -1 0.94 0.305055 0.273423 818 916 703 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_39.v common 68.96 vpr 79.27 MiB 0.20 14732 -1 -1 1 0.47 -1 -1 38428 -1 -1 117 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81172 22 19 3457 2490 1 2006 169 24 24 576 mult_36 auto 42.0 MiB 3.74 13614 27255 5416 19238 2601 79.3 MiB 0.83 0.01 9.69926 -906.242 -9.69926 9.69926 1.64 0.00759961 0.00689627 0.418235 0.378595 76 22595 29 1.59675e+07 6.04964e+06 2.61600e+06 4541.67 55.84 3.94051 3.47104 68478 680951 -1 19506 24 14772 17013 2305059 478080 9.92522 9.92522 -1192.41 -9.92522 0 0 3.24203e+06 5628.53 0.88 0.85 0.56 -1 -1 0.88 0.344885 0.307445 842 946 722 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_40.v common 24.32 vpr 79.46 MiB 0.22 14980 -1 -1 1 0.50 -1 -1 38812 -1 -1 120 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81364 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 42.5 MiB 4.18 12855 39846 9122 26150 4574 79.5 MiB 1.20 0.02 9.60743 -951.577 -9.60743 9.60743 1.49 0.00787438 0.00717689 0.586677 0.530891 70 22646 29 1.59675e+07 6.09306e+06 2.45377e+06 4260.01 10.59 2.13443 1.89245 66754 640332 -1 19155 26 16387 18725 2648043 543957 9.41322 9.41322 -1230.64 -9.41322 0 0 3.09179e+06 5367.68 0.83 0.89 0.54 -1 -1 0.83 0.352944 0.313894 862 965 741 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_41.v common 23.82 vpr 80.32 MiB 0.24 15124 -1 -1 1 0.55 -1 -1 38240 -1 -1 122 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82248 22 19 3634 2616 1 2109 175 24 24 576 mult_36 auto 43.1 MiB 3.78 13732 39784 9257 26530 3997 80.3 MiB 1.17 0.01 9.77499 -937.901 -9.77499 9.77499 1.58 0.00698356 0.00636675 0.582762 0.527686 70 23378 41 1.59675e+07 6.51802e+06 2.45377e+06 4260.01 10.32 2.32553 2.05951 66754 640332 -1 19768 25 16507 18827 2418548 524828 9.67842 9.67842 -1441.57 -9.67842 0 0 3.09179e+06 5367.68 0.87 0.86 0.52 -1 -1 0.87 0.353529 0.315842 886 995 760 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_42.v common 96.59 vpr 80.43 MiB 0.25 15316 -1 -1 1 0.52 -1 -1 38272 -1 -1 125 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82360 22 19 3708 2673 1 2146 178 24 24 576 mult_36 auto 43.5 MiB 4.28 14252 40678 9580 27421 3677 80.4 MiB 1.13 0.01 9.70673 -1014.41 -9.70673 9.70673 1.45 0.00634739 0.00574571 0.550138 0.495854 70 25068 49 1.59675e+07 6.56144e+06 2.45377e+06 4260.01 82.76 4.55442 4.00176 66754 640332 -1 20491 25 16283 18762 2587609 530117 10.1586 10.1586 -1420.43 -10.1586 0 0 3.09179e+06 5367.68 0.82 0.83 0.51 -1 -1 0.82 0.325842 0.291496 906 1014 779 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_43.v common 24.73 vpr 81.05 MiB 0.26 15556 -1 -1 1 0.50 -1 -1 38820 -1 -1 129 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83000 22 19 3810 2741 1 2211 182 24 24 576 mult_36 auto 44.0 MiB 4.34 14383 37777 8939 25288 3550 81.1 MiB 1.18 0.02 9.56815 -970.936 -9.56815 9.56815 1.46 0.00753474 0.00685196 0.604191 0.545183 70 25146 43 1.59675e+07 6.61934e+06 2.45377e+06 4260.01 10.83 2.49518 2.21129 66754 640332 -1 20927 25 18462 21016 2744808 580983 9.95542 9.95542 -1312.26 -9.95542 0 0 3.09179e+06 5367.68 0.84 0.92 0.45 -1 -1 0.84 0.365357 0.32587 930 1043 798 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_44.v common 25.64 vpr 81.60 MiB 0.24 15820 -1 -1 1 0.56 -1 -1 38420 -1 -1 132 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83560 22 19 3884 2798 1 2252 185 24 24 576 mult_36 auto 44.3 MiB 4.52 14460 39635 8934 27519 3182 81.6 MiB 1.17 0.02 9.61645 -992.888 -9.61645 9.61645 1.47 0.00714735 0.00649086 0.568584 0.512395 74 24935 34 1.59675e+07 6.66277e+06 2.56259e+06 4448.94 11.11 2.33134 2.05741 67906 667765 -1 21311 26 17785 20500 2693830 566652 10.0696 10.0696 -1333.67 -10.0696 0 0 3.19068e+06 5539.38 0.89 1.02 0.58 -1 -1 0.89 0.415761 0.373188 949 1062 817 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_45.v common 26.06 vpr 81.98 MiB 0.25 15932 -1 -1 1 0.55 -1 -1 40488 -1 -1 135 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83944 22 19 3989 2869 1 2317 189 24 24 576 mult_36 auto 45.0 MiB 4.61 14618 41381 9719 27735 3927 82.0 MiB 1.20 0.02 9.77027 -1011.74 -9.77027 9.77027 1.47 0.00736802 0.00668993 0.588856 0.531874 72 25523 37 1.59675e+07 7.1022e+06 2.50747e+06 4353.24 11.47 2.51799 2.2285 67330 654343 -1 21225 23 16401 19162 2396371 518493 9.82682 9.82682 -1397.87 -9.82682 0 0 3.14081e+06 5452.80 0.91 0.90 0.55 -1 -1 0.91 0.37998 0.340237 975 1094 836 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_46.v common 29.93 vpr 82.05 MiB 0.14 16060 -1 -1 1 0.54 -1 -1 40688 -1 -1 136 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84020 22 19 4063 2926 1 2354 190 24 24 576 mult_36 auto 44.9 MiB 4.94 16350 37864 7792 26746 3326 82.1 MiB 1.14 0.02 9.83665 -1114.77 -9.83665 9.83665 1.50 0.00740843 0.00663842 0.54478 0.488634 82 25929 47 1.59675e+07 7.11667e+06 2.78508e+06 4835.20 15.04 3.2069 2.82375 70778 734779 -1 22200 23 15637 18321 2342525 476667 9.76082 9.76082 -1542.32 -9.76082 0 0 3.48632e+06 6052.64 0.98 0.78 0.64 -1 -1 0.98 0.322008 0.287989 993 1113 855 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_47.v common 25.24 vpr 82.53 MiB 0.26 16636 -1 -1 1 0.53 -1 -1 40820 -1 -1 141 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84508 22 19 4167 2996 1 2420 195 24 24 576 mult_36 auto 45.3 MiB 4.57 16260 49350 11375 33104 4871 82.5 MiB 1.50 0.02 9.79725 -1090.73 -9.79725 9.79725 1.51 0.00770204 0.00694054 0.720916 0.64862 76 27046 30 1.59675e+07 7.18905e+06 2.61600e+06 4541.67 10.15 2.52277 2.22975 68478 680951 -1 22864 26 18735 21708 2814560 591545 10.3465 10.3465 -1365.53 -10.3465 0 0 3.24203e+06 5628.53 0.91 1.05 0.55 -1 -1 0.91 0.429858 0.384067 1019 1144 874 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_48.v common 28.77 vpr 82.84 MiB 0.27 16496 -1 -1 1 0.62 -1 -1 40784 -1 -1 144 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84832 22 19 4241 3053 1 2458 198 24 24 576 mult_36 auto 45.8 MiB 5.03 15592 42822 9203 28894 4725 82.8 MiB 1.30 0.02 9.79149 -1061.63 -9.79149 9.79149 1.42 0.00824472 0.00749693 0.645625 0.584761 68 28638 50 1.59675e+07 7.23248e+06 2.39371e+06 4155.74 13.46 2.86351 2.53648 65606 615345 -1 22680 27 19526 22864 2812735 612091 10.3416 10.3416 -1585.91 -10.3416 0 0 2.98162e+06 5176.42 0.86 1.06 0.50 -1 -1 0.86 0.443576 0.394915 1038 1163 893 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_49.v common 25.76 vpr 83.68 MiB 0.29 17064 -1 -1 1 0.62 -1 -1 41236 -1 -1 145 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85692 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 47.0 MiB 4.90 16724 42832 9460 29682 3690 83.7 MiB 1.33 0.02 10.0387 -1078.78 -10.0387 10.0387 1.47 0.00797343 0.00723367 0.636386 0.573427 76 27160 30 1.59675e+07 7.64295e+06 2.61600e+06 4541.67 10.61 2.57326 2.28062 68478 680951 -1 23572 25 18876 21876 2791246 590608 10.4455 10.4455 -1489.69 -10.4455 0 0 3.24203e+06 5628.53 0.91 1.04 0.44 -1 -1 0.91 0.431509 0.385957 1062 1195 912 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_50.v common 29.21 vpr 83.79 MiB 0.16 17144 -1 -1 1 0.67 -1 -1 41040 -1 -1 148 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85796 22 19 4420 3181 1 2563 203 24 24 576 mult_36 auto 47.2 MiB 5.26 17398 44307 10226 29911 4170 83.8 MiB 1.37 0.02 9.9037 -1079.02 -9.9037 9.9037 1.52 0.00831944 0.00739092 0.668411 0.598925 74 29993 39 1.59675e+07 7.68637e+06 2.56259e+06 4448.94 13.19 2.72523 2.40927 67906 667765 -1 25064 27 22957 25885 3706669 745505 9.89712 9.89712 -1512.67 -9.89712 0 0 3.19068e+06 5539.38 0.92 1.25 0.54 -1 -1 0.92 0.468746 0.417267 1082 1214 931 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_51.v common 29.07 vpr 84.34 MiB 0.27 17280 -1 -1 1 0.73 -1 -1 41072 -1 -1 152 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86360 22 19 4524 3251 1 2633 207 24 24 576 mult_36 auto 47.4 MiB 5.06 17274 43047 9353 29279 4415 84.3 MiB 1.13 0.02 9.72425 -1170.65 -9.72425 9.72425 1.50 0.00836409 0.00742991 0.5227 0.466561 76 29407 46 1.59675e+07 7.74428e+06 2.61600e+06 4541.67 13.39 2.72234 2.40206 68478 680951 -1 24555 25 19224 22166 3043731 614947 10.2548 10.2548 -1642.4 -10.2548 0 0 3.24203e+06 5628.53 0.89 1.10 0.55 -1 -1 0.89 0.452964 0.405044 1107 1245 950 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_52.v common 28.26 vpr 84.80 MiB 0.30 17348 -1 -1 1 0.67 -1 -1 39500 -1 -1 155 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86832 22 19 4598 3308 1 2667 210 24 24 576 mult_36 auto 48.0 MiB 5.62 17604 46386 10173 32285 3928 84.8 MiB 1.48 0.02 9.68009 -1080.95 -9.68009 9.68009 1.59 0.00915384 0.0082116 0.70414 0.632133 72 30917 38 1.59675e+07 7.7877e+06 2.50747e+06 4353.24 11.45 2.81989 2.49644 67330 654343 -1 25360 25 21418 25117 3240485 694413 10.206 10.206 -1662.84 -10.206 0 0 3.14081e+06 5452.80 0.89 1.15 0.56 -1 -1 0.89 0.452531 0.404064 1127 1264 969 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_14.v common 9.62 vpr 71.29 MiB 0.11 10476 -1 -1 1 0.25 -1 -1 35508 -1 -1 65 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73000 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 33.6 MiB 0.45 5297 17205 4342 10377 2486 71.3 MiB 0.42 0.01 4.14666 -1129.87 -4.14666 4.14666 0.58 0.00339471 0.00305405 0.248201 0.223626 56 11347 43 6.62819e+06 2.54052e+06 849745. 3319.32 4.90 1.11777 0.974098 26364 208198 -1 9317 19 4256 4818 612410 141530 4.39726 4.39726 -1244.22 -4.39726 0 0 1.04740e+06 4091.43 0.25 0.29 0.18 -1 -1 0.25 0.154654 0.137773 481 708 247 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_15.v common 9.84 vpr 72.22 MiB 0.08 10828 -1 -1 1 0.28 -1 -1 36908 -1 -1 72 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73952 22 19 2144 1789 1 1107 118 16 16 256 mult_36 auto 34.4 MiB 0.65 5790 18036 4123 11366 2547 72.2 MiB 0.41 0.00 4.11968 -1267.13 -4.11968 4.11968 0.60 0.00166501 0.00149431 0.220697 0.197374 58 11809 27 6.62819e+06 3.03953e+06 871168. 3403.00 4.87 1.10123 0.960951 26872 219187 -1 9868 19 4677 5264 620916 144337 4.14666 4.14666 -1356.44 -4.14666 0 0 1.09288e+06 4269.05 0.26 0.31 0.20 -1 -1 0.26 0.181583 0.162619 521 769 266 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_16.v common 32.82 vpr 72.61 MiB 0.09 10936 -1 -1 1 0.29 -1 -1 37020 -1 -1 74 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74348 22 19 2218 1846 1 1153 120 16 16 256 mult_36 auto 34.8 MiB 0.65 5931 16640 3652 10868 2120 72.6 MiB 0.41 0.01 4.14666 -1288.47 -4.14666 4.14666 0.57 0.00377805 0.00339693 0.234481 0.211024 60 12726 33 6.62819e+06 3.06896e+06 890343. 3477.90 27.70 2.238 1.94709 27128 224764 -1 10016 27 4853 5474 1043418 337630 4.27196 4.27196 -1404.7 -4.27196 0 0 1.11577e+06 4358.47 0.27 0.46 0.19 -1 -1 0.27 0.218022 0.192869 540 788 285 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_17.v common 30.59 vpr 74.12 MiB 0.14 11752 -1 -1 1 0.27 -1 -1 36588 -1 -1 83 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75904 22 19 2536 2130 1 1255 129 16 16 256 mult_36 auto 36.5 MiB 0.75 7206 19304 4115 12842 2347 74.1 MiB 0.48 0.01 4.27196 -1488.47 -4.27196 4.27196 0.59 0.00427741 0.00383947 0.274878 0.247049 62 16028 45 6.62819e+06 3.20141e+06 916467. 3579.95 24.91 2.39859 2.08409 27384 229598 -1 11410 20 5025 5916 767225 204270 4.27196 4.27196 -1617.84 -4.27196 0 0 1.13630e+06 4438.68 0.32 0.40 0.24 -1 -1 0.32 0.214184 0.191889 617 924 304 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_18.v common 10.11 vpr 74.53 MiB 0.15 11764 -1 -1 1 0.32 -1 -1 37120 -1 -1 86 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76320 22 19 2610 2187 1 1302 132 16 16 256 mult_36 auto 37.0 MiB 0.72 7013 22242 5431 13535 3276 74.5 MiB 0.59 0.01 4.14666 -1468.71 -4.14666 4.14666 0.62 0.00473157 0.00426815 0.331912 0.297322 66 13234 41 6.62819e+06 3.24555e+06 974584. 3806.97 4.45 1.53436 1.34977 28148 247068 -1 10694 15 4618 5355 589723 135547 4.27196 4.27196 -1523.57 -4.27196 0 0 1.22072e+06 4768.46 0.29 0.28 0.21 -1 -1 0.29 0.160347 0.14317 636 943 323 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_19.v common 10.48 vpr 75.45 MiB 0.17 12228 -1 -1 1 0.27 -1 -1 36780 -1 -1 91 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77260 22 19 2778 2321 1 1398 138 16 16 256 mult_36 auto 38.1 MiB 0.76 7745 26482 5909 16658 3915 75.4 MiB 0.71 0.01 4.32767 -1601.95 -4.32767 4.32767 0.60 0.00537075 0.00479166 0.395433 0.355347 68 13647 22 6.62819e+06 3.71513e+06 1.00038e+06 3907.74 4.67 1.52318 1.34514 28404 252462 -1 11177 18 4911 5677 568054 138793 4.14666 4.14666 -1691.92 -4.14666 0 0 1.24648e+06 4869.04 0.30 0.33 0.23 -1 -1 0.30 0.19934 0.177299 676 1002 342 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_20.v common 12.79 vpr 75.91 MiB 0.15 12328 -1 -1 1 0.31 -1 -1 37000 -1 -1 93 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77736 22 19 2852 2378 1 1440 140 16 16 256 mult_36 auto 38.6 MiB 0.79 8294 22646 5123 14901 2622 75.9 MiB 0.60 0.01 4.2084 -1649.58 -4.2084 4.2084 0.59 0.00519432 0.00459622 0.330436 0.295579 68 16097 38 6.62819e+06 3.74456e+06 1.00038e+06 3907.74 6.65 1.6338 1.43308 28404 252462 -1 12428 32 5526 6490 1025857 306320 4.39726 4.39726 -1796.73 -4.39726 0 0 1.24648e+06 4869.04 0.32 0.59 0.24 -1 -1 0.32 0.329705 0.29122 695 1021 361 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_21.v common 11.23 vpr 76.87 MiB 0.13 12808 -1 -1 1 0.34 -1 -1 37736 -1 -1 97 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78712 22 19 3057 2549 1 1542 144 16 16 256 mult_36 auto 39.6 MiB 0.88 8673 23895 5161 15228 3506 76.9 MiB 0.64 0.01 4.52256 -1743.09 -4.52256 4.52256 0.59 0.00509947 0.00455544 0.355011 0.31784 74 15361 35 6.62819e+06 3.80343e+06 1.07073e+06 4182.55 5.08 1.69428 1.48117 29424 273870 -1 12772 16 5516 6283 721984 162116 4.39726 4.39726 -1867.34 -4.39726 0 0 1.33358e+06 5209.30 0.37 0.37 0.23 -1 -1 0.37 0.219266 0.196635 742 1099 380 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_22.v common 11.01 vpr 77.04 MiB 0.14 13056 -1 -1 1 0.35 -1 -1 38004 -1 -1 100 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78884 22 19 3131 2606 1 1585 147 16 16 256 mult_36 auto 39.8 MiB 0.80 8566 16401 3002 11439 1960 77.0 MiB 0.46 0.01 4.20292 -1804.73 -4.20292 4.20292 0.58 0.00505943 0.00451654 0.250613 0.224921 70 15569 27 6.62819e+06 3.84757e+06 1.02522e+06 4004.78 5.00 1.57019 1.37496 28912 262511 -1 12915 18 5834 6628 735961 170375 4.27196 4.27196 -1954.66 -4.27196 0 0 1.29210e+06 5047.26 0.31 0.39 0.23 -1 -1 0.31 0.237635 0.212022 762 1118 399 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_23.v common 12.69 vpr 78.08 MiB 0.23 13264 -1 -1 1 0.36 -1 -1 37940 -1 -1 107 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79956 22 19 3301 2742 1 1683 155 18 18 324 mult_36 auto 40.7 MiB 0.77 9538 29691 6508 19815 3368 78.1 MiB 0.78 0.01 4.16456 -1929.44 -4.16456 4.16456 0.77 0.00543034 0.00486181 0.427346 0.382197 74 17207 25 8.18539e+06 4.34658e+06 1.40368e+06 4332.34 5.68 1.81502 1.59881 37912 362744 -1 14522 15 6182 7157 877389 187757 4.39726 4.39726 -2097.58 -4.39726 0 0 1.74764e+06 5393.95 0.44 0.39 0.32 -1 -1 0.44 0.220923 0.197744 802 1179 418 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_24.v common 14.98 vpr 78.37 MiB 0.16 13344 -1 -1 1 0.39 -1 -1 38272 -1 -1 109 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80252 22 19 3375 2799 1 1730 157 18 18 324 mult_36 auto 41.1 MiB 0.72 9993 25960 5685 17809 2466 78.4 MiB 0.69 0.01 4.14666 -1987.87 -4.14666 4.14666 0.78 0.00654875 0.00596535 0.380892 0.340812 66 20196 47 8.18539e+06 4.37601e+06 1.27759e+06 3943.17 8.17 2.00995 1.75922 36296 327148 -1 15425 16 6577 7667 933401 201564 4.27196 4.27196 -2140.03 -4.27196 0 0 1.59950e+06 4936.74 0.40 0.40 0.29 -1 -1 0.40 0.219115 0.195599 821 1198 437 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_25.v common 15.04 vpr 79.46 MiB 0.12 13996 -1 -1 1 0.41 -1 -1 38108 -1 -1 116 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81364 22 19 3615 3005 1 1835 164 18 18 324 mult_36 auto 42.2 MiB 0.80 11154 29284 6310 19654 3320 79.5 MiB 0.80 0.01 4.14666 -2148.01 -4.14666 4.14666 0.79 0.00586019 0.00523374 0.423027 0.375862 74 20993 41 8.18539e+06 4.47902e+06 1.40368e+06 4332.34 7.70 2.07686 1.81166 37912 362744 -1 16756 18 7134 8004 1128968 235536 4.39726 4.39726 -2385.21 -4.39726 0 0 1.74764e+06 5393.95 0.46 0.53 0.37 -1 -1 0.46 0.278899 0.249426 877 1293 456 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_26.v common 13.31 vpr 79.98 MiB 0.19 14172 -1 -1 1 0.42 -1 -1 38464 -1 -1 118 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81896 22 19 3689 3062 1 1872 166 18 18 324 mult_36 auto 42.9 MiB 0.73 10890 31630 7268 20957 3405 80.0 MiB 0.87 0.01 4.27196 -2181.76 -4.27196 4.27196 0.76 0.00606494 0.00540887 0.467527 0.418559 70 19335 31 8.18539e+06 4.50845e+06 1.34436e+06 4149.26 5.95 2.19285 1.93908 37264 347768 -1 16326 14 6732 7802 873866 193746 4.64786 4.64786 -2351.91 -4.64786 0 0 1.69344e+06 5226.66 0.44 0.45 0.31 -1 -1 0.44 0.250603 0.228761 896 1312 475 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_27.v common 14.41 vpr 80.97 MiB 0.24 14340 -1 -1 1 0.46 -1 -1 38332 -1 -1 126 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82916 22 19 3871 3210 1 1979 175 18 18 324 mult_36 auto 43.9 MiB 0.98 11935 36361 8458 24158 3745 81.0 MiB 0.94 0.01 4.27196 -2285.74 -4.27196 4.27196 0.75 0.00613784 0.00547274 0.503502 0.449047 74 21341 43 8.18539e+06 5.02217e+06 1.40368e+06 4332.34 6.40 2.23969 1.95842 37912 362744 -1 17442 28 7329 8264 1322461 328195 4.39726 4.39726 -2440.95 -4.39726 0 0 1.74764e+06 5393.95 0.44 0.76 0.34 -1 -1 0.44 0.424379 0.377177 944 1385 494 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_28.v common 14.60 vpr 81.27 MiB 0.18 14592 -1 -1 1 0.47 -1 -1 38396 -1 -1 128 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83216 22 19 3945 3267 1 2024 177 18 18 324 mult_36 auto 44.3 MiB 0.90 12138 33905 7358 22743 3804 81.3 MiB 0.87 0.01 4.2084 -2321.46 -4.2084 4.2084 0.75 0.00632408 0.00564454 0.466734 0.414007 70 21577 28 8.18539e+06 5.0516e+06 1.34436e+06 4149.26 7.04 2.21927 1.94826 37264 347768 -1 17740 16 7557 8666 1010701 226948 4.39726 4.39726 -2498.89 -4.39726 0 0 1.69344e+06 5226.66 0.44 0.51 0.32 -1 -1 0.44 0.287858 0.262005 962 1404 513 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_29.v common 17.47 vpr 82.56 MiB 0.20 14908 -1 -1 1 0.53 -1 -1 39728 -1 -1 135 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84544 22 19 4159 3447 1 2140 185 22 22 484 mult_36 auto 45.6 MiB 0.82 12922 36479 8016 24715 3748 82.6 MiB 0.96 0.01 4.27196 -2537.11 -4.27196 4.27196 1.19 0.00683899 0.00611129 0.513952 0.458181 72 24568 26 1.33067e+07 5.5506e+06 2.11301e+06 4365.72 7.99 2.21268 1.9378 56918 551676 -1 19622 18 7762 9120 1147231 234160 4.52256 4.52256 -2684.21 -4.52256 0 0 2.64603e+06 5467.00 0.81 0.59 0.50 -1 -1 0.81 0.327241 0.293336 1015 1491 532 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_30.v common 17.71 vpr 82.84 MiB 0.22 15256 -1 -1 1 0.50 -1 -1 40852 -1 -1 137 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84824 22 19 4233 3504 1 2179 187 22 22 484 mult_36 auto 45.8 MiB 1.00 12963 38101 8862 25522 3717 82.8 MiB 1.03 0.01 4.16456 -2491.22 -4.16456 4.16456 1.21 0.00728231 0.00641715 0.549748 0.485614 68 24170 26 1.33067e+07 5.58003e+06 2.01763e+06 4168.66 8.33 2.19929 1.91941 55470 518816 -1 19865 19 8475 9594 1119874 244580 4.27196 4.27196 -2605.99 -4.27196 0 0 2.51205e+06 5190.18 0.79 0.62 0.32 -1 -1 0.79 0.347772 0.311818 1034 1510 551 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_31.v common 19.21 vpr 84.78 MiB 0.19 15500 -1 -1 1 0.53 -1 -1 40888 -1 -1 143 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86816 22 19 4410 3647 1 2283 193 22 22 484 mult_36 auto 46.6 MiB 1.09 13261 42525 9859 28389 4277 84.8 MiB 1.12 0.01 4.20292 -2606.72 -4.20292 4.20292 1.23 0.00792387 0.00715548 0.607786 0.542467 68 26796 45 1.33067e+07 5.66832e+06 2.01763e+06 4168.66 9.59 2.60643 2.28092 55470 518816 -1 20620 18 9122 10596 1262791 274069 4.27196 4.27196 -2850.79 -4.27196 0 0 2.51205e+06 5190.18 0.66 0.58 0.41 -1 -1 0.66 0.313357 0.279844 1077 1578 570 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_32.v common 17.78 vpr 83.86 MiB 0.24 15564 -1 -1 1 0.65 -1 -1 40628 -1 -1 145 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85876 22 19 4484 3704 1 2328 195 22 22 484 mult_36 auto 46.7 MiB 1.10 14086 42570 10140 28365 4065 83.9 MiB 1.19 0.01 4.27196 -2656.53 -4.27196 4.27196 1.26 0.0074867 0.00669018 0.632666 0.566104 76 25174 22 1.33067e+07 5.69776e+06 2.20457e+06 4554.90 7.48 2.3411 2.05657 57882 574062 -1 21201 17 8736 10203 1208112 256654 4.52256 4.52256 -2899.81 -4.52256 0 0 2.73077e+06 5642.09 0.76 0.56 0.47 -1 -1 0.76 0.308971 0.276204 1096 1597 589 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_33.v common 19.59 vpr 86.55 MiB 0.18 16668 -1 -1 1 0.72 -1 -1 41584 -1 -1 157 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88624 22 19 4843 4029 1 2439 208 22 22 484 mult_36 auto 48.9 MiB 0.97 14930 47640 11114 32188 4338 86.5 MiB 1.36 0.02 4.39726 -2986.1 -4.39726 4.39726 1.21 0.00807193 0.00721129 0.720009 0.641175 72 28519 46 1.33067e+07 6.27034e+06 2.11301e+06 4365.72 9.31 2.92459 2.56125 56918 551676 -1 22603 18 8941 10278 1322426 274519 4.52256 4.52256 -3196.98 -4.52256 0 0 2.64603e+06 5467.00 0.69 0.62 0.44 -1 -1 0.69 0.344955 0.307973 1185 1756 608 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_34.v common 19.92 vpr 86.19 MiB 0.21 16844 -1 -1 1 0.66 -1 -1 41520 -1 -1 160 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88260 22 19 4917 4086 1 2483 211 22 22 484 mult_36 auto 49.5 MiB 1.07 15547 44101 10019 30168 3914 86.2 MiB 1.19 0.02 4.52256 -2910.9 -4.52256 4.52256 1.29 0.00850993 0.00765958 0.628457 0.56061 72 28972 45 1.33067e+07 6.31449e+06 2.11301e+06 4365.72 9.40 3.01041 2.65124 56918 551676 -1 23425 15 9029 10536 1317654 275619 4.77316 4.77316 -3227.02 -4.77316 0 0 2.64603e+06 5467.00 0.72 0.59 0.48 -1 -1 0.72 0.310447 0.278067 1205 1775 627 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_35.v common 19.61 vpr 86.97 MiB 0.19 17008 -1 -1 1 0.61 -1 -1 41780 -1 -1 163 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89056 22 19 5093 4228 1 2586 214 22 22 484 mult_36 auto 50.4 MiB 1.15 14368 50056 10737 34290 5029 87.0 MiB 1.36 0.02 4.0831 -3007.04 -4.0831 4.0831 1.30 0.00833478 0.00743564 0.68954 0.611847 70 26841 32 1.33067e+07 6.35863e+06 2.06816e+06 4273.05 8.76 2.96404 2.60102 56434 539830 -1 22266 17 9508 10903 1285918 285062 4.27196 4.27196 -3253.37 -4.27196 0 0 2.60483e+06 5381.88 0.75 0.66 0.47 -1 -1 0.75 0.377564 0.341646 1248 1842 646 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_36.v common 28.12 vpr 87.36 MiB 0.27 17256 -1 -1 1 0.66 -1 -1 42020 -1 -1 165 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89452 22 19 5167 4285 1 2630 216 22 22 484 mult_36 auto 50.8 MiB 1.17 17033 50682 11615 34548 4519 87.4 MiB 1.48 0.02 4.41516 -3107.93 -4.41516 4.41516 1.32 0.0095028 0.00838872 0.767027 0.68235 78 30105 32 1.33067e+07 6.38806e+06 2.25108e+06 4650.99 16.67 3.91497 3.43174 58850 595650 -1 24920 16 9692 11251 1483545 305489 4.52256 4.52256 -3425.17 -4.52256 0 0 2.82299e+06 5832.63 0.79 0.67 0.52 -1 -1 0.79 0.358575 0.322125 1267 1861 665 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_37.v common 22.25 vpr 88.59 MiB 0.24 17688 -1 -1 1 0.71 -1 -1 40812 -1 -1 173 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90716 22 19 5380 4464 1 2739 225 24 24 576 mult_36 auto 52.1 MiB 1.21 16600 56313 12680 38864 4769 88.6 MiB 1.57 0.02 4.39726 -3260.8 -4.39726 4.39726 1.56 0.00877338 0.00782934 0.818708 0.726201 70 30941 28 1.60519e+07 6.90179e+06 2.45377e+06 4260.01 9.63 2.98262 2.61057 66754 640332 -1 25189 16 10124 11953 1441066 304403 4.52256 4.52256 -3510.18 -4.52256 0 0 3.09179e+06 5367.68 0.86 0.69 0.63 -1 -1 0.86 0.381342 0.340062 1321 1947 684 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_38.v common 23.40 vpr 90.68 MiB 0.27 17864 -1 -1 1 0.70 -1 -1 42304 -1 -1 176 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92852 22 19 5454 4521 1 2784 228 24 24 576 mult_36 auto 52.1 MiB 1.20 17686 58692 14006 39560 5126 88.5 MiB 1.63 0.02 4.20237 -3287.95 -4.20237 4.20237 1.47 0.00905596 0.00808648 0.861451 0.765781 80 27661 18 1.60519e+07 6.94594e+06 2.72095e+06 4723.87 11.25 3.6755 3.21596 70206 720185 -1 25044 17 9392 10797 1238597 262408 4.39726 4.39726 -3387.93 -4.39726 0 0 3.41546e+06 5929.62 0.92 0.62 0.58 -1 -1 0.92 0.365106 0.326009 1340 1966 703 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_39.v common 21.01 vpr 92.66 MiB 0.31 18068 -1 -1 1 0.60 -1 -1 40220 -1 -1 180 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94884 22 19 5629 4662 1 2882 232 24 24 576 mult_36 auto 52.9 MiB 1.16 17139 55056 12561 37747 4748 89.5 MiB 1.32 0.01 4.39726 -3372.5 -4.39726 4.39726 1.43 0.00421205 0.00376248 0.673509 0.595022 72 32360 40 1.60519e+07 7.0048e+06 2.50747e+06 4353.24 9.53 3.12732 2.7338 67330 654343 -1 26063 15 10213 11721 1450566 306425 4.52256 4.52256 -3562.16 -4.52256 0 0 3.14081e+06 5452.80 0.88 0.66 0.52 -1 -1 0.88 0.362696 0.325953 1381 2032 722 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_40.v common 23.71 vpr 95.62 MiB 0.17 18332 -1 -1 1 0.64 -1 -1 42224 -1 -1 182 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97920 22 19 5703 4719 1 2929 234 24 24 576 mult_36 auto 53.8 MiB 1.19 17730 54234 12385 37329 4520 90.3 MiB 1.44 0.02 4.27196 -3426.27 -4.27196 4.27196 1.45 0.0096553 0.00863034 0.736039 0.655051 74 32857 35 1.60519e+07 7.03423e+06 2.56259e+06 4448.94 11.86 3.74322 3.27327 67906 667765 -1 27007 17 10660 11973 1577287 328402 4.39726 4.39726 -3639.92 -4.39726 0 0 3.19068e+06 5539.38 0.88 0.72 0.53 -1 -1 0.88 0.399574 0.357659 1400 2051 741 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_41.v common 25.04 vpr 92.39 MiB 0.19 18932 -1 -1 1 0.84 -1 -1 41616 -1 -1 190 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94612 22 19 5950 4932 1 3039 243 24 24 576 mult_36 auto 54.5 MiB 1.28 18494 48755 10232 33831 4692 90.9 MiB 1.31 0.02 4.14666 -3593.15 -4.14666 4.14666 1.49 0.00924519 0.00822018 0.675753 0.598199 78 30524 25 1.60519e+07 7.54795e+06 2.67122e+06 4637.53 12.89 4.04171 3.53277 69630 706637 -1 26409 17 10464 12149 1422734 303195 4.27196 4.27196 -3758.11 -4.27196 0 0 3.35110e+06 5817.88 0.92 0.70 0.57 -1 -1 0.92 0.40952 0.366635 1461 2153 760 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_42.v common 27.13 vpr 92.70 MiB 0.23 18872 -1 -1 1 0.94 -1 -1 42772 -1 -1 193 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94928 22 19 6024 4989 1 3082 246 24 24 576 mult_36 auto 55.2 MiB 1.24 20030 64926 14885 44112 5929 91.5 MiB 1.76 0.02 4.39726 -3645.71 -4.39726 4.39726 1.56 0.00996243 0.008898 0.910422 0.8106 76 36054 42 1.60519e+07 7.5921e+06 2.61600e+06 4541.67 13.78 4.1362 3.61629 68478 680951 -1 29459 18 11439 13299 1697383 348587 4.39726 4.39726 -3948.23 -4.39726 0 0 3.24203e+06 5628.53 1.06 0.83 0.60 -1 -1 1.06 0.459419 0.411692 1480 2172 779 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_43.v common 23.59 vpr 92.35 MiB 0.25 19360 -1 -1 1 1.09 -1 -1 43276 -1 -1 199 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94568 22 19 6198 5129 1 3181 252 24 24 576 mult_36 auto 56.1 MiB 1.30 20168 59082 13911 39065 6106 92.4 MiB 1.54 0.02 4.64786 -3811.84 -4.64786 4.64786 1.45 0.00965356 0.0085898 0.791746 0.702729 74 34701 31 1.60519e+07 7.68039e+06 2.56259e+06 4448.94 10.77 3.6847 3.24442 67906 667765 -1 29515 15 11276 13062 1613817 335267 4.64786 4.64786 -4088.62 -4.64786 0 0 3.19068e+06 5539.38 0.91 0.74 0.58 -1 -1 0.91 0.402959 0.361589 1523 2237 798 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_44.v common 30.25 vpr 94.77 MiB 0.25 19504 -1 -1 1 0.92 -1 -1 43224 -1 -1 200 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97048 22 19 6272 5186 1 3226 253 24 24 576 mult_36 auto 56.9 MiB 1.40 20928 66570 15265 44565 6740 93.2 MiB 1.86 0.02 4.52256 -3840.7 -4.52256 4.52256 1.62 0.0105936 0.00945656 0.966478 0.858883 78 34552 50 1.60519e+07 7.69511e+06 2.67122e+06 4637.53 16.75 4.95122 4.3327 69630 706637 -1 28997 15 11195 13019 1576795 325150 4.64786 4.64786 -4270.29 -4.64786 0 0 3.35110e+06 5817.88 1.03 0.72 0.58 -1 -1 1.03 0.422781 0.383052 1542 2256 817 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_45.v common 26.51 vpr 95.27 MiB 0.22 19780 -1 -1 1 1.06 -1 -1 43724 -1 -1 208 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97556 22 19 6485 5365 1 3338 262 24 24 576 mult_36 auto 57.5 MiB 1.43 21050 68140 15742 46206 6192 93.8 MiB 1.96 0.02 4.3337 -3866.62 -4.3337 4.3337 1.72 0.0110034 0.00985175 1.00708 0.895221 76 37388 40 1.60519e+07 8.20883e+06 2.61600e+06 4541.67 12.17 3.96882 3.48336 68478 680951 -1 29833 26 12212 14243 1891537 439336 4.39726 4.39726 -4071.65 -4.39726 0 0 3.24203e+06 5628.53 0.94 1.11 0.57 -1 -1 0.94 0.649219 0.577456 1593 2342 836 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_46.v common 24.25 vpr 95.32 MiB 0.31 20044 -1 -1 1 1.01 -1 -1 43836 -1 -1 210 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97604 22 19 6559 5422 1 3380 264 24 24 576 mult_36 auto 57.9 MiB 1.44 20986 65406 14272 45368 5766 94.0 MiB 1.89 0.02 4.41516 -3851.32 -4.41516 4.41516 1.75 0.0104864 0.00925677 0.951179 0.844485 76 35918 33 1.60519e+07 8.23826e+06 2.61600e+06 4541.67 9.96 3.65068 3.18914 68478 680951 -1 30049 16 12176 14229 1658356 357526 4.39726 4.39726 -4137.94 -4.39726 0 0 3.24203e+06 5628.53 0.96 0.81 0.56 -1 -1 0.96 0.45034 0.404231 1613 2361 855 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_47.v common 30.26 vpr 100.97 MiB 0.23 20468 -1 -1 1 0.98 -1 -1 44512 -1 -1 216 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103392 22 19 6735 5564 1 3477 270 24 24 576 mult_36 auto 59.1 MiB 1.55 24055 64798 13570 44576 6652 95.1 MiB 1.71 0.02 4.39726 -4157.74 -4.39726 4.39726 1.78 0.0113045 0.0101147 0.845251 0.755155 86 40233 49 1.60519e+07 8.32656e+06 2.91907e+06 5067.82 15.99 4.313 3.78276 72506 773887 -1 33084 16 12748 14764 2101422 413693 4.64786 4.64786 -4356.52 -4.64786 0 0 3.65856e+06 6351.67 1.02 0.87 0.65 -1 -1 1.02 0.458208 0.411484 1656 2428 874 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_48.v common 35.47 vpr 96.93 MiB 0.32 20664 -1 -1 1 0.95 -1 -1 44236 -1 -1 218 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99252 22 19 6809 5621 1 3526 272 24 24 576 mult_36 auto 59.3 MiB 1.50 22900 73395 16707 49770 6918 95.2 MiB 2.15 0.02 4.39726 -4153.76 -4.39726 4.39726 1.67 0.011406 0.0101958 1.08523 0.969545 80 37824 42 1.60519e+07 8.35599e+06 2.72095e+06 4723.87 20.80 5.22399 4.56195 70206 720185 -1 31870 17 12170 14127 1643072 340205 4.52256 4.52256 -4448.16 -4.52256 0 0 3.41546e+06 5929.62 0.98 0.91 0.60 -1 -1 0.98 0.514534 0.462797 1674 2447 893 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_49.v common 31.44 vpr 97.77 MiB 0.33 21116 -1 -1 1 1.20 -1 -1 44496 -1 -1 228 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100120 22 19 7094 5872 1 3640 283 24 24 576 mult_36 auto 60.8 MiB 1.61 22621 68027 14330 47033 6664 96.8 MiB 1.93 0.02 4.32767 -4362.09 -4.32767 4.32767 1.64 0.0119534 0.0107154 0.980804 0.872047 78 38472 32 1.60519e+07 8.89916e+06 2.67122e+06 4637.53 16.89 5.12848 4.48135 69630 706637 -1 32337 18 12793 14786 1774390 369345 4.39726 4.39726 -4662.48 -4.39726 0 0 3.35110e+06 5817.88 0.96 0.89 0.59 -1 -1 0.96 0.506522 0.451565 1745 2569 912 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_50.v common 42.89 vpr 104.99 MiB 0.34 21260 -1 -1 1 1.07 -1 -1 44300 -1 -1 230 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 107512 22 19 7168 5929 1 3676 285 24 24 576 mult_36 auto 61.3 MiB 1.54 23567 73371 16206 50485 6680 97.6 MiB 2.07 0.02 4.52256 -4404.95 -4.52256 4.52256 1.61 0.0121815 0.0108962 1.01563 0.902893 80 39688 35 1.60519e+07 8.92859e+06 2.72095e+06 4723.87 28.13 5.30125 4.63165 70206 720185 -1 33305 16 12887 14936 1843889 377237 4.64786 4.64786 -4684.92 -4.64786 0 0 3.41546e+06 5929.62 0.97 0.88 0.58 -1 -1 0.97 0.48546 0.433223 1764 2588 931 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_51.v common 35.12 vpr 100.53 MiB 0.29 21748 -1 -1 1 1.16 -1 -1 44852 -1 -1 235 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 102940 22 19 7344 6071 1 3782 290 24 24 576 mult_36 auto 61.8 MiB 1.53 23722 73174 15715 50579 6880 97.9 MiB 2.23 0.02 4.459 -4442.21 -4.459 4.459 1.71 0.0129397 0.0114853 1.13602 1.00367 78 40381 49 1.60519e+07 9.00217e+06 2.67122e+06 4637.53 19.81 5.82881 5.09426 69630 706637 -1 33812 17 13492 15556 1913676 402938 4.39726 4.39726 -4781.62 -4.39726 0 0 3.35110e+06 5817.88 0.99 0.96 0.60 -1 -1 0.99 0.553941 0.498992 1808 2655 950 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_52.v common 29.93 vpr 103.93 MiB 0.35 21712 -1 -1 1 1.06 -1 -1 45144 -1 -1 237 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106420 22 19 7418 6128 1 3828 292 24 24 576 mult_36 auto 63.0 MiB 1.65 25005 78700 18301 52935 7464 99.2 MiB 2.24 0.03 4.3337 -4441.83 -4.3337 4.3337 1.62 0.0141833 0.0126136 1.11433 0.987066 82 41723 40 1.60519e+07 9.0316e+06 2.78508e+06 4835.20 14.40 5.09586 4.46474 70778 734779 -1 34399 17 13048 14909 1766649 364634 4.64786 4.64786 -4948.18 -4.64786 0 0 3.48632e+06 6052.64 1.03 0.91 0.62 -1 -1 1.03 0.529155 0.472554 1827 2674 969 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_14.v common 8.30 vpr 67.70 MiB 0.06 9236 -1 -1 1 0.16 -1 -1 34796 -1 -1 43 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69320 22 19 1246 925 1 718 88 16 16 256 mult_36 auto 29.6 MiB 0.40 3890 12373 3373 7466 1534 67.7 MiB 0.29 0.00 7.60941 -361.611 -7.60941 7.60941 0.58 0.00248719 0.00227377 0.168746 0.154814 48 8671 44 6.62819e+06 2.21677e+06 755748. 2952.14 4.19 0.782373 0.696842 25088 180500 -1 6645 23 6937 7779 935577 227413 8.26573 8.26573 -437.931 -8.26573 0 0 916467. 3579.95 0.32 0.34 0.18 -1 -1 0.32 0.131416 0.117582 299 344 247 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_15.v common 7.86 vpr 67.93 MiB 0.10 9568 -1 -1 1 0.16 -1 -1 35164 -1 -1 46 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69560 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 30.1 MiB 0.35 4185 14168 4013 8552 1603 67.9 MiB 0.34 0.00 7.6175 -392.139 -7.6175 7.6175 0.57 0.00268393 0.00245944 0.195077 0.179222 60 7437 28 6.62819e+06 2.65692e+06 890343. 3477.90 3.66 0.798125 0.713421 27128 224764 -1 6562 26 6006 6790 825899 214119 7.65538 7.65538 -446.805 -7.65538 0 0 1.11577e+06 4358.47 0.27 0.34 0.20 -1 -1 0.27 0.146346 0.13072 321 369 266 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_16.v common 7.58 vpr 68.24 MiB 0.11 9564 -1 -1 1 0.17 -1 -1 35172 -1 -1 48 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69880 22 19 1418 1046 1 821 94 16 16 256 mult_36 auto 30.5 MiB 0.39 4487 13513 3432 8383 1698 68.2 MiB 0.33 0.00 7.60494 -393.597 -7.60494 7.60494 0.58 0.0027842 0.00255165 0.187731 0.172143 56 8390 28 6.62819e+06 2.68636e+06 849745. 3319.32 3.33 0.831016 0.737597 26364 208198 -1 7216 25 7078 7963 962371 230897 7.99013 7.99013 -460.438 -7.99013 0 0 1.04740e+06 4091.43 0.25 0.36 0.25 -1 -1 0.25 0.150063 0.134273 340 388 285 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_17.v common 9.38 vpr 68.71 MiB 0.11 10216 -1 -1 1 0.15 -1 -1 35368 -1 -1 52 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70356 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 31.0 MiB 0.39 4625 16298 4224 8851 3223 68.7 MiB 0.40 0.01 8.32683 -417.873 -8.32683 8.32683 0.58 0.00298677 0.00271368 0.228688 0.209212 58 9112 39 6.62819e+06 2.74522e+06 871168. 3403.00 5.05 0.9919 0.882394 26872 219187 -1 7252 25 7366 7878 922895 225342 9.12512 9.12512 -480.323 -9.12512 0 0 1.09288e+06 4269.05 0.27 0.39 0.19 -1 -1 0.27 0.167818 0.150821 365 415 304 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_18.v common 11.18 vpr 69.09 MiB 0.12 10396 -1 -1 1 0.19 -1 -1 34952 -1 -1 55 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70752 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 31.2 MiB 0.42 5347 16316 4097 10275 1944 69.1 MiB 0.41 0.01 8.4422 -469.823 -8.4422 8.4422 0.57 0.00307543 0.00281496 0.225945 0.206695 56 10897 47 6.62819e+06 2.78937e+06 849745. 3319.32 6.50 1.05998 0.941705 26364 208198 -1 9026 32 9275 10182 1519161 349464 9.30818 9.30818 -562.145 -9.30818 0 0 1.04740e+06 4091.43 0.25 0.55 0.18 -1 -1 0.25 0.20576 0.183578 383 434 323 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_19.v common 10.03 vpr 69.58 MiB 0.08 10668 -1 -1 1 0.20 -1 -1 35488 -1 -1 58 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71252 22 19 1688 1231 1 976 105 16 16 256 mult_36 auto 31.8 MiB 0.46 5523 17642 4653 10328 2661 69.6 MiB 0.43 0.01 8.2901 -468.025 -8.2901 8.2901 0.57 0.00321502 0.00294453 0.244246 0.223338 58 10958 42 6.62819e+06 3.22951e+06 871168. 3403.00 5.27 1.08965 0.971784 26872 219187 -1 8881 23 8148 9336 1045786 240112 9.19702 9.19702 -670.638 -9.19702 0 0 1.09288e+06 4269.05 0.36 0.44 0.21 -1 -1 0.36 0.170417 0.152624 404 457 342 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_20.v common 9.80 vpr 70.05 MiB 0.08 10652 -1 -1 1 0.22 -1 -1 35588 -1 -1 59 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71732 22 19 1762 1288 1 1014 106 16 16 256 mult_36 auto 32.2 MiB 0.47 5650 16606 4202 10324 2080 70.1 MiB 0.45 0.01 8.4978 -488.18 -8.4978 8.4978 0.57 0.00334718 0.00305518 0.244371 0.222607 56 11507 38 6.62819e+06 3.24423e+06 849745. 3319.32 4.85 1.09951 0.975231 26364 208198 -1 9516 27 10307 11396 1607507 371242 9.22112 9.22112 -579.067 -9.22112 0 0 1.04740e+06 4091.43 0.27 0.59 0.21 -1 -1 0.27 0.202265 0.180619 423 476 361 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_21.v common 10.37 vpr 70.59 MiB 0.13 10924 -1 -1 1 0.23 -1 -1 35984 -1 -1 62 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72284 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 32.8 MiB 0.52 6035 17789 4471 10978 2340 70.6 MiB 0.50 0.01 8.38109 -487.093 -8.38109 8.38109 0.58 0.00353177 0.00322401 0.258398 0.235679 60 12117 48 6.62819e+06 3.28838e+06 890343. 3477.90 5.30 1.15998 1.0304 27128 224764 -1 9393 23 8484 9643 1075611 255217 9.04658 9.04658 -638.837 -9.04658 0 0 1.11577e+06 4358.47 0.34 0.43 0.20 -1 -1 0.34 0.187693 0.169332 445 500 380 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_22.v common 9.75 vpr 71.11 MiB 0.15 11060 -1 -1 1 0.23 -1 -1 35992 -1 -1 66 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72816 22 19 1933 1408 1 1111 113 16 16 256 mult_36 auto 33.4 MiB 0.55 6447 14582 3335 9243 2004 71.1 MiB 0.40 0.01 8.38225 -539.049 -8.38225 8.38225 0.52 0.00372084 0.00340025 0.211763 0.193395 66 12032 36 6.62819e+06 3.34724e+06 974584. 3806.97 4.64 1.11576 0.989347 28148 247068 -1 9826 24 8221 9433 1042848 236369 8.80852 8.80852 -690.661 -8.80852 0 0 1.22072e+06 4768.46 0.29 0.44 0.23 -1 -1 0.29 0.195304 0.175492 464 519 399 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_23.v common 12.26 vpr 71.07 MiB 0.15 11404 -1 -1 1 0.25 -1 -1 36004 -1 -1 68 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72780 22 19 2031 1472 1 1174 116 18 18 324 mult_36 auto 33.5 MiB 0.60 6930 17882 4089 11335 2458 71.1 MiB 0.47 0.01 8.41364 -547.214 -8.41364 8.41364 0.75 0.00373301 0.0033942 0.252968 0.230155 60 13146 46 8.18539e+06 3.77267e+06 1.16833e+06 3605.96 6.44 1.26858 1.12367 35004 297736 -1 10629 25 9789 11037 1322884 293485 8.79022 8.79022 -667.882 -8.79022 0 0 1.46313e+06 4515.82 0.37 0.55 0.26 -1 -1 0.37 0.222269 0.199302 486 544 418 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_24.v common 28.06 vpr 71.67 MiB 0.15 11572 -1 -1 1 0.26 -1 -1 36336 -1 -1 71 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73388 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 34.0 MiB 0.57 6947 19099 4545 12489 2065 71.7 MiB 0.50 0.01 8.54591 -592.304 -8.54591 8.54591 0.76 0.00387295 0.00353344 0.268825 0.244429 58 13826 37 8.18539e+06 3.81682e+06 1.14310e+06 3528.09 22.14 2.16612 1.90652 34680 290288 -1 11315 25 10013 11336 1455403 323969 9.26762 9.26762 -836.784 -9.26762 0 0 1.43297e+06 4422.75 0.38 0.51 0.26 -1 -1 0.38 0.191148 0.172557 505 563 437 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_25.v common 12.18 vpr 72.28 MiB 0.10 11840 -1 -1 1 0.28 -1 -1 36436 -1 -1 73 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74016 22 19 2201 1591 1 1268 121 18 18 324 mult_36 auto 34.8 MiB 0.59 7634 22247 5441 14246 2560 72.3 MiB 0.59 0.01 8.41835 -567.959 -8.41835 8.41835 0.75 0.00403852 0.00366175 0.317042 0.288294 64 14202 44 8.18539e+06 3.84625e+06 1.23838e+06 3822.15 6.20 1.44631 1.28376 35972 318676 -1 11820 29 12088 13740 1940094 442042 8.68898 8.68898 -781.144 -8.68898 0 0 1.56068e+06 4816.91 0.38 0.65 0.28 -1 -1 0.38 0.246613 0.219596 526 586 456 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_26.v common 11.94 vpr 72.46 MiB 0.10 11936 -1 -1 1 0.28 -1 -1 37420 -1 -1 76 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74204 22 19 2275 1648 1 1306 124 18 18 324 mult_36 auto 35.1 MiB 0.81 7751 20827 4662 13516 2649 72.5 MiB 0.57 0.01 8.56929 -568.623 -8.56929 8.56929 0.77 0.00413781 0.00376541 0.298181 0.271274 60 14701 32 8.18539e+06 3.8904e+06 1.16833e+06 3605.96 5.72 1.33007 1.17753 35004 297736 -1 12032 25 10795 12330 1483067 336752 8.81798 8.81798 -886.816 -8.81798 0 0 1.46313e+06 4515.82 0.37 0.55 0.25 -1 -1 0.37 0.224402 0.199898 546 605 475 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_27.v common 12.20 vpr 73.11 MiB 0.16 12176 -1 -1 1 0.31 -1 -1 36624 -1 -1 82 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74864 22 19 2385 1724 1 1378 131 18 18 324 mult_36 auto 35.7 MiB 0.67 8283 20383 4936 13018 2429 73.1 MiB 0.56 0.01 8.5461 -628.049 -8.5461 8.5461 0.75 0.00441244 0.00400671 0.289094 0.262967 68 14535 41 8.18539e+06 4.37469e+06 1.31159e+06 4048.11 5.93 1.42908 1.26783 36620 334356 -1 12409 26 10631 12441 1427422 320553 8.58227 8.58227 -875.158 -8.58227 0 0 1.63345e+06 5041.52 0.41 0.56 0.28 -1 -1 0.41 0.247584 0.221266 575 642 494 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_28.v common 16.70 vpr 73.46 MiB 0.17 12280 -1 -1 1 0.31 -1 -1 36788 -1 -1 83 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75224 22 19 2459 1781 1 1417 132 18 18 324 mult_36 auto 36.1 MiB 0.64 8787 24252 5813 15988 2451 73.5 MiB 0.63 0.01 8.59036 -640.13 -8.59036 8.59036 0.74 0.00438785 0.00398589 0.335875 0.305032 58 18144 50 8.18539e+06 4.3894e+06 1.14310e+06 3528.09 10.39 1.61231 1.42708 34680 290288 -1 13981 22 13072 15000 1915715 426043 9.02382 9.02382 -822.024 -9.02382 0 0 1.43297e+06 4422.75 0.36 0.64 0.24 -1 -1 0.36 0.241009 0.217144 594 661 513 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_29.v common 17.70 vpr 73.96 MiB 0.18 12728 -1 -1 1 0.32 -1 -1 37292 -1 -1 85 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75732 22 19 2565 1853 1 1485 135 22 22 484 mult_36 auto 36.7 MiB 0.71 9693 25047 5824 16462 2761 74.0 MiB 0.71 0.01 8.56824 -658.817 -8.56824 8.56824 1.22 0.00474006 0.0043231 0.362784 0.329646 64 18425 33 1.33067e+07 4.81483e+06 1.90554e+06 3937.06 9.45 1.53093 1.35853 54502 494576 -1 15063 28 14458 16832 2340289 516030 8.76628 8.76628 -928.497 -8.76628 0 0 2.40101e+06 4960.76 0.62 0.77 0.40 -1 -1 0.62 0.280264 0.250411 619 694 532 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_30.v common 15.00 vpr 74.31 MiB 0.08 12824 -1 -1 1 0.34 -1 -1 37428 -1 -1 89 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76096 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 37.1 MiB 0.74 9384 25628 5988 16697 2943 74.3 MiB 0.72 0.01 8.44238 -674.317 -8.44238 8.44238 1.23 0.00474821 0.00431628 0.368392 0.334281 70 15871 29 1.33067e+07 4.87369e+06 2.06816e+06 4273.05 6.97 1.51562 1.34444 56434 539830 -1 14145 24 11726 13596 1807233 398151 9.10687 9.10687 -826.57 -9.10687 0 0 2.60483e+06 5381.88 0.69 0.64 0.44 -1 -1 0.69 0.255512 0.228396 639 713 551 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_31.v common 17.31 vpr 74.87 MiB 0.19 12964 -1 -1 1 0.39 -1 -1 37424 -1 -1 93 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76664 22 19 2744 1981 1 1590 143 22 22 484 mult_36 auto 37.7 MiB 0.74 9784 30356 7187 19530 3639 74.9 MiB 0.86 0.01 8.38567 -675.978 -8.38567 8.38567 1.22 0.00507411 0.00456402 0.440825 0.399147 64 18972 47 1.33067e+07 4.93255e+06 1.90554e+06 3937.06 9.03 1.81872 1.61299 54502 494576 -1 15109 27 13335 15415 2075489 440624 9.05667 9.05667 -930.353 -9.05667 0 0 2.40101e+06 4960.76 0.63 0.71 0.40 -1 -1 0.63 0.28603 0.255035 665 745 570 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_32.v common 59.78 vpr 75.20 MiB 0.13 13060 -1 -1 1 0.42 -1 -1 36820 -1 -1 96 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77008 22 19 2818 2038 1 1627 146 22 22 484 mult_36 auto 37.9 MiB 0.81 9765 27794 6626 18138 3030 75.2 MiB 0.78 0.01 8.43423 -706.833 -8.43423 8.43423 1.24 0.00503391 0.00455887 0.393484 0.356822 68 17281 43 1.33067e+07 4.9767e+06 2.01763e+06 4168.66 51.47 3.45154 3.04118 55470 518816 -1 14549 26 13387 15791 1843918 396984 8.48238 8.48238 -1019.62 -8.48238 0 0 2.51205e+06 5190.18 0.66 0.73 0.35 -1 -1 0.66 0.32025 0.287688 684 764 589 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_33.v common 18.67 vpr 75.77 MiB 0.20 13728 -1 -1 1 0.40 -1 -1 37556 -1 -1 100 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77588 22 19 2923 2109 1 1695 151 22 22 484 mult_36 auto 38.4 MiB 0.73 10394 32632 7799 20384 4449 75.8 MiB 0.93 0.01 9.15948 -780.094 -9.15948 9.15948 1.23 0.00550841 0.00496395 0.466464 0.422627 68 19006 40 1.33067e+07 5.43155e+06 2.01763e+06 4168.66 10.13 1.85464 1.64421 55470 518816 -1 15474 24 12536 14090 1741858 383228 9.73142 9.73142 -1174.71 -9.73142 0 0 2.51205e+06 5190.18 0.66 0.64 0.41 -1 -1 0.66 0.274146 0.24518 710 796 608 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_34.v common 17.07 vpr 76.12 MiB 0.15 13748 -1 -1 1 0.44 -1 -1 37840 -1 -1 101 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77944 22 19 2997 2166 1 1734 152 22 22 484 mult_36 auto 38.9 MiB 1.01 10711 29717 6877 19660 3180 76.1 MiB 0.85 0.01 9.29828 -782.067 -9.29828 9.29828 1.27 0.00537933 0.00488556 0.439577 0.398766 68 19336 39 1.33067e+07 5.44627e+06 2.01763e+06 4168.66 8.09 1.80439 1.59957 55470 518816 -1 15822 25 13222 15017 1923830 410698 9.61867 9.61867 -1083.26 -9.61867 0 0 2.51205e+06 5190.18 0.67 0.74 0.44 -1 -1 0.67 0.31043 0.277578 729 815 627 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_35.v common 18.30 vpr 76.68 MiB 0.23 14092 -1 -1 1 0.43 -1 -1 37608 -1 -1 106 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78520 22 19 3101 2236 1 1801 157 22 22 484 mult_36 auto 39.4 MiB 1.05 11402 28075 6295 18501 3279 76.7 MiB 0.81 0.01 9.47066 -829.471 -9.47066 9.47066 1.22 0.00609179 0.00558557 0.405266 0.367879 70 19800 47 1.33067e+07 5.51985e+06 2.06816e+06 4273.05 9.21 1.86486 1.65176 56434 539830 -1 16867 24 13697 15802 2138431 452706 9.74781 9.74781 -1050.32 -9.74781 0 0 2.60483e+06 5381.88 0.70 0.76 0.44 -1 -1 0.70 0.299055 0.26771 755 846 646 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_36.v common 21.97 vpr 77.04 MiB 0.21 14088 -1 -1 1 0.44 -1 -1 38016 -1 -1 107 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78888 22 19 3175 2293 1 1836 158 22 22 484 mult_36 auto 39.8 MiB 1.13 11170 30902 7166 20385 3351 77.0 MiB 0.94 0.01 9.18378 -834.69 -9.18378 9.18378 1.25 0.00580597 0.00527978 0.477711 0.431692 60 23060 49 1.33067e+07 5.53456e+06 1.79840e+06 3715.71 12.89 2.11193 1.86795 53054 462096 -1 17670 24 14840 17527 2134269 458631 9.53001 9.53001 -1214.3 -9.53001 0 0 2.25108e+06 4650.99 0.61 0.77 0.38 -1 -1 0.61 0.306378 0.273847 773 865 665 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_37.v common 21.82 vpr 77.66 MiB 0.22 14376 -1 -1 1 0.43 -1 -1 37340 -1 -1 111 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79520 22 19 3280 2364 1 1904 163 24 24 576 mult_36 auto 40.5 MiB 1.15 11916 36653 8512 22659 5482 77.7 MiB 1.10 0.01 9.503 -813.596 -9.503 9.503 1.55 0.00616994 0.00541883 0.561311 0.506567 68 21847 36 1.60519e+07 5.98942e+06 2.39371e+06 4155.74 11.44 2.14252 1.89965 65606 615345 -1 17297 31 13826 16479 2281397 551091 9.31947 9.31947 -1215.55 -9.31947 0 0 2.98162e+06 5176.42 0.78 0.89 0.49 -1 -1 0.78 0.378325 0.337347 798 897 684 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_38.v common 19.36 vpr 78.34 MiB 0.28 14508 -1 -1 1 0.44 -1 -1 37968 -1 -1 113 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80220 22 19 3354 2421 1 1941 165 24 24 576 mult_36 auto 41.1 MiB 1.27 13091 35421 8629 23184 3608 78.3 MiB 1.06 0.01 9.56954 -911.791 -9.56954 9.56954 1.50 0.0060493 0.00549289 0.531047 0.479941 70 22176 36 1.60519e+07 6.01886e+06 2.45377e+06 4260.01 8.83 2.08523 1.84725 66754 640332 -1 18678 23 12610 14627 1802919 388775 9.66152 9.66152 -1189.17 -9.66152 0 0 3.09179e+06 5367.68 0.87 0.71 0.52 -1 -1 0.87 0.310292 0.277961 818 916 703 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_39.v common 19.69 vpr 78.55 MiB 0.17 14732 -1 -1 1 0.45 -1 -1 38232 -1 -1 117 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80432 22 19 3457 2490 1 2007 169 24 24 576 mult_36 auto 41.5 MiB 1.09 13257 37062 8849 24893 3320 78.5 MiB 1.04 0.01 9.53513 -973.946 -9.53513 9.53513 1.47 0.00596731 0.00540136 0.518221 0.46788 66 24364 31 1.60519e+07 6.07772e+06 2.33135e+06 4047.49 9.54 2.08379 1.84877 65030 601923 -1 19382 25 15180 17874 2138458 453487 9.76651 9.76651 -1308.99 -9.76651 0 0 2.91907e+06 5067.82 0.82 0.81 0.48 -1 -1 0.82 0.344465 0.308244 842 946 722 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_40.v common 21.96 vpr 78.87 MiB 0.21 15004 -1 -1 1 0.47 -1 -1 38752 -1 -1 120 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80760 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 41.7 MiB 1.34 13416 38890 9004 25965 3921 78.9 MiB 1.13 0.01 9.43624 -981.01 -9.43624 9.43624 1.43 0.00625586 0.00565441 0.543303 0.489943 70 23523 44 1.60519e+07 6.12186e+06 2.45377e+06 4260.01 11.31 2.23268 1.9759 66754 640332 -1 19563 25 14474 17290 2278221 477004 9.83772 9.83772 -1353.33 -9.83772 0 0 3.09179e+06 5367.68 0.86 0.84 0.51 -1 -1 0.86 0.367156 0.327513 862 965 741 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_41.v common 21.92 vpr 79.35 MiB 0.22 15180 -1 -1 1 0.52 -1 -1 38096 -1 -1 122 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81256 22 19 3634 2616 1 2113 175 24 24 576 mult_36 auto 42.3 MiB 1.31 14260 37339 8299 25744 3296 79.4 MiB 1.14 0.01 9.48942 -936.304 -9.48942 9.48942 1.49 0.00675422 0.00614536 0.558513 0.504178 76 24101 46 1.60519e+07 6.5473e+06 2.61600e+06 4541.67 11.02 2.44748 2.17082 68478 680951 -1 20450 26 13980 16375 2275565 472356 10.0482 10.0482 -1255.71 -10.0482 0 0 3.24203e+06 5628.53 0.92 0.87 0.54 -1 -1 0.92 0.371853 0.332549 886 995 760 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_42.v common 22.42 vpr 80.11 MiB 0.12 15260 -1 -1 1 0.45 -1 -1 38348 -1 -1 125 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82028 22 19 3708 2673 1 2147 178 24 24 576 mult_36 auto 42.9 MiB 1.36 13247 38178 8698 26287 3193 80.1 MiB 1.07 0.01 9.34555 -911.748 -9.34555 9.34555 1.44 0.0064956 0.00588021 0.52583 0.474314 68 24266 46 1.60519e+07 6.59144e+06 2.39371e+06 4155.74 12.11 2.37149 2.09472 65606 615345 -1 19305 25 14215 16917 2027268 431068 9.41247 9.41247 -1370.03 -9.41247 0 0 2.98162e+06 5176.42 0.76 0.76 0.48 -1 -1 0.76 0.345503 0.307881 906 1014 779 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_43.v common 23.50 vpr 80.20 MiB 0.16 15604 -1 -1 1 0.54 -1 -1 38872 -1 -1 129 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82124 22 19 3810 2741 1 2214 182 24 24 576 mult_36 auto 43.1 MiB 1.40 14854 39322 8760 27092 3470 80.2 MiB 1.18 0.01 9.43515 -973.044 -9.43515 9.43515 1.50 0.00665249 0.00603299 0.564376 0.511736 70 26179 39 1.60519e+07 6.6503e+06 2.45377e+06 4260.01 12.41 2.38973 2.11663 66754 640332 -1 21790 27 16236 19013 2690277 570799 10.0622 10.0622 -1353.82 -10.0622 0 0 3.09179e+06 5367.68 0.89 1.00 0.52 -1 -1 0.89 0.406695 0.362835 930 1043 798 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_44.v common 21.15 vpr 80.74 MiB 0.15 15680 -1 -1 1 0.55 -1 -1 38396 -1 -1 132 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82680 22 19 3884 2798 1 2251 185 24 24 576 mult_36 auto 43.6 MiB 1.51 14264 43317 10157 28920 4240 80.7 MiB 1.14 0.01 9.54931 -1049.89 -9.54931 9.54931 1.45 0.00442549 0.0040212 0.566381 0.512217 70 23866 43 1.60519e+07 6.69445e+06 2.45377e+06 4260.01 10.14 2.47136 2.1912 66754 640332 -1 20739 24 16345 18902 2422633 514103 9.94026 9.94026 -1346.73 -9.94026 0 0 3.09179e+06 5367.68 0.84 0.90 0.53 -1 -1 0.84 0.372298 0.33204 949 1062 817 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_45.v common 21.13 vpr 81.10 MiB 0.14 15976 -1 -1 1 0.58 -1 -1 40524 -1 -1 135 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83048 22 19 3989 2869 1 2318 189 24 24 576 mult_36 auto 43.9 MiB 1.45 15002 45717 10664 29972 5081 81.1 MiB 1.34 0.02 9.30374 -1001.57 -9.30374 9.30374 1.52 0.00746911 0.00679006 0.668085 0.604004 74 24106 34 1.60519e+07 7.1346e+06 2.56259e+06 4448.94 9.60 2.47418 2.18875 67906 667765 -1 21115 26 15678 18406 2326491 502931 9.44027 9.44027 -1425.49 -9.44027 0 0 3.19068e+06 5539.38 0.86 0.92 0.59 -1 -1 0.86 0.405328 0.361259 975 1094 836 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_46.v common 24.34 vpr 81.14 MiB 0.24 16108 -1 -1 1 0.56 -1 -1 40476 -1 -1 136 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83088 22 19 4063 2926 1 2357 190 24 24 576 mult_36 auto 44.1 MiB 1.54 15384 39502 8716 27417 3369 81.1 MiB 1.20 0.02 9.25444 -1065.06 -9.25444 9.25444 1.46 0.00819881 0.00737383 0.591398 0.531649 68 28280 44 1.60519e+07 7.14931e+06 2.39371e+06 4155.74 13.33 2.59794 2.29721 65606 615345 -1 22363 25 16582 19483 2454716 510839 9.51877 9.51877 -1579.55 -9.51877 0 0 2.98162e+06 5176.42 0.80 0.77 0.50 -1 -1 0.80 0.295053 0.265261 993 1113 855 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_47.v common 22.95 vpr 81.84 MiB 0.28 16676 -1 -1 1 0.57 -1 -1 40860 -1 -1 141 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83800 22 19 4167 2996 1 2421 195 24 24 576 mult_36 auto 44.9 MiB 1.52 15434 47655 11175 32212 4268 81.8 MiB 1.45 0.02 9.32624 -1067.91 -9.32624 9.32624 1.46 0.00866741 0.00766169 0.705291 0.6329 68 26939 44 1.60519e+07 7.22289e+06 2.39371e+06 4155.74 11.15 2.73486 2.41721 65606 615345 -1 22408 22 17205 20128 2344851 525433 9.69172 9.69172 -1531.77 -9.69172 0 0 2.98162e+06 5176.42 0.89 0.86 0.54 -1 -1 0.89 0.360779 0.3226 1019 1144 874 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_48.v common 26.04 vpr 84.46 MiB 0.28 16560 -1 -1 1 0.62 -1 -1 40944 -1 -1 144 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86488 22 19 4241 3053 1 2459 198 24 24 576 mult_36 auto 45.1 MiB 1.63 16101 43398 9885 28969 4544 82.2 MiB 1.32 0.02 9.15276 -1137.39 -9.15276 9.15276 1.41 0.00812705 0.00725182 0.602704 0.540065 74 28016 46 1.60519e+07 7.26704e+06 2.56259e+06 4448.94 14.11 3.02835 2.67053 67906 667765 -1 23184 26 19200 22279 3097523 635988 10.1736 10.1736 -1421.35 -10.1736 0 0 3.19068e+06 5539.38 0.89 1.12 0.55 -1 -1 0.89 0.441622 0.39392 1038 1163 893 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_49.v common 22.70 vpr 82.50 MiB 0.30 17020 -1 -1 1 0.63 -1 -1 41164 -1 -1 145 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84476 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 45.8 MiB 1.58 16303 42248 9563 28218 4467 82.5 MiB 1.25 0.02 9.38798 -1053.9 -9.38798 9.38798 1.45 0.00782229 0.00708899 0.606041 0.545412 76 26459 35 1.60519e+07 7.67775e+06 2.61600e+06 4541.67 10.77 2.5998 2.30202 68478 680951 -1 22900 23 17127 19789 2450260 525170 9.49071 9.49071 -1363.71 -9.49071 0 0 3.24203e+06 5628.53 0.88 0.95 0.57 -1 -1 0.88 0.408657 0.365417 1062 1195 912 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_50.v common 24.93 vpr 84.88 MiB 0.30 16992 -1 -1 1 0.62 -1 -1 40960 -1 -1 148 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86916 22 19 4420 3181 1 2564 203 24 24 576 mult_36 auto 46.2 MiB 1.72 16495 43711 9469 30201 4041 82.7 MiB 1.31 0.02 9.43609 -1064.71 -9.43609 9.43609 1.44 0.0088878 0.00796896 0.634709 0.572282 74 29023 44 1.60519e+07 7.72189e+06 2.56259e+06 4448.94 12.97 2.85564 2.52665 67906 667765 -1 23678 25 18523 22416 2877968 597216 9.48707 9.48707 -1821.24 -9.48707 0 0 3.19068e+06 5539.38 0.86 1.01 0.55 -1 -1 0.86 0.421101 0.376085 1082 1214 931 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_51.v common 23.60 vpr 83.62 MiB 0.31 17388 -1 -1 1 0.50 -1 -1 41132 -1 -1 152 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85628 22 19 4524 3251 1 2634 207 24 24 576 mult_36 auto 46.9 MiB 1.47 16985 41823 9101 28954 3768 83.6 MiB 1.27 0.02 9.734 -1168.67 -9.734 9.734 1.49 0.00828626 0.00752653 0.605156 0.543297 72 29204 35 1.60519e+07 7.78076e+06 2.50747e+06 4353.24 11.88 2.7076 2.39559 67330 654343 -1 24180 25 18625 21935 2835680 592310 9.95301 9.95301 -1799.32 -9.95301 0 0 3.14081e+06 5452.80 0.84 1.10 0.55 -1 -1 0.84 0.463942 0.414065 1107 1245 950 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_52.v common 23.86 vpr 86.70 MiB 0.30 17404 -1 -1 1 0.68 -1 -1 39356 -1 -1 155 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88776 22 19 4598 3308 1 2668 210 24 24 576 mult_36 auto 47.2 MiB 1.76 17259 43266 9678 28409 5179 84.2 MiB 1.25 0.02 9.7565 -1135.89 -9.7565 9.7565 1.46 0.00829854 0.00752642 0.618965 0.557544 72 30374 50 1.60519e+07 7.8249e+06 2.50747e+06 4353.24 11.75 2.94605 2.60428 67330 654343 -1 24994 25 20197 24076 3112218 653789 9.59001 9.59001 -1667.66 -9.59001 0 0 3.14081e+06 5452.80 0.89 1.12 0.53 -1 -1 0.89 0.451547 0.402446 1127 1264 969 19 0 0 +k6_frac_N8_22nm.xml fir_pipe_14.v common 35.06 vpr 70.03 MiB 0.07 10400 -1 -1 8 0.52 -1 -1 34576 -1 -1 79 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71708 22 19 1764 1664 1 1014 124 16 16 256 mult_36 auto 32.0 MiB 0.61 6309 13720 2598 9792 1330 70.0 MiB 0.31 0.01 4.27196 -1341.5 -4.27196 4.27196 0.57 0.00354648 0.00317141 0.178158 0.159799 62 13731 45 6.45408e+06 2.64829e+06 916467. 3579.95 30.10 2.06286 1.78614 26824 229188 -1 9858 17 4242 7313 542219 128340 4.27196 4.27196 -1342.23 -4.27196 0 0 1.13630e+06 4438.68 0.29 0.31 0.20 -1 -1 0.29 0.168254 0.151358 599 966 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_15.v common 9.44 vpr 71.33 MiB 0.12 10904 -1 -1 8 0.42 -1 -1 36132 -1 -1 85 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73044 22 19 1918 1801 1 1104 131 16 16 256 mult_36 auto 32.9 MiB 0.59 6626 16731 3359 11755 1617 71.3 MiB 0.41 0.01 4.52256 -1452.91 -4.52256 4.52256 0.59 0.00446844 0.00396271 0.2364 0.211929 64 12736 29 6.45408e+06 3.12512e+06 943753. 3686.54 4.24 1.25278 1.0975 27332 240185 -1 10846 16 4390 7653 589954 137377 4.39726 4.39726 -1545.05 -4.39726 0 0 1.19033e+06 4649.74 0.30 0.34 0.22 -1 -1 0.30 0.187048 0.169073 651 1047 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_16.v common 9.35 vpr 71.73 MiB 0.10 10872 -1 -1 8 0.52 -1 -1 37432 -1 -1 87 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73448 22 19 1976 1859 1 1141 133 16 16 256 mult_36 auto 33.4 MiB 0.64 7164 16066 3216 11368 1482 71.7 MiB 0.37 0.01 4.28601 -1479.04 -4.28601 4.28601 0.58 0.00387816 0.00346619 0.213837 0.190981 66 14097 31 6.45408e+06 3.15206e+06 974584. 3806.97 4.07 1.22789 1.07012 27588 246658 -1 11314 14 4644 8048 628529 143762 4.39726 4.39726 -1506.32 -4.39726 0 0 1.22072e+06 4768.46 0.30 0.29 0.24 -1 -1 0.30 0.152509 0.136574 679 1086 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_17.v common 10.64 vpr 72.72 MiB 0.19 11888 -1 -1 8 0.54 -1 -1 36740 -1 -1 102 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74464 22 19 2278 2144 1 1269 148 16 16 256 mult_36 auto 34.9 MiB 0.67 8095 16961 3169 12034 1758 72.7 MiB 0.39 0.01 4.27196 -1685.47 -4.27196 4.27196 0.61 0.00431669 0.00384312 0.216345 0.192777 66 15895 38 6.45408e+06 3.35414e+06 974584. 3806.97 4.97 1.40484 1.2203 27588 246658 -1 12871 17 5512 9156 773452 182436 4.14666 4.14666 -1714.79 -4.14666 0 0 1.22072e+06 4768.46 0.29 0.35 0.23 -1 -1 0.29 0.187032 0.166489 768 1242 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_18.v common 10.64 vpr 73.61 MiB 0.13 11900 -1 -1 8 0.64 -1 -1 37788 -1 -1 105 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75380 22 19 2336 2202 1 1299 151 16 16 256 mult_36 auto 35.2 MiB 0.49 8142 19800 3855 14118 1827 73.6 MiB 0.45 0.01 4.27196 -1743.36 -4.27196 4.27196 0.57 0.00455664 0.00406375 0.2538 0.22658 66 16357 31 6.45408e+06 3.39456e+06 974584. 3806.97 5.10 1.41202 1.23044 27588 246658 -1 13041 16 5315 9387 790244 175589 4.27196 4.27196 -1778.91 -4.27196 0 0 1.22072e+06 4768.46 0.29 0.38 0.23 -1 -1 0.29 0.193318 0.172161 794 1281 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_19.v common 24.75 vpr 74.32 MiB 0.14 12416 -1 -1 8 0.68 -1 -1 37468 -1 -1 111 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76104 22 19 2488 2337 1 1399 158 16 16 256 mult_36 auto 36.3 MiB 0.69 9188 20654 3849 14830 1975 74.3 MiB 0.46 0.01 4.52256 -1895.49 -4.52256 4.52256 0.57 0.00473762 0.00422106 0.259355 0.231093 68 18182 48 6.45408e+06 3.87139e+06 1.00038e+06 3907.74 18.65 2.74248 2.3778 27844 252052 -1 14297 34 5758 10179 1038312 262783 4.52256 4.52256 -1955.57 -4.52256 0 0 1.24648e+06 4869.04 0.30 0.58 0.21 -1 -1 0.30 0.341379 0.298117 837 1360 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_20.v common 11.64 vpr 74.53 MiB 0.15 12376 -1 -1 8 0.72 -1 -1 37532 -1 -1 114 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76316 22 19 2546 2395 1 1440 161 16 16 256 mult_36 auto 36.6 MiB 0.76 9425 20700 4100 14535 2065 74.5 MiB 0.49 0.01 4.32767 -1936.05 -4.32767 4.32767 0.60 0.00479328 0.00425549 0.262515 0.233316 70 17071 27 6.45408e+06 3.91181e+06 1.02522e+06 4004.78 5.44 1.50404 1.31263 28352 262101 -1 14775 14 5841 10666 895010 199961 4.39726 4.39726 -1935.26 -4.39726 0 0 1.29210e+06 5047.26 0.33 0.40 0.24 -1 -1 0.33 0.202434 0.182515 867 1399 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_21.v common 13.89 vpr 75.57 MiB 0.08 12880 -1 -1 8 0.83 -1 -1 37748 -1 -1 122 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77380 22 19 2735 2567 1 1547 169 16 16 256 mult_36 auto 37.5 MiB 0.80 10400 22118 4046 16008 2064 75.6 MiB 0.53 0.01 4.52256 -2137.28 -4.52256 4.52256 0.58 0.00516143 0.00458229 0.287244 0.254668 70 19515 48 6.45408e+06 4.01958e+06 1.02522e+06 4004.78 7.48 1.81902 1.57916 28352 262101 -1 15796 16 6443 11250 987187 224359 4.39726 4.39726 -2218.61 -4.39726 0 0 1.29210e+06 5047.26 0.31 0.44 0.24 -1 -1 0.31 0.220885 0.198288 931 1497 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_22.v common 13.34 vpr 75.62 MiB 0.30 13172 -1 -1 8 0.95 -1 -1 38144 -1 -1 126 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77440 22 19 2793 2625 1 1580 173 16 16 256 mult_36 auto 38.0 MiB 0.83 10482 25185 5093 17461 2631 75.6 MiB 0.56 0.01 4.39726 -2104.19 -4.39726 4.39726 0.57 0.00537934 0.0047865 0.308563 0.273921 72 20575 41 6.45408e+06 4.07347e+06 1.04740e+06 4091.43 6.34 1.82921 1.59368 28608 268066 -1 16169 16 6398 11556 979161 224597 4.39726 4.39726 -2198.12 -4.39726 0 0 1.31294e+06 5128.69 0.35 0.45 0.25 -1 -1 0.35 0.226758 0.202105 962 1536 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_23.v common 16.01 vpr 76.38 MiB 0.16 13296 -1 -1 8 0.89 -1 -1 38448 -1 -1 131 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78216 22 19 2947 2762 1 1693 179 18 18 324 mult_36 auto 39.0 MiB 0.93 10552 29411 6189 20863 2359 76.4 MiB 0.70 0.01 4.33362 -2228.91 -4.33362 4.33362 0.66 0.00580614 0.00516197 0.384101 0.340643 68 20948 46 7.94662e+06 4.53683e+06 1.31159e+06 4048.11 8.55 2.05696 1.79391 35852 333792 -1 17072 17 7143 12403 1006005 225429 4.27196 4.27196 -2354.78 -4.27196 0 0 1.63345e+06 5041.52 0.41 0.48 0.29 -1 -1 0.41 0.256808 0.22909 1008 1617 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_24.v common 14.93 vpr 76.59 MiB 0.17 13576 -1 -1 8 1.00 -1 -1 38700 -1 -1 135 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78424 22 19 3005 2820 1 1720 183 18 18 324 mult_36 auto 39.2 MiB 0.91 11450 28728 5932 20637 2159 76.6 MiB 0.66 0.01 4.52256 -2356.78 -4.52256 4.52256 0.75 0.00574229 0.00510157 0.358146 0.317759 72 21726 43 7.94662e+06 4.59072e+06 1.37338e+06 4238.83 7.31 1.99763 1.74589 36820 354972 -1 17934 15 7047 12424 1077888 233656 4.52256 4.52256 -2526.88 -4.52256 0 0 1.72054e+06 5310.31 0.42 0.49 0.31 -1 -1 0.42 0.23615 0.211458 1039 1656 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_25.v common 16.53 vpr 77.66 MiB 0.18 13972 -1 -1 8 1.00 -1 -1 40404 -1 -1 145 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79524 22 19 3229 3027 1 1824 193 18 18 324 mult_36 auto 40.2 MiB 0.96 12352 31385 6347 23011 2027 77.7 MiB 0.71 0.01 4.39726 -2511.96 -4.39726 4.39726 0.75 0.0065231 0.00581076 0.383994 0.340359 70 22936 50 7.94662e+06 4.72544e+06 1.34436e+06 4149.26 8.72 2.23382 1.94605 36496 347204 -1 19370 16 7698 13674 1225432 265565 4.39726 4.39726 -2525.78 -4.39726 0 0 1.69344e+06 5226.66 0.45 0.57 0.25 -1 -1 0.45 0.288571 0.258231 1106 1771 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_26.v common 33.53 vpr 78.91 MiB 0.16 14212 -1 -1 8 1.12 -1 -1 40760 -1 -1 151 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80804 22 19 3287 3085 1 1862 199 18 18 324 mult_36 auto 40.5 MiB 1.03 12525 30939 6097 22880 1962 78.9 MiB 0.72 0.01 4.39726 -2537.22 -4.39726 4.39726 0.75 0.00639641 0.00567426 0.382194 0.339475 70 24243 35 7.94662e+06 4.80627e+06 1.34436e+06 4149.26 25.31 3.65738 3.16723 36496 347204 -1 19814 18 7873 13828 1227157 263796 4.39726 4.39726 -2635.7 -4.39726 0 0 1.69344e+06 5226.66 0.42 0.57 0.29 -1 -1 0.42 0.293613 0.262418 1134 1810 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_27.v common 18.33 vpr 79.88 MiB 0.19 14624 -1 -1 8 1.17 -1 -1 39396 -1 -1 156 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81792 22 19 3453 3234 1 1964 205 18 18 324 mult_36 auto 41.5 MiB 0.86 13681 31613 6009 23435 2169 79.9 MiB 0.70 0.01 4.45297 -2674.52 -4.45297 4.45297 0.76 0.00674018 0.00597503 0.372184 0.32942 74 25230 39 7.94662e+06 5.26963e+06 1.40368e+06 4332.34 10.22 2.29136 2.00107 37144 362180 -1 20914 15 8108 14439 1272992 270691 4.39726 4.39726 -2705.27 -4.39726 0 0 1.74764e+06 5393.95 0.42 0.54 0.30 -1 -1 0.42 0.270946 0.242901 1189 1903 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_28.v common 16.27 vpr 80.38 MiB 0.19 14924 -1 -1 8 1.34 -1 -1 41120 -1 -1 160 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82308 22 19 3511 3292 1 2001 209 18 18 324 mult_36 auto 42.2 MiB 1.16 13533 36169 7851 25670 2648 80.4 MiB 0.81 0.01 4.27196 -2716.32 -4.27196 4.27196 0.77 0.00311184 0.00273883 0.42534 0.377914 76 24958 37 7.94662e+06 5.32352e+06 1.43297e+06 4422.75 7.46 2.14707 1.86573 37464 369264 -1 20464 15 8254 14560 1239406 267344 4.27196 4.27196 -2808.92 -4.27196 0 0 1.77541e+06 5479.65 0.44 0.56 0.31 -1 -1 0.44 0.280802 0.252252 1221 1942 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_29.v common 18.06 vpr 81.39 MiB 0.22 15232 -1 -1 8 1.30 -1 -1 39884 -1 -1 168 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83348 22 19 3709 3473 1 2127 218 22 22 484 mult_36 auto 43.1 MiB 1.13 14602 39518 9141 27857 2520 81.4 MiB 0.88 0.01 4.64786 -2935.24 -4.64786 4.64786 1.18 0.00704858 0.00623722 0.475426 0.419795 72 26438 32 1.29336e+07 5.8273e+06 2.11301e+06 4365.72 7.81 2.31239 2.02149 55718 550791 -1 22616 14 8048 14017 1235710 262139 4.64786 4.64786 -3093.81 -4.64786 0 0 2.64603e+06 5467.00 0.71 0.56 0.43 -1 -1 0.71 0.282288 0.253979 1281 2049 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_30.v common 19.14 vpr 81.88 MiB 0.15 15520 -1 -1 8 1.29 -1 -1 40308 -1 -1 170 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83848 22 19 3767 3531 1 2168 220 22 22 484 mult_36 auto 43.8 MiB 1.21 14136 38674 7872 27997 2805 81.9 MiB 0.88 0.01 4.27196 -2917.4 -4.27196 4.27196 1.12 0.00731678 0.00647748 0.47014 0.414099 70 26124 28 1.29336e+07 5.85424e+06 2.06816e+06 4273.05 8.74 2.28486 1.99526 55234 538945 -1 23007 16 8701 15898 1397998 301821 4.52256 4.52256 -3212.81 -4.52256 0 0 2.60483e+06 5381.88 0.72 0.59 0.43 -1 -1 0.72 0.284851 0.256579 1309 2088 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_31.v common 22.22 vpr 82.26 MiB 0.23 15852 -1 -1 8 1.37 -1 -1 41832 -1 -1 177 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84232 22 19 3928 3675 1 2252 227 22 22 484 mult_36 auto 44.1 MiB 1.26 15955 41055 8830 29506 2719 82.3 MiB 0.91 0.01 4.64786 -3128.05 -4.64786 4.64786 1.24 0.00730936 0.00646431 0.474372 0.418387 70 29680 35 1.29336e+07 5.94854e+06 2.06816e+06 4273.05 11.58 2.62503 2.30513 55234 538945 -1 25230 18 9528 17282 1610949 332876 4.52256 4.52256 -3269.54 -4.52256 0 0 2.60483e+06 5381.88 0.67 0.66 0.43 -1 -1 0.67 0.331341 0.294013 1363 2176 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_32.v common 20.13 vpr 82.86 MiB 0.25 15944 -1 -1 8 1.33 -1 -1 41876 -1 -1 181 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84852 22 19 3986 3733 1 2287 231 22 22 484 mult_36 auto 44.7 MiB 1.35 15887 40587 8585 29443 2559 82.9 MiB 1.00 0.02 4.39726 -3145.72 -4.39726 4.39726 1.36 0.00821089 0.00718473 0.520716 0.459366 76 29475 26 1.29336e+07 6.00243e+06 2.20457e+06 4554.90 8.94 2.51277 2.20238 56682 573177 -1 24951 17 9277 17002 1468776 311644 4.39726 4.39726 -3289.06 -4.39726 0 0 2.73077e+06 5642.09 0.73 0.68 0.39 -1 -1 0.73 0.347291 0.311644 1391 2215 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_33.v common 99.13 vpr 84.55 MiB 0.21 16864 -1 -1 8 1.46 -1 -1 40932 -1 -1 192 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86580 22 19 4329 4059 1 2422 243 22 22 484 mult_36 auto 46.4 MiB 1.36 16862 44965 10374 31657 2934 84.6 MiB 1.04 0.02 4.39726 -3352.56 -4.39726 4.39726 1.25 0.00828653 0.00736647 0.542118 0.47704 72 34065 42 1.29336e+07 6.54662e+06 2.11301e+06 4365.72 87.59 5.77988 4.99812 55718 550791 -1 26516 16 9852 17904 1643140 347448 4.52256 4.52256 -3515.92 -4.52256 0 0 2.64603e+06 5467.00 0.69 0.70 0.44 -1 -1 0.69 0.339087 0.302937 1494 2394 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_34.v common 20.90 vpr 85.07 MiB 0.21 17092 -1 -1 8 1.67 -1 -1 42772 -1 -1 198 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87116 22 19 4387 4117 1 2459 249 22 22 484 mult_36 auto 47.0 MiB 1.40 17068 44097 9577 31491 3029 85.1 MiB 1.06 0.02 4.39726 -3405.93 -4.39726 4.39726 1.28 0.00891162 0.00796796 0.552844 0.487065 72 32512 35 1.29336e+07 6.62746e+06 2.11301e+06 4365.72 9.24 2.76456 2.41224 55718 550791 -1 26613 16 9838 17813 1459212 312343 4.39726 4.39726 -3610.82 -4.39726 0 0 2.64603e+06 5467.00 0.72 0.69 0.44 -1 -1 0.72 0.357191 0.320219 1521 2433 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_35.v common 25.69 vpr 85.73 MiB 0.22 17368 -1 -1 8 1.74 -1 -1 41464 -1 -1 208 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87792 22 19 4547 4260 1 2575 259 22 22 484 mult_36 auto 47.7 MiB 1.42 17676 47284 9482 34731 3071 85.7 MiB 1.19 0.02 4.45892 -3532.9 -4.45892 4.45892 1.21 0.010738 0.00953501 0.597741 0.533751 72 34940 49 1.29336e+07 6.76218e+06 2.11301e+06 4365.72 13.54 3.41734 3.01024 55718 550791 -1 27945 15 10572 18938 1649152 351009 4.39726 4.39726 -3764.56 -4.39726 0 0 2.64603e+06 5467.00 0.74 0.82 0.45 -1 -1 0.74 0.404368 0.369945 1571 2520 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_36.v common 24.10 vpr 86.09 MiB 0.26 17580 -1 -1 8 1.67 -1 -1 43000 -1 -1 210 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88160 22 19 4605 4318 1 2609 261 22 22 484 mult_36 auto 47.8 MiB 1.42 19180 50241 11166 35970 3105 86.1 MiB 1.31 0.02 4.64786 -3637.14 -4.64786 4.64786 1.38 0.00984921 0.00882945 0.703275 0.626732 76 35018 33 1.29336e+07 6.78912e+06 2.20457e+06 4554.90 11.67 3.21155 2.82387 56682 573177 -1 28971 16 10574 19278 1656672 344536 4.39726 4.39726 -3778.28 -4.39726 0 0 2.73077e+06 5642.09 0.78 0.80 0.49 -1 -1 0.78 0.402756 0.360781 1597 2559 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_37.v common 23.92 vpr 87.76 MiB 0.25 17964 -1 -1 8 1.82 -1 -1 42760 -1 -1 218 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89864 22 19 4802 4498 1 2726 270 24 24 576 mult_36 auto 49.1 MiB 1.53 18971 52590 11478 38185 2927 87.0 MiB 1.26 0.02 4.52256 -3767.52 -4.52256 4.52256 1.61 0.0100493 0.00900254 0.652798 0.576051 76 34411 31 1.56141e+07 7.2929e+06 2.61600e+06 4541.67 10.33 2.96709 2.60687 67070 679911 -1 28926 17 10727 19259 1642623 351279 4.64786 4.64786 -3877.51 -4.64786 0 0 3.24203e+06 5628.53 0.97 0.83 0.59 -1 -1 0.97 0.461161 0.417045 1661 2665 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_38.v common 27.47 vpr 88.68 MiB 0.24 18188 -1 -1 8 2.04 -1 -1 43216 -1 -1 221 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90812 22 19 4860 4556 1 2764 273 24 24 576 mult_36 auto 49.6 MiB 1.49 19598 57798 12862 41398 3538 87.5 MiB 1.32 0.02 4.52256 -3851.3 -4.52256 4.52256 1.47 0.0106099 0.00952517 0.681471 0.599071 74 37110 40 1.56141e+07 7.33331e+06 2.56259e+06 4448.94 13.81 3.59574 3.15746 66498 666725 -1 30085 15 10985 19570 1801298 370615 4.52256 4.52256 -3958.38 -4.52256 0 0 3.19068e+06 5539.38 1.02 0.82 0.56 -1 -1 1.02 0.400121 0.360024 1689 2704 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_39.v common 30.93 vpr 89.76 MiB 0.27 18552 -1 -1 8 2.07 -1 -1 43724 -1 -1 226 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91916 22 19 5019 4698 1 2868 278 24 24 576 mult_36 auto 50.5 MiB 1.56 20910 61047 14284 42574 4189 88.2 MiB 1.46 0.02 4.41131 -4082.11 -4.41131 4.41131 1.61 0.0100292 0.00894577 0.751859 0.662253 78 35683 29 1.56141e+07 7.40067e+06 2.67122e+06 4637.53 16.36 4.26304 3.73599 68222 705597 -1 31672 25 11561 20714 2237775 528335 4.52256 4.52256 -4301.86 -4.52256 0 0 3.35110e+06 5817.88 0.98 1.28 0.56 -1 -1 0.98 0.622632 0.557724 1735 2790 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_40.v common 33.78 vpr 90.32 MiB 0.30 18884 -1 -1 8 2.25 -1 -1 44456 -1 -1 230 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92484 22 19 5077 4756 1 2904 282 24 24 576 mult_36 auto 51.0 MiB 1.60 20948 66810 16155 46347 4308 88.8 MiB 1.58 0.02 4.64786 -4029.87 -4.64786 4.64786 1.53 0.0106379 0.0094818 0.790481 0.691024 78 35873 43 1.56141e+07 7.45456e+06 2.67122e+06 4637.53 19.04 4.67465 4.08376 68222 705597 -1 31594 14 11574 20582 1892028 402185 4.52256 4.52256 -4297.75 -4.52256 0 0 3.35110e+06 5817.88 0.96 0.82 0.63 -1 -1 0.96 0.389407 0.349233 1765 2829 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_41.v common 134.39 vpr 93.68 MiB 0.18 19280 -1 -1 8 2.15 -1 -1 44380 -1 -1 239 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 95928 22 19 5308 4970 1 3021 292 24 24 576 mult_36 auto 52.1 MiB 1.64 22266 65148 15301 45446 4401 89.7 MiB 1.42 0.02 4.53661 -4284.69 -4.53661 4.53661 1.49 0.00920152 0.00806761 0.699964 0.612746 78 38792 49 1.56141e+07 7.97181e+06 2.67122e+06 4637.53 119.41 7.0507 6.08179 68222 705597 -1 33859 17 11939 21586 2000521 410260 4.52256 4.52256 -4455.87 -4.52256 0 0 3.35110e+06 5817.88 0.95 0.92 0.68 -1 -1 0.95 0.467719 0.420303 1838 2951 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_42.v common 33.91 vpr 92.96 MiB 0.27 19344 -1 -1 8 2.21 -1 -1 44412 -1 -1 242 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 95188 22 19 5366 5028 1 3055 295 24 24 576 mult_36 auto 52.3 MiB 1.67 22679 61117 13773 43741 3603 89.7 MiB 1.46 0.02 4.66191 -4235.07 -4.66191 4.66191 1.55 0.0104843 0.0093203 0.743505 0.656289 82 39997 47 1.56141e+07 8.01222e+06 2.78508e+06 4835.20 19.03 4.89757 4.28252 69370 733739 -1 33886 15 12156 22275 1970079 405149 4.64786 4.64786 -4496.94 -4.64786 0 0 3.48632e+06 6052.64 1.09 0.91 0.61 -1 -1 1.09 0.474049 0.429477 1862 2990 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_43.v common 32.68 vpr 95.26 MiB 0.22 19732 -1 -1 8 2.21 -1 -1 44784 -1 -1 255 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97544 22 19 5524 5169 1 3162 308 24 24 576 mult_36 auto 53.4 MiB 1.71 22460 73038 16907 51210 4921 90.0 MiB 1.74 0.02 4.45892 -4390.33 -4.45892 4.45892 1.45 0.0110264 0.0098125 0.883447 0.77097 80 37054 31 1.56141e+07 8.18736e+06 2.72095e+06 4723.87 17.63 4.82696 4.2197 68798 719145 -1 33280 16 11785 21759 1790126 370269 4.64786 4.64786 -4576.22 -4.64786 0 0 3.41546e+06 5929.62 1.08 0.92 0.61 -1 -1 1.08 0.492943 0.444477 1916 3075 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_44.v common 33.08 vpr 97.48 MiB 0.32 20084 -1 -1 8 2.28 -1 -1 45352 -1 -1 254 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99820 22 19 5582 5227 1 3204 307 24 24 576 mult_36 auto 53.7 MiB 1.73 22502 66547 15787 46972 3788 90.5 MiB 1.74 0.02 4.52256 -4486.19 -4.52256 4.52256 1.66 0.0128681 0.0115662 0.914855 0.809073 74 42787 45 1.56141e+07 8.17389e+06 2.56259e+06 4448.94 17.42 4.20618 3.69055 66498 666725 -1 35196 16 13390 24231 2184528 458821 4.39726 4.39726 -4709.92 -4.39726 0 0 3.19068e+06 5539.38 1.14 1.10 0.59 -1 -1 1.14 0.563911 0.511043 1945 3114 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_45.v common 40.22 vpr 99.73 MiB 0.33 20408 -1 -1 8 2.51 -1 -1 45932 -1 -1 262 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 102128 22 19 5779 5407 1 3306 316 24 24 576 mult_36 auto 54.6 MiB 1.80 24550 70191 16510 49767 3914 91.4 MiB 1.64 0.02 4.64786 -4625.87 -4.64786 4.64786 1.44 0.0113318 0.0100705 0.795742 0.696744 78 43496 43 1.56141e+07 8.67766e+06 2.67122e+06 4637.53 24.78 5.19892 4.51387 68222 705597 -1 36693 16 12990 23039 2177528 443029 4.64786 4.64786 -4872.93 -4.64786 0 0 3.35110e+06 5817.88 1.02 1.00 0.62 -1 -1 1.02 0.50216 0.450919 2012 3220 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_46.v common 34.97 vpr 99.81 MiB 0.31 20476 -1 -1 8 2.56 -1 -1 46136 -1 -1 267 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 102208 22 19 5837 5465 1 3341 321 24 24 576 mult_36 auto 55.1 MiB 1.81 23014 78279 19395 54249 4635 91.8 MiB 1.78 0.02 4.77316 -4717.28 -4.77316 4.77316 1.59 0.0116703 0.0102154 0.869453 0.762032 78 41329 31 1.56141e+07 8.74502e+06 2.67122e+06 4637.53 18.96 4.80848 4.17403 68222 705597 -1 35603 14 12924 23433 2097034 435832 4.89846 4.89846 -5046.66 -4.89846 0 0 3.35110e+06 5817.88 1.18 1.01 0.59 -1 -1 1.18 0.491191 0.441516 2043 3259 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_47.v common 31.15 vpr 99.89 MiB 0.31 21036 -1 -1 8 2.74 -1 -1 44612 -1 -1 275 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 102284 22 19 5997 5608 1 3446 329 24 24 576 mult_36 auto 56.3 MiB 1.68 23890 79779 19615 56036 4128 94.6 MiB 1.86 0.02 4.52256 -4753.36 -4.52256 4.52256 1.56 0.0118662 0.0105584 0.935368 0.819414 76 42922 43 1.56141e+07 8.8528e+06 2.61600e+06 4541.67 15.25 4.36172 3.80744 67070 679911 -1 36043 16 13572 24201 2071974 442460 4.39726 4.39726 -5108.91 -4.39726 0 0 3.24203e+06 5628.53 0.96 1.00 0.58 -1 -1 0.96 0.508769 0.456973 2100 3346 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_48.v common 30.01 vpr 100.23 MiB 0.24 21072 -1 -1 8 2.56 -1 -1 46340 -1 -1 279 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 102632 22 19 6055 5666 1 3477 333 24 24 576 mult_36 auto 56.7 MiB 1.91 24651 81043 20011 56340 4692 94.9 MiB 1.78 0.03 4.41131 -4877.82 -4.41131 4.41131 1.44 0.0115864 0.0100158 0.868451 0.757897 74 45227 34 1.56141e+07 8.90669e+06 2.56259e+06 4448.94 14.34 4.18882 3.65387 66498 666725 -1 37604 17 14240 25302 2246621 473431 4.39726 4.39726 -5110.14 -4.39726 0 0 3.19068e+06 5539.38 0.88 1.04 0.57 -1 -1 0.88 0.529126 0.471919 2126 3385 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_49.v common 38.86 vpr 98.47 MiB 0.22 21620 -1 -1 8 2.80 -1 -1 46452 -1 -1 285 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100836 22 19 6324 5918 1 3577 340 24 24 576 mult_36 auto 57.6 MiB 1.94 25847 78616 18544 55831 4241 95.8 MiB 1.79 0.03 4.57827 -4988.8 -4.57827 4.57827 1.48 0.0119756 0.0106082 0.881023 0.771829 80 42456 33 1.56141e+07 9.38352e+06 2.72095e+06 4723.87 22.52 5.45036 4.74664 68798 719145 -1 37978 14 13206 24374 2114449 435929 4.64786 4.64786 -5260.94 -4.64786 0 0 3.41546e+06 5929.62 0.91 0.94 0.63 -1 -1 0.91 0.492501 0.443599 2206 3527 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_50.v common 36.12 vpr 102.79 MiB 0.34 21936 -1 -1 8 3.02 -1 -1 47304 -1 -1 292 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 105252 22 19 6382 5976 1 3610 347 24 24 576 mult_36 auto 58.0 MiB 1.97 25875 80735 19460 56548 4727 96.2 MiB 1.76 0.03 4.52256 -5008.91 -4.52256 4.52256 1.44 0.0122172 0.0108498 0.850308 0.741374 78 45028 42 1.56141e+07 9.47782e+06 2.67122e+06 4637.53 19.39 5.61886 4.89556 68222 705597 -1 39583 16 14556 26399 2333973 504210 4.39726 4.39726 -5323.83 -4.39726 0 0 3.35110e+06 5817.88 0.91 1.04 0.60 -1 -1 0.91 0.534154 0.480296 2235 3566 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_51.v common 39.51 vpr 105.27 MiB 0.25 22220 -1 -1 8 2.91 -1 -1 47908 -1 -1 297 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 107796 22 19 6542 6119 1 3736 352 24 24 576 mult_36 auto 58.8 MiB 1.95 27181 89776 22152 62375 5249 97.1 MiB 2.07 0.03 4.77316 -5190.65 -4.77316 4.77316 1.47 0.0144313 0.0129502 1.03022 0.909186 82 46642 29 1.56141e+07 9.54518e+06 2.78508e+06 4835.20 22.42 5.66276 4.9523 69370 733739 -1 39735 14 14219 25417 2265389 476034 4.64786 4.64786 -5370.32 -4.64786 0 0 3.48632e+06 6052.64 1.03 1.04 0.59 -1 -1 1.03 0.511917 0.460249 2287 3653 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_52.v common 39.78 vpr 104.93 MiB 0.32 22280 -1 -1 8 3.10 -1 -1 47408 -1 -1 301 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 107452 22 19 6600 6177 1 3777 356 24 24 576 mult_36 auto 59.1 MiB 2.00 27822 86104 20994 59845 5265 97.3 MiB 1.95 0.03 4.52256 -5230.39 -4.52256 4.52256 1.55 0.0126873 0.0112633 0.939554 0.822382 78 47564 41 1.56141e+07 9.59907e+06 2.67122e+06 4637.53 22.63 5.88688 5.12476 68222 705597 -1 41368 15 15230 27813 2474674 526301 4.52256 4.52256 -5391.64 -4.52256 0 0 3.35110e+06 5817.88 0.95 1.14 0.60 -1 -1 0.95 0.554614 0.499773 2318 3692 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_14.v common 9.56 vpr 67.77 MiB 0.11 9172 -1 -1 10 0.44 -1 -1 35200 -1 -1 57 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69392 22 19 1149 1049 1 785 102 16 16 256 mult_36 auto 29.6 MiB 0.40 5037 10336 2127 7192 1017 67.8 MiB 0.24 0.00 13.5769 -436.724 -13.5769 13.5769 0.57 0.00283789 0.00259675 0.139608 0.127688 66 10619 38 6.45408e+06 2.3519e+06 974584. 3806.97 5.09 0.859487 0.760269 27588 246658 -1 9102 21 4960 9680 816171 175522 12.3606 12.3606 -501.162 -12.3606 0 0 1.22072e+06 4768.46 0.29 0.31 0.22 -1 -1 0.29 0.135528 0.121491 433 715 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_15.v common 11.47 vpr 68.09 MiB 0.10 9568 -1 -1 11 0.53 -1 -1 36096 -1 -1 63 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69728 22 19 1261 1144 1 857 109 16 16 256 mult_36 auto 29.8 MiB 0.31 5354 11029 1996 7826 1207 68.1 MiB 0.27 0.01 14.3075 -472.001 -14.3075 14.3075 0.61 0.00311906 0.00285732 0.153208 0.140305 60 11748 49 6.45408e+06 2.82874e+06 890343. 3477.90 6.85 1.00097 0.885675 26568 224354 -1 9547 19 5111 10092 834420 183795 13.1013 13.1013 -568.67 -13.1013 0 0 1.11577e+06 4358.47 0.28 0.38 0.20 -1 -1 0.28 0.15702 0.141497 471 790 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_16.v common 13.03 vpr 68.41 MiB 0.07 9512 -1 -1 11 0.54 -1 -1 35676 -1 -1 70 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70048 22 19 1336 1219 1 919 116 16 16 256 mult_36 auto 30.4 MiB 0.41 5988 14780 3169 10176 1435 68.4 MiB 0.34 0.01 15.4691 -502.458 -15.4691 15.4691 0.59 0.00321339 0.00293116 0.193966 0.176783 60 13547 46 6.45408e+06 2.92304e+06 890343. 3477.90 8.32 1.09104 0.964979 26568 224354 -1 10822 18 5906 11528 997034 212689 13.6285 13.6285 -588.196 -13.6285 0 0 1.11577e+06 4358.47 0.33 0.37 0.16 -1 -1 0.33 0.143771 0.129249 512 846 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_17.v common 27.96 vpr 68.99 MiB 0.07 10120 -1 -1 11 0.60 -1 -1 36268 -1 -1 77 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70648 22 19 1446 1312 1 981 123 16 16 256 mult_36 auto 31.2 MiB 0.40 6289 16593 3435 11440 1718 69.0 MiB 0.41 0.01 14.6023 -516.745 -14.6023 14.6023 0.57 0.00376618 0.00346715 0.226722 0.206413 58 14652 40 6.45408e+06 3.01734e+06 871168. 3403.00 23.06 2.15691 1.89833 26312 218777 -1 11958 21 6363 12408 1114223 259816 13.1832 13.1832 -634.162 -13.1832 0 0 1.09288e+06 4269.05 0.28 0.45 0.20 -1 -1 0.28 0.179143 0.161178 558 919 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_18.v common 11.67 vpr 69.31 MiB 0.14 10076 -1 -1 11 0.64 -1 -1 36144 -1 -1 79 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70972 22 19 1507 1373 1 1020 125 16 16 256 mult_36 auto 31.4 MiB 0.44 6726 16037 3280 11223 1534 69.3 MiB 0.37 0.01 14.4834 -543.036 -14.4834 14.4834 0.59 0.00363422 0.00330186 0.203721 0.185413 68 13928 32 6.45408e+06 3.04429e+06 1.00038e+06 3907.74 6.51 1.10046 0.97363 27844 252052 -1 11686 20 6201 12406 990131 213742 13.2267 13.2267 -690.745 -13.2267 0 0 1.24648e+06 4869.04 0.30 0.38 0.22 -1 -1 0.30 0.168494 0.15091 576 961 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_19.v common 11.35 vpr 69.98 MiB 0.13 10552 -1 -1 11 0.68 -1 -1 36148 -1 -1 80 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71656 22 19 1596 1445 1 1103 127 16 16 256 mult_36 auto 32.0 MiB 0.46 7348 16715 3403 11508 1804 70.0 MiB 0.39 0.01 14.8867 -546.505 -14.8867 14.8867 0.61 0.00383748 0.00350071 0.219016 0.199495 74 14383 47 6.45408e+06 3.45376e+06 1.07073e+06 4182.55 5.89 1.36261 1.21569 28864 273460 -1 12301 23 6003 11963 1225113 345124 13.7425 13.7425 -634.512 -13.7425 0 0 1.33358e+06 5209.30 0.32 0.48 0.25 -1 -1 0.32 0.195495 0.174987 615 1013 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_20.v common 11.43 vpr 70.18 MiB 0.12 10476 -1 -1 11 0.71 -1 -1 37016 -1 -1 86 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71864 22 19 1656 1505 1 1131 133 16 16 256 mult_36 auto 32.3 MiB 0.50 7846 15049 2924 10833 1292 70.2 MiB 0.36 0.01 15.2396 -554.475 -15.2396 15.2396 0.57 0.00381256 0.00344485 0.197804 0.179974 78 14532 25 6.45408e+06 3.53459e+06 1.11577e+06 4358.47 6.05 1.55153 1.36966 29628 289086 -1 12993 20 6297 12615 1007204 216794 13.8209 13.8209 -719.959 -13.8209 0 0 1.40012e+06 5469.22 0.33 0.42 0.25 -1 -1 0.33 0.18349 0.163832 637 1054 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_21.v common 10.99 vpr 70.82 MiB 0.08 10820 -1 -1 12 0.78 -1 -1 36952 -1 -1 91 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72520 22 19 1754 1586 1 1196 138 16 16 256 mult_36 auto 32.9 MiB 0.48 7990 15090 2622 11262 1206 70.8 MiB 0.36 0.01 15.6803 -617.052 -15.6803 15.6803 0.57 0.00411309 0.00370872 0.199158 0.181002 70 15670 41 6.45408e+06 3.60195e+06 1.02522e+06 4004.78 5.53 1.40516 1.24773 28352 262101 -1 13848 20 6781 13005 1123871 254420 14.4006 14.4006 -887.052 -14.4006 0 0 1.29210e+06 5047.26 0.31 0.42 0.23 -1 -1 0.31 0.189808 0.170084 662 1115 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_22.v common 12.31 vpr 71.13 MiB 0.11 10916 -1 -1 11 0.78 -1 -1 37892 -1 -1 97 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72836 22 19 1827 1659 1 1261 144 16 16 256 mult_36 auto 33.3 MiB 0.54 8682 12585 1999 9675 911 71.1 MiB 0.32 0.01 14.4771 -606.777 -14.4771 14.4771 0.59 0.00425811 0.0038667 0.164363 0.149722 74 17628 40 6.45408e+06 3.68278e+06 1.07073e+06 4182.55 6.64 1.38253 1.22543 28864 273460 -1 14632 18 7673 14950 1275962 280127 13.3561 13.3561 -716.782 -13.3561 0 0 1.33358e+06 5209.30 0.33 0.47 0.25 -1 -1 0.33 0.188624 0.169655 708 1169 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_23.v common 12.29 vpr 71.60 MiB 0.11 11308 -1 -1 12 0.88 -1 -1 38200 -1 -1 97 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73320 22 19 1905 1720 1 1293 145 18 18 324 mult_36 auto 33.9 MiB 0.53 9148 21425 4017 15587 1821 71.6 MiB 0.52 0.01 16.7814 -693.289 -16.7814 16.7814 0.80 0.00445708 0.00405429 0.28277 0.256794 72 18160 35 7.94662e+06 4.07878e+06 1.37338e+06 4238.83 5.79 1.42559 1.26369 36820 354972 -1 15344 17 6907 13721 1184988 258891 15.4142 15.4142 -835.99 -15.4142 0 0 1.72054e+06 5310.31 0.44 0.44 0.30 -1 -1 0.44 0.185723 0.167504 722 1210 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_24.v common 12.39 vpr 72.14 MiB 0.10 11428 -1 -1 12 0.87 -1 -1 36816 -1 -1 98 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73876 22 19 1979 1794 1 1336 146 18 18 324 mult_36 auto 34.2 MiB 0.56 8835 18962 3578 13867 1517 72.1 MiB 0.47 0.01 15.6002 -656.607 -15.6002 15.6002 0.78 0.00467573 0.00425148 0.258996 0.234975 70 16906 25 7.94662e+06 4.09226e+06 1.34436e+06 4149.26 5.81 1.37186 1.21779 36496 347204 -1 14857 18 7173 13718 1126372 251932 14.6043 14.6043 -914.656 -14.6043 0 0 1.69344e+06 5226.66 0.41 0.43 0.29 -1 -1 0.41 0.19392 0.174432 739 1265 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_25.v common 54.46 vpr 72.80 MiB 0.15 11616 -1 -1 12 0.97 -1 -1 37344 -1 -1 105 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74552 22 19 2073 1871 1 1394 153 18 18 324 mult_36 auto 35.2 MiB 0.56 9747 21012 4486 14783 1743 72.8 MiB 0.49 0.01 15.9811 -650.584 -15.9811 15.9811 0.75 0.00473226 0.00429919 0.271823 0.24654 68 20163 32 7.94662e+06 4.18656e+06 1.31159e+06 4048.11 47.37 3.21864 2.83632 35852 333792 -1 16458 31 7861 15403 1582531 407046 15.2351 15.2351 -843.341 -15.2351 0 0 1.63345e+06 5041.52 0.43 0.76 0.33 -1 -1 0.43 0.338135 0.303647 791 1322 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_26.v common 15.66 vpr 73.84 MiB 0.17 11888 -1 -1 12 1.01 -1 -1 37336 -1 -1 106 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75616 22 19 2130 1928 1 1451 154 18 18 324 mult_36 auto 35.9 MiB 0.59 10204 19518 3476 14463 1579 73.8 MiB 0.49 0.01 15.2934 -691.341 -15.2934 15.2934 0.77 0.00497894 0.00451692 0.268485 0.243242 78 18594 29 7.94662e+06 4.20003e+06 1.46313e+06 4515.82 8.78 1.90212 1.6799 38112 383040 -1 16631 19 8278 16241 1354684 288682 13.9932 13.9932 -860.935 -13.9932 0 0 1.83526e+06 5664.38 0.45 0.51 0.34 -1 -1 0.45 0.220491 0.197761 811 1360 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_27.v common 14.03 vpr 74.11 MiB 0.11 12080 -1 -1 12 1.10 -1 -1 37988 -1 -1 114 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75892 22 19 2238 2019 1 1541 163 18 18 324 mult_36 auto 36.0 MiB 0.62 11025 22858 4211 16623 2024 74.1 MiB 0.57 0.01 16.3551 -735.488 -16.3551 16.3551 0.80 0.00585114 0.00535646 0.309241 0.280048 76 21114 47 7.94662e+06 4.70381e+06 1.43297e+06 4422.75 6.80 1.77216 1.56975 37464 369264 -1 17850 18 8516 16298 1366025 295170 14.9675 14.9675 -881.208 -14.9675 0 0 1.77541e+06 5479.65 0.44 0.53 0.31 -1 -1 0.44 0.229164 0.206865 851 1431 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_28.v common 16.02 vpr 73.91 MiB 0.26 12204 -1 -1 12 1.02 -1 -1 38184 -1 -1 117 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75680 22 19 2299 2080 1 1575 166 18 18 324 mult_36 auto 36.4 MiB 0.62 10794 23422 4551 16955 1916 73.9 MiB 0.54 0.01 15.946 -732.667 -15.946 15.946 0.75 0.00517696 0.00467148 0.27908 0.251768 78 20079 29 7.94662e+06 4.74422e+06 1.46313e+06 4515.82 8.72 2.04218 1.79501 38112 383040 -1 17907 18 9336 18256 1527559 324376 14.7451 14.7451 -981.151 -14.7451 0 0 1.83526e+06 5664.38 0.45 0.57 0.32 -1 -1 0.45 0.229135 0.205229 874 1473 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_29.v common 18.81 vpr 75.03 MiB 0.12 12664 -1 -1 12 1.20 -1 -1 38612 -1 -1 121 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76828 22 19 2400 2164 1 1649 171 22 22 484 mult_36 auto 37.1 MiB 0.64 11709 28137 5812 19993 2332 75.0 MiB 0.66 0.01 15.3214 -777.403 -15.3214 15.3214 1.19 0.00570205 0.00512156 0.352766 0.31902 74 23883 36 1.29336e+07 5.19411e+06 2.15943e+06 4461.62 10.12 1.85364 1.64724 56202 562081 -1 20484 24 9805 18861 1973610 438335 14.0212 14.0212 -1043.93 -14.0212 0 0 2.68771e+06 5553.12 0.68 0.71 0.35 -1 -1 0.68 0.295137 0.264756 915 1537 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_30.v common 22.10 vpr 75.44 MiB 0.15 12692 -1 -1 12 1.18 -1 -1 38224 -1 -1 127 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77252 22 19 2474 2238 1 1692 177 22 22 484 mult_36 auto 37.5 MiB 0.66 11907 26961 5348 19369 2244 75.4 MiB 0.64 0.01 15.2789 -855.312 -15.2789 15.2789 1.22 0.0055669 0.00504026 0.34526 0.312191 70 24231 42 1.29336e+07 5.27494e+06 2.06816e+06 4273.05 13.20 1.90214 1.67925 55234 538945 -1 20580 19 11208 21825 2041793 427284 14.0646 14.0646 -1208.44 -14.0646 0 0 2.60483e+06 5381.88 0.67 0.73 0.44 -1 -1 0.67 0.273404 0.244783 947 1592 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_31.v common 21.05 vpr 76.11 MiB 0.29 12928 -1 -1 12 1.30 -1 -1 39768 -1 -1 137 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77932 22 19 2603 2350 1 1765 187 22 22 484 mult_36 auto 38.1 MiB 0.69 12262 31159 6432 22219 2508 76.1 MiB 0.74 0.01 16.1203 -785.932 -16.1203 16.1203 1.23 0.00611833 0.00555561 0.395018 0.356791 68 25196 45 1.29336e+07 5.40966e+06 2.01763e+06 4168.66 11.50 2.06046 1.82653 54270 517931 -1 20695 21 10470 20411 1826849 392287 14.5952 14.5952 -1200.15 -14.5952 0 0 2.51205e+06 5190.18 0.66 0.71 0.44 -1 -1 0.66 0.303571 0.273281 1001 1684 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_32.v common 18.43 vpr 76.16 MiB 0.18 13140 -1 -1 12 1.34 -1 -1 38432 -1 -1 141 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77992 22 19 2694 2441 1 1849 191 22 22 484 mult_36 auto 38.8 MiB 0.73 12941 28739 5515 21062 2162 76.2 MiB 0.67 0.01 16.1727 -911.506 -16.1727 16.1727 1.20 0.00602303 0.00545232 0.350625 0.316295 74 24735 34 1.29336e+07 5.46355e+06 2.15943e+06 4461.62 9.02 1.86707 1.65046 56202 562081 -1 21368 18 10183 19389 1708612 353718 14.5728 14.5728 -1178.82 -14.5728 0 0 2.68771e+06 5553.12 0.72 0.65 0.47 -1 -1 0.72 0.27233 0.246182 1040 1756 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_33.v common 22.26 vpr 76.82 MiB 0.20 13628 -1 -1 13 1.46 -1 -1 39832 -1 -1 140 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78660 22 19 2787 2517 1 1916 191 22 22 484 mult_36 auto 39.6 MiB 0.65 13465 35327 7716 24810 2801 76.8 MiB 0.82 0.01 16.2303 -861.433 -16.2303 16.2303 1.17 0.00619642 0.00560228 0.441015 0.397344 72 28617 47 1.29336e+07 5.84608e+06 2.11301e+06 4365.72 12.74 2.32135 2.06384 55718 550791 -1 22968 20 11049 21354 1933552 406347 15.1021 15.1021 -1245.64 -15.1021 0 0 2.64603e+06 5467.00 0.70 0.73 0.46 -1 -1 0.70 0.304053 0.273472 1070 1812 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_34.v common 67.97 vpr 76.89 MiB 0.20 13868 -1 -1 13 1.66 -1 -1 38812 -1 -1 142 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78736 22 19 2834 2564 1 1944 193 22 22 484 mult_36 auto 39.5 MiB 0.74 13469 30271 5714 22234 2323 76.9 MiB 0.72 0.01 16.0453 -909.324 -16.0453 16.0453 1.18 0.00635464 0.00574929 0.382473 0.3445 80 25009 28 1.29336e+07 5.87302e+06 2.29262e+06 4736.82 57.67 3.98386 3.50176 58134 606231 -1 21947 24 11598 22950 1898757 393575 14.9053 14.9053 -1295.89 -14.9053 0 0 2.87723e+06 5944.70 0.84 0.85 0.54 -1 -1 0.84 0.384773 0.344879 1084 1840 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_35.v common 22.97 vpr 77.67 MiB 0.53 14024 -1 -1 13 1.48 -1 -1 40452 -1 -1 150 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79536 22 19 2941 2654 1 2012 201 22 22 484 mult_36 auto 40.2 MiB 0.78 14333 34893 6946 25294 2653 77.7 MiB 0.81 0.01 16.6518 -906.845 -16.6518 16.6518 1.18 0.00655725 0.00592973 0.429636 0.387526 84 25918 26 1.29336e+07 5.9808e+06 2.40101e+06 4960.76 12.48 2.90109 2.57723 59582 640177 -1 22484 20 10291 19738 1555925 325659 15.3638 15.3638 -1059.3 -15.3638 0 0 3.03951e+06 6279.99 0.80 0.65 0.52 -1 -1 0.80 0.313369 0.282092 1131 1910 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_36.v common 22.50 vpr 78.09 MiB 0.22 14096 -1 -1 13 1.64 -1 -1 40556 -1 -1 153 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79960 22 19 3011 2724 1 2050 204 22 22 484 mult_36 auto 40.6 MiB 0.81 14333 33204 6759 24067 2378 78.1 MiB 0.82 0.01 16.0901 -925.304 -16.0901 16.0901 1.23 0.00711466 0.0064534 0.433504 0.389873 76 28442 48 1.29336e+07 6.02122e+06 2.20457e+06 4554.90 11.98 2.38845 2.11654 56682 573177 -1 23842 28 12073 23670 2540531 638646 14.9173 14.9173 -1511.95 -14.9173 0 0 2.73077e+06 5642.09 0.70 1.00 0.46 -1 -1 0.70 0.413026 0.369097 1168 1961 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_37.v common 26.82 vpr 79.39 MiB 0.25 14480 -1 -1 13 1.63 -1 -1 39240 -1 -1 158 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81300 22 19 3132 2828 1 2123 210 24 24 576 mult_36 auto 41.1 MiB 0.85 16072 33282 6623 24362 2297 79.4 MiB 0.83 0.01 16.4965 -1047.3 -16.4965 16.4965 1.44 0.00706155 0.00639046 0.428977 0.38598 80 28099 43 1.56141e+07 6.48458e+06 2.72095e+06 4723.87 15.57 3.09042 2.73815 68798 719145 -1 24743 19 11538 21936 2036930 411178 15.1133 15.1133 -1392.4 -15.1133 0 0 3.41546e+06 5929.62 0.89 0.77 0.59 -1 -1 0.89 0.326713 0.294003 1192 2045 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_38.v common 27.44 vpr 78.64 MiB 0.22 14496 -1 -1 13 1.67 -1 -1 41204 -1 -1 160 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80524 22 19 3159 2855 1 2172 212 24 24 576 mult_36 auto 41.5 MiB 0.90 15400 37441 7616 27633 2192 78.6 MiB 0.89 0.01 16.6277 -1074.04 -16.6277 16.6277 1.45 0.00754073 0.00683655 0.466712 0.419083 72 31514 49 1.56141e+07 6.51152e+06 2.50747e+06 4353.24 15.87 2.62843 2.33191 65922 653303 -1 25605 20 12401 23528 2242204 463472 15.3358 15.3358 -1479.25 -15.3358 0 0 3.14081e+06 5452.80 0.86 0.82 0.60 -1 -1 0.86 0.335776 0.300988 1207 2053 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_39.v common 19.87 vpr 79.98 MiB 0.23 14800 -1 -1 13 1.79 -1 -1 39908 -1 -1 169 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81904 22 19 3284 2963 1 2259 221 24 24 576 mult_36 auto 42.1 MiB 0.64 15993 38907 8122 28363 2422 79.5 MiB 0.90 0.01 17.5627 -1048.03 -17.5627 17.5627 1.39 0.00751196 0.00679551 0.462113 0.415849 76 30113 42 1.56141e+07 6.63277e+06 2.61600e+06 4541.67 8.99 2.2988 2.03591 67070 679911 -1 25981 19 11896 23197 1973836 423116 16.2556 16.2556 -1391.29 -16.2556 0 0 3.24203e+06 5628.53 0.85 0.76 0.56 -1 -1 0.85 0.333649 0.299451 1267 2141 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_40.v common 24.57 vpr 79.75 MiB 0.23 15076 -1 -1 13 1.75 -1 -1 40080 -1 -1 169 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81668 22 19 3343 3022 1 2282 221 24 24 576 mult_36 auto 42.5 MiB 0.92 15990 43576 9973 30398 3205 79.8 MiB 1.03 0.01 16.4294 -969.621 -16.4294 16.4294 1.46 0.00760405 0.00686572 0.535813 0.480165 76 30952 33 1.56141e+07 6.63277e+06 2.61600e+06 4541.67 12.77 2.57653 2.27861 67070 679911 -1 26278 19 12991 25311 2114866 467584 15.2497 15.2497 -1454.29 -15.2497 0 0 3.24203e+06 5628.53 0.86 0.80 0.57 -1 -1 0.86 0.344819 0.308242 1284 2181 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_41.v common 27.19 vpr 81.92 MiB 0.24 15360 -1 -1 13 2.00 -1 -1 41976 -1 -1 175 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83888 22 19 3448 3110 1 2364 228 24 24 576 mult_36 auto 43.3 MiB 0.90 17394 37812 7382 28088 2342 80.5 MiB 0.91 0.02 16.1075 -1051.7 -16.1075 16.1075 1.40 0.00800191 0.00714055 0.470431 0.42195 80 32710 50 1.56141e+07 7.1096e+06 2.72095e+06 4723.87 15.13 3.11565 2.75847 68798 719145 -1 27975 20 13581 26685 2399172 485688 14.745 14.745 -1420.2 -14.745 0 0 3.41546e+06 5929.62 0.89 0.90 0.62 -1 -1 0.89 0.371789 0.334716 1333 2249 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_42.v common 29.28 vpr 80.86 MiB 0.18 15508 -1 -1 13 1.95 -1 -1 40568 -1 -1 179 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82800 22 19 3510 3172 1 2403 232 24 24 576 mult_36 auto 43.6 MiB 1.01 17180 40816 8418 29993 2405 80.9 MiB 0.95 0.02 16.1912 -1016.75 -16.1912 16.1912 1.42 0.00753843 0.00671455 0.484684 0.434717 78 31825 33 1.56141e+07 7.16349e+06 2.67122e+06 4637.53 17.12 3.33801 2.95367 68222 705597 -1 28178 20 13315 25658 2235495 474011 14.82 14.82 -1393.15 -14.82 0 0 3.35110e+06 5817.88 0.93 0.88 0.57 -1 -1 0.93 0.380218 0.341939 1352 2292 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_43.v common 101.99 vpr 83.47 MiB 0.26 15696 -1 -1 13 2.20 -1 -1 38516 -1 -1 182 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85472 22 19 3598 3243 1 2469 235 24 24 576 mult_36 auto 44.2 MiB 1.01 18304 36435 6715 27575 2145 81.3 MiB 0.93 0.02 16.7224 -1137.41 -16.7224 16.7224 1.54 0.00847774 0.00767893 0.481449 0.431756 80 32742 43 1.56141e+07 7.2039e+06 2.72095e+06 4723.87 89.32 5.31576 4.66446 68798 719145 -1 28837 18 13104 25834 2196766 464822 15.2028 15.2028 -1813.65 -15.2028 0 0 3.41546e+06 5929.62 0.90 0.85 0.64 -1 -1 0.90 0.370256 0.33297 1391 2343 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_44.v common 30.26 vpr 83.66 MiB 0.27 15820 -1 -1 13 2.11 -1 -1 42436 -1 -1 189 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85664 22 19 3689 3334 1 2527 242 24 24 576 mult_36 auto 44.8 MiB 1.02 17450 43163 8464 32497 2202 82.9 MiB 0.88 0.02 15.8215 -1053.59 -15.8215 15.8215 1.46 0.00850938 0.00771115 0.410183 0.365757 78 32864 35 1.56141e+07 7.29821e+06 2.67122e+06 4637.53 17.95 3.3378 2.93687 68222 705597 -1 29085 22 13883 27525 2405573 500719 14.7058 14.7058 -1423.85 -14.7058 0 0 3.35110e+06 5817.88 0.94 0.86 0.57 -1 -1 0.94 0.340965 0.309465 1433 2415 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_45.v common 33.20 vpr 84.90 MiB 0.25 16080 -1 -1 13 2.29 -1 -1 38860 -1 -1 191 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86940 22 19 3763 3391 1 2591 245 24 24 576 mult_36 auto 45.2 MiB 1.10 18844 45439 9758 33174 2507 83.1 MiB 1.21 0.03 16.1092 -1223.71 -16.1092 16.1092 1.55 0.0159171 0.0142019 0.629245 0.560456 80 34440 28 1.56141e+07 7.72115e+06 2.72095e+06 4723.87 19.68 3.48973 3.07505 68798 719145 -1 29823 19 14053 27150 2539938 517717 14.6981 14.6981 -1643.43 -14.6981 0 0 3.41546e+06 5929.62 0.95 0.95 0.57 -1 -1 0.95 0.3926 0.354176 1453 2452 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_46.v common 29.39 vpr 83.80 MiB 0.20 16224 -1 -1 13 2.28 -1 -1 42424 -1 -1 195 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85812 22 19 3845 3473 1 2635 249 24 24 576 mult_36 auto 45.9 MiB 1.13 19078 44880 9246 33148 2486 83.8 MiB 1.07 0.02 16.4066 -1156.75 -16.4066 16.4066 1.46 0.00857654 0.00776513 0.550131 0.492533 76 38277 49 1.56141e+07 7.77504e+06 2.61600e+06 4541.67 16.16 3.19223 2.82495 67070 679911 -1 31279 21 14604 28625 2614110 539811 15.1678 15.1678 -1537.76 -15.1678 0 0 3.24203e+06 5628.53 0.90 1.02 0.54 -1 -1 0.90 0.430568 0.385437 1482 2515 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_47.v common 34.04 vpr 84.73 MiB 0.29 16576 -1 -1 13 2.36 -1 -1 42656 -1 -1 206 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86768 22 19 3983 3594 1 2724 260 24 24 576 mult_36 auto 46.9 MiB 1.17 19564 47513 9947 35207 2359 84.7 MiB 1.26 0.02 16.197 -1214.31 -16.197 16.197 1.43 0.00880364 0.00790823 0.658543 0.584785 78 35422 40 1.56141e+07 7.92323e+06 2.67122e+06 4637.53 20.46 3.89534 3.42477 68222 705597 -1 31712 20 14679 29149 2638098 545103 14.8312 14.8312 -1689.11 -14.8312 0 0 3.35110e+06 5817.88 0.88 0.99 0.56 -1 -1 0.88 0.41967 0.376975 1559 2616 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_48.v common 31.49 vpr 85.75 MiB 0.34 16884 -1 -1 13 2.35 -1 -1 38932 -1 -1 202 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87804 22 19 4025 3636 1 2760 256 24 24 576 mult_36 auto 47.1 MiB 1.17 19865 44104 8235 32908 2961 84.2 MiB 1.11 0.02 16.5555 -1237.6 -16.5555 16.5555 1.52 0.00951442 0.00845547 0.564856 0.504466 80 34964 32 1.56141e+07 7.86934e+06 2.72095e+06 4723.87 17.88 3.64247 3.20046 68798 719145 -1 31055 19 14926 29473 2357968 493685 15.3246 15.3246 -1886.04 -15.3246 0 0 3.41546e+06 5929.62 0.95 0.96 0.58 -1 -1 0.95 0.420428 0.376137 1547 2639 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_49.v common 29.42 vpr 88.52 MiB 0.26 17096 -1 -1 13 2.59 -1 -1 39384 -1 -1 213 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90640 22 19 4164 3758 1 2857 268 24 24 576 mult_36 auto 48.2 MiB 1.19 20771 46007 8890 34471 2646 85.7 MiB 1.10 0.02 17.0529 -1256.54 -17.0529 17.0529 1.46 0.00946931 0.00857696 0.557609 0.499161 82 37329 31 1.56141e+07 8.41354e+06 2.78508e+06 4835.20 15.70 3.88689 3.43225 69370 733739 -1 32313 17 14152 27191 2278999 483397 15.8336 15.8336 -1741.68 -15.8336 0 0 3.48632e+06 6052.64 0.95 0.91 0.59 -1 -1 0.95 0.399336 0.360201 1622 2741 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_50.v common 36.12 vpr 86.42 MiB 0.20 17156 -1 -1 13 2.58 -1 -1 39324 -1 -1 212 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88496 22 19 4190 3784 1 2864 267 24 24 576 mult_36 auto 48.0 MiB 1.19 20719 47512 9780 35035 2697 84.8 MiB 1.16 0.02 16.5956 -1264.91 -16.5956 16.5956 1.47 0.0091073 0.00821237 0.577449 0.516343 80 37198 33 1.56141e+07 8.40006e+06 2.72095e+06 4723.87 22.19 4.055 3.58594 68798 719145 -1 32760 21 15413 30452 2837390 559448 15.403 15.403 -1780.07 -15.403 0 0 3.41546e+06 5929.62 0.95 1.10 0.58 -1 -1 0.95 0.474642 0.42666 1618 2748 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_51.v common 30.24 vpr 89.34 MiB 0.32 17612 -1 -1 13 2.71 -1 -1 43504 -1 -1 216 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91480 22 19 4305 3882 1 2950 271 24 24 576 mult_36 auto 49.1 MiB 0.93 21440 51079 10257 37415 3407 86.6 MiB 1.27 0.02 16.714 -1309.99 -16.714 16.714 1.64 0.0119022 0.0109917 0.641407 0.572951 84 38763 39 1.56141e+07 8.45395e+06 2.84938e+06 4946.85 15.79 4.22066 3.74218 70522 759407 -1 32428 20 15429 30918 2308593 493125 15.4073 15.4073 -1971.83 -15.4073 0 0 3.60864e+06 6265.01 0.98 1.05 0.61 -1 -1 0.98 0.497871 0.448507 1666 2826 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_52.v common 152.77 vpr 89.94 MiB 0.33 17640 -1 -1 13 2.82 -1 -1 39776 -1 -1 227 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92096 22 19 4363 3940 1 3005 282 24 24 576 mult_36 auto 49.3 MiB 1.21 21730 54798 11168 40568 3062 87.0 MiB 1.32 0.02 17.192 -1314.04 -17.192 17.192 1.52 0.0101418 0.00918253 0.66549 0.59325 76 43596 50 1.56141e+07 8.60214e+06 2.61600e+06 4541.67 137.76 7.36468 6.43712 67070 679911 -1 35261 20 17755 34183 2873298 612759 15.6501 15.6501 -1976.75 -15.6501 0 0 3.24203e+06 5628.53 0.91 1.24 0.60 -1 -1 0.91 0.56194 0.502549 1697 2865 -1 -1 -1 -1 +k6_frac_ripple_N8_22nm.xml fir_pipe_14.v common 7.16 vpr 70.80 MiB 0.07 10496 -1 -1 1 0.24 -1 -1 35480 -1 -1 81 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72496 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 32.8 MiB 0.41 5707 14616 2612 9996 2008 70.8 MiB 0.35 0.01 4.27196 -1191.29 -4.27196 4.27196 0.57 0.00340592 0.00306896 0.179803 0.162328 60 9610 24 6.52434e+06 2.71588e+06 890343. 3477.90 2.78 0.899076 0.784711 27128 224764 -1 8185 17 3699 4190 423433 108714 4.39726 4.39726 -1140.75 -4.39726 0 0 1.11577e+06 4358.47 0.29 0.23 0.19 -1 -1 0.29 0.130495 0.117487 605 708 247 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_15.v common 20.60 vpr 71.64 MiB 0.08 10912 -1 -1 1 0.25 -1 -1 36976 -1 -1 88 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73356 22 19 2144 1789 1 1119 134 16 16 256 mult_36 auto 33.5 MiB 0.42 6078 18944 3753 12931 2260 71.6 MiB 0.44 0.01 4.22492 -1354.66 -4.22492 4.22492 0.67 0.0037036 0.00333617 0.21501 0.193696 52 14873 50 6.52434e+06 3.20969e+06 808720. 3159.06 15.69 1.74398 1.5257 25852 197779 -1 10045 20 4558 5394 572033 144141 4.52256 4.52256 -1396.34 -4.52256 0 0 1.00038e+06 3907.74 0.24 0.29 0.17 -1 -1 0.24 0.162087 0.143071 654 769 266 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_16.v common 8.25 vpr 71.93 MiB 0.11 10952 -1 -1 1 0.26 -1 -1 36912 -1 -1 91 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73652 22 19 2218 1846 1 1161 137 16 16 256 mult_36 auto 33.8 MiB 0.46 6793 19199 3651 12642 2906 71.9 MiB 0.46 0.01 4.29396 -1376.37 -4.29396 4.29396 0.55 0.00392286 0.00353131 0.222154 0.199557 56 12610 23 6.52434e+06 3.25161e+06 849745. 3319.32 3.35 1.08385 0.946389 26364 208198 -1 10765 21 4657 5400 648059 162428 4.52256 4.52256 -1436.25 -4.52256 0 0 1.04740e+06 4091.43 0.27 0.35 0.21 -1 -1 0.27 0.193181 0.170747 683 788 285 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_17.v common 9.50 vpr 73.33 MiB 0.13 11704 -1 -1 1 0.27 -1 -1 36580 -1 -1 103 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75088 22 19 2536 2130 1 1274 149 16 16 256 mult_36 auto 35.3 MiB 0.52 7563 19849 3721 13396 2732 73.3 MiB 0.51 0.01 4.29396 -1555.03 -4.29396 4.29396 0.60 0.00452081 0.00408155 0.252577 0.22717 54 14934 45 6.52434e+06 3.4193e+06 829453. 3240.05 4.40 1.45664 1.27771 26108 202796 -1 11220 19 5009 5929 575456 150599 4.29396 4.29396 -1585.29 -4.29396 0 0 1.02522e+06 4004.78 0.25 0.34 0.17 -1 -1 0.25 0.199787 0.177848 770 924 304 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_18.v common 10.95 vpr 74.29 MiB 0.12 11884 -1 -1 1 0.31 -1 -1 37120 -1 -1 107 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76068 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 35.8 MiB 0.55 7580 22648 4139 15538 2971 74.3 MiB 0.55 0.01 4.22437 -1603.12 -4.22437 4.22437 0.58 0.00443525 0.00398183 0.273319 0.245768 56 14991 32 6.52434e+06 3.47519e+06 849745. 3319.32 5.86 1.41031 1.23076 26364 208198 -1 12118 24 5442 6385 763550 186400 5.14906 5.14906 -1681.4 -5.14906 0 0 1.04740e+06 4091.43 0.27 0.41 0.13 -1 -1 0.27 0.230417 0.203033 798 943 323 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_19.v common 10.76 vpr 75.11 MiB 0.17 12184 -1 -1 1 0.33 -1 -1 36724 -1 -1 113 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76916 22 19 2778 2321 1 1410 160 16 16 256 mult_36 auto 36.8 MiB 0.57 8169 22294 4065 14927 3302 75.1 MiB 0.53 0.01 4.2304 -1681.23 -4.2304 4.2304 0.58 0.0045314 0.00405318 0.256982 0.22945 58 14770 47 6.52434e+06 3.95503e+06 871168. 3403.00 5.40 1.56264 1.36024 26872 219187 -1 12035 18 5167 5841 646056 165802 4.29396 4.29396 -1705.82 -4.29396 0 0 1.09288e+06 4269.05 0.26 0.34 0.19 -1 -1 0.26 0.194726 0.171914 846 1002 342 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_20.v common 9.91 vpr 75.12 MiB 0.13 12376 -1 -1 1 0.35 -1 -1 37004 -1 -1 118 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76928 22 19 2852 2378 1 1454 165 16 16 256 mult_36 auto 37.3 MiB 0.56 8808 21861 3843 15034 2984 75.1 MiB 0.55 0.01 4.28986 -1739.48 -4.28986 4.28986 0.61 0.00497001 0.00446513 0.264268 0.23753 60 14824 27 6.52434e+06 4.0249e+06 890343. 3477.90 4.57 1.45122 1.26718 27128 224764 -1 12480 16 5276 6100 595745 151457 4.41926 4.41926 -1762.84 -4.41926 0 0 1.11577e+06 4358.47 0.28 0.34 0.20 -1 -1 0.28 0.194343 0.172377 875 1021 361 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_21.v common 11.49 vpr 76.05 MiB 0.15 12808 -1 -1 1 0.34 -1 -1 37824 -1 -1 122 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77880 22 19 3057 2549 1 1559 169 16 16 256 mult_36 auto 38.3 MiB 0.64 9015 24920 4571 15619 4730 76.1 MiB 0.64 0.01 4.20237 -1905.04 -4.20237 4.20237 0.58 0.00554434 0.00500669 0.309355 0.276796 60 16024 44 6.52434e+06 4.0808e+06 890343. 3477.90 5.69 1.73434 1.51865 27128 224764 -1 13134 16 5600 6594 636756 160290 4.29396 4.29396 -1928.97 -4.29396 0 0 1.11577e+06 4358.47 0.28 0.36 0.19 -1 -1 0.28 0.207694 0.184735 932 1099 380 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_22.v common 12.10 vpr 76.48 MiB 0.10 12960 -1 -1 1 0.35 -1 -1 37920 -1 -1 125 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78316 22 19 3131 2606 1 1599 172 16 16 256 mult_36 auto 38.8 MiB 0.53 9644 27896 4964 18195 4737 76.5 MiB 0.74 0.01 4.09962 -1964.96 -4.09962 4.09962 0.57 0.00549947 0.00489115 0.342589 0.303885 66 17711 35 6.52434e+06 4.12272e+06 974584. 3806.97 6.45 1.71183 1.49596 28148 247068 -1 13707 17 5831 6659 781116 185151 4.29396 4.29396 -1959.31 -4.29396 0 0 1.22072e+06 4768.46 0.31 0.39 0.19 -1 -1 0.31 0.215751 0.191625 961 1118 399 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_23.v common 13.73 vpr 77.29 MiB 0.17 13308 -1 -1 1 0.39 -1 -1 37936 -1 -1 133 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79140 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 39.5 MiB 0.72 10087 30330 5799 21301 3230 77.3 MiB 0.74 0.01 4.29396 -2075.2 -4.29396 4.29396 0.77 0.00650178 0.00598133 0.346423 0.313697 60 18320 28 8.04299e+06 4.63052e+06 1.16833e+06 3605.96 7.06 1.72603 1.51148 35004 297736 -1 15010 17 6849 7695 873963 206522 4.29396 4.29396 -2095.97 -4.29396 0 0 1.46313e+06 4515.82 0.40 0.41 0.25 -1 -1 0.40 0.220321 0.195312 1012 1179 418 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_24.v common 13.85 vpr 77.54 MiB 0.13 13392 -1 -1 1 0.41 -1 -1 38108 -1 -1 137 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79396 22 19 3375 2799 1 1743 185 18 18 324 mult_36 auto 39.8 MiB 0.70 10300 29115 5219 20674 3222 77.5 MiB 0.80 0.01 4.22437 -2073.88 -4.22437 4.22437 0.77 0.006131 0.00553331 0.354774 0.317073 58 18565 31 8.04299e+06 4.68641e+06 1.14310e+06 3528.09 7.15 1.79694 1.56807 34680 290288 -1 15595 17 6816 7782 901255 220455 4.29396 4.29396 -2160.36 -4.29396 0 0 1.43297e+06 4422.75 0.36 0.44 0.26 -1 -1 0.36 0.237466 0.211355 1041 1198 437 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_25.v common 13.85 vpr 78.52 MiB 0.13 13888 -1 -1 1 0.40 -1 -1 38236 -1 -1 146 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80404 22 19 3615 3005 1 1847 194 18 18 324 mult_36 auto 40.8 MiB 0.67 10975 29927 5204 21640 3083 78.5 MiB 0.78 0.01 4.29396 -2273.15 -4.29396 4.29396 0.76 0.006101 0.00546094 0.361338 0.323248 58 20078 36 8.04299e+06 4.81218e+06 1.14310e+06 3528.09 7.25 1.94915 1.69787 34680 290288 -1 16168 17 7089 8219 904291 224983 4.41926 4.41926 -2410.63 -4.41926 0 0 1.43297e+06 4422.75 0.36 0.46 0.24 -1 -1 0.36 0.258436 0.230808 1107 1293 456 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_26.v common 14.51 vpr 79.02 MiB 0.09 14076 -1 -1 1 0.34 -1 -1 38412 -1 -1 148 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80916 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 41.4 MiB 0.77 10816 33767 6403 23789 3575 79.0 MiB 0.90 0.01 4.09962 -2289.16 -4.09962 4.09962 0.77 0.00666653 0.00592456 0.405095 0.359897 60 19765 47 8.04299e+06 4.84013e+06 1.16833e+06 3605.96 7.57 2.1649 1.88473 35004 297736 -1 15783 16 6853 7919 833754 202360 4.41926 4.41926 -2402.93 -4.41926 0 0 1.46313e+06 4515.82 0.37 0.43 0.25 -1 -1 0.37 0.24325 0.216254 1135 1312 475 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_27.v common 12.41 vpr 80.23 MiB 0.18 14388 -1 -1 1 0.41 -1 -1 38456 -1 -1 156 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82160 22 19 3871 3210 1 1998 205 18 18 324 mult_36 auto 42.4 MiB 0.80 12132 28593 4296 20787 3510 80.2 MiB 0.74 0.01 4.41926 -2393.12 -4.41926 4.41926 0.77 0.006481 0.00579771 0.338432 0.302298 64 20586 19 8.04299e+06 5.34793e+06 1.23838e+06 3822.15 5.24 1.78906 1.56837 35972 318676 -1 17280 19 7116 8295 869286 210992 4.41926 4.41926 -2474.76 -4.41926 0 0 1.56068e+06 4816.91 0.44 0.51 0.30 -1 -1 0.44 0.295813 0.263743 1191 1385 494 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_28.v common 15.94 vpr 80.36 MiB 0.28 14584 -1 -1 1 0.47 -1 -1 38476 -1 -1 160 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82292 22 19 3945 3267 1 2043 209 18 18 324 mult_36 auto 42.6 MiB 0.83 12721 34929 5952 24376 4601 80.4 MiB 0.89 0.01 4.26697 -2429.16 -4.26697 4.26697 0.78 0.00701006 0.00631112 0.406399 0.363637 60 21797 48 8.04299e+06 5.40382e+06 1.16833e+06 3605.96 8.27 2.30836 2.01074 35004 297736 -1 18182 20 8118 9346 1020381 253908 4.41926 4.41926 -2516.38 -4.41926 0 0 1.46313e+06 4515.82 0.38 0.63 0.27 -1 -1 0.38 0.375108 0.337767 1219 1404 513 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_29.v common 17.64 vpr 81.52 MiB 0.12 15092 -1 -1 1 0.48 -1 -1 39648 -1 -1 170 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83480 22 19 4159 3447 1 2157 220 22 22 484 mult_36 auto 43.7 MiB 0.84 13597 41989 8196 30469 3324 81.5 MiB 1.05 0.02 4.16866 -2687.48 -4.16866 4.16866 1.22 0.00719836 0.00646222 0.481623 0.429453 56 27289 30 1.30842e+07 5.93957e+06 1.71605e+06 3545.56 8.95 2.22671 1.94498 51606 428054 -1 21919 20 9434 11001 1516906 343088 4.52256 4.52256 -2855.36 -4.52256 0 0 2.11301e+06 4365.72 0.56 0.39 0.34 -1 -1 0.56 0.187846 0.168815 1283 1491 532 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_30.v common 20.20 vpr 82.89 MiB 0.20 15032 -1 -1 1 0.60 -1 -1 40776 -1 -1 173 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84880 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 44.3 MiB 0.85 14316 43487 8493 30718 4276 82.9 MiB 1.12 0.02 4.41926 -2750.54 -4.41926 4.41926 1.22 0.00742763 0.00666077 0.497987 0.444103 58 27441 46 1.30842e+07 5.98149e+06 1.75961e+06 3635.55 10.85 2.43679 2.13088 52570 450426 -1 21701 17 9112 10561 1278143 292476 4.54456 4.54456 -2870.39 -4.54456 0 0 2.20457e+06 4554.90 0.61 0.57 0.36 -1 -1 0.61 0.303403 0.26981 1311 1510 551 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_31.v common 16.67 vpr 83.57 MiB 0.23 15640 -1 -1 1 0.53 -1 -1 41024 -1 -1 179 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85576 22 19 4410 3647 1 2304 229 22 22 484 mult_36 auto 44.9 MiB 0.88 14559 42929 8301 31079 3549 83.6 MiB 1.12 0.02 4.54456 -2849.05 -4.54456 4.54456 1.21 0.00745103 0.00666239 0.502234 0.448841 60 26138 29 1.30842e+07 6.06533e+06 1.79840e+06 3715.71 7.35 2.34135 2.05057 53054 462096 -1 21367 18 8865 10303 1128192 264808 4.54456 4.54456 -2991.12 -4.54456 0 0 2.25108e+06 4650.99 0.62 0.59 0.39 -1 -1 0.62 0.318889 0.285441 1363 1578 570 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_32.v common 20.69 vpr 82.85 MiB 0.19 15572 -1 -1 1 0.54 -1 -1 40572 -1 -1 183 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84836 22 19 4484 3704 1 2346 233 22 22 484 mult_36 auto 45.1 MiB 0.91 14169 51069 10204 36498 4367 82.8 MiB 1.24 0.02 4.35562 -2870.14 -4.35562 4.35562 1.18 0.00727166 0.00648461 0.540705 0.481056 58 28562 42 1.30842e+07 6.12123e+06 1.75961e+06 3635.55 10.86 2.61612 2.28074 52570 450426 -1 21935 18 9198 10981 1225293 282955 4.41926 4.41926 -3046.59 -4.41926 0 0 2.20457e+06 4554.90 0.62 0.59 0.32 -1 -1 0.62 0.310706 0.275736 1393 1597 589 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_33.v common 24.20 vpr 85.52 MiB 0.23 16688 -1 -1 1 0.56 -1 -1 41628 -1 -1 196 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87572 22 19 4843 4029 1 2462 247 22 22 484 mult_36 auto 47.0 MiB 1.13 15624 49783 9117 36437 4229 85.5 MiB 1.21 0.02 4.64786 -3017.99 -4.64786 4.64786 1.24 0.00761602 0.00676614 0.533935 0.474376 60 29459 48 1.30842e+07 6.6989e+06 1.79840e+06 3715.71 14.26 2.84822 2.48391 53054 462096 -1 23118 17 9322 10866 1279018 283870 4.54456 4.54456 -3177.97 -4.54456 0 0 2.25108e+06 4650.99 0.61 0.62 0.46 -1 -1 0.61 0.353908 0.31735 1490 1756 608 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_34.v common 20.31 vpr 84.88 MiB 0.26 16896 -1 -1 1 0.63 -1 -1 41516 -1 -1 199 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86916 22 19 4917 4086 1 2503 250 22 22 484 mult_36 auto 47.4 MiB 0.95 16182 52192 10276 36322 5594 84.9 MiB 1.28 0.02 4.41926 -3092.45 -4.41926 4.41926 1.23 0.00760482 0.00676556 0.564061 0.500769 64 28538 36 1.30842e+07 6.74082e+06 1.90554e+06 3937.06 10.13 3.04467 2.68442 54502 494576 -1 22667 18 8811 10602 1146289 263961 4.54456 4.54456 -3188.99 -4.54456 0 0 2.40101e+06 4960.76 0.65 0.62 0.41 -1 -1 0.65 0.351193 0.312295 1519 1775 627 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_35.v common 21.36 vpr 85.83 MiB 0.32 17128 -1 -1 1 0.63 -1 -1 41764 -1 -1 207 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87888 22 19 5093 4228 1 2606 258 22 22 484 mult_36 auto 48.2 MiB 0.95 15281 55265 10444 39810 5011 85.8 MiB 1.34 0.02 4.16866 -3231.81 -4.16866 4.16866 1.23 0.00806113 0.00717252 0.590696 0.524331 60 28985 37 1.30842e+07 6.85261e+06 1.79840e+06 3715.71 11.05 2.9251 2.55373 53054 462096 -1 22720 20 9865 11925 1244020 294578 4.41926 4.41926 -3325.32 -4.41926 0 0 2.25108e+06 4650.99 0.64 0.69 0.37 -1 -1 0.64 0.399047 0.354548 1572 1842 646 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_36.v common 18.14 vpr 86.34 MiB 0.17 17204 -1 -1 1 0.65 -1 -1 41776 -1 -1 209 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88416 22 19 5167 4285 1 2653 260 22 22 484 mult_36 auto 48.8 MiB 0.98 16606 54145 10648 38527 4970 86.3 MiB 1.36 0.02 4.16866 -3259.63 -4.16866 4.16866 1.19 0.00868234 0.00775776 0.586893 0.521739 64 29957 28 1.30842e+07 6.88056e+06 1.90554e+06 3937.06 8.19 2.67123 2.33119 54502 494576 -1 23683 18 9902 11325 1259385 289004 4.41926 4.41926 -3287.54 -4.41926 0 0 2.40101e+06 4960.76 0.61 0.58 0.39 -1 -1 0.61 0.331583 0.292623 1600 1861 665 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_37.v common 21.09 vpr 88.22 MiB 0.26 17588 -1 -1 1 0.67 -1 -1 40772 -1 -1 218 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90340 22 19 5380 4464 1 2755 270 24 24 576 mult_36 auto 49.9 MiB 1.06 18567 56078 10962 40406 4710 88.2 MiB 1.45 0.02 4.41926 -3517.74 -4.41926 4.41926 1.46 0.011845 0.0108667 0.625669 0.556627 62 34089 42 1.57908e+07 7.40233e+06 2.19658e+06 3813.51 10.12 3.24992 2.85968 63306 560109 -1 25982 17 10013 11925 1290386 299725 4.54456 4.54456 -3709.06 -4.54456 0 0 2.72095e+06 4723.87 0.70 0.60 0.43 -1 -1 0.70 0.335585 0.296844 1662 1947 684 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_38.v common 23.46 vpr 87.28 MiB 0.18 17932 -1 -1 1 0.70 -1 -1 42356 -1 -1 220 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89372 22 19 5454 4521 1 2802 272 24 24 576 mult_36 auto 49.6 MiB 1.08 18582 51370 9929 37950 3491 87.3 MiB 1.41 0.02 4.41926 -3447.93 -4.41926 4.41926 1.47 0.00885871 0.00790343 0.606093 0.53869 64 34209 36 1.57908e+07 7.43028e+06 2.26035e+06 3924.22 12.06 2.88108 2.51729 64454 586630 -1 26870 18 10485 12283 1454697 328137 4.54456 4.54456 -3636.25 -4.54456 0 0 2.84938e+06 4946.85 0.81 0.72 0.48 -1 -1 0.81 0.391969 0.349886 1690 1966 703 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_39.v common 23.62 vpr 88.21 MiB 0.29 18256 -1 -1 1 0.71 -1 -1 40212 -1 -1 228 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90324 22 19 5629 4662 1 2909 280 24 24 576 mult_36 auto 50.9 MiB 1.08 18512 58840 11287 42675 4878 88.2 MiB 1.50 0.02 4.53661 -3591.01 -4.53661 4.53661 1.51 0.0104965 0.0094672 0.651336 0.579977 64 33376 33 1.57908e+07 7.54207e+06 2.26035e+06 3924.22 11.88 3.18095 2.78182 64454 586630 -1 26570 18 10607 12773 1398491 323531 4.52256 4.52256 -3729.32 -4.52256 0 0 2.84938e+06 4946.85 0.82 0.72 0.47 -1 -1 0.82 0.405198 0.361638 1742 2032 722 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_40.v common 24.07 vpr 89.79 MiB 0.34 18348 -1 -1 1 0.68 -1 -1 42284 -1 -1 232 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91944 22 19 5703 4719 1 2951 284 24 24 576 mult_36 auto 51.8 MiB 1.09 19527 61862 12354 44168 5340 89.8 MiB 1.55 0.02 4.51758 -3660.42 -4.51758 4.51758 1.41 0.00911902 0.00811392 0.654527 0.579497 64 35385 33 1.57908e+07 7.59797e+06 2.26035e+06 3924.22 11.97 3.12936 2.74636 64454 586630 -1 27678 18 10750 12796 1471921 331561 4.64786 4.64786 -3839.37 -4.64786 0 0 2.84938e+06 4946.85 0.83 0.79 0.55 -1 -1 0.83 0.438235 0.393209 1771 2051 741 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_41.v common 24.48 vpr 89.66 MiB 0.21 18724 -1 -1 1 0.84 -1 -1 41504 -1 -1 240 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91816 22 19 5950 4932 1 3065 293 24 24 576 mult_36 auto 52.4 MiB 1.12 20313 68333 13912 49003 5418 89.7 MiB 1.76 0.02 4.35562 -3781.12 -4.35562 4.35562 1.49 0.0100927 0.00897853 0.748474 0.663187 64 37437 47 1.57908e+07 8.10576e+06 2.26035e+06 3924.22 12.19 3.44676 2.99524 64454 586630 -1 29393 20 11515 13868 1578948 357275 4.54456 4.54456 -4027.56 -4.54456 0 0 2.84938e+06 4946.85 0.77 0.81 0.47 -1 -1 0.77 0.448202 0.39727 1841 2153 760 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_42.v common 25.47 vpr 92.35 MiB 0.23 18988 -1 -1 1 0.86 -1 -1 42916 -1 -1 242 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94564 22 19 6024 4989 1 3106 295 24 24 576 mult_36 auto 53.2 MiB 1.15 21018 65041 12819 46780 5442 90.3 MiB 1.67 0.02 4.54456 -3823.47 -4.54456 4.54456 1.51 0.0101508 0.00906076 0.715915 0.636736 64 36534 49 1.57908e+07 8.13371e+06 2.26035e+06 3924.22 13.19 3.56747 3.11957 64454 586630 -1 29646 18 11267 13244 1541469 352337 4.66986 4.66986 -3955.02 -4.66986 0 0 2.84938e+06 4946.85 0.75 0.75 0.46 -1 -1 0.75 0.430993 0.383901 1869 2172 779 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_43.v common 25.12 vpr 91.39 MiB 0.31 19256 -1 -1 1 0.89 -1 -1 43264 -1 -1 250 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93588 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 54.3 MiB 1.22 22338 66408 13114 47625 5669 91.4 MiB 1.76 0.03 4.47497 -4072.8 -4.47497 4.47497 1.50 0.0104487 0.00936437 0.738522 0.655007 68 37694 34 1.57908e+07 8.2455e+06 2.39371e+06 4155.74 12.43 3.35506 2.92455 65606 615345 -1 30383 15 11489 13385 1484469 334786 4.66986 4.66986 -4189.73 -4.66986 0 0 2.98162e+06 5176.42 1.02 0.78 0.49 -1 -1 1.02 0.421175 0.378984 1921 2237 798 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_44.v common 25.17 vpr 94.43 MiB 0.17 19552 -1 -1 1 0.85 -1 -1 43196 -1 -1 253 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96696 22 19 6272 5186 1 3253 306 24 24 576 mult_36 auto 54.2 MiB 1.23 22629 67256 12828 47647 6781 91.3 MiB 1.75 0.03 4.41926 -4066.4 -4.41926 4.41926 1.56 0.0105256 0.0093916 0.741281 0.658657 70 37350 43 1.57908e+07 8.28742e+06 2.45377e+06 4260.01 12.42 3.6164 3.15387 66754 640332 -1 30782 20 11655 13506 1570135 362351 4.41926 4.41926 -4119.98 -4.41926 0 0 3.09179e+06 5367.68 0.82 0.82 0.51 -1 -1 0.82 0.468682 0.416096 1949 2256 817 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_45.v common 23.85 vpr 92.27 MiB 0.33 20028 -1 -1 1 0.90 -1 -1 43716 -1 -1 262 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94488 22 19 6485 5365 1 3362 316 24 24 576 mult_36 auto 55.3 MiB 1.26 21577 68041 12652 49574 5815 92.3 MiB 1.82 0.03 4.34967 -4219.28 -4.34967 4.34967 1.55 0.010752 0.00961779 0.738639 0.650742 72 36507 46 1.57908e+07 8.80919e+06 2.50747e+06 4353.24 10.81 3.77641 3.29091 67330 654343 -1 29810 22 11462 13137 1601544 361852 4.39726 4.39726 -4238.31 -4.39726 0 0 3.14081e+06 5452.80 0.85 0.91 0.52 -1 -1 0.85 0.527897 0.467341 2011 2342 836 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_46.v common 26.61 vpr 98.11 MiB 0.34 20028 -1 -1 1 0.87 -1 -1 43880 -1 -1 266 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100468 22 19 6559 5422 1 3404 320 24 24 576 mult_36 auto 55.5 MiB 1.28 24101 72524 13138 53102 6284 92.7 MiB 2.08 0.03 4.66986 -4291.45 -4.66986 4.66986 1.46 0.0119672 0.0107794 0.83727 0.749668 68 40255 40 1.57908e+07 8.86508e+06 2.39371e+06 4155.74 13.34 3.88625 3.40879 65606 615345 -1 32521 18 12015 14089 1546690 340905 4.66986 4.66986 -4364.43 -4.66986 0 0 2.98162e+06 5176.42 0.79 0.84 0.52 -1 -1 0.79 0.471209 0.420824 2040 2361 855 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_47.v common 25.66 vpr 96.38 MiB 0.26 20328 -1 -1 1 0.98 -1 -1 44612 -1 -1 273 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98692 22 19 6735 5564 1 3511 327 24 24 576 mult_36 auto 56.6 MiB 1.32 22785 72391 13683 52096 6612 93.7 MiB 2.12 0.03 4.36967 -4379.74 -4.36967 4.36967 1.44 0.0126992 0.011479 0.885818 0.786761 66 39572 35 1.57908e+07 8.9629e+06 2.33135e+06 4047.49 12.30 3.95827 3.45851 65030 601923 -1 31611 19 12384 14268 1564989 359786 4.54456 4.54456 -4464.94 -4.54456 0 0 2.91907e+06 5067.82 0.82 0.86 0.50 -1 -1 0.82 0.496205 0.441897 2092 2428 874 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_48.v common 27.56 vpr 98.24 MiB 0.39 20536 -1 -1 1 1.04 -1 -1 44100 -1 -1 276 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100596 22 19 6809 5621 1 3555 330 24 24 576 mult_36 auto 57.0 MiB 1.36 23066 80060 16107 55507 8446 94.0 MiB 2.24 0.03 4.29396 -4332.56 -4.29396 4.29396 1.49 0.010321 0.00913554 0.900016 0.796321 70 39582 34 1.57908e+07 9.00482e+06 2.45377e+06 4260.01 13.48 3.67756 3.19309 66754 640332 -1 32506 18 12951 15266 1774464 412111 4.41926 4.41926 -4460.37 -4.41926 0 0 3.09179e+06 5367.68 0.84 0.87 0.54 -1 -1 0.84 0.478592 0.424893 2121 2447 893 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_49.v common 27.16 vpr 97.51 MiB 0.18 21252 -1 -1 1 1.04 -1 -1 44416 -1 -1 287 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99852 22 19 7094 5872 1 3669 342 24 24 576 mult_36 auto 58.0 MiB 1.42 24245 82797 16885 57326 8586 95.1 MiB 2.25 0.03 4.52256 -4714.45 -4.52256 4.52256 1.44 0.0118561 0.0106259 0.900369 0.79678 72 41230 32 1.57908e+07 9.55454e+06 2.50747e+06 4353.24 13.37 3.97004 3.4626 67330 654343 -1 33608 16 12552 14465 1746432 385070 4.64786 4.64786 -4951.91 -4.64786 0 0 3.14081e+06 5452.80 0.85 0.85 0.53 -1 -1 0.85 0.455975 0.406164 2200 2569 912 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_50.v common 26.03 vpr 100.95 MiB 0.21 21304 -1 -1 1 1.04 -1 -1 44288 -1 -1 290 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103372 22 19 7168 5929 1 3710 345 24 24 576 mult_36 auto 58.4 MiB 1.47 24589 80139 15697 56982 7460 95.4 MiB 2.13 0.03 4.41926 -4634.65 -4.41926 4.41926 1.48 0.0119433 0.010454 0.836358 0.737133 70 40446 44 1.57908e+07 9.59646e+06 2.45377e+06 4260.01 12.09 4.00842 3.47817 66754 640332 -1 34146 18 13413 15667 1907396 427492 4.54456 4.54456 -4822.29 -4.54456 0 0 3.09179e+06 5367.68 0.89 1.01 0.52 -1 -1 0.89 0.535964 0.47839 2229 2588 931 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_51.v common 28.63 vpr 99.47 MiB 0.37 21664 -1 -1 1 1.11 -1 -1 44756 -1 -1 297 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101856 22 19 7344 6071 1 3814 352 24 24 576 mult_36 auto 59.4 MiB 1.64 25956 86050 17957 59580 8513 96.4 MiB 2.35 0.04 4.54456 -4790.18 -4.54456 4.54456 1.49 0.0162424 0.0148599 0.946895 0.838694 72 43615 28 1.57908e+07 9.69428e+06 2.50747e+06 4353.24 13.90 3.95891 3.45177 67330 654343 -1 35657 17 13386 15768 1879694 426603 4.64786 4.64786 -4925.15 -4.64786 0 0 3.14081e+06 5452.80 0.86 0.89 0.52 -1 -1 0.86 0.48718 0.433407 2282 2655 950 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_52.v common 25.95 vpr 99.39 MiB 0.28 21732 -1 -1 1 1.01 -1 -1 45068 -1 -1 301 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101776 22 19 7418 6128 1 3859 356 24 24 576 mult_36 auto 60.1 MiB 1.47 27555 81060 16090 57104 7866 99.1 MiB 2.14 0.03 4.54456 -4802.82 -4.54456 4.54456 1.43 0.0120698 0.0107753 0.842413 0.740695 76 44587 45 1.57908e+07 9.75017e+06 2.61600e+06 4541.67 12.08 4.15845 3.61183 68478 680951 -1 37419 17 14263 16730 1964169 440460 4.52256 4.52256 -5062.61 -4.52256 0 0 3.24203e+06 5628.53 0.95 0.95 0.52 -1 -1 0.95 0.502544 0.447268 2310 2674 969 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_14.v common 8.81 vpr 67.31 MiB 0.13 9440 -1 -1 1 0.12 -1 -1 34712 -1 -1 58 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68924 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 28.9 MiB 2.74 3886 14081 3199 8271 2611 67.3 MiB 0.31 0.01 8.43746 -386.648 -8.43746 8.43746 0.59 0.00249884 0.0022961 0.153735 0.141049 44 8107 32 6.52434e+06 2.39448e+06 686998. 2683.59 2.43 0.551985 0.492102 24576 170172 -1 6188 24 5707 6417 667481 172985 7.87084 7.87084 -462.711 -7.87084 0 0 871168. 3403.00 0.21 0.29 0.15 -1 -1 0.21 0.128358 0.11408 421 344 247 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_15.v common 9.80 vpr 67.93 MiB 0.10 9540 -1 -1 1 0.17 -1 -1 35144 -1 -1 61 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69560 22 19 1344 989 1 793 107 16 16 256 mult_36 auto 29.6 MiB 2.03 4415 16299 3732 8915 3652 67.9 MiB 0.37 0.01 8.61109 -402.505 -8.61109 8.61109 0.58 0.00265723 0.00243955 0.189356 0.173645 44 9925 41 6.52434e+06 2.8324e+06 686998. 2683.59 3.88 0.892944 0.7947 24576 170172 -1 7024 25 6220 7095 698142 184212 8.45004 8.45004 -463.679 -8.45004 0 0 871168. 3403.00 0.22 0.34 0.15 -1 -1 0.22 0.155405 0.14074 453 369 266 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_16.v common 11.29 vpr 68.10 MiB 0.10 9672 -1 -1 1 0.19 -1 -1 35136 -1 -1 65 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69736 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 30.1 MiB 2.96 4724 16869 4045 10706 2118 68.1 MiB 0.44 0.01 8.43651 -410.772 -8.43651 8.43651 0.62 0.0028132 0.00257563 0.200536 0.183658 48 9176 31 6.52434e+06 2.88829e+06 755748. 2952.14 4.31 0.897273 0.796679 25088 180500 -1 7305 24 6692 7397 851322 211567 7.80584 7.80584 -467.143 -7.80584 0 0 916467. 3579.95 0.22 0.34 0.17 -1 -1 0.22 0.143449 0.127696 481 388 285 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_17.v common 10.58 vpr 68.59 MiB 0.10 10212 -1 -1 1 0.15 -1 -1 35340 -1 -1 71 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70240 22 19 1518 1112 1 896 117 16 16 256 mult_36 auto 30.6 MiB 2.67 5238 17563 3887 11404 2272 68.6 MiB 0.46 0.01 9.04171 -433.063 -9.04171 9.04171 0.56 0.00413444 0.00385519 0.205719 0.187964 48 10177 28 6.52434e+06 2.97214e+06 755748. 2952.14 3.95 0.881042 0.782615 25088 180500 -1 8176 22 6890 7606 917926 237751 8.68028 8.68028 -493.626 -8.68028 0 0 916467. 3579.95 0.22 0.32 0.18 -1 -1 0.22 0.135487 0.121653 514 415 304 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_18.v common 13.14 vpr 68.97 MiB 0.12 10304 -1 -1 1 0.21 -1 -1 34948 -1 -1 74 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70628 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 30.9 MiB 3.32 5243 15755 3475 9888 2392 69.0 MiB 0.39 0.01 9.04775 -490.252 -9.04775 9.04775 0.55 0.00310114 0.00281456 0.183321 0.167683 48 11232 37 6.52434e+06 3.01406e+06 755748. 2952.14 5.98 0.941072 0.833617 25088 180500 -1 8633 23 7736 8750 1034775 249786 8.80158 8.80158 -540.639 -8.80158 0 0 916467. 3579.95 0.23 0.39 0.17 -1 -1 0.23 0.152496 0.136913 542 434 323 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_19.v common 11.51 vpr 69.29 MiB 0.11 10692 -1 -1 1 0.20 -1 -1 35236 -1 -1 79 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70956 22 19 1688 1231 1 994 126 16 16 256 mult_36 auto 31.4 MiB 2.90 5618 18711 3986 11280 3445 69.3 MiB 0.48 0.01 9.18492 -482.658 -9.18492 9.18492 0.58 0.00325551 0.00298378 0.223503 0.20475 52 10842 44 6.52434e+06 3.47993e+06 808720. 3159.06 4.48 1.093 0.971846 25852 197779 -1 8271 22 6752 7535 845938 215127 8.23108 8.23108 -551.85 -8.23108 0 0 1.00038e+06 3907.74 0.25 0.33 0.17 -1 -1 0.25 0.150906 0.134461 573 457 342 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_20.v common 12.15 vpr 69.87 MiB 0.12 10752 -1 -1 1 0.22 -1 -1 35508 -1 -1 81 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71544 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 31.8 MiB 3.48 6535 19770 4199 12093 3478 69.9 MiB 0.50 0.01 9.33493 -488.07 -9.33493 9.33493 0.58 0.00393902 0.00361618 0.226774 0.206643 48 12219 33 6.52434e+06 3.50787e+06 755748. 2952.14 4.48 1.04501 0.925176 25088 180500 -1 9898 22 7504 8327 1040791 265119 8.96258 8.96258 -581.233 -8.96258 0 0 916467. 3579.95 0.23 0.39 0.16 -1 -1 0.23 0.156731 0.139761 601 476 361 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_21.v common 12.92 vpr 70.16 MiB 0.14 10972 -1 -1 1 0.23 -1 -1 35944 -1 -1 85 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71844 22 19 1859 1351 1 1093 132 16 16 256 mult_36 auto 32.1 MiB 3.48 6792 15542 2589 10760 2193 70.2 MiB 0.41 0.01 9.32007 -525.351 -9.32007 9.32007 0.61 0.00348662 0.00319064 0.180881 0.165392 52 13770 38 6.52434e+06 3.56377e+06 808720. 3159.06 5.06 1.13318 1.00524 25852 197779 -1 10144 26 8345 9522 1119762 274391 8.76698 8.76698 -629.803 -8.76698 0 0 1.00038e+06 3907.74 0.25 0.48 0.17 -1 -1 0.25 0.200326 0.179147 632 500 380 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_22.v common 12.79 vpr 70.51 MiB 0.09 11036 -1 -1 1 0.25 -1 -1 35780 -1 -1 90 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72200 22 19 1933 1408 1 1131 137 16 16 256 mult_36 auto 32.7 MiB 4.09 7153 18846 3425 12209 3212 70.5 MiB 0.49 0.01 9.31293 -505.408 -9.31293 9.31293 0.60 0.00360585 0.00328582 0.209128 0.190526 56 11937 28 6.52434e+06 3.63364e+06 849745. 3319.32 4.42 1.06006 0.938823 26364 208198 -1 10148 23 7351 8481 910874 235258 8.45968 8.45968 -707.138 -8.45968 0 0 1.04740e+06 4091.43 0.26 0.39 0.18 -1 -1 0.26 0.181491 0.161447 661 519 399 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_23.v common 16.10 vpr 71.06 MiB 0.18 11408 -1 -1 1 0.25 -1 -1 36016 -1 -1 94 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72768 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 33.2 MiB 3.90 7470 21602 4449 14485 2668 71.1 MiB 0.53 0.01 9.36191 -552.695 -9.36191 9.36191 0.79 0.00376507 0.00343241 0.238367 0.217452 50 14673 42 8.04299e+06 4.08553e+06 1.03391e+06 3191.07 7.13 1.27319 1.12709 32744 246704 -1 11207 23 8954 10315 1227188 301096 8.80128 8.80128 -805.076 -8.80128 0 0 1.23838e+06 3822.15 0.31 0.48 0.22 -1 -1 0.31 0.19755 0.176261 693 544 418 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_24.v common 15.40 vpr 71.33 MiB 0.11 11492 -1 -1 1 0.23 -1 -1 36264 -1 -1 97 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73040 22 19 2105 1529 1 1232 145 18 18 324 mult_36 auto 33.3 MiB 4.14 7507 21425 4200 14405 2820 71.3 MiB 0.55 0.01 9.44155 -614.321 -9.44155 9.44155 0.78 0.0038934 0.00354525 0.238346 0.21681 50 14797 40 8.04299e+06 4.12745e+06 1.03391e+06 3191.07 6.30 1.24287 1.0989 32744 246704 -1 11508 23 9004 10353 1255675 301759 8.51938 8.51938 -832.526 -8.51938 0 0 1.23838e+06 3822.15 0.31 0.44 0.21 -1 -1 0.31 0.185596 0.165494 721 563 437 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_25.v common 14.99 vpr 71.78 MiB 0.08 11932 -1 -1 1 0.27 -1 -1 36564 -1 -1 101 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73500 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 33.9 MiB 3.96 8738 27335 5810 17606 3919 71.8 MiB 0.75 0.01 9.29835 -606.15 -9.29835 9.29835 0.78 0.00474546 0.00429979 0.319794 0.290255 54 16607 42 8.04299e+06 4.18335e+06 1.08842e+06 3359.33 5.60 1.37437 1.21416 33712 268580 -1 12763 24 9307 10561 1197981 287506 8.67428 8.67428 -895.049 -8.67428 0 0 1.34436e+06 4149.26 0.34 0.51 0.24 -1 -1 0.34 0.215604 0.192549 751 586 456 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_26.v common 15.07 vpr 72.17 MiB 0.11 11824 -1 -1 1 0.27 -1 -1 37384 -1 -1 105 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73900 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 34.3 MiB 4.64 8508 22239 4415 15566 2258 72.2 MiB 0.62 0.01 9.42265 -590.577 -9.42265 9.42265 0.80 0.00445864 0.00401596 0.257362 0.233603 58 14084 47 8.04299e+06 4.23924e+06 1.14310e+06 3528.09 5.07 1.33825 1.18192 34680 290288 -1 11882 25 8955 10040 1155840 295020 8.75428 8.75428 -771.843 -8.75428 0 0 1.43297e+06 4422.75 0.37 0.49 0.24 -1 -1 0.37 0.224963 0.200306 779 605 475 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_27.v common 15.95 vpr 72.68 MiB 0.12 12180 -1 -1 1 0.31 -1 -1 36636 -1 -1 111 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74420 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 34.8 MiB 4.54 8706 29238 6495 17225 5518 72.7 MiB 0.73 0.01 9.5032 -657.318 -9.5032 9.5032 0.82 0.00494662 0.00454829 0.328609 0.29886 54 15872 37 8.04299e+06 4.7191e+06 1.08842e+06 3359.33 5.77 1.43293 1.26829 33712 268580 -1 12564 25 10940 12275 1423270 343940 8.66928 8.66928 -791.778 -8.66928 0 0 1.34436e+06 4149.26 0.34 0.56 0.23 -1 -1 0.34 0.235215 0.209343 817 642 494 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_28.v common 17.76 vpr 73.13 MiB 0.17 12176 -1 -1 1 0.35 -1 -1 36836 -1 -1 114 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74888 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 35.5 MiB 5.17 9504 27753 5644 18640 3469 73.1 MiB 0.73 0.01 9.43607 -634.384 -9.43607 9.43607 0.76 0.00443496 0.00403627 0.311401 0.282893 56 17407 31 8.04299e+06 4.76102e+06 1.11497e+06 3441.27 6.82 1.4487 1.28367 34036 275796 -1 14124 23 11371 13051 1664037 404424 8.71328 8.71328 -982.566 -8.71328 0 0 1.37338e+06 4238.83 0.34 0.62 0.24 -1 -1 0.34 0.223686 0.19819 845 661 513 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_29.v common 21.18 vpr 73.47 MiB 0.18 12728 -1 -1 1 0.34 -1 -1 37124 -1 -1 118 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75236 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 35.8 MiB 5.07 9474 28874 6138 19875 2861 73.5 MiB 0.84 0.01 9.50133 -723.607 -9.50133 9.50133 1.27 0.00561174 0.0050836 0.359574 0.328413 48 19694 45 1.30842e+07 5.21292e+06 1.52614e+06 3153.19 8.93 1.66619 1.47757 49190 371334 -1 15172 26 14085 16168 2028455 476792 9.32778 9.32778 -1106.44 -9.32778 0 0 1.85176e+06 3825.95 0.50 0.70 0.33 -1 -1 0.50 0.26154 0.232522 881 694 532 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_30.v common 23.43 vpr 73.83 MiB 0.18 12628 -1 -1 1 0.34 -1 -1 37408 -1 -1 123 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75604 22 19 2639 1910 1 1549 173 22 22 484 mult_36 auto 36.1 MiB 5.43 9440 36248 7919 24781 3548 73.8 MiB 0.99 0.01 9.36191 -670.158 -9.36191 9.36191 1.30 0.00494298 0.00448404 0.423993 0.384622 48 20360 50 1.30842e+07 5.28279e+06 1.52614e+06 3153.19 10.37 1.80964 1.60233 49190 371334 -1 15247 24 13469 15202 1910838 455736 8.95958 8.95958 -928.137 -8.95958 0 0 1.85176e+06 3825.95 0.50 0.72 0.32 -1 -1 0.50 0.254704 0.227272 910 713 551 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_31.v common 20.52 vpr 75.10 MiB 0.11 12956 -1 -1 1 0.35 -1 -1 37316 -1 -1 128 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76900 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 37.0 MiB 5.38 9993 32678 6812 22677 3189 75.1 MiB 1.03 0.01 9.39202 -797.918 -9.39202 9.39202 1.34 0.0053927 0.00491095 0.427117 0.387263 52 20164 36 1.30842e+07 5.35266e+06 1.63434e+06 3376.74 7.65 1.82581 1.6196 50638 406276 -1 15115 23 10350 12253 1361270 325763 8.90628 8.90628 -1265.96 -8.90628 0 0 2.01763e+06 4168.66 0.54 0.66 0.34 -1 -1 0.54 0.277207 0.249324 946 745 570 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_32.v common 22.43 vpr 74.63 MiB 0.13 13120 -1 -1 1 0.36 -1 -1 36780 -1 -1 131 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76420 22 19 2818 2038 1 1657 181 22 22 484 mult_36 auto 37.1 MiB 6.28 10870 36462 7947 25089 3426 74.6 MiB 0.96 0.01 9.40709 -760.111 -9.40709 9.40709 1.21 0.00536095 0.00480148 0.393661 0.356475 54 20481 29 1.30842e+07 5.39458e+06 1.67518e+06 3461.11 8.52 1.67302 1.48349 51122 416746 -1 16006 25 13662 15590 1847779 424015 8.83758 8.83758 -1053.02 -8.83758 0 0 2.06816e+06 4273.05 0.59 0.75 0.35 -1 -1 0.59 0.284515 0.253659 974 764 589 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_33.v common 20.81 vpr 75.45 MiB 0.19 13676 -1 -1 1 0.29 -1 -1 37356 -1 -1 137 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77256 22 19 2923 2109 1 1726 188 22 22 484 mult_36 auto 37.9 MiB 5.35 10997 40538 8465 27874 4199 75.4 MiB 1.12 0.01 10.2864 -775.869 -10.2864 10.2864 1.27 0.00603775 0.00548455 0.463266 0.419405 52 22517 47 1.30842e+07 5.87443e+06 1.63434e+06 3376.74 8.03 1.96653 1.74365 50638 406276 -1 16574 24 12868 14850 1713334 417624 9.69202 9.69202 -1312.41 -9.69202 0 0 2.01763e+06 4168.66 0.52 0.60 0.36 -1 -1 0.52 0.259428 0.231175 1009 796 608 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_34.v common 23.72 vpr 75.49 MiB 0.15 13668 -1 -1 1 0.46 -1 -1 37768 -1 -1 140 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77304 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 38.1 MiB 8.36 11197 34229 7090 23850 3289 75.5 MiB 0.93 0.01 10.179 -781.353 -10.179 10.179 1.24 0.0059064 0.00538226 0.383252 0.348114 54 21293 29 1.30842e+07 5.91636e+06 1.67518e+06 3461.11 7.73 1.7254 1.52965 51122 416746 -1 16721 23 13120 14891 1633684 395631 9.53142 9.53142 -1224.14 -9.53142 0 0 2.06816e+06 4273.05 0.54 0.66 0.38 -1 -1 0.54 0.27638 0.245962 1037 815 627 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_35.v common 23.83 vpr 76.11 MiB 0.25 14040 -1 -1 1 0.49 -1 -1 37616 -1 -1 145 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77940 22 19 3101 2236 1 1831 196 22 22 484 mult_36 auto 38.7 MiB 7.24 12065 39457 7984 27451 4022 76.1 MiB 1.09 0.02 10.526 -851.981 -10.526 10.526 1.24 0.00586591 0.00534859 0.436328 0.396044 56 22258 29 1.30842e+07 5.98623e+06 1.71605e+06 3545.56 8.54 1.85952 1.64959 51606 428054 -1 18193 24 12714 14593 1871341 439910 10.0876 10.0876 -1238.72 -10.0876 0 0 2.11301e+06 4365.72 0.61 0.73 0.36 -1 -1 0.61 0.297247 0.265421 1072 846 646 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_36.v common 24.33 vpr 76.50 MiB 0.20 14132 -1 -1 1 0.44 -1 -1 38020 -1 -1 148 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78332 22 19 3175 2293 1 1871 199 22 22 484 mult_36 auto 39.2 MiB 9.10 12207 40799 8234 28761 3804 76.5 MiB 1.07 0.02 10.1611 -829.474 -10.1611 10.1611 1.21 0.00612506 0.00560505 0.41581 0.376091 54 22885 31 1.30842e+07 6.02815e+06 1.67518e+06 3461.11 7.49 1.82689 1.61383 51122 416746 -1 17842 26 13429 15225 1699944 411787 9.66272 9.66272 -1103.79 -9.66272 0 0 2.06816e+06 4273.05 0.54 0.69 0.35 -1 -1 0.54 0.291022 0.25976 1100 865 665 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_37.v common 26.51 vpr 77.23 MiB 0.18 14556 -1 -1 1 0.43 -1 -1 37400 -1 -1 152 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79088 22 19 3280 2364 1 1938 204 24 24 576 mult_36 auto 39.9 MiB 8.11 12485 42204 8471 30168 3565 77.2 MiB 1.28 0.02 10.4948 -891.974 -10.4948 10.4948 1.64 0.00699807 0.00644165 0.491999 0.446277 54 24624 44 1.57908e+07 6.48005e+06 1.98675e+06 3449.22 9.32 2.1289 1.88566 60430 494267 -1 18748 25 15039 16700 2047326 478961 9.80372 9.80372 -1341.07 -9.80372 0 0 2.45377e+06 4260.01 0.69 0.79 0.41 -1 -1 0.69 0.320015 0.284418 1135 897 684 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_38.v common 33.75 vpr 77.77 MiB 0.22 14528 -1 -1 1 0.51 -1 -1 38012 -1 -1 157 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79640 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 40.2 MiB 9.79 13772 42989 9121 30100 3768 77.8 MiB 1.25 0.02 10.1171 -857.01 -10.1171 10.1171 1.43 0.00791817 0.00722799 0.516006 0.465513 58 24942 46 1.57908e+07 6.54992e+06 2.08734e+06 3623.85 14.71 2.25275 1.99207 62154 534210 -1 19326 22 13894 15955 2071566 466040 9.47212 9.47212 -1334.31 -9.47212 0 0 2.61600e+06 4541.67 0.76 0.80 0.48 -1 -1 0.76 0.308207 0.275727 1164 916 703 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_39.v common 25.51 vpr 77.91 MiB 0.17 14792 -1 -1 1 0.46 -1 -1 38268 -1 -1 161 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79784 22 19 3457 2490 1 2044 213 24 24 576 mult_36 auto 40.5 MiB 8.89 13552 45933 9854 31922 4157 77.9 MiB 1.23 0.02 10.2548 -903.58 -10.2548 10.2548 1.43 0.0061585 0.00559162 0.50214 0.4543 56 23176 27 1.57908e+07 6.60581e+06 2.03561e+06 3534.04 7.69 2.02374 1.79471 61006 507707 -1 19371 24 12670 14651 1649493 401965 9.71472 9.71472 -1420.41 -9.71472 0 0 2.50747e+06 4353.24 0.70 0.73 0.46 -1 -1 0.70 0.328048 0.292553 1198 946 722 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_40.v common 29.98 vpr 78.39 MiB 0.21 14836 -1 -1 1 0.55 -1 -1 38816 -1 -1 164 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80272 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 41.0 MiB 10.45 14377 40977 8198 29796 2983 78.4 MiB 1.20 0.04 10.1711 -960.277 -10.1711 10.1711 1.48 0.0143787 0.0127714 0.458028 0.414102 54 25953 34 1.57908e+07 6.64774e+06 1.98675e+06 3449.22 10.60 2.07487 1.83836 60430 494267 -1 20022 24 14385 16625 1937405 463879 9.81632 9.81632 -1428.6 -9.81632 0 0 2.45377e+06 4260.01 0.64 0.73 0.39 -1 -1 0.64 0.314374 0.279746 1226 965 741 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_41.v common 35.16 vpr 78.74 MiB 0.28 15280 -1 -1 1 0.49 -1 -1 38148 -1 -1 170 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80628 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 41.5 MiB 9.41 15712 55655 12202 38909 4544 78.7 MiB 1.47 0.02 10.3763 -978.657 -10.3763 10.3763 1.47 0.00656435 0.00595435 0.56496 0.510207 58 28102 35 1.57908e+07 7.12758e+06 2.08734e+06 3623.85 16.17 2.31989 2.05554 62154 534210 -1 22155 26 15175 17368 2377028 526488 9.93862 9.93862 -1498.09 -9.93862 0 0 2.61600e+06 4541.67 0.75 0.89 0.44 -1 -1 0.75 0.371312 0.330875 1261 995 760 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_42.v common 36.65 vpr 79.30 MiB 0.17 15304 -1 -1 1 0.36 -1 -1 38260 -1 -1 173 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81208 22 19 3708 2673 1 2187 226 24 24 576 mult_36 auto 42.0 MiB 10.88 15421 43570 8598 29045 5927 79.3 MiB 1.18 0.02 10.3695 -1008.01 -10.3695 10.3695 1.53 0.00691599 0.00630311 0.506654 0.456311 58 26702 46 1.57908e+07 7.1695e+06 2.08734e+06 3623.85 16.72 2.38208 2.09631 62154 534210 -1 21054 23 15341 17740 2211258 504766 9.93232 9.93232 -1535.11 -9.93232 0 0 2.61600e+06 4541.67 0.71 0.81 0.45 -1 -1 0.71 0.329232 0.292614 1289 1014 779 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_43.v common 36.71 vpr 79.58 MiB 0.18 15700 -1 -1 1 0.52 -1 -1 39024 -1 -1 178 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81492 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 42.4 MiB 10.00 15931 45543 9198 31101 5244 79.6 MiB 1.19 0.02 10.2488 -1034.23 -10.2488 10.2488 1.39 0.00703787 0.00638807 0.446452 0.40357 58 28790 31 1.57908e+07 7.23937e+06 2.08734e+06 3623.85 17.51 2.14457 1.89576 62154 534210 -1 22784 25 17469 20003 2871017 629000 9.78802 9.78802 -1425.18 -9.78802 0 0 2.61600e+06 4541.67 0.70 0.99 0.44 -1 -1 0.70 0.367709 0.327023 1323 1043 798 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_44.v common 31.84 vpr 79.89 MiB 0.19 15672 -1 -1 1 0.62 -1 -1 38428 -1 -1 181 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81804 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 42.5 MiB 11.63 15026 47034 9339 32867 4828 79.9 MiB 1.26 0.02 10.6634 -975.806 -10.6634 10.6634 1.49 0.00718101 0.00652364 0.497842 0.448355 56 25505 43 1.57908e+07 7.28129e+06 2.03561e+06 3534.04 10.72 2.34961 2.07315 61006 507707 -1 21177 24 13604 15932 1830861 450606 10.1266 10.1266 -1497.53 -10.1266 0 0 2.50747e+06 4353.24 0.75 0.86 0.45 -1 -1 0.75 0.39966 0.357524 1351 1062 817 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_45.v common 34.45 vpr 80.38 MiB 0.20 15976 -1 -1 1 0.56 -1 -1 40620 -1 -1 186 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82304 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 43.1 MiB 10.86 16504 49410 9364 35589 4457 80.4 MiB 1.34 0.02 10.4128 -1039.57 -10.4128 10.4128 1.47 0.00736411 0.00667934 0.524551 0.472825 58 28065 31 1.57908e+07 7.74716e+06 2.08734e+06 3623.85 14.02 2.31055 2.04279 62154 534210 -1 23178 24 14780 17083 2031719 479355 10.0216 10.0216 -1620.1 -10.0216 0 0 2.61600e+06 4541.67 0.76 0.85 0.46 -1 -1 0.76 0.380055 0.340905 1387 1094 836 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_46.v common 34.08 vpr 80.50 MiB 0.16 16112 -1 -1 1 0.51 -1 -1 40524 -1 -1 189 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82428 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 43.3 MiB 12.69 15456 49513 9815 35157 4541 80.5 MiB 1.38 0.02 10.3988 -1055.79 -10.3988 10.3988 1.48 0.00738406 0.00670027 0.527894 0.477333 54 30376 49 1.57908e+07 7.78909e+06 1.98675e+06 3449.22 11.93 2.5705 2.26971 60430 494267 -1 22258 25 14010 16246 1792980 437746 10.0703 10.0703 -1496.13 -10.0703 0 0 2.45377e+06 4260.01 0.71 0.83 0.42 -1 -1 0.71 0.407104 0.363229 1414 1113 855 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_47.v common 31.04 vpr 80.99 MiB 0.29 16436 -1 -1 1 0.50 -1 -1 40912 -1 -1 194 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82936 22 19 4167 2996 1 2466 248 24 24 576 mult_36 auto 43.9 MiB 11.29 16457 49262 9642 34224 5396 81.0 MiB 1.33 0.02 10.2964 -1023.88 -10.2964 10.2964 1.45 0.00767253 0.00696798 0.528201 0.475734 62 27413 41 1.57908e+07 7.85896e+06 2.19658e+06 3813.51 10.15 2.47844 2.18562 63306 560109 -1 22126 24 15880 18201 1967159 487181 9.26852 9.26852 -1515.46 -9.26852 0 0 2.72095e+06 4723.87 0.80 0.85 0.42 -1 -1 0.80 0.382417 0.341094 1449 1144 874 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_48.v common 37.43 vpr 81.34 MiB 0.29 16504 -1 -1 1 0.60 -1 -1 40704 -1 -1 197 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83288 22 19 4241 3053 1 2505 251 24 24 576 mult_36 auto 44.2 MiB 13.09 16971 46920 8877 33152 4891 81.3 MiB 1.26 0.02 10.3426 -1105.68 -10.3426 10.3426 1.41 0.00707168 0.00637172 0.454538 0.408531 58 28357 39 1.57908e+07 7.90088e+06 2.08734e+06 3623.85 14.75 2.52654 2.23221 62154 534210 -1 23109 25 14819 17069 1985321 468184 9.32312 9.32312 -1714.79 -9.32312 0 0 2.61600e+06 4541.67 0.71 0.84 0.45 -1 -1 0.71 0.394003 0.351585 1477 1163 893 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_49.v common 31.77 vpr 81.89 MiB 0.24 16968 -1 -1 1 0.63 -1 -1 41060 -1 -1 204 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83852 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 44.8 MiB 12.23 17818 58009 12065 38423 7521 81.9 MiB 1.51 0.02 10.4215 -1066.19 -10.4215 10.4215 1.46 0.0080745 0.00733701 0.604224 0.544123 64 27669 29 1.57908e+07 8.3947e+06 2.26035e+06 3924.22 9.46 2.45546 2.1712 64454 586630 -1 23761 23 15470 17571 1974721 480976 10.0026 10.0026 -1667.25 -10.0026 0 0 2.84938e+06 4946.85 0.77 0.83 0.50 -1 -1 0.77 0.375436 0.332674 1512 1195 912 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_50.v common 38.16 vpr 82.15 MiB 0.29 17100 -1 -1 1 0.66 -1 -1 41020 -1 -1 206 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84120 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 44.8 MiB 13.82 18113 59404 12055 41197 6152 82.1 MiB 1.17 0.02 10.7633 -1102.87 -10.7633 10.7633 1.43 0.00500541 0.00457353 0.399298 0.359786 58 30827 50 1.57908e+07 8.42264e+06 2.08734e+06 3623.85 14.62 2.65311 2.33328 62154 534210 -1 25105 24 17430 20166 2474881 582739 9.91802 9.91802 -1434.59 -9.91802 0 0 2.61600e+06 4541.67 0.83 0.99 0.44 -1 -1 0.83 0.413443 0.368887 1541 1214 931 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_51.v common 35.76 vpr 82.72 MiB 0.36 17424 -1 -1 1 0.69 -1 -1 41064 -1 -1 211 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84708 22 19 4524 3251 1 2681 266 24 24 576 mult_36 auto 45.6 MiB 12.68 17903 58406 11821 39335 7250 82.7 MiB 1.54 0.02 10.1189 -1113.35 -10.1189 10.1189 1.47 0.00840097 0.00762828 0.598606 0.537073 66 28650 46 1.57908e+07 8.49251e+06 2.33135e+06 4047.49 12.41 2.79535 2.46899 65030 601923 -1 23838 22 15662 18095 2053216 483046 9.32782 9.32782 -1570.64 -9.32782 0 0 2.91907e+06 5067.82 0.88 0.90 0.53 -1 -1 0.88 0.406862 0.363976 1576 1245 950 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_52.v common 38.64 vpr 83.15 MiB 0.31 17420 -1 -1 1 0.66 -1 -1 39328 -1 -1 215 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85148 22 19 4598 3308 1 2718 270 24 24 576 mult_36 auto 46.1 MiB 14.46 18499 60438 12754 41701 5983 83.2 MiB 1.60 0.02 10.3652 -1274.39 -10.3652 10.3652 1.47 0.00856926 0.00761627 0.633263 0.568286 60 30704 47 1.57908e+07 8.54841e+06 2.13333e+06 3703.69 13.56 2.91685 2.57247 62730 548095 -1 24767 24 17273 19354 2179586 520270 9.64242 9.64242 -1770.68 -9.64242 0 0 2.67122e+06 4637.53 0.72 1.11 0.45 -1 -1 0.72 0.496032 0.445053 1605 1264 969 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_14.v common 7.87 vpr 70.55 MiB 0.07 10524 -1 -1 1 0.24 -1 -1 35484 -1 -1 81 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72248 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 32.4 MiB 0.34 5566 18081 3979 11568 2534 70.6 MiB 0.43 0.01 4.18656 -1184 -4.18656 4.18656 0.67 0.00356539 0.00320963 0.220467 0.198858 50 12015 26 6.54114e+06 2.7256e+06 787708. 3076.99 3.45 1.01169 0.882887 25344 186282 -1 9252 17 4107 4636 547995 139041 4.41926 4.41926 -1238.23 -4.41926 0 0 943753. 3686.54 0.24 0.26 0.16 -1 -1 0.24 0.141423 0.125975 605 708 247 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_15.v common 8.30 vpr 71.43 MiB 0.11 10904 -1 -1 1 0.26 -1 -1 36900 -1 -1 88 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73144 22 19 2144 1789 1 1120 134 16 16 256 mult_36 auto 33.2 MiB 0.36 6319 20654 4053 14159 2442 71.4 MiB 0.51 0.01 4.29396 -1347.48 -4.29396 4.29396 0.58 0.00372143 0.00335451 0.253783 0.22888 50 12838 32 6.54114e+06 3.22025e+06 787708. 3076.99 3.77 1.17955 1.03156 25344 186282 -1 10194 15 4381 5331 543271 135603 4.41926 4.41926 -1427.22 -4.41926 0 0 943753. 3686.54 0.23 0.24 0.17 -1 -1 0.23 0.128701 0.114324 654 769 266 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_16.v common 8.39 vpr 71.61 MiB 0.10 10948 -1 -1 1 0.28 -1 -1 36840 -1 -1 91 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73332 22 19 2218 1846 1 1162 137 16 16 256 mult_36 auto 33.5 MiB 0.37 6746 20611 4243 13930 2438 71.6 MiB 0.50 0.01 4.27196 -1343.11 -4.27196 4.27196 0.59 0.0032663 0.00291636 0.239428 0.215294 56 12205 20 6.54114e+06 3.26253e+06 849745. 3319.32 3.49 1.14162 1.001 26364 208198 -1 10886 18 4466 5238 632605 153751 4.54456 4.54456 -1414.59 -4.54456 0 0 1.04740e+06 4091.43 0.29 0.30 0.19 -1 -1 0.29 0.15905 0.140984 683 788 285 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_17.v common 9.73 vpr 72.91 MiB 0.08 11792 -1 -1 1 0.32 -1 -1 36508 -1 -1 103 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74660 22 19 2536 2130 1 1275 149 16 16 256 mult_36 auto 34.6 MiB 0.47 7309 25759 5410 16752 3597 72.9 MiB 0.59 0.01 4.22437 -1538.56 -4.22437 4.22437 0.57 0.00421061 0.00376811 0.292735 0.261633 54 15370 50 6.54114e+06 3.43166e+06 829453. 3240.05 4.63 1.49103 1.29857 26108 202796 -1 11251 20 4866 5650 591941 150326 4.41926 4.41926 -1554.25 -4.41926 0 0 1.02522e+06 4004.78 0.27 0.32 0.18 -1 -1 0.27 0.191262 0.168408 770 924 304 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_18.v common 10.30 vpr 73.96 MiB 0.11 11880 -1 -1 1 0.29 -1 -1 37264 -1 -1 107 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75732 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 35.4 MiB 0.45 7489 21012 3652 14420 2940 74.0 MiB 0.52 0.01 4.05741 -1594.66 -4.05741 4.05741 0.59 0.00442383 0.00397394 0.261885 0.235686 58 14224 36 6.54114e+06 3.48803e+06 871168. 3403.00 5.23 1.41298 1.23272 26872 219187 -1 11540 19 4929 5820 646042 159250 4.41926 4.41926 -1618.92 -4.41926 0 0 1.09288e+06 4269.05 0.26 0.39 0.19 -1 -1 0.26 0.204211 0.18126 798 943 323 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_19.v common 10.55 vpr 74.75 MiB 0.14 12128 -1 -1 1 0.25 -1 -1 36804 -1 -1 113 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76548 22 19 2778 2321 1 1412 160 16 16 256 mult_36 auto 36.3 MiB 0.47 8590 28804 5795 19118 3891 74.8 MiB 0.72 0.01 4.16866 -1754.96 -4.16866 4.16866 0.60 0.00457112 0.00408692 0.351306 0.314519 60 14551 41 6.54114e+06 3.96859e+06 890343. 3477.90 5.43 1.68264 1.47097 27128 224764 -1 12108 19 5195 6165 612347 148881 4.29396 4.29396 -1780.33 -4.29396 0 0 1.11577e+06 4358.47 0.27 0.35 0.17 -1 -1 0.27 0.205204 0.181382 846 1002 342 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_20.v common 11.37 vpr 74.61 MiB 0.10 12396 -1 -1 1 0.31 -1 -1 37000 -1 -1 118 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76400 22 19 2852 2378 1 1455 165 16 16 256 mult_36 auto 36.7 MiB 0.47 8719 21409 3812 14750 2847 74.6 MiB 0.53 0.01 4.23032 -1751.68 -4.23032 4.23032 0.57 0.00497053 0.00445561 0.253389 0.227057 58 15488 34 6.54114e+06 4.03906e+06 871168. 3403.00 6.21 1.50021 1.30756 26872 219187 -1 12591 16 5346 6342 671911 168571 4.29396 4.29396 -1828.31 -4.29396 0 0 1.09288e+06 4269.05 0.30 0.33 0.19 -1 -1 0.30 0.183129 0.162478 875 1021 361 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_21.v common 11.40 vpr 75.77 MiB 0.14 12892 -1 -1 1 0.38 -1 -1 37876 -1 -1 122 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77592 22 19 3057 2549 1 1560 169 16 16 256 mult_36 auto 37.8 MiB 0.52 9662 28189 5474 18473 4242 75.8 MiB 0.72 0.01 4.27196 -1924.27 -4.27196 4.27196 0.56 0.00527906 0.00471781 0.33261 0.296421 60 16376 39 6.54114e+06 4.09544e+06 890343. 3477.90 5.78 1.68732 1.4696 27128 224764 -1 13229 17 5417 6865 651246 161214 4.52256 4.52256 -1946.8 -4.52256 0 0 1.11577e+06 4358.47 0.29 0.37 0.20 -1 -1 0.29 0.214974 0.191547 932 1099 380 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_22.v common 11.22 vpr 75.77 MiB 0.15 13000 -1 -1 1 0.36 -1 -1 38084 -1 -1 125 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77584 22 19 3131 2606 1 1600 172 16 16 256 mult_36 auto 37.8 MiB 0.50 9746 26940 4762 17615 4563 75.8 MiB 0.74 0.01 4.1051 -1925.37 -4.1051 4.1051 0.60 0.00611816 0.00544144 0.356751 0.319711 64 17025 40 6.54114e+06 4.13772e+06 943753. 3686.54 5.32 1.70879 1.49331 27892 240595 -1 13419 19 5604 6604 696533 174227 4.41926 4.41926 -1888.34 -4.41926 0 0 1.19033e+06 4649.74 0.30 0.40 0.23 -1 -1 0.30 0.237528 0.209958 961 1118 399 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_23.v common 16.07 vpr 76.61 MiB 0.17 13432 -1 -1 1 0.37 -1 -1 37772 -1 -1 133 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78444 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 38.7 MiB 0.59 10073 29819 5770 20700 3349 76.6 MiB 0.78 0.01 4.29396 -2072.96 -4.29396 4.29396 0.94 0.00542746 0.00490157 0.375376 0.33652 58 20039 44 8.06603e+06 4.64648e+06 1.14310e+06 3528.09 9.23 1.91764 1.67586 34680 290288 -1 15296 19 6397 7351 896472 206109 4.52256 4.52256 -2107.99 -4.52256 0 0 1.43297e+06 4422.75 0.40 0.44 0.25 -1 -1 0.40 0.240683 0.213451 1012 1179 418 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_24.v common 14.61 vpr 77.01 MiB 0.16 13444 -1 -1 1 0.37 -1 -1 38100 -1 -1 137 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78856 22 19 3375 2799 1 1744 185 18 18 324 mult_36 auto 39.0 MiB 0.53 10242 28589 5033 20765 2791 77.0 MiB 0.77 0.01 4.16866 -2095.84 -4.16866 4.16866 0.89 0.00584888 0.00521185 0.358826 0.320166 56 19239 34 8.06603e+06 4.70285e+06 1.11497e+06 3441.27 8.07 1.89179 1.65394 34036 275796 -1 15430 18 6668 8155 902923 218175 4.66986 4.66986 -2283.29 -4.66986 0 0 1.37338e+06 4238.83 0.34 0.45 0.23 -1 -1 0.34 0.243287 0.216124 1041 1198 437 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_25.v common 12.96 vpr 77.87 MiB 0.14 13944 -1 -1 1 0.45 -1 -1 38164 -1 -1 146 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79740 22 19 3615 3005 1 1848 194 18 18 324 mult_36 auto 39.9 MiB 0.63 11381 30488 5169 21849 3470 77.9 MiB 0.84 0.01 4.29396 -2317.79 -4.29396 4.29396 0.96 0.00648239 0.00577959 0.389275 0.347872 60 19735 24 8.06603e+06 4.8297e+06 1.16833e+06 3605.96 5.76 1.97602 1.73231 35004 297736 -1 15899 18 6600 7758 807688 195562 4.41926 4.41926 -2334.44 -4.41926 0 0 1.46313e+06 4515.82 0.41 0.46 0.27 -1 -1 0.41 0.266483 0.237429 1107 1293 456 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_26.v common 15.61 vpr 78.54 MiB 0.13 14192 -1 -1 1 0.42 -1 -1 38520 -1 -1 148 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80428 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 40.5 MiB 0.63 11433 29784 5199 21859 2726 78.5 MiB 0.82 0.02 4.24437 -2303.41 -4.24437 4.24437 0.85 0.00711705 0.00628036 0.378532 0.339296 58 20982 37 8.06603e+06 4.85789e+06 1.14310e+06 3528.09 8.60 2.11816 1.84746 34680 290288 -1 16695 16 7063 8326 925400 221942 4.41926 4.41926 -2385.92 -4.41926 0 0 1.43297e+06 4422.75 0.36 0.47 0.24 -1 -1 0.36 0.260815 0.235816 1135 1312 475 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_27.v common 14.19 vpr 79.47 MiB 0.19 14444 -1 -1 1 0.48 -1 -1 38456 -1 -1 156 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81380 22 19 3871 3210 1 2002 205 18 18 324 mult_36 auto 41.4 MiB 0.56 12765 36445 6420 26320 3705 79.5 MiB 0.96 0.02 4.54456 -2408.49 -4.54456 4.54456 0.82 0.00685927 0.00612775 0.437842 0.392218 64 23264 38 8.06603e+06 5.36665e+06 1.23838e+06 3822.15 6.95 2.19503 1.91755 35972 318676 -1 18200 18 7220 8450 972098 233171 4.52256 4.52256 -2487.12 -4.52256 0 0 1.56068e+06 4816.91 0.48 0.50 0.28 -1 -1 0.48 0.289327 0.259022 1191 1385 494 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_28.v common 14.33 vpr 79.86 MiB 0.11 14480 -1 -1 1 0.47 -1 -1 38392 -1 -1 160 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81780 22 19 3945 3267 1 2045 209 18 18 324 mult_36 auto 41.9 MiB 0.70 12597 35549 6371 25304 3874 79.9 MiB 0.91 0.02 4.26697 -2505.98 -4.26697 4.26697 0.79 0.00592329 0.00528273 0.412317 0.367578 68 21534 29 8.06603e+06 5.42302e+06 1.31159e+06 4048.11 7.05 2.09847 1.8353 36620 334356 -1 17403 19 7212 8305 866718 201384 4.29396 4.29396 -2504.3 -4.29396 0 0 1.63345e+06 5041.52 0.41 0.50 0.28 -1 -1 0.41 0.292126 0.259432 1219 1404 513 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_29.v common 17.90 vpr 80.95 MiB 0.17 14996 -1 -1 1 0.48 -1 -1 39736 -1 -1 170 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82888 22 19 4159 3447 1 2159 220 22 22 484 mult_36 auto 42.9 MiB 0.66 13941 43978 8874 31271 3833 80.9 MiB 1.17 0.02 4.35022 -2631.97 -4.35022 4.35022 1.25 0.00774696 0.00697861 0.556098 0.499879 58 24926 40 1.31202e+07 5.95997e+06 1.75961e+06 3635.55 9.01 2.41905 2.11286 52570 450426 -1 20690 17 8007 9443 1068841 244740 4.54456 4.54456 -2664.53 -4.54456 0 0 2.20457e+06 4554.90 0.59 0.56 0.38 -1 -1 0.59 0.298787 0.265732 1283 1491 532 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_30.v common 17.61 vpr 81.04 MiB 0.31 15108 -1 -1 1 0.50 -1 -1 40796 -1 -1 173 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82984 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 43.1 MiB 0.70 14275 43487 8406 30788 4293 81.0 MiB 1.13 0.02 4.29396 -2676.94 -4.29396 4.29396 1.20 0.00692972 0.00618355 0.508408 0.45329 62 26940 39 1.31202e+07 6.00225e+06 1.85176e+06 3825.95 8.47 2.36766 2.06397 53538 472186 -1 20137 19 7963 9293 978277 226339 4.39726 4.39726 -2703.02 -4.39726 0 0 2.29262e+06 4736.82 0.66 0.56 0.41 -1 -1 0.66 0.316801 0.28135 1311 1510 551 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_31.v common 20.11 vpr 82.97 MiB 0.24 15504 -1 -1 1 0.53 -1 -1 41024 -1 -1 179 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84960 22 19 4410 3647 1 2305 229 22 22 484 mult_36 auto 44.0 MiB 0.73 14328 48529 9744 34610 4175 83.0 MiB 1.21 0.02 4.31186 -2776.62 -4.31186 4.31186 1.19 0.00763571 0.00681491 0.544669 0.484896 60 26322 48 1.31202e+07 6.08682e+06 1.79840e+06 3715.71 10.61 2.63139 2.29142 53054 462096 -1 20969 18 8442 9887 1082581 257139 4.39726 4.39726 -2815.55 -4.39726 0 0 2.25108e+06 4650.99 0.71 0.59 0.38 -1 -1 0.71 0.326546 0.291041 1363 1578 570 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_32.v common 15.71 vpr 82.19 MiB 0.19 15580 -1 -1 1 0.53 -1 -1 40672 -1 -1 183 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84164 22 19 4484 3704 1 2348 233 22 22 484 mult_36 auto 44.2 MiB 0.73 14525 45341 8355 32699 4287 82.2 MiB 1.16 0.02 4.41926 -2881.16 -4.41926 4.41926 1.21 0.00766067 0.00686394 0.513788 0.459417 60 25283 24 1.31202e+07 6.14319e+06 1.79840e+06 3715.71 6.97 2.2262 1.94485 53054 462096 -1 21198 18 8307 9417 1043367 244738 4.41926 4.41926 -2865.53 -4.41926 0 0 2.25108e+06 4650.99 0.61 0.56 0.32 -1 -1 0.61 0.315484 0.280564 1393 1597 589 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_33.v common 18.91 vpr 84.66 MiB 0.22 16620 -1 -1 1 0.59 -1 -1 41660 -1 -1 196 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86688 22 19 4843 4029 1 2463 247 22 22 484 mult_36 auto 46.0 MiB 0.78 15998 49783 9671 35687 4425 84.7 MiB 1.28 0.02 4.54456 -3078.09 -4.54456 4.54456 1.19 0.00747416 0.00663489 0.560167 0.499174 62 30039 29 1.31202e+07 6.72242e+06 1.85176e+06 3825.95 9.26 2.48747 2.16446 53538 472186 -1 22471 18 8965 10546 1092220 257195 4.41926 4.41926 -3312.48 -4.41926 0 0 2.29262e+06 4736.82 0.59 0.58 0.41 -1 -1 0.59 0.352441 0.314917 1490 1756 608 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_34.v common 19.55 vpr 84.04 MiB 0.25 16760 -1 -1 1 0.57 -1 -1 41600 -1 -1 199 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86060 22 19 4917 4086 1 2505 250 22 22 484 mult_36 auto 46.4 MiB 0.77 15240 53766 10631 37846 5289 84.0 MiB 1.33 0.02 4.29396 -3047.21 -4.29396 4.29396 1.18 0.00808591 0.00721489 0.588263 0.523476 60 28229 35 1.31202e+07 6.7647e+06 1.79840e+06 3715.71 9.97 2.63886 2.29656 53054 462096 -1 22321 17 8852 10511 1134513 265850 4.52256 4.52256 -3384.85 -4.52256 0 0 2.25108e+06 4650.99 0.63 0.60 0.40 -1 -1 0.63 0.335676 0.2989 1519 1775 627 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_35.v common 23.64 vpr 85.00 MiB 0.24 17068 -1 -1 1 0.68 -1 -1 41824 -1 -1 207 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87040 22 19 5093 4228 1 2607 258 22 22 484 mult_36 auto 47.3 MiB 0.79 16561 53623 9690 39001 4932 85.0 MiB 1.34 0.02 4.27196 -3266.59 -4.27196 4.27196 1.24 0.00830998 0.0075757 0.581879 0.518075 60 31544 47 1.31202e+07 6.87745e+06 1.79840e+06 3715.71 13.58 3.07471 2.68119 53054 462096 -1 24567 20 9974 11801 1384303 319840 4.64786 4.64786 -3518.09 -4.64786 0 0 2.25108e+06 4650.99 0.64 0.77 0.37 -1 -1 0.64 0.428809 0.381439 1572 1842 646 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_36.v common 17.81 vpr 85.26 MiB 0.14 17200 -1 -1 1 0.65 -1 -1 41692 -1 -1 209 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87308 22 19 5167 4285 1 2655 260 22 22 484 mult_36 auto 47.4 MiB 0.83 17463 54974 10444 39030 5500 85.3 MiB 1.42 0.02 4.35562 -3241.22 -4.35562 4.35562 1.19 0.00860278 0.00767459 0.617579 0.546968 66 29932 33 1.31202e+07 6.90564e+06 1.96511e+06 4060.15 7.92 2.75677 2.40228 54986 507526 -1 24310 15 9330 10872 1221412 282633 4.41926 4.41926 -3341.91 -4.41926 0 0 2.45963e+06 5081.88 0.65 0.58 0.40 -1 -1 0.65 0.312635 0.278695 1600 1861 665 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_37.v common 27.73 vpr 87.54 MiB 0.26 17768 -1 -1 1 0.54 -1 -1 40916 -1 -1 218 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89640 22 19 5380 4464 1 2756 270 24 24 576 mult_36 auto 48.8 MiB 0.86 18706 56950 10603 41531 4816 87.5 MiB 1.41 0.02 4.35562 -3473.4 -4.35562 4.35562 1.50 0.00838022 0.00746015 0.610354 0.542795 60 36033 48 1.58331e+07 7.42849e+06 2.13333e+06 3703.69 16.72 3.22557 2.81696 62730 548095 -1 27276 19 10671 12691 1595594 352262 4.54456 4.54456 -3667.6 -4.54456 0 0 2.67122e+06 4637.53 0.72 0.73 0.46 -1 -1 0.72 0.392459 0.34775 1662 1947 684 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_38.v common 22.21 vpr 86.79 MiB 0.26 17700 -1 -1 1 0.70 -1 -1 42288 -1 -1 220 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88868 22 19 5454 4521 1 2804 272 24 24 576 mult_36 auto 49.1 MiB 0.86 18631 58418 11427 42785 4206 86.8 MiB 1.49 0.02 4.29396 -3507.9 -4.29396 4.29396 1.45 0.00871041 0.00776012 0.630769 0.558119 62 35211 42 1.58331e+07 7.45668e+06 2.19658e+06 3813.51 11.05 3.14164 2.73658 63306 560109 -1 26641 17 10663 12453 1388485 323603 4.39726 4.39726 -3646.05 -4.39726 0 0 2.72095e+06 4723.87 0.74 0.69 0.45 -1 -1 0.74 0.371924 0.331025 1690 1966 703 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_39.v common 25.05 vpr 87.38 MiB 0.29 18144 -1 -1 1 0.73 -1 -1 40268 -1 -1 228 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89472 22 19 5629 4662 1 2910 280 24 24 576 mult_36 auto 49.9 MiB 0.89 20090 64330 13333 46393 4604 87.4 MiB 1.77 0.02 4.55861 -3641.68 -4.55861 4.55861 1.58 0.0105706 0.00923672 0.76296 0.67492 66 38359 44 1.58331e+07 7.56943e+06 2.33135e+06 4047.49 13.56 3.38858 2.95709 65030 601923 -1 28690 16 10858 13238 1585011 358083 4.54456 4.54456 -3858.1 -4.54456 0 0 2.91907e+06 5067.82 0.82 0.68 0.42 -1 -1 0.82 0.309942 0.278263 1742 2032 722 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_40.v common 26.03 vpr 88.15 MiB 0.16 18344 -1 -1 1 0.75 -1 -1 42292 -1 -1 232 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90268 22 19 5703 4719 1 2952 284 24 24 576 mult_36 auto 50.3 MiB 0.97 18947 59996 11849 42843 5304 87.7 MiB 1.58 0.02 4.34967 -3655.08 -4.34967 4.34967 1.51 0.0108257 0.00976529 0.659967 0.583337 60 35879 41 1.58331e+07 7.62581e+06 2.13333e+06 3703.69 14.89 3.29162 2.87116 62730 548095 -1 27199 19 10579 12398 1314935 306848 4.41926 4.41926 -3778.74 -4.41926 0 0 2.67122e+06 4637.53 0.73 0.71 0.40 -1 -1 0.73 0.40986 0.363742 1771 2051 741 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_41.v common 25.49 vpr 88.72 MiB 0.22 18828 -1 -1 1 0.82 -1 -1 41672 -1 -1 240 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90852 22 19 5950 4932 1 3067 293 24 24 576 mult_36 auto 51.2 MiB 1.04 20012 62501 12151 44656 5694 88.7 MiB 1.61 0.02 4.29396 -3822.03 -4.29396 4.29396 1.44 0.00959955 0.0085489 0.680194 0.600453 64 35939 46 1.58331e+07 8.13456e+06 2.26035e+06 3924.22 13.46 3.34983 2.90225 64454 586630 -1 28402 20 10993 12737 1517197 352014 4.41926 4.41926 -3929.74 -4.41926 0 0 2.84938e+06 4946.85 0.77 0.79 0.47 -1 -1 0.77 0.446001 0.395992 1841 2153 760 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_42.v common 22.35 vpr 92.71 MiB 0.29 18948 -1 -1 1 0.79 -1 -1 42732 -1 -1 242 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94940 22 19 6024 4989 1 3108 295 24 24 576 mult_36 auto 51.8 MiB 1.03 19910 60136 10755 44360 5021 89.2 MiB 1.61 0.02 4.29396 -3823.01 -4.29396 4.29396 1.49 0.00997355 0.00890021 0.669998 0.595416 68 34391 30 1.58331e+07 8.16275e+06 2.39371e+06 4155.74 10.26 3.27279 2.85609 65606 615345 -1 27865 17 10555 12711 1355075 308860 4.39726 4.39726 -4100.32 -4.39726 0 0 2.98162e+06 5176.42 0.81 0.68 0.52 -1 -1 0.81 0.389065 0.345358 1869 2172 779 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_43.v common 28.27 vpr 90.55 MiB 0.30 19252 -1 -1 1 0.89 -1 -1 43280 -1 -1 250 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92720 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 52.8 MiB 1.03 22784 60306 10847 44895 4564 90.0 MiB 1.63 0.03 4.66986 -4092.44 -4.66986 4.66986 1.56 0.010458 0.00933727 0.683433 0.609507 68 38832 41 1.58331e+07 8.2755e+06 2.39371e+06 4155.74 15.82 3.42817 2.98344 65606 615345 -1 31135 17 11588 13651 1552306 353970 4.54456 4.54456 -4162.55 -4.54456 0 0 2.98162e+06 5176.42 0.80 0.76 0.49 -1 -1 0.80 0.414118 0.368413 1921 2237 798 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_44.v common 24.51 vpr 90.27 MiB 0.24 19576 -1 -1 1 0.89 -1 -1 43548 -1 -1 253 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92432 22 19 6272 5186 1 3255 306 24 24 576 mult_36 auto 52.8 MiB 1.02 21212 62106 11016 45638 5452 90.3 MiB 1.89 0.03 4.29396 -3963.31 -4.29396 4.29396 1.50 0.0118959 0.0107204 0.811675 0.728958 66 38086 47 1.58331e+07 8.31778e+06 2.33135e+06 4047.49 12.08 3.96345 3.47157 65030 601923 -1 29668 16 11714 13642 1536421 356784 4.52256 4.52256 -4103.45 -4.52256 0 0 2.91907e+06 5067.82 0.82 0.73 0.50 -1 -1 0.82 0.396822 0.353156 1949 2256 817 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_45.v common 23.95 vpr 93.04 MiB 0.29 19992 -1 -1 1 0.99 -1 -1 43872 -1 -1 262 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 95268 22 19 6485 5365 1 3364 316 24 24 576 mult_36 auto 53.9 MiB 1.06 21665 63741 11956 46622 5163 91.4 MiB 1.69 0.03 4.41926 -4168.43 -4.41926 4.41926 1.43 0.0109101 0.00976255 0.702499 0.622845 64 37095 22 1.58331e+07 8.84063e+06 2.26035e+06 3924.22 11.56 3.25556 2.83432 64454 586630 -1 31001 18 12007 14131 1617183 372391 4.54456 4.54456 -4244.66 -4.54456 0 0 2.84938e+06 4946.85 0.84 0.83 0.47 -1 -1 0.84 0.455739 0.405333 2011 2342 836 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_46.v common 28.82 vpr 94.72 MiB 0.17 20176 -1 -1 1 0.95 -1 -1 44120 -1 -1 266 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96992 22 19 6559 5422 1 3406 320 24 24 576 mult_36 auto 54.3 MiB 1.11 22395 70336 13410 49504 7422 91.7 MiB 1.88 0.03 4.29396 -4167.58 -4.29396 4.29396 1.55 0.0104906 0.00933311 0.751473 0.664137 68 38012 39 1.58331e+07 8.897e+06 2.39371e+06 4155.74 15.77 3.61694 3.13945 65606 615345 -1 30883 18 11581 13686 1504829 345509 4.41926 4.41926 -4245.28 -4.41926 0 0 2.98162e+06 5176.42 0.78 0.81 0.53 -1 -1 0.78 0.463567 0.412278 2040 2361 855 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_47.v common 24.67 vpr 92.69 MiB 0.29 20348 -1 -1 1 0.94 -1 -1 44564 -1 -1 273 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94916 22 19 6735 5564 1 3513 327 24 24 576 mult_36 auto 55.2 MiB 1.19 22461 75769 14339 54266 7164 92.7 MiB 2.10 0.03 4.3557 -4269.53 -4.3557 4.3557 1.57 0.0129475 0.0117307 0.885512 0.791812 66 37826 29 1.58331e+07 8.99566e+06 2.33135e+06 4047.49 11.51 3.9521 3.47188 65030 601923 -1 31148 17 12152 14476 1574318 372450 4.41926 4.41926 -4319 -4.41926 0 0 2.91907e+06 5067.82 0.81 0.80 0.48 -1 -1 0.81 0.443075 0.393385 2092 2428 874 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_48.v common 27.91 vpr 97.22 MiB 0.31 20424 -1 -1 1 1.06 -1 -1 44100 -1 -1 276 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99552 22 19 6809 5621 1 3556 330 24 24 576 mult_36 auto 55.5 MiB 1.24 24443 75504 14693 54581 6230 92.9 MiB 2.12 0.03 4.54456 -4333.82 -4.54456 4.54456 1.61 0.0130596 0.0117811 0.89344 0.798428 68 41304 32 1.58331e+07 9.03794e+06 2.39371e+06 4155.74 14.16 4.00794 3.5132 65606 615345 -1 32992 16 12193 14996 1577116 364367 4.66986 4.66986 -4785.3 -4.66986 0 0 2.98162e+06 5176.42 0.83 0.79 0.49 -1 -1 0.83 0.434988 0.387791 2121 2447 893 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_49.v common 25.51 vpr 96.57 MiB 0.23 21104 -1 -1 1 1.09 -1 -1 44384 -1 -1 287 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98888 22 19 7094 5872 1 3671 342 24 24 576 mult_36 auto 56.6 MiB 1.18 24412 81602 15797 59095 6710 94.3 MiB 2.29 0.03 4.66986 -4735 -4.66986 4.66986 1.59 0.0116342 0.0102507 0.880052 0.775715 76 38504 31 1.58331e+07 9.58898e+06 2.61600e+06 4541.67 11.47 3.75695 3.26879 68478 680951 -1 32830 17 11929 13673 1640992 357972 4.92046 4.92046 -4741.32 -4.92046 0 0 3.24203e+06 5628.53 0.93 0.87 0.55 -1 -1 0.93 0.489288 0.436653 2200 2569 912 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_50.v common 27.54 vpr 98.38 MiB 0.35 21340 -1 -1 1 1.16 -1 -1 44232 -1 -1 290 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100736 22 19 7168 5929 1 3712 345 24 24 576 mult_36 auto 57.1 MiB 1.25 25160 76512 14255 54563 7694 94.7 MiB 1.93 0.03 4.47552 -4598.48 -4.47552 4.47552 1.61 0.013865 0.0125473 0.804796 0.724721 70 41615 40 1.58331e+07 9.63126e+06 2.45377e+06 4260.01 13.51 4.10442 3.58662 66754 640332 -1 34443 17 12525 14659 1724396 391207 4.64786 4.64786 -4803.4 -4.64786 0 0 3.09179e+06 5367.68 0.88 0.87 0.51 -1 -1 0.88 0.476807 0.423447 2229 2588 931 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_51.v common 39.08 vpr 102.40 MiB 0.33 21612 -1 -1 1 1.12 -1 -1 44672 -1 -1 297 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 104860 22 19 7344 6071 1 3815 352 24 24 576 mult_36 auto 58.1 MiB 1.26 26112 84808 17528 58730 8550 95.6 MiB 2.44 0.03 4.41926 -4718.92 -4.41926 4.41926 1.58 0.0138815 0.0125488 1.00517 0.89552 72 45711 45 1.58331e+07 9.72992e+06 2.50747e+06 4353.24 24.53 4.58489 4.00396 67330 654343 -1 35468 17 13268 15995 2013855 438885 4.54456 4.54456 -4858.33 -4.54456 0 0 3.14081e+06 5452.80 0.86 0.93 0.55 -1 -1 0.86 0.495571 0.441007 2282 2655 950 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_52.v common 32.37 vpr 102.40 MiB 0.37 21760 -1 -1 1 1.14 -1 -1 45136 -1 -1 301 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 104856 22 19 7418 6128 1 3860 356 24 24 576 mult_36 auto 58.7 MiB 1.26 25970 87365 17770 61046 8549 96.3 MiB 2.54 0.03 4.34967 -4804.09 -4.34967 4.34967 1.60 0.0145542 0.0131418 1.06436 0.932564 72 44233 45 1.58331e+07 9.78629e+06 2.50747e+06 4353.24 17.54 4.64956 4.04739 67330 654343 -1 35405 17 12953 15244 1834273 401238 4.54456 4.54456 -4810.48 -4.54456 0 0 3.14081e+06 5452.80 0.85 0.91 0.53 -1 -1 0.85 0.514887 0.459964 2310 2674 969 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_14.v common 18.72 vpr 66.80 MiB 0.10 9440 -1 -1 1 0.19 -1 -1 34640 -1 -1 58 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68404 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 28.4 MiB 1.17 4023 13117 2985 8070 2062 66.8 MiB 0.34 0.01 8.30942 -383.734 -8.30942 8.30942 0.59 0.00262001 0.00241154 0.150191 0.137092 40 8052 31 6.54114e+06 2.40144e+06 616420. 2407.89 13.83 1.33095 1.17365 23812 153515 -1 6887 25 6377 7252 840667 207113 7.83898 7.83898 -465.002 -7.83898 0 0 808720. 3159.06 0.20 0.35 0.14 -1 -1 0.20 0.139969 0.124794 421 344 247 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_15.v common 8.49 vpr 67.56 MiB 0.07 9596 -1 -1 1 0.18 -1 -1 35084 -1 -1 61 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69180 22 19 1344 989 1 791 107 16 16 256 mult_36 auto 29.3 MiB 0.96 4575 14022 3062 9140 1820 67.6 MiB 0.35 0.01 8.46467 -389.974 -8.46467 8.46467 0.59 0.00303809 0.00280853 0.166695 0.152832 42 9875 50 6.54114e+06 2.83972e+06 649763. 2538.14 3.81 0.88637 0.786788 24068 159480 -1 7244 23 6090 6933 810054 211687 7.95378 7.95378 -494.958 -7.95378 0 0 829453. 3240.05 0.22 0.34 0.14 -1 -1 0.22 0.139388 0.124672 453 369 266 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_16.v common 8.88 vpr 67.79 MiB 0.11 9644 -1 -1 1 0.18 -1 -1 35228 -1 -1 65 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69416 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 29.5 MiB 1.30 4773 16071 3747 10021 2303 67.8 MiB 0.39 0.01 8.40964 -409.362 -8.40964 8.40964 0.58 0.00292238 0.0026757 0.181568 0.165822 46 9093 31 6.54114e+06 2.89609e+06 723233. 2825.13 3.79 0.816121 0.72172 24832 174915 -1 7344 26 5474 6088 675835 171589 8.05383 8.05383 -514.535 -8.05383 0 0 890343. 3477.90 0.22 0.30 0.18 -1 -1 0.22 0.148422 0.131646 481 388 285 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_17.v common 10.40 vpr 68.43 MiB 0.10 10200 -1 -1 1 0.21 -1 -1 35356 -1 -1 71 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70072 22 19 1518 1112 1 895 117 16 16 256 mult_36 auto 30.0 MiB 1.18 5128 15847 3477 10520 1850 68.4 MiB 0.38 0.01 8.98451 -441.089 -8.98451 8.98451 0.58 0.0029563 0.00270358 0.181126 0.165532 46 10202 35 6.54114e+06 2.98066e+06 723233. 2825.13 5.32 0.966824 0.861479 24832 174915 -1 8120 24 6873 7643 882202 231673 8.64522 8.64522 -508.026 -8.64522 0 0 890343. 3477.90 0.22 0.36 0.16 -1 -1 0.22 0.153564 0.136801 514 415 304 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_18.v common 9.13 vpr 68.72 MiB 0.08 10212 -1 -1 1 0.21 -1 -1 35032 -1 -1 74 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70372 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 30.6 MiB 1.48 5562 18410 4023 12076 2311 68.7 MiB 0.50 0.01 9.11545 -462.729 -9.11545 9.11545 0.58 0.00313992 0.00286707 0.219509 0.20039 50 10839 29 6.54114e+06 3.02294e+06 787708. 3076.99 3.65 0.960923 0.851871 25344 186282 -1 8621 24 6644 7427 822442 205516 8.84223 8.84223 -564.118 -8.84223 0 0 943753. 3686.54 0.24 0.34 0.19 -1 -1 0.24 0.155445 0.138298 542 434 323 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_19.v common 9.72 vpr 68.82 MiB 0.11 10560 -1 -1 1 0.27 -1 -1 35344 -1 -1 79 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70468 22 19 1688 1231 1 993 126 16 16 256 mult_36 auto 30.8 MiB 1.32 5905 19656 4339 11653 3664 68.8 MiB 0.49 0.01 9.37523 -468.383 -9.37523 9.37523 0.58 0.00351254 0.00323258 0.232479 0.212033 48 11452 47 6.54114e+06 3.48941e+06 755748. 2952.14 4.24 1.13956 1.0091 25088 180500 -1 8957 23 5555 6342 718459 187069 8.83268 8.83268 -558.947 -8.83268 0 0 916467. 3579.95 0.23 0.33 0.16 -1 -1 0.23 0.163001 0.145746 573 457 342 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_20.v common 10.98 vpr 69.38 MiB 0.09 10784 -1 -1 1 0.23 -1 -1 35528 -1 -1 81 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71044 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 31.4 MiB 1.59 6159 20092 4300 10622 5170 69.4 MiB 0.47 0.01 9.0553 -504.795 -9.0553 9.0553 0.58 0.00336194 0.003079 0.223133 0.20372 48 12002 45 6.54114e+06 3.51759e+06 755748. 2952.14 5.14 1.09027 0.964321 25088 180500 -1 9426 26 8013 9013 1087933 263252 8.51952 8.51952 -758.559 -8.51952 0 0 916467. 3579.95 0.27 0.43 0.18 -1 -1 0.27 0.182262 0.162271 601 476 361 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_21.v common 10.02 vpr 69.73 MiB 0.11 10904 -1 -1 1 0.24 -1 -1 35776 -1 -1 85 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71404 22 19 1859 1351 1 1092 132 16 16 256 mult_36 auto 31.6 MiB 1.57 6816 20232 4108 12738 3386 69.7 MiB 0.54 0.01 9.21366 -510.538 -9.21366 9.21366 0.59 0.00370234 0.00339557 0.232676 0.21175 54 12156 29 6.54114e+06 3.57397e+06 829453. 3240.05 4.16 1.10107 0.97694 26108 202796 -1 9502 23 6442 7334 699332 184639 8.23497 8.23497 -611.204 -8.23497 0 0 1.02522e+06 4004.78 0.24 0.34 0.18 -1 -1 0.24 0.17102 0.152253 632 500 380 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_22.v common 11.05 vpr 69.93 MiB 0.14 11016 -1 -1 1 0.26 -1 -1 35912 -1 -1 90 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71604 22 19 1933 1408 1 1130 137 16 16 256 mult_36 auto 31.8 MiB 1.89 6953 18846 3874 11726 3246 69.9 MiB 0.51 0.01 9.25639 -524.337 -9.25639 9.25639 0.60 0.00633064 0.00579152 0.229754 0.209796 54 12678 28 6.54114e+06 3.64444e+06 829453. 3240.05 4.77 1.12815 0.998589 26108 202796 -1 10018 23 7514 8545 880687 221653 8.27422 8.27422 -608.588 -8.27422 0 0 1.02522e+06 4004.78 0.26 0.42 0.19 -1 -1 0.26 0.195465 0.17486 661 519 399 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_23.v common 12.05 vpr 70.30 MiB 0.14 11296 -1 -1 1 0.24 -1 -1 35984 -1 -1 94 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71988 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 32.4 MiB 1.88 7735 24562 5200 16532 2830 70.3 MiB 0.65 0.01 9.45758 -535.83 -9.45758 9.45758 0.78 0.00385623 0.00351616 0.276218 0.251396 50 14484 31 8.06603e+06 4.09681e+06 1.03391e+06 3191.07 5.08 1.22106 1.08246 32744 246704 -1 11690 23 7230 8414 1076073 253853 8.46493 8.46493 -695.821 -8.46493 0 0 1.23838e+06 3822.15 0.31 0.47 0.23 -1 -1 0.31 0.198031 0.176796 693 544 418 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_24.v common 15.78 vpr 70.71 MiB 0.17 11480 -1 -1 1 0.22 -1 -1 36208 -1 -1 97 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72404 22 19 2105 1529 1 1230 145 18 18 324 mult_36 auto 32.6 MiB 1.82 7180 26745 5794 17769 3182 70.7 MiB 0.44 0.01 9.12646 -589.17 -9.12646 9.12646 0.72 0.00174114 0.00155803 0.141052 0.12686 46 15589 39 8.06603e+06 4.13909e+06 948677. 2928.01 9.22 1.18426 1.04138 32096 231720 -1 11052 22 7422 8604 958262 236388 8.28608 8.28608 -757.327 -8.28608 0 0 1.16833e+06 3605.96 0.35 0.43 0.17 -1 -1 0.35 0.198698 0.177394 721 563 437 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_25.v common 13.08 vpr 71.23 MiB 0.19 11976 -1 -1 1 0.32 -1 -1 36508 -1 -1 101 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72944 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 33.3 MiB 1.80 8299 21425 4201 14721 2503 71.2 MiB 0.63 0.01 9.40561 -605.89 -9.40561 9.40561 0.82 0.0049407 0.00448797 0.265454 0.241336 50 15707 32 8.06603e+06 4.19547e+06 1.03391e+06 3191.07 5.84 1.31782 1.16752 32744 246704 -1 12541 26 8887 10206 1316343 305538 8.90953 8.90953 -711.282 -8.90953 0 0 1.23838e+06 3822.15 0.31 0.54 0.24 -1 -1 0.31 0.239322 0.214263 751 586 456 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_26.v common 13.57 vpr 71.47 MiB 0.08 12020 -1 -1 1 0.29 -1 -1 37372 -1 -1 105 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73184 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 33.7 MiB 2.04 8365 28783 6260 16543 5980 71.5 MiB 0.69 0.01 9.59957 -610.286 -9.59957 9.59957 0.79 0.00411691 0.00374728 0.321128 0.291926 48 16675 42 8.06603e+06 4.25184e+06 991730. 3060.90 6.21 1.43531 1.26884 32420 239176 -1 12949 23 9827 11166 1462580 349293 8.88453 8.88453 -788.036 -8.88453 0 0 1.20291e+06 3712.69 0.31 0.56 0.21 -1 -1 0.31 0.220435 0.196694 779 605 475 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_27.v common 13.18 vpr 72.21 MiB 0.12 12088 -1 -1 1 0.32 -1 -1 36688 -1 -1 111 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73948 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 34.4 MiB 1.94 9241 28370 5807 18956 3607 72.2 MiB 0.83 0.01 9.27331 -683.845 -9.27331 9.27331 0.78 0.00442823 0.00404133 0.325043 0.29516 54 17136 39 8.06603e+06 4.73242e+06 1.08842e+06 3359.33 5.64 1.46239 1.29485 33712 268580 -1 13437 24 10877 12354 1477729 344669 8.64193 8.64193 -919.251 -8.64193 0 0 1.34436e+06 4149.26 0.36 0.59 0.22 -1 -1 0.36 0.252438 0.226581 817 642 494 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_28.v common 14.41 vpr 72.31 MiB 0.16 12296 -1 -1 1 0.32 -1 -1 36784 -1 -1 114 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74048 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 34.3 MiB 2.32 9764 21523 4098 13503 3922 72.3 MiB 0.62 0.01 9.32934 -687.124 -9.32934 9.32934 0.78 0.00551631 0.00500842 0.259632 0.236424 56 16775 37 8.06603e+06 4.7747e+06 1.11497e+06 3441.27 6.63 1.46602 1.29663 34036 275796 -1 13980 23 9350 10755 1348955 317758 8.77023 8.77023 -898.217 -8.77023 0 0 1.37338e+06 4238.83 0.34 0.53 0.24 -1 -1 0.34 0.233752 0.208772 845 661 513 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_29.v common 16.69 vpr 73.07 MiB 0.19 12476 -1 -1 1 0.36 -1 -1 37116 -1 -1 118 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74828 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 35.2 MiB 2.60 9948 31652 6879 21519 3254 73.1 MiB 0.77 0.01 9.31996 -692.815 -9.31996 9.31996 1.28 0.00488491 0.00446488 0.278446 0.250826 50 19158 34 1.31202e+07 5.22708e+06 1.59181e+06 3288.87 7.00 1.46714 1.2979 49674 382800 -1 14996 23 11360 12976 1660239 391147 8.81467 8.81467 -918.954 -8.81467 0 0 1.90554e+06 3937.06 0.51 0.61 0.34 -1 -1 0.51 0.238829 0.213143 881 694 532 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_30.v common 17.17 vpr 73.39 MiB 0.18 12660 -1 -1 1 0.37 -1 -1 37320 -1 -1 123 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75152 22 19 2639 1910 1 1548 173 22 22 484 mult_36 auto 35.8 MiB 2.42 9542 32881 6991 22506 3384 73.4 MiB 0.71 0.01 9.26617 -728.584 -9.26617 9.26617 1.19 0.00218694 0.001972 0.285336 0.25833 48 19580 38 1.31202e+07 5.29755e+06 1.52614e+06 3153.19 7.75 1.56872 1.38457 49190 371334 -1 15243 26 13014 14790 1866040 442392 8.73812 8.73812 -1114.85 -8.73812 0 0 1.85176e+06 3825.95 0.51 0.72 0.34 -1 -1 0.51 0.278832 0.248939 910 713 551 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_31.v common 17.12 vpr 73.88 MiB 0.22 13008 -1 -1 1 0.34 -1 -1 37388 -1 -1 128 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75652 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 36.3 MiB 2.23 10316 35178 7031 23952 4195 73.9 MiB 0.97 0.01 9.59887 -815.227 -9.59887 9.59887 1.22 0.00501272 0.00456654 0.386801 0.350063 50 19789 33 1.31202e+07 5.36802e+06 1.59181e+06 3288.87 7.50 1.61243 1.42683 49674 382800 -1 15490 27 12044 14151 1818410 427333 9.02988 9.02988 -1082.14 -9.02988 0 0 1.90554e+06 3937.06 0.51 0.69 0.32 -1 -1 0.51 0.28382 0.251956 946 745 570 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_32.v common 18.10 vpr 73.72 MiB 0.19 12928 -1 -1 1 0.35 -1 -1 36972 -1 -1 131 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75492 22 19 2818 2038 1 1656 181 22 22 484 mult_36 auto 36.0 MiB 2.74 10985 33396 7014 22006 4376 73.7 MiB 0.94 0.01 9.18872 -729.727 -9.18872 9.18872 1.22 0.00555682 0.00501678 0.391822 0.354063 52 21147 46 1.31202e+07 5.4103e+06 1.63434e+06 3376.74 7.78 1.89748 1.68336 50638 406276 -1 15805 26 12963 14588 1925572 461503 8.66113 8.66113 -888.638 -8.66113 0 0 2.01763e+06 4168.66 0.56 0.76 0.37 -1 -1 0.56 0.298184 0.266224 974 764 589 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_33.v common 18.09 vpr 74.57 MiB 0.18 13792 -1 -1 1 0.37 -1 -1 37332 -1 -1 137 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76356 22 19 2923 2109 1 1725 188 22 22 484 mult_36 auto 36.9 MiB 2.39 11534 41076 8921 25709 6446 74.6 MiB 1.05 0.01 10.2924 -835.387 -10.2924 10.2924 1.27 0.00546535 0.00497593 0.44184 0.40093 54 21231 38 1.31202e+07 5.89087e+06 1.67518e+06 3461.11 8.17 1.90087 1.69027 51122 416746 -1 16854 24 11734 13578 1615248 384384 9.39377 9.39377 -1134.87 -9.39377 0 0 2.06816e+06 4273.05 0.54 0.62 0.34 -1 -1 0.54 0.267121 0.2382 1009 796 608 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_34.v common 21.65 vpr 74.83 MiB 0.21 13772 -1 -1 1 0.38 -1 -1 37876 -1 -1 140 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76624 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 37.2 MiB 3.66 12266 39170 8245 26892 4033 74.8 MiB 1.07 0.01 9.97834 -770.817 -9.97834 9.97834 1.21 0.00571216 0.0052044 0.426004 0.386425 56 21922 39 1.31202e+07 5.93316e+06 1.71605e+06 3545.56 10.32 1.86387 1.65418 51606 428054 -1 18215 24 13841 15896 2255928 507616 9.94227 9.94227 -1246.47 -9.94227 0 0 2.11301e+06 4365.72 0.54 0.76 0.35 -1 -1 0.54 0.281343 0.250097 1037 815 627 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_35.v common 19.19 vpr 75.42 MiB 0.15 13984 -1 -1 1 0.39 -1 -1 37592 -1 -1 145 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77228 22 19 3101 2236 1 1830 196 22 22 484 mult_36 auto 37.6 MiB 3.22 11422 38319 7965 26269 4085 75.4 MiB 1.02 0.01 9.90229 -825.692 -9.90229 9.90229 1.23 0.00568749 0.00517513 0.40807 0.368882 54 21987 30 1.31202e+07 6.00363e+06 1.67518e+06 3461.11 8.36 1.90347 1.6945 51122 416746 -1 17198 23 12943 14962 1754919 421016 9.26291 9.26291 -1135.22 -9.26291 0 0 2.06816e+06 4273.05 0.56 0.70 0.35 -1 -1 0.56 0.285813 0.255425 1072 846 646 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_36.v common 20.38 vpr 75.86 MiB 0.22 14128 -1 -1 1 0.42 -1 -1 37996 -1 -1 148 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77684 22 19 3175 2293 1 1870 199 22 22 484 mult_36 auto 38.1 MiB 3.88 11959 40219 8453 27913 3853 75.9 MiB 1.07 0.01 10.2141 -827.99 -10.2141 10.2141 1.31 0.00641648 0.00585224 0.454477 0.413046 54 22244 37 1.31202e+07 6.04591e+06 1.67518e+06 3461.11 8.61 2.04337 1.8116 51122 416746 -1 17420 23 11578 13322 1482709 359973 9.58852 9.58852 -1256.36 -9.58852 0 0 2.06816e+06 4273.05 0.56 0.65 0.35 -1 -1 0.56 0.289012 0.258213 1100 865 665 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_37.v common 23.90 vpr 76.29 MiB 0.21 14464 -1 -1 1 0.45 -1 -1 37372 -1 -1 152 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78116 22 19 3280 2364 1 1940 204 24 24 576 mult_36 auto 38.6 MiB 3.56 12413 41604 8759 29253 3592 76.3 MiB 1.07 0.02 10.1414 -859.737 -10.1414 10.1414 1.64 0.00602109 0.00548311 0.412304 0.372312 50 25735 44 1.58331e+07 6.49829e+06 1.88759e+06 3277.06 11.57 2.03071 1.79344 58706 454005 -1 18389 25 12459 14636 1793419 425436 9.27766 9.27766 -1319.74 -9.27766 0 0 2.26035e+06 3924.22 0.60 0.75 0.36 -1 -1 0.60 0.334717 0.30042 1135 897 684 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_38.v common 21.64 vpr 76.78 MiB 0.24 14576 -1 -1 1 0.46 -1 -1 37976 -1 -1 157 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78620 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 39.0 MiB 4.17 12700 43609 9545 30570 3494 76.8 MiB 1.19 0.02 10.0282 -917.593 -10.0282 10.0282 1.49 0.00602725 0.00545141 0.471712 0.425047 56 21119 26 1.58331e+07 6.56876e+06 2.03561e+06 3534.04 8.64 1.92611 1.70534 61006 507707 -1 18139 27 11695 13188 1690980 410021 9.18442 9.18442 -1340.55 -9.18442 0 0 2.50747e+06 4353.24 0.70 0.76 0.43 -1 -1 0.70 0.348213 0.310179 1164 916 703 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_39.v common 22.11 vpr 77.25 MiB 0.12 14688 -1 -1 1 0.46 -1 -1 38264 -1 -1 161 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79100 22 19 3457 2490 1 2042 213 24 24 576 mult_36 auto 39.5 MiB 3.72 12894 46568 10474 28732 7362 77.2 MiB 1.22 0.02 10.1583 -949.474 -10.1583 10.1583 1.43 0.00638264 0.00581139 0.510789 0.461121 54 24143 46 1.58331e+07 6.62513e+06 1.98675e+06 3449.22 9.80 2.23656 1.97751 60430 494267 -1 18677 25 12663 14801 1632827 390484 9.97257 9.97257 -1318.13 -9.97257 0 0 2.45377e+06 4260.01 0.65 0.67 0.41 -1 -1 0.65 0.310012 0.275893 1198 946 722 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_40.v common 23.85 vpr 77.45 MiB 0.21 14836 -1 -1 1 0.44 -1 -1 38836 -1 -1 164 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79312 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 39.7 MiB 4.44 13807 43565 9165 30733 3667 77.5 MiB 1.09 0.02 9.99186 -925.764 -9.99186 9.99186 1.47 0.00646404 0.00579106 0.420358 0.377761 54 25418 49 1.58331e+07 6.66742e+06 1.98675e+06 3449.22 10.71 2.2341 1.9696 60430 494267 -1 20060 24 14263 16167 1965856 473886 9.29411 9.29411 -1401.97 -9.29411 0 0 2.45377e+06 4260.01 0.74 0.75 0.39 -1 -1 0.74 0.315228 0.279899 1226 965 741 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_41.v common 23.91 vpr 77.20 MiB 0.24 15228 -1 -1 1 0.65 -1 -1 37944 -1 -1 170 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79056 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 39.6 MiB 4.10 14145 47543 9891 33901 3751 77.2 MiB 1.30 0.02 9.91159 -1035.36 -9.91159 9.91159 1.48 0.00623866 0.0056463 0.502007 0.454474 54 26939 44 1.58331e+07 7.14798e+06 1.98675e+06 3449.22 10.23 2.24742 1.98593 60430 494267 -1 20614 24 15058 17233 2074607 480593 9.79086 9.79086 -1391.86 -9.79086 0 0 2.45377e+06 4260.01 0.70 0.87 0.42 -1 -1 0.70 0.368238 0.329446 1261 995 760 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_42.v common 29.03 vpr 78.09 MiB 0.27 15328 -1 -1 1 0.65 -1 -1 38240 -1 -1 173 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79964 22 19 3708 2673 1 2186 226 24 24 576 mult_36 auto 40.3 MiB 4.74 16104 42194 8322 28032 5840 78.1 MiB 1.14 0.02 10.4136 -1012.01 -10.4136 10.4136 1.46 0.00636253 0.00575312 0.426379 0.385045 62 27815 40 1.58331e+07 7.19026e+06 2.19658e+06 3813.51 14.85 2.26474 2.0088 63306 560109 -1 21638 25 14219 16394 2291368 490734 9.41877 9.41877 -1577.24 -9.41877 0 0 2.72095e+06 4723.87 0.71 0.81 0.46 -1 -1 0.71 0.336207 0.29879 1289 1014 779 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_43.v common 27.74 vpr 78.05 MiB 0.25 15604 -1 -1 1 0.65 -1 -1 38608 -1 -1 178 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79920 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 40.4 MiB 4.30 15296 41295 8139 29365 3791 78.0 MiB 1.20 0.02 10.16 -1063.97 -10.16 10.16 1.54 0.0070497 0.00641468 0.455071 0.409328 56 28472 50 1.58331e+07 7.26073e+06 2.03561e+06 3534.04 13.96 2.40374 2.12442 61006 507707 -1 22090 23 15206 17473 2444394 558097 9.42572 9.42572 -1494.13 -9.42572 0 0 2.50747e+06 4353.24 0.67 0.80 0.47 -1 -1 0.67 0.286418 0.257228 1323 1043 798 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_44.v common 24.56 vpr 78.46 MiB 0.26 15644 -1 -1 1 0.65 -1 -1 38452 -1 -1 181 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80348 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 40.8 MiB 4.95 15489 47034 9365 34232 3437 78.5 MiB 1.31 0.02 10.121 -975.462 -10.121 10.121 1.62 0.00727244 0.00650432 0.51744 0.466063 60 24207 29 1.58331e+07 7.30301e+06 2.13333e+06 3703.69 9.52 2.28995 2.02781 62730 548095 -1 21032 24 12683 14355 1753295 422656 9.00722 9.00722 -1352.2 -9.00722 0 0 2.67122e+06 4637.53 0.78 0.80 0.47 -1 -1 0.78 0.37169 0.331744 1351 1062 817 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_45.v common 26.81 vpr 78.86 MiB 0.26 15956 -1 -1 1 0.66 -1 -1 40372 -1 -1 186 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80756 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 41.1 MiB 4.54 16340 50155 10505 31575 8075 78.9 MiB 1.30 0.02 10.0722 -985.253 -10.0722 10.0722 1.55 0.0074032 0.00672801 0.525196 0.47423 62 27929 47 1.58331e+07 7.76948e+06 2.19658e+06 3813.51 12.50 2.45785 2.1786 63306 560109 -1 21607 23 12498 14826 1663854 396826 9.12307 9.12307 -1451.12 -9.12307 0 0 2.72095e+06 4723.87 0.75 0.75 0.44 -1 -1 0.75 0.359917 0.320931 1387 1094 836 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_46.v common 24.18 vpr 78.90 MiB 0.20 16108 -1 -1 1 0.65 -1 -1 40268 -1 -1 189 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80796 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 41.3 MiB 5.27 16549 53303 11025 37595 4683 78.9 MiB 1.40 0.02 10.5357 -1123.54 -10.5357 10.5357 1.51 0.0077541 0.00706757 0.555707 0.499832 64 25587 38 1.58331e+07 7.81177e+06 2.26035e+06 3924.22 9.27 2.46726 2.18285 64454 586630 -1 22060 23 10577 12608 1472265 347313 9.67737 9.67737 -1524.22 -9.67737 0 0 2.84938e+06 4946.85 0.74 0.64 0.46 -1 -1 0.74 0.336775 0.30084 1414 1113 855 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_47.v common 26.84 vpr 79.67 MiB 0.30 16508 -1 -1 1 0.66 -1 -1 40548 -1 -1 194 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81580 22 19 4167 2996 1 2465 248 24 24 576 mult_36 auto 42.2 MiB 4.83 16473 59376 11937 40248 7191 79.7 MiB 1.55 0.02 10.4408 -1061.77 -10.4408 10.4408 1.55 0.00789307 0.00718347 0.613169 0.553732 60 26903 48 1.58331e+07 7.88224e+06 2.13333e+06 3703.69 11.83 2.78199 2.45451 62730 548095 -1 21754 23 12304 14126 1550289 380177 9.28402 9.28402 -1464.85 -9.28402 0 0 2.67122e+06 4637.53 0.76 0.75 0.47 -1 -1 0.76 0.374453 0.33403 1449 1144 874 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_48.v common 23.87 vpr 79.73 MiB 0.23 16660 -1 -1 1 0.66 -1 -1 40516 -1 -1 197 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81648 22 19 4241 3053 1 2504 251 24 24 576 mult_36 auto 42.1 MiB 5.61 16474 57994 11394 40219 6381 79.7 MiB 1.47 0.02 10.5013 -1047.39 -10.5013 10.5013 1.43 0.00738982 0.00668981 0.570981 0.514404 64 25175 29 1.58331e+07 7.92452e+06 2.26035e+06 3924.22 8.19 2.34248 2.06535 64454 586630 -1 22200 23 12490 14529 1711643 410861 9.39387 9.39387 -1359.3 -9.39387 0 0 2.84938e+06 4946.85 0.85 0.79 0.56 -1 -1 0.85 0.382435 0.340426 1477 1163 893 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_49.v common 27.24 vpr 80.15 MiB 0.31 17092 -1 -1 1 0.64 -1 -1 40920 -1 -1 204 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82076 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 42.5 MiB 5.24 17944 60484 12294 40037 8153 80.2 MiB 1.62 0.02 10.2711 -1057.18 -10.2711 10.2711 1.51 0.00781659 0.00709654 0.633263 0.569606 60 28418 34 1.58331e+07 8.41918e+06 2.13333e+06 3703.69 11.70 2.65564 2.34723 62730 548095 -1 23860 21 13375 15404 1783547 434526 9.48426 9.48426 -1463.7 -9.48426 0 0 2.67122e+06 4637.53 0.72 0.75 0.47 -1 -1 0.72 0.348599 0.310883 1512 1195 912 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_50.v common 28.32 vpr 80.52 MiB 0.33 17004 -1 -1 1 0.63 -1 -1 40820 -1 -1 206 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82452 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 42.9 MiB 5.83 17532 50241 9749 32850 7642 80.5 MiB 1.23 0.02 10.0416 -1157.63 -10.0416 10.0416 1.43 0.00791432 0.00717592 0.494005 0.44298 58 28679 43 1.58331e+07 8.44736e+06 2.08734e+06 3623.85 12.76 2.75587 2.43133 62154 534210 -1 23883 25 16571 18768 2358557 558388 9.36196 9.36196 -1664.67 -9.36196 0 0 2.61600e+06 4541.67 0.71 0.94 0.36 -1 -1 0.71 0.411086 0.365325 1541 1214 931 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_51.v common 25.90 vpr 81.16 MiB 0.30 17344 -1 -1 1 0.66 -1 -1 40992 -1 -1 211 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83108 22 19 4524 3251 1 2680 266 24 24 576 mult_36 auto 43.7 MiB 5.40 18368 60116 11930 38131 10055 81.2 MiB 1.56 0.02 10.5845 -1178.84 -10.5845 10.5845 1.50 0.00810344 0.0073282 0.63031 0.566185 66 27293 26 1.58331e+07 8.51783e+06 2.33135e+06 4047.49 10.14 2.66231 2.36457 65030 601923 -1 23810 20 12167 13847 1609632 377723 9.57737 9.57737 -1575.72 -9.57737 0 0 2.91907e+06 5067.82 0.83 0.75 0.58 -1 -1 0.83 0.371055 0.333013 1576 1245 950 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_52.v common 39.44 vpr 81.29 MiB 0.31 17444 -1 -1 1 0.66 -1 -1 39540 -1 -1 215 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83244 22 19 4598 3308 1 2717 270 24 24 576 mult_36 auto 43.9 MiB 6.37 18189 61310 12677 40484 8149 81.3 MiB 1.72 0.03 10.1072 -1112.57 -10.1072 10.1072 1.50 0.0101785 0.00922809 0.672075 0.603798 58 33606 48 1.58331e+07 8.57421e+06 2.08734e+06 3623.85 22.48 2.99387 2.64132 62154 534210 -1 25197 24 15147 17510 2264940 516528 9.45177 9.45177 -1662.09 -9.45177 0 0 2.61600e+06 4541.67 0.75 0.98 0.38 -1 -1 0.75 0.434057 0.386885 1605 1264 969 19 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt index ea465de10bd..b1d6bdc1f04 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt @@ -1,221 +1,221 @@ - 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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.20 vpr 62.62 MiB 0.01 6188 -1 -1 1 0.06 -1 -1 35296 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64124 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 24.3 MiB 0.01 50 298 76 216 6 62.6 MiB 0.00 0.00 0.701249 -6.72129 -0.701249 0.701249 0.91 4.934e-05 4.3388e-05 0.00125039 0.00110644 20 104 9 6.55708e+06 24110 394039. 1363.46 0.56 0.00381221 0.00338002 19870 87366 -1 112 6 35 35 1740 568 0.701248 0.701248 -7.34893 -0.701248 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.00200878 0.00183244 10 4 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.19 vpr 62.64 MiB 0.01 6016 -1 -1 2 0.06 -1 -1 35964 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64148 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 24.3 MiB 0.01 72 396 78 308 10 62.6 MiB 0.01 0.00 0.900447 -9.59862 -0.900447 0.900447 0.91 6.4942e-05 5.7912e-05 0.00158369 0.00142093 20 169 8 6.55708e+06 24110 394039. 1363.46 0.56 0.00440084 0.00393013 19870 87366 -1 180 11 79 85 5636 1605 0.819447 0.819447 -10.7972 -0.819447 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.00277401 0.00246236 13 6 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 4.58 vpr 62.79 MiB 0.01 6244 -1 -1 2 0.06 -1 -1 35444 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64296 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 24.4 MiB 0.01 72 444 121 288 35 62.8 MiB 0.01 0.00 0.900447 -12.0151 -0.900447 0.900447 0.91 7.49e-05 6.7232e-05 0.00171186 0.00153646 22 204 15 6.55708e+06 24110 420624. 1455.45 1.94 0.0170555 0.0141246 20158 92377 -1 147 12 75 76 3884 1338 0.819447 0.819447 -12.0716 -0.819447 0 0 500653. 1732.36 0.22 0.01 0.08 -1 -1 0.22 0.00313664 0.00277731 16 7 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 4.06 vpr 62.61 MiB 0.01 6024 -1 -1 3 0.06 -1 -1 35860 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64112 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 24.2 MiB 0.01 91 855 163 648 44 62.6 MiB 0.01 0.00 1.58811 -16.2873 -1.58811 1.58811 0.90 8.9025e-05 7.9917e-05 0.00280932 0.00252139 24 292 10 6.55708e+06 36165 448715. 1552.65 1.37 0.0155051 0.0130859 20734 103517 -1 245 9 107 122 6698 2061 1.50711 1.50711 -17.293 -1.50711 0 0 554710. 1919.41 0.23 0.01 0.11 -1 -1 0.23 0.00326566 0.0029248 19 9 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 4.72 vpr 62.85 MiB 0.01 6268 -1 -1 3 0.06 -1 -1 35512 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64356 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 24.4 MiB 0.01 99 1014 271 604 139 62.8 MiB 0.01 0.00 1.23151 -17.4525 -1.23151 1.23151 0.88 0.000102266 9.2036e-05 0.00320803 0.00288346 26 369 17 6.55708e+06 36165 477104. 1650.88 2.10 0.0297308 0.024652 21022 109990 -1 271 8 156 177 8338 2942 1.14085 1.14085 -18.4888 -1.14085 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00331748 0.0029772 23 10 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.28 vpr 62.70 MiB 0.01 6044 -1 -1 3 0.06 -1 -1 35588 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64204 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 24.2 MiB 0.06 161 628 145 480 3 62.7 MiB 0.01 0.00 1.70831 -22.396 -1.70831 1.70831 0.93 0.000119892 0.000107789 0.00223036 0.0020268 20 378 18 6.55708e+06 48220 394039. 1363.46 0.57 0.00837438 0.00735488 19870 87366 -1 340 11 159 175 9179 2675 1.70831 1.70831 -22.6732 -1.70831 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.00447442 0.00394897 25 14 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.47 vpr 62.84 MiB 0.01 6228 -1 -1 4 0.07 -1 -1 35472 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64352 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 24.3 MiB 0.01 142 1229 224 959 46 62.8 MiB 0.01 0.00 1.58811 -24.8435 -1.58811 1.58811 0.93 0.000127937 0.000115116 0.00364293 0.0032979 26 456 17 6.55708e+06 48220 477104. 1650.88 0.72 0.0200252 0.0169994 21022 109990 -1 395 13 207 273 13090 4148 1.59011 1.59011 -26.0108 -1.59011 0 0 585099. 2024.56 0.25 0.01 0.11 -1 -1 0.25 0.00497309 0.00441198 29 13 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.25 vpr 63.10 MiB 0.01 6060 -1 -1 4 0.07 -1 -1 35656 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64612 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 24.6 MiB 0.03 252 2965 1025 1339 601 63.1 MiB 0.02 0.00 1.68077 -28.9367 -1.68077 1.68077 0.89 0.000144046 0.000130305 0.00783564 0.0071037 24 601 15 6.55708e+06 60275 448715. 1552.65 1.48 0.031398 0.0269504 20734 103517 -1 553 9 193 247 17801 4504 1.46791 1.46791 -30.7514 -1.46791 0 0 554710. 1919.41 0.24 0.01 0.10 -1 -1 0.24 0.00479182 0.00430608 33 17 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.63 vpr 62.82 MiB 0.01 6216 -1 -1 5 0.07 -1 -1 35940 -1 -1 5 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64328 23 12 73 85 1 58 40 17 17 289 -1 unnamed_device 24.3 MiB 0.02 278 3032 1045 1570 417 62.8 MiB 0.02 0.00 2.03736 -35.0243 -2.03736 2.03736 0.91 0.000159958 0.000145351 0.00755148 0.00685068 26 654 16 6.55708e+06 60275 477104. 1650.88 0.79 0.0271315 0.0234326 21022 109990 -1 587 14 251 363 22402 6027 1.95636 1.95636 -36.485 -1.95636 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00600589 0.00532512 35 16 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.89 vpr 62.91 MiB 0.01 6260 -1 -1 5 0.07 -1 -1 36140 -1 -1 6 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64416 25 13 82 95 1 66 44 17 17 289 -1 unnamed_device 24.3 MiB 0.02 261 1738 345 1379 14 62.9 MiB 0.01 0.00 2.11777 -37.2851 -2.11777 2.11777 0.91 0.000175357 0.00015859 0.00469779 0.0042669 26 735 12 6.55708e+06 72330 477104. 1650.88 2.06 0.0473663 0.0403163 21022 109990 -1 622 15 260 355 32050 8929 1.9049 1.9049 -38.6675 -1.9049 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00666652 0.00586699 40 20 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 4.40 vpr 62.90 MiB 0.01 6348 -1 -1 5 0.07 -1 -1 36164 -1 -1 7 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64412 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 24.6 MiB 0.02 361 1875 344 1504 27 62.9 MiB 0.01 0.00 1.70831 -38.0204 -1.70831 1.70831 0.91 0.000208712 0.000190757 0.00477525 0.00436761 26 813 14 6.55708e+06 84385 477104. 1650.88 1.59 0.0477638 0.0406076 21022 109990 -1 680 10 233 344 20207 5249 1.61564 1.61564 -40.3003 -1.61564 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00622713 0.00559873 42 24 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.45 vpr 63.11 MiB 0.01 6232 -1 -1 6 0.07 -1 -1 35728 -1 -1 7 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64620 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 24.8 MiB 0.04 444 2495 549 1721 225 63.1 MiB 0.02 0.00 2.39596 -47.6713 -2.39596 2.39596 0.88 0.000174087 0.000157152 0.00552331 0.00499946 26 899 11 6.55708e+06 84385 477104. 1650.88 0.76 0.0283616 0.0244167 21022 109990 -1 825 13 237 341 23370 5645 2.2243 2.2243 -49.3822 -2.2243 0 0 585099. 2024.56 0.25 0.02 0.10 -1 -1 0.25 0.00668054 0.00593496 45 23 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 5.48 vpr 63.18 MiB 0.01 6260 -1 -1 6 0.07 -1 -1 35952 -1 -1 9 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64692 31 16 104 120 1 80 56 17 17 289 -1 unnamed_device 24.8 MiB 0.14 378 5941 1874 2717 1350 63.2 MiB 0.03 0.00 2.19676 -46.103 -2.19676 2.19676 0.95 0.000221163 0.000201131 0.0129907 0.0118145 28 960 15 6.55708e+06 108495 500653. 1732.36 2.50 0.0569322 0.049 21310 115450 -1 798 10 326 485 26082 6953 2.07656 2.07656 -48.0486 -2.07656 0 0 612192. 2118.31 0.27 0.02 0.11 -1 -1 0.27 0.00684689 0.00614994 50 27 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 5.58 vpr 62.88 MiB 0.01 6144 -1 -1 7 0.07 -1 -1 36096 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64392 33 17 108 125 1 86 57 17 17 289 -1 unnamed_device 24.5 MiB 0.02 565 6270 1776 3822 672 62.9 MiB 0.04 0.00 3.08362 -63.5746 -3.08362 3.08362 0.94 0.000219137 0.000198917 0.0135617 0.012313 30 1073 27 6.55708e+06 84385 526063. 1820.29 2.70 0.0789234 0.067897 21886 126133 -1 991 13 323 474 28238 6909 2.84322 2.84322 -63.1401 -2.84322 0 0 666494. 2306.21 0.29 0.02 0.12 -1 -1 0.29 0.00801713 0.00715334 51 26 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.91 vpr 63.39 MiB 0.01 6176 -1 -1 7 0.08 -1 -1 35892 -1 -1 8 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64916 37 19 127 146 1 101 64 17 17 289 -1 unnamed_device 24.9 MiB 0.22 554 5144 1328 3388 428 63.4 MiB 0.03 0.00 2.78339 -65.1521 -2.78339 2.78339 0.96 0.000259737 0.000236197 0.0116574 0.0106263 26 1231 13 6.55708e+06 96440 477104. 1650.88 0.82 0.0420108 0.0367388 21022 109990 -1 1168 13 431 609 42782 10278 2.76622 2.76622 -70.7762 -2.76622 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.0090704 0.0081078 59 35 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.87 vpr 63.41 MiB 0.01 6208 -1 -1 8 0.09 -1 -1 35580 -1 -1 10 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64932 41 21 139 160 1 109 72 17 17 289 -1 unnamed_device 24.9 MiB 0.18 447 7224 1591 4752 881 63.4 MiB 0.04 0.00 3.28422 -74.213 -3.28422 3.28422 0.92 0.000289001 0.000263536 0.0150102 0.0136929 26 1141 11 6.55708e+06 120550 477104. 1650.88 0.86 0.0476491 0.041851 21022 109990 -1 951 13 375 502 29568 8047 2.92362 2.92362 -72.9932 -2.92362 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.00982663 0.00878565 67 37 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 5.03 vpr 63.32 MiB 0.01 6276 -1 -1 9 0.08 -1 -1 35992 -1 -1 11 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64836 45 23 152 175 1 124 79 17 17 289 -1 unnamed_device 24.7 MiB 0.05 733 10219 2597 6052 1570 63.3 MiB 0.05 0.00 3.23076 -86.0719 -3.23076 3.23076 0.92 0.000301393 0.000272492 0.0195763 0.0177577 26 1510 16 6.55708e+06 132605 477104. 1650.88 2.10 0.0817148 0.0713133 21022 109990 -1 1351 18 454 634 41713 9806 3.2191 3.2191 -90.5107 -3.2191 0 0 585099. 2024.56 0.25 0.03 0.11 -1 -1 0.25 0.012793 0.0113357 74 40 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 5.79 vpr 63.50 MiB 0.01 6388 -1 -1 10 0.08 -1 -1 35872 -1 -1 11 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65028 49 25 165 190 1 131 85 17 17 289 -1 unnamed_device 25.0 MiB 0.29 533 10873 3248 5447 2178 63.5 MiB 0.06 0.00 3.72533 -95.3298 -3.72533 3.72533 0.95 0.00035263 0.000323229 0.0208282 0.0189843 28 1462 29 6.55708e+06 132605 500653. 1732.36 2.55 0.125623 0.109521 21310 115450 -1 1246 13 499 651 40056 11016 3.58796 3.58796 -98.146 -3.58796 0 0 612192. 2118.31 0.27 0.03 0.11 -1 -1 0.27 0.0112562 0.0101001 79 43 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 6.08 vpr 63.92 MiB 0.01 6520 -1 -1 11 0.09 -1 -1 36448 -1 -1 14 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65452 57 29 199 228 1 157 100 17 17 289 -1 unnamed_device 25.5 MiB 0.26 728 11468 2977 6953 1538 63.9 MiB 0.06 0.00 4.49954 -124.266 -4.49954 4.49954 0.95 0.000378732 0.000344119 0.0211341 0.0192402 30 1670 37 6.55708e+06 168770 526063. 1820.29 2.87 0.130889 0.113889 21886 126133 -1 1428 13 558 793 44398 12038 4.09974 4.09974 -124.269 -4.09974 0 0 666494. 2306.21 0.28 0.03 0.13 -1 -1 0.28 0.0136095 0.0122457 93 57 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 6.69 vpr 64.04 MiB 0.01 6400 -1 -1 13 0.10 -1 -1 36144 -1 -1 15 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65572 65 33 224 257 1 179 113 17 17 289 -1 unnamed_device 25.5 MiB 0.50 1038 16493 5318 8597 2578 64.0 MiB 0.08 0.00 4.53259 -150.281 -4.53259 4.53259 0.95 0.000443643 0.000404671 0.0280208 0.0255381 28 2156 19 6.55708e+06 180825 500653. 1732.36 3.16 0.168309 0.147404 21310 115450 -1 1901 12 641 845 55420 13951 4.42276 4.42276 -153.916 -4.42276 0 0 612192. 2118.31 0.26 0.03 0.12 -1 -1 0.26 0.0140709 0.0126374 107 62 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.69 vpr 64.91 MiB 0.02 6684 -1 -1 19 0.11 -1 -1 36152 -1 -1 24 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 97 49 340 389 1 265 170 17 17 289 -1 unnamed_device 26.3 MiB 0.34 1334 34950 10414 20834 3702 64.9 MiB 0.15 0.00 7.26745 -288.28 -7.26745 7.26745 0.95 0.00063359 0.000575562 0.0496981 0.045154 28 3106 20 6.55708e+06 289320 500653. 1732.36 1.21 0.136388 0.121782 21310 115450 -1 2712 12 991 1362 97304 24271 6.78665 6.78665 -281.535 -6.78665 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0194669 0.0176509 160 98 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 8.28 vpr 65.41 MiB 0.02 7008 -1 -1 26 0.14 -1 -1 36344 -1 -1 31 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 129 65 454 519 1 354 225 17 17 289 -1 unnamed_device 26.6 MiB 0.20 1718 54945 15410 32877 6658 65.4 MiB 0.22 0.00 9.81484 -466.455 -9.81484 9.81484 0.96 0.000717167 0.000654163 0.0704837 0.0641274 44 3610 38 6.55708e+06 373705 742403. 2568.87 4.46 0.387021 0.344732 24478 177802 -1 3026 36 1208 1726 246539 132031 9.21384 9.21384 -441.046 -9.21384 0 0 937218. 3242.97 0.41 0.15 0.18 -1 -1 0.41 0.0603243 0.0540948 213 132 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.16 abc 32.47 MiB 0.01 6444 -1 -1 1 0.02 -1 -1 33248 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24908 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.16 abc 32.78 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 33564 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24960 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.16 abc 32.82 MiB 0.01 6216 -1 -1 1 0.02 -1 -1 33612 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25416 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.17 abc 32.55 MiB 0.01 6212 -1 -1 1 0.02 -1 -1 33328 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25316 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.16 abc 32.85 MiB 0.01 6128 -1 -1 1 0.02 -1 -1 33636 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25052 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.17 abc 32.61 MiB 0.01 6152 -1 -1 1 0.02 -1 -1 33396 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25156 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.17 abc 32.86 MiB 0.01 6324 -1 -1 1 0.02 -1 -1 33648 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25336 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.18 abc 33.00 MiB 0.01 6444 -1 -1 1 0.02 -1 -1 33796 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25100 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.17 abc 32.83 MiB 0.02 6508 -1 -1 1 0.02 -1 -1 33616 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25188 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.17 abc 32.88 MiB 0.01 6336 -1 -1 1 0.02 -1 -1 33668 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25220 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.17 abc 32.71 MiB 0.01 6364 -1 -1 1 0.02 -1 -1 33492 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24956 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.18 abc 32.73 MiB 0.01 6256 -1 -1 1 0.02 -1 -1 33512 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25424 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.17 abc 32.98 MiB 0.01 6260 -1 -1 1 0.02 -1 -1 33772 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25464 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.18 abc 32.88 MiB 0.01 6412 -1 -1 1 0.02 -1 -1 33668 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25296 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.18 abc 33.12 MiB 0.01 6408 -1 -1 1 0.02 -1 -1 33920 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25368 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.18 abc 32.99 MiB 0.02 6328 -1 -1 1 0.03 -1 -1 33784 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25256 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.18 abc 33.01 MiB 0.01 6552 -1 -1 1 0.03 -1 -1 33804 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25420 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.23 abc 33.07 MiB 0.01 6316 -1 -1 1 0.03 -1 -1 33864 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25700 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 7 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.21 abc 33.18 MiB 0.01 6660 -1 -1 1 0.03 -1 -1 33980 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25616 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 8 8 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.20 abc 33.16 MiB 0.01 6684 -1 -1 1 0.03 -1 -1 33960 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25460 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.20 abc 33.20 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 33992 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25824 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 13 13 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.22 abc 33.08 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33872 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 26304 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 17 17 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.16 abc 32.83 MiB 0.01 6332 -1 -1 1 0.02 -1 -1 33616 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25044 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.17 abc 32.63 MiB 0.01 6204 -1 -1 1 0.02 -1 -1 33412 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24828 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.16 abc 32.81 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 33596 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24956 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.17 abc 32.74 MiB 0.01 6208 -1 -1 1 0.02 -1 -1 33528 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24980 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.17 abc 32.86 MiB 0.01 6184 -1 -1 1 0.02 -1 -1 33648 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25008 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.17 abc 32.93 MiB 0.01 6264 -1 -1 1 0.02 -1 -1 33724 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25080 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.17 abc 32.68 MiB 0.01 6188 -1 -1 1 0.02 -1 -1 33464 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25116 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.17 abc 32.82 MiB 0.01 6500 -1 -1 1 0.02 -1 -1 33604 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24972 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.17 abc 32.80 MiB 0.01 6224 -1 -1 1 0.02 -1 -1 33592 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25076 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.17 abc 32.67 MiB 0.01 6456 -1 -1 1 0.02 -1 -1 33452 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25084 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.17 abc 33.00 MiB 0.01 6216 -1 -1 1 0.02 -1 -1 33792 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25108 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.17 abc 32.91 MiB 0.01 6496 -1 -1 1 0.02 -1 -1 33704 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25248 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.18 abc 33.13 MiB 0.01 6208 -1 -1 1 0.02 -1 -1 33928 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25188 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.18 abc 32.87 MiB 0.01 6280 -1 -1 1 0.02 -1 -1 33656 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25228 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.17 abc 33.13 MiB 0.01 6248 -1 -1 1 0.02 -1 -1 33928 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25064 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.18 abc 32.97 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33760 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25376 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.18 abc 33.16 MiB 0.01 6564 -1 -1 1 0.02 -1 -1 33952 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25136 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.18 abc 33.00 MiB 0.01 6360 -1 -1 1 0.03 -1 -1 33788 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25504 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 7 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.18 abc 33.12 MiB 0.02 6640 -1 -1 1 0.03 -1 -1 33916 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25240 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 8 8 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.19 abc 33.03 MiB 0.02 6472 -1 -1 1 0.03 -1 -1 33820 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25240 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.20 abc 33.23 MiB 0.02 6732 -1 -1 1 0.03 -1 -1 34028 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25672 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 13 13 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.22 abc 33.23 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34032 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25912 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 17 17 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.01 vpr 63.07 MiB 0.01 6220 -1 -1 1 0.02 -1 -1 33580 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64584 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 24.6 MiB 0.01 56 223 48 166 9 63.1 MiB 0.00 0.00 0.770048 -7.07635 -0.770048 0.770048 0.88 4.4709e-05 3.9022e-05 0.00098015 0.000869806 20 108 3 6.64007e+06 25116 394039. 1363.46 0.53 0.00305549 0.00278375 20530 87850 -1 105 4 20 20 1195 324 0.649848 0.649848 -7.37773 -0.649848 0 0 477104. 1650.88 0.21 0.00 0.08 -1 -1 0.21 0.00179294 0.00166283 10 -1 5 5 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.18 vpr 63.11 MiB 0.01 6148 -1 -1 1 0.02 -1 -1 33448 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64620 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.7 MiB 0.01 47 376 71 284 21 63.1 MiB 0.00 0.00 0.792048 -9.53833 -0.792048 0.792048 0.92 6.5672e-05 5.9123e-05 0.00152974 0.00137185 20 146 13 6.64007e+06 25116 394039. 1363.46 0.56 0.00496404 0.00438659 20530 87850 -1 137 13 66 66 4050 1285 1.03245 1.03245 -11.1696 -1.03245 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.00292897 0.00260144 13 -1 6 6 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 4.31 vpr 63.09 MiB 0.01 6220 -1 -1 1 0.02 -1 -1 33452 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64608 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 24.7 MiB 0.01 63 419 85 325 9 63.1 MiB 0.01 0.00 0.803048 -11.7113 -0.803048 0.803048 0.93 8.1511e-05 7.3727e-05 0.00168218 0.0015172 22 240 11 6.64007e+06 25116 420624. 1455.45 1.63 0.015154 0.0126563 20818 92861 -1 206 17 156 156 7240 2327 0.923248 0.923248 -13.6688 -0.923248 0 0 500653. 1732.36 0.24 0.01 0.09 -1 -1 0.24 0.00402613 0.00350417 16 -1 7 7 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.42 vpr 62.84 MiB 0.01 6144 -1 -1 1 0.02 -1 -1 33404 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64348 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 24.4 MiB 0.02 113 727 127 584 16 62.8 MiB 0.01 0.00 0.825048 -14.4294 -0.825048 0.825048 0.91 8.9108e-05 8.058e-05 0.00243738 0.00220449 26 251 10 6.64007e+06 37674 477104. 1650.88 0.71 0.0128257 0.0109201 21682 110474 -1 240 10 97 97 6879 1834 0.803048 0.803048 -15.3843 -0.803048 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.00332747 0.00299228 19 -1 8 8 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.45 vpr 63.33 MiB 0.01 6272 -1 -1 1 0.02 -1 -1 33448 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64852 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 24.8 MiB 0.02 103 938 201 719 18 63.3 MiB 0.01 0.00 1.18536 -16.7279 -1.18536 1.18536 0.93 9.6372e-05 8.665e-05 0.00288071 0.00260335 26 293 17 6.64007e+06 37674 477104. 1650.88 0.71 0.015755 0.0133649 21682 110474 -1 254 12 171 171 8418 2727 1.03045 1.03045 -18.2904 -1.03045 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00371645 0.00331048 22 -1 9 9 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.42 vpr 63.30 MiB 0.01 6228 -1 -1 1 0.02 -1 -1 33664 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64820 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 24.7 MiB 0.02 174 858 170 673 15 63.3 MiB 0.01 0.00 1.19636 -20.4292 -1.19636 1.19636 0.93 0.000119387 0.00010893 0.00264547 0.0024143 26 363 14 6.64007e+06 50232 477104. 1650.88 0.71 0.016684 0.0142464 21682 110474 -1 334 15 138 138 7880 2232 0.921248 0.921248 -21.4136 -0.921248 0 0 585099. 2024.56 0.24 0.01 0.09 -1 -1 0.24 0.00454086 0.00399754 25 -1 10 10 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.84 vpr 63.36 MiB 0.01 6288 -1 -1 1 0.02 -1 -1 33340 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64884 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 24.8 MiB 0.03 216 1021 207 713 101 63.4 MiB 0.01 0.00 1.20736 -23.977 -1.20736 1.20736 0.90 0.000122368 0.000110904 0.00296234 0.00269754 26 453 11 6.64007e+06 50232 477104. 1650.88 2.13 0.0355347 0.0297649 21682 110474 -1 431 11 161 161 12008 3035 0.976248 0.976248 -25.6494 -0.976248 0 0 585099. 2024.56 0.25 0.01 0.11 -1 -1 0.25 0.00445206 0.00395443 28 -1 11 11 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 5.19 vpr 63.23 MiB 0.01 6424 -1 -1 1 0.02 -1 -1 33420 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64748 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 24.7 MiB 0.03 214 1623 338 1262 23 63.2 MiB 0.01 0.00 1.21836 -25.661 -1.21836 1.21836 0.88 0.000132002 0.00011897 0.004141 0.00376597 28 428 8 6.64007e+06 62790 500653. 1732.36 2.46 0.0282587 0.0240303 21970 115934 -1 413 6 121 121 8229 2288 0.867048 0.867048 -26.2925 -0.867048 0 0 612192. 2118.31 0.26 0.01 0.11 -1 -1 0.26 0.00375172 0.00341034 31 -1 12 12 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 4.29 vpr 63.21 MiB 0.01 6336 -1 -1 1 0.02 -1 -1 33348 -1 -1 5 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64724 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 24.7 MiB 0.03 261 1536 299 1189 48 63.2 MiB 0.01 0.00 1.22936 -29.0547 -1.22936 1.22936 0.90 0.000149104 0.000135351 0.00402643 0.00366104 22 564 12 6.64007e+06 62790 420624. 1455.45 1.60 0.0269977 0.0229688 20818 92861 -1 503 9 205 205 13600 3834 0.998248 0.998248 -31.0303 -0.998248 0 0 500653. 1732.36 0.21 0.01 0.08 -1 -1 0.21 0.00441116 0.00394672 34 -1 13 13 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.67 vpr 63.48 MiB 0.01 6164 -1 -1 1 0.02 -1 -1 33440 -1 -1 5 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65000 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 24.9 MiB 0.02 303 1618 294 1276 48 63.5 MiB 0.01 0.00 1.24036 -31.9481 -1.24036 1.24036 0.94 0.000153207 0.000138652 0.004112 0.00374957 26 657 15 6.64007e+06 62790 477104. 1650.88 1.92 0.0418531 0.0354291 21682 110474 -1 632 14 312 312 23908 5843 1.09645 1.09645 -35.1845 -1.09645 0 0 585099. 2024.56 0.24 0.02 0.10 -1 -1 0.24 0.00585893 0.00516795 37 -1 14 14 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.53 vpr 63.55 MiB 0.01 6316 -1 -1 1 0.02 -1 -1 33504 -1 -1 6 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65080 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 24.9 MiB 0.02 324 2231 466 1582 183 63.6 MiB 0.02 0.00 1.25136 -34.9134 -1.25136 1.25136 0.95 0.000167333 0.000152515 0.0052887 0.00483893 26 693 15 6.64007e+06 75348 477104. 1650.88 0.73 0.0254323 0.0220131 21682 110474 -1 628 11 195 195 13214 3449 1.06545 1.06545 -36.3397 -1.06545 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.00545302 0.00487878 40 -1 15 15 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.70 vpr 63.59 MiB 0.01 6476 -1 -1 1 0.02 -1 -1 33892 -1 -1 6 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65120 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 25.3 MiB 0.02 332 2626 448 2137 41 63.6 MiB 0.02 0.00 1.26236 -36.933 -1.26236 1.26236 0.94 0.000193607 0.000176705 0.00588391 0.00537135 32 698 17 6.64007e+06 75348 554710. 1919.41 0.85 0.0277568 0.0239755 22834 132086 -1 675 16 376 376 26032 6628 0.998248 0.998248 -39.156 -0.998248 0 0 701300. 2426.64 0.30 0.02 0.12 -1 -1 0.30 0.00719807 0.00635794 43 -1 16 16 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 4.63 vpr 63.33 MiB 0.01 6232 -1 -1 1 0.02 -1 -1 34000 -1 -1 7 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64848 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 25.0 MiB 0.02 430 4134 883 2967 284 63.3 MiB 0.03 0.00 1.62267 -42.2033 -1.62267 1.62267 0.93 0.000189362 0.000172497 0.00864699 0.00788076 26 828 14 6.64007e+06 87906 477104. 1650.88 1.85 0.0566623 0.048472 21682 110474 -1 815 14 347 347 24515 6115 1.19345 1.19345 -44.9658 -1.19345 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00694294 0.00615243 46 -1 17 17 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.44 vpr 63.68 MiB 0.01 6384 -1 -1 1 0.02 -1 -1 33732 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65208 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 25.3 MiB 0.03 400 5507 1293 3991 223 63.7 MiB 0.04 0.00 1.63367 -44.5064 -1.63367 1.63367 0.89 0.0001971 0.0001778 0.0110831 0.0100984 26 860 24 6.64007e+06 87906 477104. 1650.88 0.74 0.0362001 0.0314403 21682 110474 -1 778 14 336 336 24186 6285 1.20445 1.20445 -47.1452 -1.20445 0 0 585099. 2024.56 0.25 0.02 0.10 -1 -1 0.25 0.00681078 0.00603341 49 -1 18 18 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.38 vpr 63.67 MiB 0.01 6472 -1 -1 1 0.03 -1 -1 33820 -1 -1 8 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65200 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 25.2 MiB 0.03 467 4001 820 3044 137 63.7 MiB 0.03 0.00 1.65567 -51.2944 -1.65567 1.65567 0.91 0.000220469 0.000201189 0.00797115 0.00728467 26 1031 13 6.64007e+06 100464 477104. 1650.88 1.59 0.0583748 0.0501088 21682 110474 -1 920 14 399 399 32346 7633 1.17145 1.17145 -51.7587 -1.17145 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00810206 0.00717777 55 -1 20 20 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.73 vpr 63.84 MiB 0.01 6304 -1 -1 1 0.03 -1 -1 33984 -1 -1 8 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65372 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 25.3 MiB 0.03 551 4966 1056 3737 173 63.8 MiB 0.03 0.00 1.67767 -59.443 -1.67767 1.67767 0.90 0.000244726 0.000221369 0.00976864 0.00892511 32 1113 15 6.64007e+06 100464 554710. 1919.41 0.85 0.0396035 0.0346295 22834 132086 -1 998 16 489 489 36790 8730 1.19345 1.19345 -57.8876 -1.19345 0 0 701300. 2426.64 0.28 0.03 0.13 -1 -1 0.28 0.00947379 0.00835677 61 -1 22 22 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.70 vpr 63.77 MiB 0.01 6584 -1 -1 1 0.03 -1 -1 33928 -1 -1 9 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65296 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 25.3 MiB 0.03 584 6760 1544 5011 205 63.8 MiB 0.04 0.00 1.69967 -63.9386 -1.69967 1.69967 0.92 0.000286836 0.000263466 0.0125466 0.0114894 28 1207 14 6.64007e+06 113022 500653. 1732.36 0.81 0.0440336 0.038696 21970 115934 -1 1103 13 524 524 42823 10298 1.21545 1.21545 -63.0116 -1.21545 0 0 612192. 2118.31 0.26 0.03 0.11 -1 -1 0.26 0.00938127 0.00833936 67 -1 24 24 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.87 vpr 63.84 MiB 0.01 6532 -1 -1 1 0.03 -1 -1 33988 -1 -1 10 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65376 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 25.4 MiB 0.03 754 12711 4339 7261 1111 63.8 MiB 0.06 0.00 2.07098 -75.5183 -2.07098 2.07098 0.94 0.00029178 0.000265804 0.0214227 0.0195411 30 1323 12 6.64007e+06 125580 526063. 1820.29 1.95 0.0868691 0.0759516 22546 126617 -1 1203 12 478 478 35824 8550 1.17025 1.17025 -69.9637 -1.17025 0 0 666494. 2306.21 0.28 0.03 0.13 -1 -1 0.28 0.00878316 0.00787116 73 -1 26 26 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.75 vpr 63.60 MiB 0.01 6636 -1 -1 1 0.03 -1 -1 33612 -1 -1 11 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65124 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 25.3 MiB 0.04 781 12973 3128 9205 640 63.6 MiB 0.06 0.00 2.11498 -88.6474 -2.11498 2.11498 0.89 0.000349457 0.000318236 0.0196779 0.0179586 28 1628 18 6.64007e+06 138138 500653. 1732.36 0.87 0.0608205 0.0535902 21970 115934 -1 1457 13 643 643 56575 13066 1.31365 1.31365 -83.018 -1.31365 0 0 612192. 2118.31 0.28 0.03 0.12 -1 -1 0.28 0.0110266 0.0098475 85 -1 30 30 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 5.96 vpr 64.11 MiB 0.02 6448 -1 -1 1 0.03 -1 -1 33744 -1 -1 13 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65652 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 25.7 MiB 0.04 1016 17401 7183 10118 100 64.1 MiB 0.09 0.00 2.50829 -106.175 -2.50829 2.50829 0.94 0.000385264 0.000351777 0.0269237 0.0246451 32 1842 16 6.64007e+06 163254 554710. 1919.41 2.94 0.133846 0.117253 22834 132086 -1 1697 11 665 665 61013 13904 1.30025 1.30025 -94.3297 -1.30025 0 0 701300. 2426.64 0.30 0.03 0.13 -1 -1 0.30 0.0113887 0.0102465 97 -1 34 34 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.14 vpr 65.15 MiB 0.02 6684 -1 -1 1 0.03 -1 -1 34044 -1 -1 19 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 26.4 MiB 0.06 1599 34969 13035 19621 2313 65.1 MiB 0.18 0.00 3.38291 -183.275 -3.38291 3.38291 0.92 0.000563992 0.000517736 0.0460072 0.0421305 30 2868 28 6.64007e+06 238602 526063. 1820.29 1.00 0.123948 0.11089 22546 126617 -1 2549 16 956 956 78864 17504 1.53945 1.53945 -150.446 -1.53945 0 0 666494. 2306.21 0.29 0.05 0.13 -1 -1 0.29 0.0199647 0.0178547 145 -1 50 50 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.51 vpr 65.69 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 34296 -1 -1 25 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67264 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 26.8 MiB 0.10 1778 56234 21152 30749 4333 65.7 MiB 0.29 0.01 4.25753 -263.048 -4.25753 4.25753 0.92 0.000755887 0.000690492 0.0674384 0.0618433 32 3683 17 6.64007e+06 313950 554710. 1919.41 1.06 0.159393 0.143854 22834 132086 -1 3189 20 1386 1386 123576 28973 1.73225 1.73225 -198.225 -1.73225 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0314703 0.0283717 193 -1 66 66 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.17 vpr 62.39 MiB 0.01 6340 -1 -1 1 0.02 -1 -1 33324 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63892 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 23.9 MiB 0.01 53 208 48 152 8 62.4 MiB 0.00 0.00 0.770048 -7.13557 -0.770048 0.770048 0.92 5.1123e-05 4.5385e-05 0.00103219 0.000921968 20 105 7 6.65987e+06 25356 394039. 1363.46 0.54 0.00342455 0.00307341 20530 87850 -1 101 4 27 27 1478 468 0.649848 0.649848 -7.25753 -0.649848 0 0 477104. 1650.88 0.20 0.00 0.09 -1 -1 0.20 0.00189617 0.00176584 10 -1 5 5 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.17 vpr 62.43 MiB 0.01 6284 -1 -1 1 0.02 -1 -1 33420 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63932 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.0 MiB 0.01 48 356 62 287 7 62.4 MiB 0.01 0.00 0.792048 -9.65853 -0.792048 0.792048 0.92 6.427e-05 5.7611e-05 0.00150894 0.00135852 20 137 8 6.65987e+06 25356 394039. 1363.46 0.55 0.00422509 0.0037915 20530 87850 -1 133 7 56 56 3615 1157 0.901248 0.901248 -10.5436 -0.901248 0 0 477104. 1650.88 0.20 0.01 0.09 -1 -1 0.20 0.00237381 0.00215871 13 -1 6 6 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 4.25 vpr 62.78 MiB 0.01 6172 -1 -1 1 0.02 -1 -1 33400 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64284 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 24.3 MiB 0.01 67 419 80 331 8 62.8 MiB 0.01 0.00 0.803048 -11.78 -0.803048 0.803048 0.92 7.275e-05 6.5734e-05 0.0017297 0.00157043 22 232 11 6.65987e+06 25356 420624. 1455.45 1.61 0.0146338 0.0122211 20818 92861 -1 208 8 97 97 4971 1586 0.912248 0.912248 -13.6328 -0.912248 0 0 500653. 1732.36 0.23 0.01 0.09 -1 -1 0.23 0.00299225 0.00271506 16 -1 7 7 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.10 vpr 62.79 MiB 0.01 6400 -1 -1 1 0.02 -1 -1 33616 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64300 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 24.3 MiB 0.01 108 791 160 615 16 62.8 MiB 0.01 0.00 0.825048 -14.3383 -0.825048 0.825048 0.90 7.9073e-05 7.0629e-05 0.00246799 0.00221887 20 314 13 6.65987e+06 38034 394039. 1363.46 0.54 0.00644843 0.00570267 20530 87850 -1 289 16 188 188 12207 3416 1.09259 1.09259 -17.4602 -1.09259 0 0 477104. 1650.88 0.21 0.01 0.08 -1 -1 0.21 0.00412369 0.00360601 19 -1 8 8 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.41 vpr 62.91 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33512 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64420 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 24.4 MiB 0.01 103 938 195 725 18 62.9 MiB 0.01 0.00 1.18536 -16.8309 -1.18536 1.18536 0.91 9.937e-05 8.9456e-05 0.002902 0.00263199 26 303 10 6.65987e+06 38034 477104. 1650.88 0.73 0.0150671 0.0128553 21682 110474 -1 257 11 179 179 9420 3126 1.08545 1.08545 -19.6524 -1.08545 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00384554 0.00342566 22 -1 9 9 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 5.17 vpr 63.18 MiB 0.01 6320 -1 -1 1 0.02 -1 -1 33636 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64692 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 24.6 MiB 0.01 116 1180 259 878 43 63.2 MiB 0.01 0.00 1.19636 -19.5997 -1.19636 1.19636 0.94 0.000113727 0.000103237 0.00341435 0.00310136 28 339 18 6.65987e+06 50712 500653. 1732.36 2.43 0.0259578 0.0217222 21970 115934 -1 308 9 141 141 7647 2510 0.987248 0.987248 -22.1644 -0.987248 0 0 612192. 2118.31 0.27 0.01 0.11 -1 -1 0.27 0.00373752 0.00334311 25 -1 10 10 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.84 vpr 62.87 MiB 0.01 6412 -1 -1 1 0.02 -1 -1 33664 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64376 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 24.3 MiB 0.01 185 1229 259 944 26 62.9 MiB 0.01 0.00 1.20736 -22.7097 -1.20736 1.20736 0.90 0.000127831 0.000116734 0.00346603 0.00313436 24 419 13 6.65987e+06 50712 448715. 1552.65 2.18 0.0293941 0.0247227 21394 104001 -1 399 11 156 156 10769 2977 0.964189 0.964189 -24.6144 -0.964189 0 0 554710. 1919.41 0.23 0.01 0.10 -1 -1 0.23 0.00440556 0.00393628 28 -1 11 11 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.67 vpr 63.20 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 33400 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64712 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 24.7 MiB 0.01 281 1379 251 1074 54 63.2 MiB 0.01 0.00 1.21836 -28.8147 -1.21836 1.21836 0.93 0.000132917 0.000120373 0.00362474 0.0033004 26 543 11 6.65987e+06 63390 477104. 1650.88 1.94 0.0277601 0.0234171 21682 110474 -1 501 11 209 209 17027 4135 0.876989 0.876989 -28.6537 -0.876989 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00485247 0.00432434 31 -1 12 12 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 4.36 vpr 63.21 MiB 0.01 6092 -1 -1 1 0.02 -1 -1 33724 -1 -1 5 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64724 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 24.7 MiB 0.01 256 1536 305 1173 58 63.2 MiB 0.01 0.00 1.22936 -28.8616 -1.22936 1.22936 0.94 0.000149568 0.000135722 0.00402834 0.00366452 22 571 11 6.65987e+06 63390 420624. 1455.45 1.65 0.0260329 0.0221989 20818 92861 -1 482 12 178 178 11148 3229 0.998248 0.998248 -31.0303 -0.998248 0 0 500653. 1732.36 0.24 0.01 0.09 -1 -1 0.24 0.00538751 0.00478475 34 -1 13 13 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.45 vpr 63.18 MiB 0.01 6316 -1 -1 1 0.02 -1 -1 33728 -1 -1 5 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64700 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 24.6 MiB 0.01 293 2293 540 1476 277 63.2 MiB 0.02 0.00 1.24036 -31.9104 -1.24036 1.24036 0.90 0.00016874 0.000155672 0.00548827 0.00501163 26 625 12 6.65987e+06 63390 477104. 1650.88 0.74 0.024164 0.0208711 21682 110474 -1 601 14 267 267 20803 5353 1.11845 1.11845 -35.1942 -1.11845 0 0 585099. 2024.56 0.24 0.02 0.11 -1 -1 0.24 0.00619609 0.00548674 37 -1 14 14 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 5.27 vpr 63.34 MiB 0.01 6304 -1 -1 1 0.02 -1 -1 33640 -1 -1 6 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64864 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 24.8 MiB 0.02 378 2231 478 1580 173 63.3 MiB 0.02 0.00 1.25136 -36.02 -1.25136 1.25136 0.91 0.00017183 0.000156063 0.00521937 0.0047468 30 680 15 6.65987e+06 76068 526063. 1820.29 2.52 0.0494045 0.0418845 22546 126617 -1 614 13 203 203 14128 3529 0.823989 0.823989 -33.7491 -0.823989 0 0 666494. 2306.21 0.28 0.02 0.12 -1 -1 0.28 0.00615368 0.00547452 40 -1 15 15 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.49 vpr 63.06 MiB 0.01 6236 -1 -1 1 0.02 -1 -1 33928 -1 -1 6 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64572 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 24.7 MiB 0.02 331 2442 412 1993 37 63.1 MiB 0.02 0.00 1.26236 -36.7774 -1.26236 1.26236 0.91 0.000181502 0.000165596 0.00558282 0.00510543 26 783 13 6.65987e+06 76068 477104. 1650.88 0.76 0.0267785 0.0232424 21682 110474 -1 715 14 363 363 28210 7353 1.05325 1.05325 -40.1788 -1.05325 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.00680228 0.00601202 43 -1 16 16 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.47 vpr 63.25 MiB 0.01 6484 -1 -1 1 0.02 -1 -1 33808 -1 -1 7 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64768 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 24.9 MiB 0.02 435 3216 703 2283 230 63.2 MiB 0.02 0.00 1.62267 -42.4629 -1.62267 1.62267 0.91 0.000190058 0.000173346 0.00686968 0.00625575 26 851 10 6.65987e+06 88746 477104. 1650.88 0.74 0.0280972 0.0244307 21682 110474 -1 829 12 343 343 26674 6590 1.05019 1.05019 -43.2316 -1.05019 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.00631787 0.00563301 46 -1 17 17 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.56 vpr 63.36 MiB 0.01 6496 -1 -1 1 0.02 -1 -1 33608 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64880 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 24.8 MiB 0.02 427 6052 1399 4413 240 63.4 MiB 0.04 0.00 1.63367 -46.0647 -1.63367 1.63367 0.92 0.000225428 0.000189698 0.0125015 0.0113944 26 902 14 6.65987e+06 88746 477104. 1650.88 0.79 0.0374154 0.0326808 21682 110474 -1 822 13 373 373 27589 7047 1.14945 1.14945 -45.9142 -1.14945 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00719575 0.00638616 49 -1 18 18 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.34 vpr 63.18 MiB 0.01 6520 -1 -1 1 0.02 -1 -1 34044 -1 -1 8 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64700 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 24.7 MiB 0.02 445 3874 792 2975 107 63.2 MiB 0.03 0.00 1.65567 -51.2172 -1.65567 1.65567 0.90 0.000228726 0.000209479 0.0079759 0.00729437 26 983 13 6.65987e+06 101424 477104. 1650.88 1.61 0.0575769 0.049474 21682 110474 -1 935 13 368 368 29996 7415 1.10625 1.10625 -52.2583 -1.10625 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.00775718 0.00688314 55 -1 20 20 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 5.03 vpr 63.43 MiB 0.01 6404 -1 -1 1 0.03 -1 -1 33992 -1 -1 8 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64948 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 24.9 MiB 0.02 520 5398 1104 4106 188 63.4 MiB 0.03 0.00 1.67767 -57.8445 -1.67767 1.67767 0.89 0.00025264 0.000231052 0.0105566 0.00965907 26 1156 23 6.65987e+06 101424 477104. 1650.88 2.25 0.0774911 0.0667842 21682 110474 -1 1019 13 421 421 34928 8790 1.01905 1.01905 -54.8627 -1.01905 0 0 585099. 2024.56 0.26 0.03 0.11 -1 -1 0.26 0.0085354 0.00762679 61 -1 22 22 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 4.54 vpr 63.69 MiB 0.01 6276 -1 -1 1 0.03 -1 -1 34020 -1 -1 9 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65216 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 25.1 MiB 0.02 581 5945 1255 4536 154 63.7 MiB 0.04 0.00 1.69967 -64.3369 -1.69967 1.69967 0.89 0.000265639 0.000241985 0.0107435 0.00982013 26 1257 18 6.65987e+06 114102 477104. 1650.88 1.76 0.0748246 0.064671 21682 110474 -1 1222 13 508 508 48485 11816 1.15145 1.15145 -63.4346 -1.15145 0 0 585099. 2024.56 0.26 0.03 0.11 -1 -1 0.26 0.00928718 0.0083224 67 -1 24 24 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.77 vpr 63.68 MiB 0.01 6560 -1 -1 1 0.03 -1 -1 33700 -1 -1 10 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65208 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 25.2 MiB 0.03 752 12711 4741 7378 592 63.7 MiB 0.07 0.00 2.07098 -75.6352 -2.07098 2.07098 0.91 0.000292921 0.000266523 0.0214519 0.0195542 30 1337 16 6.65987e+06 126780 526063. 1820.29 1.87 0.087295 0.0762409 22546 126617 -1 1249 9 444 444 33278 7973 1.10625 1.10625 -68.1023 -1.10625 0 0 666494. 2306.21 0.29 0.02 0.12 -1 -1 0.29 0.00792107 0.00715039 73 -1 26 26 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.83 vpr 63.91 MiB 0.02 6488 -1 -1 1 0.03 -1 -1 33624 -1 -1 11 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65448 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 25.6 MiB 0.03 728 12751 3280 8876 595 63.9 MiB 0.06 0.00 2.11498 -85.6644 -2.11498 2.11498 0.92 0.00033439 0.000304753 0.0208259 0.0190436 32 1529 17 6.65987e+06 139458 554710. 1919.41 0.89 0.0603992 0.0533619 22834 132086 -1 1356 12 552 552 45804 11141 1.22525 1.22525 -78.1974 -1.22525 0 0 701300. 2426.64 0.29 0.03 0.13 -1 -1 0.29 0.0105695 0.00947916 85 -1 30 30 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 5.50 vpr 63.95 MiB 0.01 6708 -1 -1 1 0.03 -1 -1 33796 -1 -1 13 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65488 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 25.5 MiB 0.03 1003 17401 6715 9666 1020 64.0 MiB 0.08 0.00 2.50829 -107.27 -2.50829 2.50829 0.89 0.000344151 0.000312739 0.024857 0.0226233 30 1829 19 6.65987e+06 164814 526063. 1820.29 2.66 0.103186 0.0903274 22546 126617 -1 1640 10 577 577 52893 12186 1.19105 1.19105 -91.4283 -1.19105 0 0 666494. 2306.21 0.29 0.03 0.11 -1 -1 0.29 0.010664 0.00956719 97 -1 34 34 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 6.10 vpr 64.96 MiB 0.02 6684 -1 -1 1 0.03 -1 -1 34096 -1 -1 19 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 26.2 MiB 0.04 1557 34969 14570 20249 150 65.0 MiB 0.17 0.00 3.38291 -180.939 -3.38291 3.38291 0.92 0.000579275 0.000531858 0.0458838 0.0420167 32 2870 18 6.65987e+06 240882 554710. 1919.41 2.96 0.166531 0.148207 22834 132086 -1 2682 13 1006 1006 99871 23012 1.52845 1.52845 -148.883 -1.52845 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0180741 0.0163634 145 -1 50 50 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 6.47 vpr 65.55 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 34136 -1 -1 25 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67124 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 27.0 MiB 0.06 1798 56234 20467 31758 4009 65.6 MiB 0.28 0.01 4.25753 -264.232 -4.25753 4.25753 0.93 0.000784109 0.000719633 0.0653853 0.0598632 32 3841 19 6.65987e+06 316950 554710. 1919.41 3.15 0.236976 0.212841 22834 132086 -1 3380 15 1402 1402 139818 32687 1.69925 1.69925 -198.529 -1.69925 0 0 701300. 2426.64 0.30 0.08 0.14 -1 -1 0.30 0.0268841 0.0244536 193 -1 66 66 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 3.80 vpr 63.67 MiB 0.01 6212 -1 -1 1 0.02 -1 -1 33688 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65196 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 25.2 MiB 0.02 26 246 57 175 14 63.7 MiB 0.00 0.00 0.712895 -7.69589 -0.712895 0.712895 0.95 5.1081e-05 4.5482e-05 0.00127347 0.00113403 18 87 3 6.95648e+06 14475.7 376052. 1301.22 1.05 0.0125222 0.0103029 22882 88689 -1 82 3 14 14 578 201 0.712895 0.712895 -8.10503 -0.712895 0 0 470940. 1629.55 0.20 0.00 0.09 -1 -1 0.20 0.00178895 0.00167971 5 -1 5 5 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 4.08 vpr 63.54 MiB 0.01 6128 -1 -1 1 0.02 -1 -1 33428 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65064 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 25.1 MiB 0.02 38 285 68 210 7 63.5 MiB 0.00 0.00 0.62144 -9.16928 -0.62144 0.62144 0.95 6.2903e-05 5.6229e-05 0.00136687 0.00123309 20 128 9 6.95648e+06 14475.7 414966. 1435.87 1.32 0.0224851 0.018407 23170 95770 -1 108 4 29 29 1573 491 0.74674 0.74674 -9.88017 -0.74674 0 0 503264. 1741.40 0.21 0.01 0.10 -1 -1 0.21 0.00227007 0.00211061 7 -1 6 6 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 4.05 vpr 63.61 MiB 0.01 6332 -1 -1 1 0.02 -1 -1 33656 -1 -1 1 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65140 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 25.1 MiB 0.03 125 64 27 35 2 63.6 MiB 0.00 0.00 1.08519 -14.5503 -1.08519 1.08519 0.96 8.0934e-05 7.1401e-05 0.00060055 0.000551965 20 203 6 6.95648e+06 14475.7 414966. 1435.87 1.26 0.00559126 0.00488422 23170 95770 -1 198 6 33 33 2672 728 1.08519 1.08519 -14.5423 -1.08519 0 0 503264. 1741.40 0.22 0.01 0.09 -1 -1 0.22 0.00254749 0.00231937 8 -1 7 7 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 4.26 vpr 63.85 MiB 0.01 6328 -1 -1 1 0.02 -1 -1 33600 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65384 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 25.3 MiB 0.04 66 622 147 459 16 63.9 MiB 0.01 0.00 0.830632 -14.7061 -0.830632 0.830632 0.96 8.8495e-05 7.9059e-05 0.00226702 0.00203068 18 251 26 6.95648e+06 28951.4 376052. 1301.22 1.51 0.0207927 0.0173184 22882 88689 -1 187 10 108 108 5704 1896 0.834592 0.834592 -16.5365 -0.834592 0 0 470940. 1629.55 0.19 0.01 0.09 -1 -1 0.19 0.00307285 0.00272968 10 -1 8 8 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 5.08 vpr 63.94 MiB 0.01 6200 -1 -1 1 0.02 -1 -1 33488 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65472 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 25.4 MiB 0.04 82 673 149 507 17 63.9 MiB 0.01 0.00 0.830632 -16.8934 -0.830632 0.830632 0.97 9.8928e-05 8.9341e-05 0.00232423 0.00210969 26 247 10 6.95648e+06 28951.4 503264. 1741.40 2.21 0.027737 0.0230468 24322 120374 -1 231 9 134 134 8426 2714 0.927732 0.927732 -18.5311 -0.927732 0 0 618332. 2139.56 0.27 0.01 0.12 -1 -1 0.27 0.00355445 0.00319941 11 -1 9 9 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 4.65 vpr 63.99 MiB 0.01 6424 -1 -1 1 0.02 -1 -1 33664 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65524 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 25.4 MiB 0.03 161 700 166 470 64 64.0 MiB 0.01 0.00 0.841632 -20.1922 -0.841632 0.841632 0.97 9.4145e-05 8.5497e-05 0.00223296 0.00202913 22 404 13 6.95648e+06 28951.4 443629. 1535.05 1.88 0.0313868 0.0261089 23458 102101 -1 378 16 199 199 16574 4115 1.20033 1.20033 -24.385 -1.20033 0 0 531479. 1839.03 0.23 0.02 0.10 -1 -1 0.23 0.00521935 0.00457752 13 -1 10 10 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 4.48 vpr 64.06 MiB 0.01 6460 -1 -1 1 0.02 -1 -1 33488 -1 -1 2 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65600 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 25.5 MiB 0.04 117 847 190 628 29 64.1 MiB 0.01 0.00 0.874632 -21.9508 -0.874632 0.874632 0.95 0.000126287 0.000114144 0.00281113 0.00256103 20 368 14 6.95648e+06 28951.4 414966. 1435.87 1.70 0.0176449 0.0150784 23170 95770 -1 343 13 216 216 13837 4861 1.21133 1.21133 -27.3541 -1.21133 0 0 503264. 1741.40 0.22 0.01 0.10 -1 -1 0.22 0.00485519 0.00430862 14 -1 11 11 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 4.73 vpr 64.15 MiB 0.01 6316 -1 -1 1 0.02 -1 -1 33616 -1 -1 2 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65688 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 25.5 MiB 0.04 316 859 151 690 18 64.1 MiB 0.01 0.00 0.896632 -29.5922 -0.896632 0.896632 0.94 0.000132578 0.000120055 0.00275297 0.00252102 30 647 18 6.95648e+06 28951.4 556674. 1926.21 1.81 0.0356196 0.029909 25186 138497 -1 604 13 282 282 30933 6493 1.09223 1.09223 -33.1784 -1.09223 0 0 706193. 2443.58 0.30 0.02 0.13 -1 -1 0.30 0.00541184 0.00475558 16 -1 12 12 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 3.74 vpr 64.09 MiB 0.01 6452 -1 -1 1 0.02 -1 -1 33340 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65628 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 25.6 MiB 0.04 198 1298 273 1012 13 64.1 MiB 0.01 0.00 0.907632 -28.5647 -0.907632 0.907632 0.95 0.000145879 0.000128114 0.00377111 0.00341489 28 553 14 6.95648e+06 43427 531479. 1839.03 0.87 0.0220073 0.0188607 24610 126494 -1 471 15 302 302 21085 6088 1.20033 1.20033 -33.2543 -1.20033 0 0 648988. 2245.63 0.28 0.02 0.13 -1 -1 0.28 0.00623994 0.00547085 17 -1 13 13 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 4.12 vpr 64.12 MiB 0.01 6356 -1 -1 1 0.02 -1 -1 33492 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65664 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 25.5 MiB 0.03 368 1441 285 1041 115 64.1 MiB 0.01 0.00 0.918632 -34.4491 -0.918632 0.918632 0.92 0.000154413 0.000139868 0.00398977 0.00362386 34 762 15 6.95648e+06 43427 618332. 2139.56 1.28 0.0327136 0.0276262 25762 151098 -1 724 14 288 288 32371 6998 1.26633 1.26633 -40.9449 -1.26633 0 0 787024. 2723.27 0.32 0.02 0.13 -1 -1 0.32 0.00587989 0.00522501 19 -1 14 14 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 6.67 vpr 64.07 MiB 0.01 6364 -1 -1 1 0.02 -1 -1 33676 -1 -1 3 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65604 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 25.7 MiB 0.04 180 3971 1477 2086 408 64.1 MiB 0.03 0.00 0.951632 -32.5735 -0.951632 0.951632 0.93 0.000178927 0.000162799 0.00957581 0.00870643 36 604 37 6.95648e+06 43427 648988. 2245.63 3.70 0.0633626 0.0537408 26050 158493 -1 461 21 446 446 29099 8461 1.20033 1.20033 -33.884 -1.20033 0 0 828058. 2865.25 0.32 0.02 0.16 -1 -1 0.32 0.00828465 0.00722782 20 -1 15 15 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 4.62 vpr 64.18 MiB 0.01 6472 -1 -1 1 0.02 -1 -1 33752 -1 -1 3 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65724 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 25.8 MiB 0.05 227 4331 1745 2561 25 64.2 MiB 0.03 0.00 0.962632 -36.3287 -0.962632 0.962632 0.91 0.000172884 0.000155569 0.00900761 0.00814775 36 762 35 6.95648e+06 43427 648988. 2245.63 1.63 0.043564 0.0374094 26050 158493 -1 621 38 650 650 81985 22744 1.30553 1.30553 -42.6186 -1.30553 0 0 828058. 2865.25 0.34 0.05 0.16 -1 -1 0.34 0.0139723 0.0121159 22 -1 16 16 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 3.88 vpr 64.14 MiB 0.01 6504 -1 -1 1 0.02 -1 -1 33836 -1 -1 3 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65676 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 25.8 MiB 0.05 237 4098 1359 2534 205 64.1 MiB 0.03 0.00 1.33396 -39.0993 -1.33396 1.33396 0.94 0.000183667 0.00016647 0.00944646 0.00861097 32 891 25 6.95648e+06 43427 586450. 2029.24 0.90 0.0346613 0.030108 25474 144626 -1 684 14 437 437 36016 10344 1.18923 1.18923 -45.8745 -1.18923 0 0 744469. 2576.02 0.32 0.02 0.14 -1 -1 0.32 0.00743225 0.00661767 24 -1 17 17 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 4.10 vpr 64.30 MiB 0.01 6500 -1 -1 1 0.03 -1 -1 33836 -1 -1 4 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65844 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 25.9 MiB 0.07 235 5052 1687 3325 40 64.3 MiB 0.03 0.00 1.34496 -41.9783 -1.34496 1.34496 0.94 0.000200447 0.000181771 0.0110017 0.0100343 28 1004 40 6.95648e+06 57902.7 531479. 1839.03 1.14 0.0473338 0.0411126 24610 126494 -1 741 17 514 514 40763 11957 1.51013 1.51013 -52.5916 -1.51013 0 0 648988. 2245.63 0.27 0.03 0.12 -1 -1 0.27 0.0087238 0.00773022 25 -1 18 18 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 6.12 vpr 64.41 MiB 0.01 6536 -1 -1 1 0.03 -1 -1 33932 -1 -1 4 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65960 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 25.9 MiB 0.09 349 5325 1277 4015 33 64.4 MiB 0.03 0.00 1.36696 -48.5746 -1.36696 1.36696 0.97 0.000224102 0.00020473 0.0113793 0.010386 36 925 23 6.95648e+06 57902.7 648988. 2245.63 3.00 0.0805042 0.0689188 26050 158493 -1 769 18 464 464 37459 9272 1.21603 1.21603 -53.3054 -1.21603 0 0 828058. 2865.25 0.32 0.03 0.15 -1 -1 0.32 0.0100386 0.00884313 28 -1 20 20 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 4.56 vpr 64.31 MiB 0.01 6352 -1 -1 1 0.03 -1 -1 33988 -1 -1 4 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 25.9 MiB 0.09 643 8312 2604 4958 750 64.3 MiB 0.05 0.00 1.38896 -61.9638 -1.38896 1.38896 0.98 0.000243532 0.000220963 0.0174424 0.0158489 34 1256 38 6.95648e+06 57902.7 618332. 2139.56 1.41 0.0761846 0.0660573 25762 151098 -1 1140 21 505 505 56093 11328 1.24423 1.24423 -65.9007 -1.24423 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0118487 0.0104379 31 -1 22 22 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 6.89 vpr 64.58 MiB 0.01 6488 -1 -1 1 0.03 -1 -1 33860 -1 -1 5 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 26.1 MiB 0.10 465 7673 2070 5539 64 64.6 MiB 0.04 0.00 1.41096 -62.1793 -1.41096 1.41096 0.93 0.000262495 0.000240141 0.0142919 0.0129921 36 1143 23 6.95648e+06 72378.4 648988. 2245.63 3.79 0.0904554 0.0782133 26050 158493 -1 966 18 531 531 53203 12038 1.24903 1.24903 -65.2937 -1.24903 0 0 828058. 2865.25 0.33 0.03 0.15 -1 -1 0.33 0.0109944 0.00974254 34 -1 24 24 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 4.62 vpr 64.48 MiB 0.01 6616 -1 -1 1 0.03 -1 -1 33860 -1 -1 5 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 26.0 MiB 0.10 477 11571 2984 8400 187 64.5 MiB 0.06 0.00 1.43296 -69.314 -1.43296 1.43296 0.94 0.000274857 0.00025047 0.0199111 0.018104 34 1341 25 6.95648e+06 72378.4 618332. 2139.56 1.48 0.0687088 0.0601759 25762 151098 -1 1106 18 625 625 55935 13824 1.41833 1.41833 -76.7982 -1.41833 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.0125413 0.0111255 37 -1 26 26 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 5.01 vpr 64.73 MiB 0.01 6368 -1 -1 1 0.03 -1 -1 33396 -1 -1 6 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 26.2 MiB 0.07 829 13133 5464 7620 49 64.7 MiB 0.06 0.00 1.47696 -85.3607 -1.47696 1.47696 0.99 0.000350135 0.000319471 0.0225319 0.0205519 36 1777 18 6.95648e+06 86854.1 648988. 2245.63 1.83 0.0967358 0.0849856 26050 158493 -1 1479 16 780 780 77652 17019 1.43083 1.43083 -88.687 -1.43083 0 0 828058. 2865.25 0.32 0.04 0.15 -1 -1 0.32 0.0128478 0.0114925 43 -1 30 30 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 5.77 vpr 64.87 MiB 0.02 6652 -1 -1 1 0.03 -1 -1 33956 -1 -1 7 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 26.4 MiB 0.08 924 18136 7790 10245 101 64.9 MiB 0.09 0.00 1.88129 -101.424 -1.88129 1.88129 0.99 0.000381048 0.000346805 0.0298207 0.0272395 38 2012 48 6.95648e+06 101330 678818. 2348.85 2.51 0.135637 0.119153 26626 170182 -1 1722 18 870 870 108310 22027 1.52153 1.52153 -105.869 -1.52153 0 0 902133. 3121.57 0.33 0.05 0.16 -1 -1 0.33 0.0159375 0.0141512 49 -1 34 34 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 5.82 vpr 65.69 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 33936 -1 -1 10 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67268 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 27.1 MiB 0.12 1600 30324 11596 17665 1063 65.7 MiB 0.14 0.00 2.41762 -168.85 -2.41762 2.41762 0.95 0.000552178 0.00050583 0.0435523 0.039911 46 2878 20 6.95648e+06 144757 828058. 2865.25 2.39 0.159045 0.141806 28066 200906 -1 2547 16 1110 1110 112719 24077 1.67833 1.67833 -165.325 -1.67833 0 0 1.01997e+06 3529.29 0.40 0.06 0.20 -1 -1 0.40 0.0215501 0.0194857 73 -1 50 50 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 7.78 vpr 66.33 MiB 0.02 7092 -1 -1 1 0.04 -1 -1 34244 -1 -1 13 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67924 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 27.6 MiB 0.12 1899 46107 19065 26925 117 66.3 MiB 0.21 0.01 2.95395 -232.912 -2.95395 2.95395 0.96 0.00074664 0.000681018 0.0581521 0.0532987 58 3515 50 6.95648e+06 188184 997811. 3452.63 3.97 0.2707 0.243157 30370 251734 -1 3084 19 1524 1524 169319 35177 1.65673 1.65673 -200.632 -1.65673 0 0 1.25153e+06 4330.55 0.52 0.09 0.26 -1 -1 0.52 0.0332691 0.0301495 97 -1 66 66 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 3.75 vpr 63.57 MiB 0.01 6312 -1 -1 1 0.02 -1 -1 33664 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65100 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 25.1 MiB 0.01 26 246 57 176 13 63.6 MiB 0.00 0.00 0.62144 -7.32583 -0.62144 0.62144 0.97 5.3771e-05 4.7922e-05 0.00128635 0.00113558 18 87 6 6.99608e+06 14715.7 376052. 1301.22 1.04 0.012344 0.0101275 22882 88689 -1 82 3 15 15 611 205 0.709292 0.709292 -7.73498 -0.709292 0 0 470940. 1629.55 0.21 0.00 0.09 -1 -1 0.21 0.00188364 0.00176169 5 -1 5 5 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 3.87 vpr 63.55 MiB 0.01 6452 -1 -1 1 0.02 -1 -1 33376 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65072 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 25.1 MiB 0.01 42 285 67 217 1 63.5 MiB 0.00 0.00 0.601892 -8.86437 -0.601892 0.601892 0.91 5.3486e-05 4.7447e-05 0.00116844 0.00104059 18 113 11 6.99608e+06 14715.7 376052. 1301.22 1.28 0.0151884 0.0124618 22882 88689 -1 119 5 39 39 1883 714 0.709292 0.709292 -10.2606 -0.709292 0 0 470940. 1629.55 0.19 0.01 0.08 -1 -1 0.19 0.00222663 0.0020391 7 -1 6 6 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 3.16 vpr 63.61 MiB 0.01 6304 -1 -1 1 0.02 -1 -1 33420 -1 -1 1 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65136 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 25.2 MiB 0.01 126 64 25 37 2 63.6 MiB 0.00 0.00 1.04807 -14.6563 -1.04807 1.04807 0.96 9.1815e-05 8.1268e-05 0.000596635 0.000547147 16 227 10 6.99608e+06 14715.7 332735. 1151.33 0.51 0.0042033 0.00376936 22306 75877 -1 209 6 47 47 4132 1005 1.12264 1.12264 -15.0613 -1.12264 0 0 414966. 1435.87 0.18 0.01 0.08 -1 -1 0.18 0.00265991 0.00243891 8 -1 7 7 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 4.06 vpr 63.82 MiB 0.01 6420 -1 -1 1 0.02 -1 -1 33616 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65352 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 25.3 MiB 0.01 107 592 125 462 5 63.8 MiB 0.01 0.00 0.802432 -14.938 -0.802432 0.802432 0.95 8.6894e-05 7.8083e-05 0.00215717 0.00195296 18 267 16 6.99608e+06 29431.4 376052. 1301.22 1.35 0.0106288 0.00915561 22882 88689 -1 255 12 114 114 9655 2668 0.99734 0.99734 -17.1989 -0.99734 0 0 470940. 1629.55 0.19 0.01 0.09 -1 -1 0.19 0.00375061 0.00334937 10 -1 8 8 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 5.33 vpr 63.77 MiB 0.01 6168 -1 -1 1 0.02 -1 -1 33456 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65304 15 8 55 56 1 31 25 17 17 289 -1 unnamed_device 25.2 MiB 0.01 87 673 163 490 20 63.8 MiB 0.01 0.00 0.813432 -16.9635 -0.813432 0.813432 0.94 0.000109372 0.000100072 0.00233589 0.00211367 28 230 14 6.99608e+06 29431.4 531479. 1839.03 2.54 0.0230815 0.0193425 24610 126494 -1 215 11 104 104 5084 1847 0.918679 0.918679 -18.8969 -0.918679 0 0 648988. 2245.63 0.26 0.01 0.13 -1 -1 0.26 0.00383091 0.00342376 11 -1 9 9 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 4.88 vpr 63.77 MiB 0.01 6328 -1 -1 1 0.02 -1 -1 33736 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65300 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 25.3 MiB 0.01 89 868 259 545 64 63.8 MiB 0.01 0.00 0.835432 -19.044 -0.835432 0.835432 0.95 9.932e-05 8.9676e-05 0.00259516 0.00234705 26 315 19 6.99608e+06 29431.4 503264. 1741.40 2.07 0.0269362 0.0225407 24322 120374 -1 243 11 144 144 7930 2604 0.960732 0.960732 -19.8674 -0.960732 0 0 618332. 2139.56 0.27 0.01 0.12 -1 -1 0.27 0.00424109 0.00377799 13 -1 10 10 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 4.52 vpr 63.81 MiB 0.01 6420 -1 -1 1 0.02 -1 -1 33712 -1 -1 2 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65344 19 10 69 70 1 43 31 17 17 289 -1 unnamed_device 25.3 MiB 0.01 117 799 181 587 31 63.8 MiB 0.01 0.00 0.846432 -21.5131 -0.846432 0.846432 0.94 0.000119418 0.000108189 0.0026288 0.00238087 20 339 11 6.99608e+06 29431.4 414966. 1435.87 1.77 0.0182183 0.0155316 23170 95770 -1 329 13 221 221 11947 4337 1.06598 1.06598 -26.0845 -1.06598 0 0 503264. 1741.40 0.22 0.01 0.10 -1 -1 0.22 0.00479389 0.00424972 14 -1 11 11 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 4.17 vpr 63.77 MiB 0.01 6164 -1 -1 1 0.02 -1 -1 33560 -1 -1 2 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65300 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 25.2 MiB 0.02 206 1079 232 829 18 63.8 MiB 0.01 0.00 0.87204 -26.5938 -0.87204 0.87204 0.93 0.000139207 0.000125953 0.00328075 0.00299342 34 503 13 6.99608e+06 29431.4 618332. 2139.56 1.28 0.0297234 0.0250891 25762 151098 -1 457 15 218 218 17955 4154 1.09703 1.09703 -28.5074 -1.09703 0 0 787024. 2723.27 0.31 0.02 0.15 -1 -1 0.31 0.00538721 0.00473281 16 -1 12 12 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 3.75 vpr 63.89 MiB 0.01 6248 -1 -1 1 0.02 -1 -1 33308 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65420 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 25.3 MiB 0.02 245 1298 255 1031 12 63.9 MiB 0.01 0.00 0.879432 -28.9525 -0.879432 0.879432 0.95 0.000150239 0.000136949 0.00368077 0.00335725 30 588 16 6.99608e+06 44147 556674. 1926.21 0.85 0.0219059 0.0187506 25186 138497 -1 516 17 295 295 25389 5702 0.962679 0.962679 -29.9404 -0.962679 0 0 706193. 2443.58 0.28 0.02 0.13 -1 -1 0.28 0.00611463 0.00535097 17 -1 13 13 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 4.32 vpr 63.96 MiB 0.02 6292 -1 -1 1 0.02 -1 -1 33448 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65492 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 25.4 MiB 0.02 340 1441 266 1110 65 64.0 MiB 0.01 0.00 0.901432 -33.1271 -0.901432 0.901432 0.94 0.000151233 0.000137192 0.0038658 0.00353894 34 734 16 6.99608e+06 44147 618332. 2139.56 1.36 0.0363128 0.0307779 25762 151098 -1 672 17 298 298 30828 6689 0.995679 0.995679 -36.3908 -0.995679 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00700294 0.00614027 19 -1 14 14 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 6.88 vpr 63.98 MiB 0.01 6272 -1 -1 1 0.02 -1 -1 33620 -1 -1 3 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65516 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 25.4 MiB 0.02 178 3971 1404 1915 652 64.0 MiB 0.02 0.00 0.912432 -32.1713 -0.912432 0.912432 0.94 0.00016624 0.000149948 0.00939053 0.00853297 38 565 19 6.99608e+06 44147 678818. 2348.85 3.83 0.0670098 0.0569515 26626 170182 -1 440 15 344 344 20536 6158 1.32563 1.32563 -33.3365 -1.32563 0 0 902133. 3121.57 0.37 0.02 0.17 -1 -1 0.37 0.00681655 0.0060376 20 -1 15 15 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 6.69 vpr 63.79 MiB 0.01 6520 -1 -1 1 0.02 -1 -1 33948 -1 -1 3 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65320 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 25.2 MiB 0.02 198 4331 1522 2096 713 63.8 MiB 0.03 0.00 0.934432 -35.1872 -0.934432 0.934432 0.96 0.000171057 0.000154699 0.00981475 0.00891004 36 654 34 6.99608e+06 44147 648988. 2245.63 3.70 0.064249 0.0547523 26050 158493 -1 548 20 467 467 34898 9736 1.26633 1.26633 -40.0321 -1.26633 0 0 828058. 2865.25 0.34 0.03 0.16 -1 -1 0.34 0.00842789 0.00737766 22 -1 16 16 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 5.27 vpr 64.14 MiB 0.01 6428 -1 -1 1 0.02 -1 -1 33800 -1 -1 3 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65684 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 25.8 MiB 0.02 227 4098 1263 2618 217 64.1 MiB 0.03 0.00 1.30576 -38.4531 -1.30576 1.30576 0.95 0.000197113 0.000180571 0.00939772 0.00857117 30 876 26 6.99608e+06 44147 556674. 1926.21 2.33 0.0649107 0.0556513 25186 138497 -1 637 15 451 451 29328 8604 1.18303 1.18303 -44.5858 -1.18303 0 0 706193. 2443.58 0.30 0.02 0.13 -1 -1 0.30 0.00769128 0.00682018 24 -1 17 17 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 5.97 vpr 64.09 MiB 0.01 6360 -1 -1 1 0.02 -1 -1 33648 -1 -1 4 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65624 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 25.7 MiB 0.02 362 3012 639 2325 48 64.1 MiB 0.02 0.00 1.31676 -43.8553 -1.31676 1.31676 0.96 0.000199985 0.00018122 0.0069032 0.00631369 34 996 25 6.99608e+06 58862.7 618332. 2139.56 3.00 0.0682852 0.0581572 25762 151098 -1 835 13 435 435 43110 9791 1.29733 1.29733 -50.4756 -1.29733 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00740151 0.00658773 25 -1 18 18 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 4.48 vpr 64.04 MiB 0.01 6408 -1 -1 1 0.03 -1 -1 33576 -1 -1 4 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65576 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 25.6 MiB 0.02 307 4623 989 3596 38 64.0 MiB 0.03 0.00 1.33876 -48.0718 -1.33876 1.33876 0.95 0.000231384 0.0002111 0.0100568 0.00919626 34 892 21 6.99608e+06 58862.7 618332. 2139.56 1.53 0.0591213 0.0509398 25762 151098 -1 743 18 453 453 54600 17208 1.25333 1.25333 -52.5295 -1.25333 0 0 787024. 2723.27 0.30 0.03 0.15 -1 -1 0.30 0.00966733 0.00850864 28 -1 20 20 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 6.03 vpr 64.16 MiB 0.01 6416 -1 -1 1 0.03 -1 -1 33964 -1 -1 4 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 25.7 MiB 0.02 643 8179 2647 4716 816 64.2 MiB 0.04 0.00 1.36076 -60.9293 -1.36076 1.36076 0.97 0.000247746 0.000219727 0.0163938 0.0149015 34 1259 14 6.99608e+06 58862.7 618332. 2139.56 3.02 0.0840374 0.0726775 25762 151098 -1 1135 19 484 484 55026 10916 1.28633 1.28633 -65.219 -1.28633 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0108669 0.00958193 31 -1 22 22 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 5.58 vpr 64.14 MiB 0.01 6292 -1 -1 1 0.03 -1 -1 33980 -1 -1 5 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65676 45 23 160 161 1 106 73 17 17 289 -1 unnamed_device 25.7 MiB 0.03 375 8585 2269 6036 280 64.1 MiB 0.05 0.00 1.38276 -61.0669 -1.38276 1.38276 0.92 0.000252522 0.000228976 0.0157736 0.01435 30 1104 21 6.99608e+06 73578.4 556674. 1926.21 2.63 0.0895564 0.0776405 25186 138497 -1 889 16 515 515 38257 10993 1.42263 1.42263 -67.9213 -1.42263 0 0 706193. 2443.58 0.28 0.03 0.13 -1 -1 0.28 0.0107357 0.00949631 34 -1 24 24 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 5.88 vpr 64.35 MiB 0.01 6348 -1 -1 1 0.02 -1 -1 33988 -1 -1 5 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65892 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 25.9 MiB 0.03 470 11571 3015 8364 192 64.3 MiB 0.06 0.00 1.40476 -68.6401 -1.40476 1.40476 0.92 0.000253836 0.00022924 0.0195177 0.0177145 30 1426 29 6.99608e+06 73578.4 556674. 1926.21 3.00 0.0994874 0.0862182 25186 138497 -1 1100 19 636 636 58611 14920 1.40733 1.40733 -76.4389 -1.40733 0 0 706193. 2443.58 0.29 0.03 0.12 -1 -1 0.29 0.0116427 0.0102617 37 -1 26 26 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 5.10 vpr 64.49 MiB 0.02 6416 -1 -1 1 0.03 -1 -1 33388 -1 -1 6 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66036 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 25.9 MiB 0.03 983 13754 5168 7361 1225 64.5 MiB 0.07 0.00 1.44876 -89.273 -1.44876 1.44876 0.97 0.000319905 0.000289832 0.0234226 0.0213551 36 1966 24 6.99608e+06 88294.1 648988. 2245.63 1.97 0.0846334 0.0744237 26050 158493 -1 1703 21 737 737 93588 18352 1.40733 1.40733 -95.7329 -1.40733 0 0 828058. 2865.25 0.34 0.05 0.15 -1 -1 0.34 0.0155888 0.0138602 43 -1 30 30 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 7.40 vpr 64.58 MiB 0.02 6680 -1 -1 1 0.03 -1 -1 33680 -1 -1 7 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 26.2 MiB 0.04 938 18136 7666 10324 146 64.6 MiB 0.09 0.00 1.85309 -100.228 -1.85309 1.85309 0.96 0.000392039 0.000358177 0.0298154 0.027257 42 1817 22 6.99608e+06 103010 744469. 2576.02 4.19 0.160161 0.139936 27202 183097 -1 1568 15 722 722 69332 15432 1.43833 1.43833 -99.5694 -1.43833 0 0 949917. 3286.91 0.39 0.04 0.18 -1 -1 0.39 0.0141564 0.0127067 49 -1 34 34 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 5.50 vpr 65.57 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 33888 -1 -1 10 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67140 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 27.0 MiB 0.06 1600 30324 10676 17928 1720 65.6 MiB 0.14 0.00 2.38942 -168.824 -2.38942 2.38942 0.93 0.000521855 0.00047729 0.0424954 0.0388885 44 2966 18 6.99608e+06 147157 787024. 2723.27 2.14 0.144347 0.128648 27778 195446 -1 2595 17 1040 1040 106871 21889 1.48273 1.48273 -157.19 -1.48273 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.0226762 0.0205133 73 -1 50 50 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 9.99 vpr 66.21 MiB 0.02 6988 -1 -1 1 0.04 -1 -1 33908 -1 -1 13 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67796 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 27.5 MiB 0.07 1882 46107 19193 26799 115 66.2 MiB 0.21 0.01 2.92575 -230.221 -2.92575 2.92575 0.95 0.000729309 0.00066795 0.0580233 0.0531496 58 3296 34 6.99608e+06 191304 997811. 3452.63 6.29 0.316033 0.282702 30370 251734 -1 2999 17 1311 1311 131174 27568 1.78203 1.78203 -207.312 -1.78203 0 0 1.25153e+06 4330.55 0.51 0.08 0.25 -1 -1 0.51 0.0310362 0.0282374 97 -1 66 66 0 0 - fixed_k6_frac_N8_22nm.xml adder_003bits.v common 3.22 vpr 63.00 MiB 0.01 6156 -1 -1 1 0.06 -1 -1 35560 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64516 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 24.6 MiB 0.01 33 272 66 196 10 63.0 MiB 0.00 0.00 0.62144 -7.45301 -0.62144 0.62144 0.93 4.7472e-05 4.1796e-05 0.00130424 0.00114134 18 91 5 6.79088e+06 13472 376052. 1301.22 0.54 0.00354982 0.00319881 22222 88205 -1 103 13 53 53 3060 1078 0.87204 0.87204 -8.56281 -0.87204 0 0 470940. 1629.55 0.19 0.01 0.09 -1 -1 0.19 0.00266329 0.00237767 6 4 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_004bits.v common 4.47 vpr 63.05 MiB 0.01 6292 -1 -1 2 0.06 -1 -1 36260 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64568 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 24.6 MiB 0.01 38 321 80 225 16 63.1 MiB 0.00 0.00 0.883748 -10.0404 -0.883748 0.883748 0.92 6.4223e-05 5.7261e-05 0.00137309 0.00123747 26 113 8 6.79088e+06 13472 503264. 1741.40 1.71 0.0166728 0.0137111 23662 119890 -1 130 7 44 44 2386 718 0.883748 0.883748 -11.0965 -0.883748 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00244806 0.00222894 8 6 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_005bits.v common 3.23 vpr 62.95 MiB 0.01 6288 -1 -1 2 0.06 -1 -1 35668 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64460 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 24.5 MiB 0.01 171 94 40 54 0 62.9 MiB 0.00 0.00 1.02368 -16.5872 -1.02368 1.02368 0.93 7.9071e-05 7.0726e-05 0.00064143 0.000590125 18 270 10 6.79088e+06 26944 376052. 1301.22 0.53 0.0040681 0.00362498 22222 88205 -1 285 8 86 96 7378 1861 1.02368 1.02368 -17.6836 -1.02368 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00297028 0.00267167 10 7 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_006bits.v common 3.42 vpr 63.09 MiB 0.01 6256 -1 -1 3 0.06 -1 -1 35988 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64600 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 24.7 MiB 0.01 78 532 122 389 21 63.1 MiB 0.01 0.00 1.14898 -15.9596 -1.14898 1.14898 0.95 8.5752e-05 7.7e-05 0.00198038 0.00179639 22 238 12 6.79088e+06 26944 443629. 1535.05 0.65 0.0127949 0.0108212 22798 101617 -1 228 7 87 91 5654 1778 1.05944 1.05944 -17.4573 -1.05944 0 0 531479. 1839.03 0.23 0.01 0.10 -1 -1 0.23 0.00294869 0.00268775 11 9 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_007bits.v common 4.83 vpr 63.02 MiB 0.01 6200 -1 -1 3 0.06 -1 -1 35624 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64532 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 24.6 MiB 0.01 107 781 172 592 17 63.0 MiB 0.01 0.00 1.35273 -19.9506 -1.35273 1.35273 0.93 0.000102419 9.127e-05 0.00267954 0.0024272 22 388 19 6.79088e+06 26944 443629. 1535.05 2.05 0.023286 0.0195794 22798 101617 -1 287 8 128 140 8164 2621 1.35273 1.35273 -22.2818 -1.35273 0 0 531479. 1839.03 0.23 0.01 0.10 -1 -1 0.23 0.00367237 0.00334488 13 10 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_008bits.v common 3.63 vpr 62.98 MiB 0.01 6300 -1 -1 3 0.06 -1 -1 35788 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64496 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 24.5 MiB 0.04 115 994 199 767 28 63.0 MiB 0.01 0.00 1.52493 -22.3533 -1.52493 1.52493 0.96 0.000117726 0.000105647 0.00343062 0.00311292 26 423 12 6.79088e+06 26944 503264. 1741.40 0.75 0.0176506 0.0150363 23662 119890 -1 330 10 170 180 9918 3232 1.27433 1.27433 -23.6217 -1.27433 0 0 618332. 2139.56 0.27 0.01 0.12 -1 -1 0.27 0.00443749 0.00398505 16 14 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_009bits.v common 4.71 vpr 63.43 MiB 0.01 6292 -1 -1 4 0.06 -1 -1 35536 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64956 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 24.9 MiB 0.05 196 1232 436 745 51 63.4 MiB 0.01 0.00 1.31348 -26.7556 -1.31348 1.31348 0.94 0.000124493 0.000111952 0.00376208 0.00341456 30 494 12 6.79088e+06 40416 556674. 1926.21 1.79 0.0328371 0.0275615 24526 138013 -1 414 9 173 181 14564 3725 1.1736 1.1736 -26.8517 -1.1736 0 0 706193. 2443.58 0.28 0.01 0.13 -1 -1 0.28 0.00429025 0.00385055 17 13 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_010bits.v common 4.73 vpr 63.32 MiB 0.01 6056 -1 -1 4 0.06 -1 -1 35460 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64844 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 24.8 MiB 0.18 167 1403 308 1078 17 63.3 MiB 0.01 0.00 1.85398 -30.8307 -1.85398 1.85398 0.95 0.000152512 0.000138378 0.00437455 0.00395967 22 636 19 6.79088e+06 40416 443629. 1535.05 1.76 0.0325839 0.027558 22798 101617 -1 499 26 247 301 52635 30633 1.77553 1.77553 -34.6899 -1.77553 0 0 531479. 1839.03 0.22 0.03 0.10 -1 -1 0.22 0.00848782 0.00738311 21 17 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_011bits.v common 5.74 vpr 63.44 MiB 0.01 6152 -1 -1 5 0.07 -1 -1 35580 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64960 23 12 73 85 1 60 38 17 17 289 -1 unnamed_device 24.8 MiB 0.08 255 1424 308 1101 15 63.4 MiB 0.01 0.00 1.8114 -35.123 -1.8114 1.8114 0.95 0.000163433 0.000149183 0.00420729 0.00383591 34 627 12 6.79088e+06 40416 618332. 2139.56 2.70 0.0539075 0.0453943 25102 150614 -1 590 11 218 261 21089 5045 1.8114 1.8114 -36.9307 -1.8114 0 0 787024. 2723.27 0.33 0.02 0.15 -1 -1 0.33 0.00555562 0.00498549 20 16 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_012bits.v common 6.02 vpr 63.27 MiB 0.01 6152 -1 -1 5 0.07 -1 -1 35896 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64784 25 13 82 95 1 66 41 17 17 289 -1 unnamed_device 24.7 MiB 0.20 315 1721 363 1322 36 63.3 MiB 0.01 0.00 2.11577 -41.2814 -2.11577 2.11577 0.95 0.000179557 0.000163077 0.00508558 0.00463116 34 722 13 6.79088e+06 40416 618332. 2139.56 2.87 0.0483575 0.0410831 25102 150614 -1 685 12 261 302 26706 6169 1.85403 1.85403 -42.0346 -1.85403 0 0 787024. 2723.27 0.32 0.02 0.14 -1 -1 0.32 0.00644387 0.00578283 24 20 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_013bits.v common 6.15 vpr 63.70 MiB 0.01 6240 -1 -1 5 0.07 -1 -1 36044 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65224 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 25.1 MiB 0.32 235 2285 486 1742 57 63.7 MiB 0.02 0.00 2.15497 -43.2975 -2.15497 2.15497 0.96 0.000187483 0.000170465 0.00593734 0.00541395 34 710 15 6.79088e+06 53888 618332. 2139.56 2.86 0.0540965 0.0460033 25102 150614 -1 553 12 262 334 19107 5406 1.81483 1.81483 -42.2354 -1.81483 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00668248 0.00596723 27 24 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_014bits.v common 5.18 vpr 63.36 MiB 0.01 6164 -1 -1 6 0.07 -1 -1 35624 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64876 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 25.0 MiB 0.23 239 3267 703 2442 122 63.4 MiB 0.02 0.00 2.36642 -47.1965 -2.36642 2.36642 0.95 0.000194395 0.000176309 0.00836353 0.00760866 30 731 21 6.79088e+06 53888 556674. 1926.21 2.01 0.0571882 0.048921 24526 138013 -1 541 10 271 314 15952 4903 2.06549 2.06549 -46.056 -2.06549 0 0 706193. 2443.58 0.31 0.02 0.13 -1 -1 0.31 0.00675009 0.00610497 28 23 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_015bits.v common 5.88 vpr 63.67 MiB 0.01 6132 -1 -1 6 0.07 -1 -1 35404 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65200 31 16 104 120 1 83 52 17 17 289 -1 unnamed_device 25.3 MiB 0.64 331 4611 1094 3483 34 63.7 MiB 0.03 0.00 2.65628 -53.9613 -2.65628 2.65628 0.93 0.000216062 0.000195749 0.0115408 0.0104841 28 992 32 6.79088e+06 67360 531479. 1839.03 2.37 0.0756737 0.064659 23950 126010 -1 810 15 371 500 32029 8445 2.36648 2.36648 -53.8759 -2.36648 0 0 648988. 2245.63 0.26 0.02 0.12 -1 -1 0.26 0.00826953 0.007369 32 27 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_016bits.v common 4.48 vpr 63.43 MiB 0.01 6248 -1 -1 7 0.07 -1 -1 35988 -1 -1 4 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64956 33 17 108 125 1 88 54 17 17 289 -1 unnamed_device 25.1 MiB 0.60 608 5154 1451 2664 1039 63.4 MiB 0.03 0.00 2.69548 -63.6839 -2.69548 2.69548 0.96 0.000223551 0.000203058 0.0122443 0.0111497 30 1166 35 6.79088e+06 53888 556674. 1926.21 0.93 0.0465961 0.0404923 24526 138013 -1 1040 14 324 396 29623 6626 2.39454 2.39454 -63.6762 -2.39454 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00850595 0.00757582 32 26 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_018bits.v common 5.57 vpr 63.72 MiB 0.01 6396 -1 -1 7 0.08 -1 -1 35912 -1 -1 5 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65252 37 19 127 146 1 100 61 17 17 289 -1 unnamed_device 25.3 MiB 1.12 661 3781 906 2518 357 63.7 MiB 0.03 0.00 3.03567 -75.9544 -3.03567 3.03567 0.95 0.000267149 0.000243861 0.00950899 0.0086982 34 1284 30 6.79088e+06 67360 618332. 2139.56 1.43 0.0671995 0.0579081 25102 150614 -1 1205 10 376 518 39041 8849 2.62057 2.62057 -74.2458 -2.62057 0 0 787024. 2723.27 0.33 0.02 0.15 -1 -1 0.33 0.00834769 0.0075474 37 35 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_020bits.v common 5.43 vpr 63.79 MiB 0.01 6428 -1 -1 8 0.08 -1 -1 35752 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65320 41 21 139 160 1 110 68 17 17 289 -1 unnamed_device 25.3 MiB 0.81 560 5864 1353 4034 477 63.8 MiB 0.04 0.00 2.82083 -78.2516 -2.82083 2.82083 0.96 0.000276729 0.000253458 0.01358 0.0124079 34 1357 25 6.79088e+06 80832 618332. 2139.56 1.58 0.0773033 0.0672916 25102 150614 -1 1150 12 405 550 39512 9521 2.60599 2.60599 -79.2746 -2.60599 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00937103 0.0084475 42 37 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_022bits.v common 5.08 vpr 63.93 MiB 0.01 6328 -1 -1 9 0.08 -1 -1 35640 -1 -1 6 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65468 45 23 152 175 1 121 74 17 17 289 -1 unnamed_device 25.4 MiB 1.29 569 6429 1548 4565 316 63.9 MiB 0.04 0.00 3.45087 -87.8964 -3.45087 3.45087 0.91 0.000293452 0.000266907 0.0134365 0.0122496 30 1394 14 6.79088e+06 80832 556674. 1926.21 0.87 0.0478657 0.0420292 24526 138013 -1 1202 9 452 617 33101 8688 3.20027 3.20027 -91.2201 -3.20027 0 0 706193. 2443.58 0.30 0.02 0.13 -1 -1 0.30 0.00902548 0.00819959 45 40 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_024bits.v common 8.64 vpr 63.93 MiB 0.01 6344 -1 -1 10 0.09 -1 -1 35844 -1 -1 6 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65464 49 25 165 190 1 131 80 17 17 289 -1 unnamed_device 25.4 MiB 1.31 490 11088 4620 6440 28 63.9 MiB 0.06 0.00 3.70153 -100.305 -3.70153 3.70153 0.95 0.000319679 0.000288567 0.0220534 0.0200264 38 1320 30 6.79088e+06 80832 678818. 2348.85 4.21 0.12922 0.112824 25966 169698 -1 993 11 491 673 40582 10948 3.40059 3.40059 -93.3223 -3.40059 0 0 902133. 3121.57 0.34 0.03 0.17 -1 -1 0.34 0.0108739 0.00986447 48 43 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_028bits.v common 8.70 vpr 64.11 MiB 0.01 6556 -1 -1 11 0.08 -1 -1 36308 -1 -1 9 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65648 57 29 199 228 1 156 95 17 17 289 -1 unnamed_device 25.7 MiB 2.47 858 13919 3611 9607 701 64.1 MiB 0.07 0.00 4.45687 -136.905 -4.45687 4.45687 0.90 0.000350533 0.000318253 0.0252307 0.0228984 30 1973 31 6.79088e+06 121248 556674. 1926.21 3.33 0.157635 0.13784 24526 138013 -1 1693 13 584 811 66463 15195 3.99143 3.99143 -133.711 -3.99143 0 0 706193. 2443.58 0.28 0.03 0.12 -1 -1 0.28 0.0132363 0.0119229 59 57 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_032bits.v common 10.83 vpr 64.33 MiB 0.02 6448 -1 -1 13 0.10 -1 -1 36072 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 25.9 MiB 1.59 636 20347 6786 10007 3554 64.3 MiB 0.10 0.00 5.42361 -161.246 -5.42361 5.42361 0.95 0.000426181 0.000387945 0.0368307 0.0335017 40 1557 43 6.79088e+06 121248 706193. 2443.58 6.05 0.249587 0.217981 26254 175826 -1 1306 12 624 804 56626 15767 4.92241 4.92241 -150.904 -4.92241 0 0 926341. 3205.33 0.35 0.04 0.17 -1 -1 0.35 0.0156009 0.0141382 65 62 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_048bits.v common 6.98 vpr 65.22 MiB 0.02 6600 -1 -1 19 0.12 -1 -1 36000 -1 -1 14 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 97 49 340 389 1 266 160 17 17 289 -1 unnamed_device 26.4 MiB 1.95 1414 32276 9655 19397 3224 65.2 MiB 0.14 0.00 7.54987 -303.629 -7.54987 7.54987 0.95 0.000620251 0.000563661 0.0503785 0.0458113 34 3175 15 6.79088e+06 188608 618332. 2139.56 1.75 0.150034 0.133859 25102 150614 -1 2906 15 1053 1462 123114 27886 6.95914 6.95914 -294.188 -6.95914 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0251194 0.0227943 100 98 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_064bits.v common 11.46 vpr 65.85 MiB 0.02 6824 -1 -1 26 0.15 -1 -1 36316 -1 -1 19 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67428 129 65 454 519 1 356 213 17 17 289 -1 unnamed_device 27.1 MiB 5.66 1780 46568 16006 26324 4238 65.8 MiB 0.19 0.00 9.37941 -468.754 -9.37941 9.37941 0.95 0.000718859 0.000654508 0.0648786 0.0590813 34 4075 44 6.79088e+06 255968 618332. 2139.56 2.41 0.248669 0.222825 25102 150614 -1 3492 13 1362 1751 124320 30645 8.75291 8.75291 -446.593 -8.75291 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.030907 0.028222 133 132 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 3.14 vpr 63.33 MiB 0.01 6312 -1 -1 1 0.02 -1 -1 33608 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64848 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 24.9 MiB 0.02 29 285 62 205 18 63.3 MiB 0.01 0.00 0.62144 -7.02012 -0.62144 0.62144 0.91 5.1514e-05 4.5752e-05 0.00144079 0.00127488 18 105 10 6.87369e+06 13973.8 376052. 1301.22 0.54 0.00411615 0.00364904 22882 88689 -1 95 3 17 17 922 285 0.74674 0.74674 -8.09412 -0.74674 0 0 470940. 1629.55 0.18 0.00 0.09 -1 -1 0.18 0.00178927 0.00167682 8 -1 5 5 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 3.24 vpr 63.44 MiB 0.01 6428 -1 -1 1 0.02 -1 -1 33568 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64960 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 25.0 MiB 0.04 77 376 88 272 16 63.4 MiB 0.01 0.00 0.789073 -10.1499 -0.789073 0.789073 0.94 6.4696e-05 5.7895e-05 0.00142779 0.00127755 18 171 14 6.87369e+06 27947.7 376052. 1301.22 0.53 0.0048851 0.004309 22882 88689 -1 147 11 70 70 2831 990 0.914373 0.914373 -11.3046 -0.914373 0 0 470940. 1629.55 0.19 0.01 0.09 -1 -1 0.19 0.00285873 0.00255846 10 -1 6 6 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 3.25 vpr 63.23 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33568 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64744 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 24.8 MiB 0.05 78 444 92 346 6 63.2 MiB 0.01 0.00 0.811073 -13.1985 -0.811073 0.811073 0.94 9.547e-05 7.1272e-05 0.00174962 0.00155584 18 240 12 6.87369e+06 27947.7 376052. 1301.22 0.55 0.00550006 0.00486386 22882 88689 -1 206 10 105 105 5319 1714 1.06167 1.06167 -15.482 -1.06167 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00290675 0.0025924 12 -1 7 7 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 4.89 vpr 63.63 MiB 0.01 6252 -1 -1 1 0.02 -1 -1 33444 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65160 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 25.2 MiB 0.05 164 1102 278 658 166 63.6 MiB 0.01 0.00 0.833073 -17.1401 -0.833073 0.833073 0.95 8.671e-05 7.8168e-05 0.00364705 0.00328934 26 351 16 6.87369e+06 27947.7 503264. 1741.40 2.03 0.0204285 0.0171232 24322 120374 -1 343 11 186 186 18457 4349 1.07267 1.07267 -19.5437 -1.07267 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00351275 0.00311367 14 -1 8 8 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 3.66 vpr 63.59 MiB 0.01 6420 -1 -1 1 0.02 -1 -1 33688 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65116 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 25.1 MiB 0.08 117 862 186 627 49 63.6 MiB 0.01 0.00 1.38906 -18.532 -1.38906 1.38906 0.95 0.000100407 9.0634e-05 0.00273605 0.00248204 26 346 25 6.87369e+06 41921.5 503264. 1741.40 0.76 0.0174265 0.0146934 24322 120374 -1 288 12 187 187 11008 3537 1.10367 1.10367 -21.2078 -1.10367 0 0 618332. 2139.56 0.27 0.01 0.12 -1 -1 0.27 0.00393407 0.00348151 17 -1 9 9 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 5.46 vpr 63.47 MiB 0.01 6236 -1 -1 1 0.02 -1 -1 33644 -1 -1 3 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64996 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 25.0 MiB 0.06 109 1525 373 1057 95 63.5 MiB 0.01 0.00 1.2154 -20.8491 -1.2154 1.2154 0.97 0.000108244 9.8883e-05 0.00427666 0.00387959 30 293 20 6.87369e+06 41921.5 556674. 1926.21 2.54 0.0355673 0.0296296 25186 138497 -1 210 11 172 172 6133 2359 1.08167 1.08167 -22.7239 -1.08167 0 0 706193. 2443.58 0.28 0.01 0.13 -1 -1 0.28 0.00404829 0.00358905 18 -1 10 10 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 4.47 vpr 63.72 MiB 0.01 6256 -1 -1 1 0.02 -1 -1 33540 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65248 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 25.2 MiB 0.06 195 882 180 665 37 63.7 MiB 0.01 0.00 1.2264 -24.8855 -1.2264 1.2264 0.96 0.000138161 0.000126238 0.00274333 0.00250659 26 465 12 6.87369e+06 41921.5 503264. 1741.40 1.59 0.0302112 0.0254031 24322 120374 -1 419 16 249 249 19688 4968 1.07067 1.07067 -27.4458 -1.07067 0 0 618332. 2139.56 0.26 0.02 0.12 -1 -1 0.26 0.00555425 0.00486184 20 -1 11 11 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 4.61 vpr 63.73 MiB 0.01 6216 -1 -1 1 0.02 -1 -1 33736 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65264 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 25.2 MiB 0.06 144 2885 1076 1578 231 63.7 MiB 0.02 0.00 1.2374 -27.0881 -1.2374 1.2374 0.97 0.000136942 0.000123776 0.00744396 0.00673649 26 520 43 6.87369e+06 41921.5 503264. 1741.40 1.69 0.0455658 0.0384381 24322 120374 -1 445 18 292 292 30167 7791 1.22897 1.22897 -32.0191 -1.22897 0 0 618332. 2139.56 0.26 0.02 0.12 -1 -1 0.26 0.00622709 0.0054163 22 -1 12 12 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 5.63 vpr 63.80 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33548 -1 -1 4 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65328 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 25.3 MiB 0.06 161 3141 1140 1427 574 63.8 MiB 0.02 0.00 1.2484 -30.254 -1.2484 1.2484 0.98 0.000143082 0.000129182 0.00747344 0.00676493 30 489 15 6.87369e+06 55895.4 556674. 1926.21 2.67 0.0401214 0.0340358 25186 138497 -1 415 15 304 304 21459 5885 1.27297 1.27297 -32.8811 -1.27297 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00587869 0.00517864 24 -1 13 13 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 3.85 vpr 63.84 MiB 0.01 6284 -1 -1 1 0.02 -1 -1 33644 -1 -1 4 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65368 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 25.3 MiB 0.10 257 1698 288 1343 67 63.8 MiB 0.01 0.00 1.2594 -33.773 -1.2594 1.2594 0.95 0.000156179 0.000141982 0.00442249 0.00403104 30 624 21 6.87369e+06 55895.4 556674. 1926.21 0.85 0.0251418 0.0215169 25186 138497 -1 565 12 253 253 17566 4388 1.29497 1.29497 -39.1934 -1.29497 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00534912 0.00475642 26 -1 14 14 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 4.82 vpr 63.60 MiB 0.01 6392 -1 -1 1 0.02 -1 -1 33668 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65124 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 25.1 MiB 0.07 199 2525 555 1893 77 63.6 MiB 0.02 0.00 1.2704 -35.5781 -1.2704 1.2704 0.92 0.00014041 0.000126323 0.00511038 0.00460585 26 660 12 6.87369e+06 55895.4 503264. 1741.40 2.01 0.0369959 0.0312992 24322 120374 -1 582 16 375 375 25326 7733 1.25097 1.25097 -41.3722 -1.25097 0 0 618332. 2139.56 0.25 0.02 0.11 -1 -1 0.25 0.00645483 0.00561676 28 -1 15 15 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 6.63 vpr 64.04 MiB 0.01 6312 -1 -1 1 0.02 -1 -1 33968 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65580 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 25.5 MiB 0.11 254 5703 2371 3279 53 64.0 MiB 0.03 0.00 1.2814 -38.5865 -1.2814 1.2814 0.94 9.7322e-05 8.7352e-05 0.0103174 0.00935564 36 702 20 6.87369e+06 55895.4 648988. 2245.63 3.60 0.0608578 0.0518653 26050 158493 -1 568 18 472 472 31841 8530 1.13667 1.13667 -38.7057 -1.13667 0 0 828058. 2865.25 0.32 0.02 0.15 -1 -1 0.32 0.00770017 0.00674658 31 -1 16 16 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 5.74 vpr 63.83 MiB 0.01 6216 -1 -1 1 0.02 -1 -1 33660 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65364 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 25.5 MiB 0.20 339 2768 498 2177 93 63.8 MiB 0.02 0.00 1.65273 -43.0941 -1.65273 1.65273 0.96 0.000194962 0.000177895 0.00617715 0.00564437 30 835 17 6.87369e+06 69869.2 556674. 1926.21 2.67 0.048312 0.0411972 25186 138497 -1 753 11 366 366 26181 6493 1.22267 1.22267 -46.833 -1.22267 0 0 706193. 2443.58 0.28 0.02 0.14 -1 -1 0.28 0.00607182 0.00540608 33 -1 17 17 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 5.30 vpr 63.94 MiB 0.01 6332 -1 -1 1 0.02 -1 -1 33948 -1 -1 5 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65472 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 25.6 MiB 0.10 294 6191 2575 3554 62 63.9 MiB 0.04 0.00 1.66373 -46.2163 -1.66373 1.66373 0.96 0.00021031 0.000191722 0.0127814 0.0116036 28 784 25 6.87369e+06 69869.2 531479. 1839.03 2.34 0.0715045 0.0611282 24610 126494 -1 656 16 428 428 37045 9877 1.22267 1.22267 -47.9339 -1.22267 0 0 648988. 2245.63 0.26 0.02 0.12 -1 -1 0.26 0.00813031 0.00715189 34 -1 18 18 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 3.86 vpr 63.86 MiB 0.01 6404 -1 -1 1 0.02 -1 -1 33972 -1 -1 5 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65392 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 25.5 MiB 0.10 394 3301 624 2568 109 63.9 MiB 0.02 0.00 1.68573 -53.1175 -1.68573 1.68573 0.96 0.000200946 0.000182272 0.00670338 0.0061047 30 911 17 6.87369e+06 69869.2 556674. 1926.21 0.85 0.0326345 0.0283215 25186 138497 -1 785 18 412 412 25547 6746 1.23997 1.23997 -53.6315 -1.23997 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00952428 0.00834799 38 -1 20 20 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 4.38 vpr 64.02 MiB 0.01 6384 -1 -1 1 0.02 -1 -1 34080 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65552 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 25.6 MiB 0.10 378 8210 2985 4229 996 64.0 MiB 0.04 0.00 1.70773 -58.8485 -1.70773 1.70773 0.93 0.000208773 0.000189716 0.0156952 0.014311 32 1030 21 6.87369e+06 83843 586450. 2029.24 1.34 0.0537248 0.0467921 25474 144626 -1 813 15 509 509 39243 10494 1.21167 1.21167 -58.4197 -1.21167 0 0 744469. 2576.02 0.29 0.03 0.14 -1 -1 0.29 0.00912619 0.00803474 42 -1 22 22 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 4.56 vpr 64.06 MiB 0.01 6476 -1 -1 1 0.03 -1 -1 33996 -1 -1 6 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65600 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 25.6 MiB 0.16 726 8754 2873 4502 1379 64.1 MiB 0.05 0.00 1.72973 -73.6047 -1.72973 1.72973 0.96 0.000263661 0.000239796 0.016186 0.014727 34 1447 13 6.87369e+06 83843 618332. 2139.56 1.37 0.0685902 0.0596989 25762 151098 -1 1325 13 528 528 52983 11455 1.18067 1.18067 -70.7274 -1.18067 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0089609 0.00795295 47 -1 24 24 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 4.52 vpr 64.35 MiB 0.01 6360 -1 -1 1 0.03 -1 -1 33976 -1 -1 7 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65896 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 25.9 MiB 0.10 625 7256 1774 5266 216 64.4 MiB 0.04 0.00 2.11206 -76.8475 -2.11206 2.11206 0.93 0.000298509 0.000273864 0.01326 0.0121315 34 1483 24 6.87369e+06 97816.9 618332. 2139.56 1.45 0.0753698 0.0654615 25762 151098 -1 1269 12 607 607 61231 14407 1.34167 1.34167 -77.3866 -1.34167 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.00941673 0.0084171 50 -1 26 26 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 4.52 vpr 64.37 MiB 0.02 6640 -1 -1 1 0.03 -1 -1 33604 -1 -1 8 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65912 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 25.8 MiB 0.10 776 15004 5726 8363 915 64.4 MiB 0.08 0.00 2.15606 -94.9711 -2.15606 2.15606 0.92 0.000352245 0.000322769 0.0252866 0.0230873 34 1641 15 6.87369e+06 111791 618332. 2139.56 1.44 0.0922476 0.0808134 25762 151098 -1 1535 15 747 747 68960 15615 1.40297 1.40297 -91.3803 -1.40297 0 0 787024. 2723.27 0.32 0.04 0.15 -1 -1 0.32 0.0113982 0.0101367 58 -1 30 30 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 4.47 vpr 64.40 MiB 0.01 6480 -1 -1 1 0.03 -1 -1 33760 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65944 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 26.0 MiB 0.10 954 16046 4777 9693 1576 64.4 MiB 0.08 0.00 2.56039 -113.756 -2.56039 2.56039 0.92 0.000344595 0.000314094 0.0235193 0.0214248 34 2081 18 6.87369e+06 125765 618332. 2139.56 1.41 0.0948947 0.0828019 25762 151098 -1 1795 16 796 796 77662 17471 1.44967 1.44967 -107.41 -1.44967 0 0 787024. 2723.27 0.32 0.04 0.13 -1 -1 0.32 0.0130108 0.0115067 66 -1 34 34 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 5.42 vpr 65.25 MiB 0.02 6808 -1 -1 1 0.04 -1 -1 33832 -1 -1 13 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 26.4 MiB 0.12 1267 31119 10636 17936 2547 65.2 MiB 0.16 0.00 3.45705 -187.252 -3.45705 3.45705 0.98 0.000573894 0.000526249 0.0435726 0.0398806 34 3096 20 6.87369e+06 181660 618332. 2139.56 2.07 0.170584 0.151813 25762 151098 -1 2637 18 1230 1230 128973 28866 1.65467 1.65467 -159.38 -1.65467 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.022702 0.0203571 98 -1 50 50 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 8.13 vpr 65.70 MiB 0.02 6896 -1 -1 1 0.04 -1 -1 34220 -1 -1 17 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 27.0 MiB 0.14 1676 49117 18403 27988 2726 65.7 MiB 0.27 0.01 4.35372 -277.769 -4.35372 4.35372 0.94 0.000824605 0.000760153 0.0637668 0.0586057 36 4299 31 6.87369e+06 237555 648988. 2245.63 4.60 0.309065 0.277661 26050 158493 -1 3453 14 1530 1530 167344 37295 1.87067 1.87067 -218.282 -1.87067 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0247294 0.0224273 130 -1 66 66 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 3.23 vpr 63.29 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33584 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64804 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 24.9 MiB 0.02 29 285 62 205 18 63.3 MiB 0.00 0.00 0.62144 -7.02012 -0.62144 0.62144 0.94 5.1172e-05 4.5432e-05 0.00137615 0.00122233 18 105 10 6.89349e+06 14093.8 376052. 1301.22 0.54 0.00400659 0.00355929 22882 88689 -1 95 3 17 17 922 285 0.74674 0.74674 -8.09412 -0.74674 0 0 470940. 1629.55 0.20 0.00 0.09 -1 -1 0.20 0.00191149 0.00178658 8 -1 5 5 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 3.23 vpr 63.30 MiB 0.01 6256 -1 -1 1 0.02 -1 -1 33304 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64820 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.9 MiB 0.04 78 376 85 271 20 63.3 MiB 0.01 0.00 0.828273 -10.1712 -0.828273 0.828273 0.94 6.2702e-05 5.5881e-05 0.0015013 0.00134535 18 169 7 6.89349e+06 28187.7 376052. 1301.22 0.54 0.00425163 0.00381041 22882 88689 -1 162 10 57 57 2758 959 0.87204 0.87204 -11.6748 -0.87204 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.0027811 0.00247817 10 -1 6 6 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 3.87 vpr 63.25 MiB 0.01 6392 -1 -1 1 0.02 -1 -1 33372 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64764 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 24.8 MiB 0.04 78 444 92 346 6 63.2 MiB 0.01 0.00 0.850273 -13.3945 -0.850273 0.850273 0.95 8.3684e-05 7.5434e-05 0.00180938 0.0016312 18 251 8 6.89349e+06 28187.7 376052. 1301.22 1.14 0.00771263 0.00664309 22882 88689 -1 204 10 111 111 5940 1840 0.942573 0.942573 -14.4899 -0.942573 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00311622 0.00276712 12 -1 7 7 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 4.85 vpr 63.11 MiB 0.01 6232 -1 -1 1 0.02 -1 -1 33720 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64620 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 24.7 MiB 0.05 200 1012 243 655 114 63.1 MiB 0.01 0.00 0.872273 -18.5692 -0.872273 0.872273 0.96 8.6826e-05 7.7913e-05 0.0033086 0.00299157 26 415 10 6.89349e+06 28187.7 503264. 1741.40 2.01 0.0211196 0.017611 24322 120374 -1 369 9 114 114 9110 2005 1.06167 1.06167 -20.8311 -1.06167 0 0 618332. 2139.56 0.26 0.01 0.12 -1 -1 0.26 0.0031544 0.00282515 14 -1 8 8 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 3.72 vpr 63.55 MiB 0.01 6144 -1 -1 1 0.02 -1 -1 33488 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65080 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 25.1 MiB 0.08 118 862 183 616 63 63.6 MiB 0.01 0.00 1.2657 -18.4312 -1.2657 1.2657 0.97 9.6642e-05 8.7168e-05 0.00271573 0.00244928 28 342 16 6.89349e+06 42281.5 531479. 1839.03 0.81 0.0157696 0.0133393 24610 126494 -1 278 14 188 188 9539 2950 1.10367 1.10367 -21.2097 -1.10367 0 0 648988. 2245.63 0.27 0.01 0.13 -1 -1 0.27 0.00422291 0.00371733 17 -1 9 9 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 5.45 vpr 63.51 MiB 0.01 6140 -1 -1 1 0.02 -1 -1 33724 -1 -1 3 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65032 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 25.0 MiB 0.05 149 1217 254 894 69 63.5 MiB 0.01 0.00 1.2326 -21.9687 -1.2326 1.2326 0.97 0.000117258 0.000106435 0.0035972 0.00326123 30 363 10 6.89349e+06 42281.5 556674. 1926.21 2.53 0.033343 0.0277944 25186 138497 -1 320 10 169 169 10676 3270 0.87702 0.87702 -22.7498 -0.87702 0 0 706193. 2443.58 0.29 0.01 0.13 -1 -1 0.29 0.0037372 0.00332269 18 -1 10 10 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 4.47 vpr 63.58 MiB 0.01 6264 -1 -1 1 0.02 -1 -1 33644 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65104 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 25.1 MiB 0.05 200 932 174 705 53 63.6 MiB 0.01 0.00 1.2436 -25.1484 -1.2436 1.2436 0.95 0.000124841 0.000113617 0.0029234 0.00267483 26 430 15 6.89349e+06 42281.5 503264. 1741.40 1.59 0.0304566 0.0254773 24322 120374 -1 409 12 191 191 15491 3855 1.00037 1.00037 -27.0113 -1.00037 0 0 618332. 2139.56 0.26 0.01 0.12 -1 -1 0.26 0.00470651 0.00415777 20 -1 11 11 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 3.79 vpr 63.34 MiB 0.01 6296 -1 -1 1 0.02 -1 -1 33504 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64856 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 24.8 MiB 0.06 144 2828 1054 1431 343 63.3 MiB 0.02 0.00 1.2546 -27.4315 -1.2546 1.2546 0.95 0.000140746 0.000128122 0.00756181 0.00684497 32 386 10 6.89349e+06 42281.5 586450. 2029.24 0.86 0.023002 0.019825 25474 144626 -1 349 12 188 188 12437 3505 1.01137 1.01137 -27.3524 -1.01137 0 0 744469. 2576.02 0.31 0.01 0.14 -1 -1 0.31 0.00491039 0.00435064 22 -1 12 12 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 4.47 vpr 63.62 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33596 -1 -1 4 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65152 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 25.1 MiB 0.05 160 3141 1095 1440 606 63.6 MiB 0.02 0.00 1.2656 -30.185 -1.2656 1.2656 0.91 0.000126484 0.000113872 0.00667671 0.00599203 30 477 16 6.89349e+06 56375.4 556674. 1926.21 1.68 0.0376824 0.031553 25186 138497 -1 387 8 199 199 11652 3220 1.15867 1.15867 -31.0113 -1.15867 0 0 706193. 2443.58 0.29 0.01 0.12 -1 -1 0.29 0.00405889 0.00364615 24 -1 13 13 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 4.68 vpr 63.53 MiB 0.01 6356 -1 -1 1 0.02 -1 -1 33668 -1 -1 4 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65052 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 25.0 MiB 0.05 266 2346 496 1701 149 63.5 MiB 0.02 0.00 1.2766 -33.6936 -1.2766 1.2766 0.96 0.000159508 0.0001449 0.00559323 0.00508435 30 629 11 6.89349e+06 56375.4 556674. 1926.21 1.77 0.0401808 0.0341161 25186 138497 -1 559 11 249 249 17575 4310 1.14287 1.14287 -36.1241 -1.14287 0 0 706193. 2443.58 0.30 0.01 0.14 -1 -1 0.30 0.0052376 0.00467221 26 -1 14 14 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 4.63 vpr 63.55 MiB 0.01 6204 -1 -1 1 0.02 -1 -1 33748 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65080 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 25.0 MiB 0.05 176 2845 630 2149 66 63.6 MiB 0.02 0.00 1.2876 -35.1215 -1.2876 1.2876 0.94 0.000171791 0.000156768 0.006787 0.00615809 28 590 11 6.89349e+06 56375.4 531479. 1839.03 1.76 0.0442054 0.0376142 24610 126494 -1 531 14 345 345 20534 6365 1.32317 1.32317 -41.0078 -1.32317 0 0 648988. 2245.63 0.27 0.02 0.12 -1 -1 0.27 0.00626471 0.00551831 28 -1 15 15 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 5.13 vpr 63.59 MiB 0.01 6536 -1 -1 1 0.02 -1 -1 34064 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65112 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 25.0 MiB 0.09 407 5703 1643 3514 546 63.6 MiB 0.03 0.00 1.2986 -43.2206 -1.2986 1.2986 0.88 0.000174316 0.00015757 0.0117213 0.0105648 32 883 15 6.89349e+06 56375.4 586450. 2029.24 2.21 0.0644078 0.0548997 25474 144626 -1 763 17 331 331 28881 6761 1.17597 1.17597 -43.8861 -1.17597 0 0 744469. 2576.02 0.31 0.02 0.14 -1 -1 0.31 0.0076237 0.0067189 31 -1 16 16 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 3.86 vpr 63.79 MiB 0.01 6384 -1 -1 1 0.03 -1 -1 33860 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65324 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 25.2 MiB 0.19 339 2477 446 1968 63 63.8 MiB 0.02 0.00 1.66993 -43.2794 -1.66993 1.66993 0.91 0.000190595 0.000173267 0.00557479 0.00506579 30 830 16 6.89349e+06 70469.2 556674. 1926.21 0.85 0.0285554 0.024654 25186 138497 -1 759 14 343 343 24379 5974 1.33217 1.33217 -47.9201 -1.33217 0 0 706193. 2443.58 0.28 0.02 0.13 -1 -1 0.28 0.0064729 0.00570519 33 -1 17 17 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 3.86 vpr 63.89 MiB 0.01 6228 -1 -1 1 0.02 -1 -1 33620 -1 -1 5 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65424 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 25.5 MiB 0.09 533 6191 2070 2945 1176 63.9 MiB 0.04 0.00 1.68093 -51.8948 -1.68093 1.68093 0.93 0.00019917 0.000181002 0.0130179 0.0118749 32 1010 15 6.89349e+06 70469.2 586450. 2029.24 0.88 0.0371633 0.0324911 25474 144626 -1 936 12 393 393 37426 8327 1.10837 1.10837 -51.6103 -1.10837 0 0 744469. 2576.02 0.29 0.02 0.14 -1 -1 0.29 0.00658969 0.00584631 34 -1 18 18 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 3.87 vpr 63.97 MiB 0.01 6360 -1 -1 1 0.02 -1 -1 33956 -1 -1 5 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65504 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 25.6 MiB 0.08 387 3901 827 2954 120 64.0 MiB 0.03 0.00 1.70293 -53.0623 -1.70293 1.70293 0.93 0.00024808 0.000228087 0.00827255 0.00753339 32 958 23 6.89349e+06 70469.2 586450. 2029.24 0.91 0.0376724 0.0326319 25474 144626 -1 802 13 405 405 31387 8277 1.14962 1.14962 -52.5808 -1.14962 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00758695 0.00671331 38 -1 20 20 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 4.36 vpr 63.80 MiB 0.01 6344 -1 -1 1 0.03 -1 -1 33952 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65328 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 25.4 MiB 0.08 542 9176 2598 5872 706 63.8 MiB 0.05 0.00 1.72493 -64.2553 -1.72493 1.72493 0.94 0.000242363 0.000219651 0.0176069 0.0159986 34 1216 15 6.89349e+06 84563 618332. 2139.56 1.34 0.0655553 0.05684 25762 151098 -1 1073 13 431 431 36077 8208 1.14757 1.14757 -62.5674 -1.14757 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.0083803 0.00744624 42 -1 22 22 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 4.47 vpr 64.09 MiB 0.01 6568 -1 -1 1 0.03 -1 -1 33784 -1 -1 6 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65628 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 25.6 MiB 0.12 723 8754 3239 4614 901 64.1 MiB 0.05 0.00 1.74693 -73.4399 -1.74693 1.74693 0.95 0.000273124 0.000249788 0.0163658 0.0149141 34 1403 18 6.89349e+06 84563 618332. 2139.56 1.38 0.0710061 0.0616981 25762 151098 -1 1306 16 531 531 49975 10849 1.17437 1.17437 -70.21 -1.17437 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.0102386 0.00905132 47 -1 24 24 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 4.41 vpr 63.92 MiB 0.01 6500 -1 -1 1 0.03 -1 -1 33944 -1 -1 7 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65456 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 25.5 MiB 0.11 631 6906 1526 5153 227 63.9 MiB 0.04 0.00 2.12926 -78.3694 -2.12926 2.12926 0.92 0.000296433 0.000270844 0.0123489 0.0112596 34 1448 16 6.89349e+06 98656.9 618332. 2139.56 1.37 0.0689374 0.0598093 25762 151098 -1 1287 20 606 606 60874 13470 1.24467 1.24467 -74.9117 -1.24467 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0123211 0.0108181 50 -1 26 26 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 4.51 vpr 64.19 MiB 0.01 6436 -1 -1 1 0.03 -1 -1 33744 -1 -1 8 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65728 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 25.7 MiB 0.10 807 15217 5536 8453 1228 64.2 MiB 0.08 0.00 2.17326 -96.6426 -2.17326 2.17326 0.92 0.000337474 0.000307496 0.0253261 0.0231261 34 1701 22 6.89349e+06 112751 618332. 2139.56 1.43 0.0947111 0.0829757 25762 151098 -1 1478 15 668 668 60022 13415 1.23367 1.23367 -85.4602 -1.23367 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.0117658 0.0104448 58 -1 30 30 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 6.25 vpr 64.41 MiB 0.02 6428 -1 -1 1 0.03 -1 -1 33860 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65952 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 26.1 MiB 0.12 932 16046 5153 9164 1729 64.4 MiB 0.08 0.00 2.57759 -112.715 -2.57759 2.57759 0.96 0.000376753 0.000344502 0.0257559 0.0235665 34 1944 21 6.89349e+06 126845 618332. 2139.56 3.06 0.133407 0.116516 25762 151098 -1 1725 16 700 700 61178 13677 1.47797 1.47797 -104.784 -1.47797 0 0 787024. 2723.27 0.32 0.04 0.15 -1 -1 0.32 0.0138471 0.012256 66 -1 34 34 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 5.03 vpr 65.23 MiB 0.02 6716 -1 -1 1 0.03 -1 -1 33964 -1 -1 13 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 26.4 MiB 0.14 1295 31119 10716 17608 2795 65.2 MiB 0.16 0.00 3.47425 -188.48 -3.47425 3.47425 0.94 0.000573484 0.000524761 0.0423617 0.0386876 34 3116 22 6.89349e+06 183220 618332. 2139.56 1.72 0.1668 0.148191 25762 151098 -1 2663 17 1156 1156 111931 25302 1.90527 1.90527 -172.787 -1.90527 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0209883 0.0187235 98 -1 50 50 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 7.71 vpr 65.79 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 34172 -1 -1 17 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67364 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 27.1 MiB 0.14 1716 49117 18160 27971 2986 65.8 MiB 0.25 0.01 4.37092 -279.363 -4.37092 4.37092 0.96 0.000781841 0.000717769 0.0612675 0.0562118 36 4039 24 6.89349e+06 239595 648988. 2245.63 4.22 0.285795 0.255792 26050 158493 -1 3391 14 1456 1456 151151 33724 1.79097 1.79097 -212.298 -1.79097 0 0 828058. 2865.25 0.35 0.08 0.15 -1 -1 0.35 0.026466 0.0240558 130 -1 66 66 0 0 +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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.51 vpr 60.38 MiB 0.03 5768 -1 -1 1 0.06 -1 -1 31688 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61824 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 21.8 MiB 0.01 50 298 76 216 6 60.4 MiB 0.01 0.00 0.701249 -6.72129 -0.701249 0.701249 0.63 7.8233e-05 6.9941e-05 0.00178144 0.00158683 20 111 5 6.55708e+06 24110 394039. 1363.46 0.44 0.00409794 0.00368897 19870 87366 -1 112 7 31 31 1537 535 0.701248 0.701248 -7.34893 -0.701248 0 0 477104. 1650.88 0.14 0.01 0.06 -1 -1 0.14 0.00228777 0.0020842 10 4 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.52 vpr 60.50 MiB 0.01 5728 -1 -1 2 0.05 -1 -1 31844 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61952 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 21.9 MiB 0.01 72 396 78 308 10 60.5 MiB 0.01 0.00 0.900447 -9.59862 -0.900447 0.900447 0.63 8.6191e-05 7.8103e-05 0.00197393 0.00179135 20 170 8 6.55708e+06 24110 394039. 1363.46 0.44 0.0051719 0.0046466 19870 87366 -1 175 6 62 67 3812 1117 0.819447 0.819447 -10.677 -0.819447 0 0 477104. 1650.88 0.14 0.01 0.09 -1 -1 0.14 0.00274377 0.00248632 13 6 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.67 vpr 60.70 MiB 0.01 5836 -1 -1 2 0.05 -1 -1 31856 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62160 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 22.1 MiB 0.01 72 444 121 288 35 60.7 MiB 0.01 0.00 0.900447 -12.0151 -0.900447 0.900447 0.66 0.000123561 0.000112673 0.00255951 0.00232796 22 204 10 6.55708e+06 24110 420624. 1455.45 0.53 0.0151535 0.0127839 20158 92377 -1 156 10 82 85 4128 1402 0.819447 0.819447 -12.0716 -0.819447 0 0 500653. 1732.36 0.14 0.01 0.08 -1 -1 0.14 0.00336148 0.00296954 16 7 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.85 vpr 60.48 MiB 0.03 5752 -1 -1 3 0.05 -1 -1 31912 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61928 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 21.9 MiB 0.01 91 855 163 648 44 60.5 MiB 0.01 0.00 1.58811 -16.2873 -1.58811 1.58811 0.65 0.0001491 0.000136362 0.00443541 0.00405993 24 290 10 6.55708e+06 36165 448715. 1552.65 0.56 0.0201013 0.0171004 20734 103517 -1 237 9 111 124 7071 2166 1.50711 1.50711 -17.1728 -1.50711 0 0 554710. 1919.41 0.15 0.01 0.09 -1 -1 0.15 0.00392995 0.00345491 19 9 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.88 vpr 60.57 MiB 0.03 5728 -1 -1 3 0.05 -1 -1 32332 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62020 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 21.9 MiB 0.01 99 1014 271 604 139 60.6 MiB 0.01 0.00 1.23151 -17.4525 -1.23151 1.23151 0.65 0.000144848 0.000133009 0.004309 0.00394922 26 398 20 6.55708e+06 36165 477104. 1650.88 0.60 0.023269 0.01964 21022 109990 -1 272 8 150 171 7737 2724 1.14085 1.14085 -18.4888 -1.14085 0 0 585099. 2024.56 0.16 0.01 0.11 -1 -1 0.16 0.00390435 0.0034638 23 10 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.66 vpr 60.57 MiB 0.02 5800 -1 -1 3 0.06 -1 -1 32040 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62020 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 21.8 MiB 0.06 161 628 145 480 3 60.6 MiB 0.01 0.00 1.70831 -22.396 -1.70831 1.70831 0.65 0.000181793 0.000168122 0.00292564 0.00270391 20 373 18 6.55708e+06 48220 394039. 1363.46 0.45 0.0108414 0.00951698 19870 87366 -1 332 10 141 157 6947 2096 1.70831 1.70831 -22.553 -1.70831 0 0 477104. 1650.88 0.14 0.01 0.09 -1 -1 0.14 0.00538985 0.0047002 25 14 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.90 vpr 60.71 MiB 0.01 5748 -1 -1 4 0.06 -1 -1 31928 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62164 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 22.2 MiB 0.02 142 1229 224 959 46 60.7 MiB 0.02 0.00 1.58811 -24.8435 -1.58811 1.58811 0.65 0.000225508 0.000208897 0.00584583 0.00538251 26 433 14 6.55708e+06 48220 477104. 1650.88 0.62 0.0299412 0.0253474 21022 109990 -1 380 12 196 260 11751 3722 1.59011 1.59011 -25.8906 -1.59011 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00573217 0.00499572 29 13 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.87 vpr 60.69 MiB 0.03 5856 -1 -1 4 0.07 -1 -1 32004 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62144 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 22.2 MiB 0.03 252 2965 1025 1339 601 60.7 MiB 0.02 0.00 1.68077 -28.9367 -1.68077 1.68077 0.64 0.000207824 0.00019209 0.0107856 0.00995365 24 594 13 6.55708e+06 60275 448715. 1552.65 0.59 0.0352373 0.0303719 20734 103517 -1 554 14 206 272 22917 5650 1.46791 1.46791 -30.8716 -1.46791 0 0 554710. 1919.41 0.16 0.02 0.12 -1 -1 0.16 0.00697795 0.00602941 33 17 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.89 vpr 60.69 MiB 0.03 5836 -1 -1 5 0.06 -1 -1 32540 -1 -1 5 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62144 23 12 73 85 1 58 40 17 17 289 -1 unnamed_device 22.2 MiB 0.02 278 3032 1045 1570 417 60.7 MiB 0.03 0.00 2.03736 -35.0243 -2.03736 2.03736 0.64 0.000257423 0.000237469 0.0115634 0.0106791 26 659 17 6.55708e+06 60275 477104. 1650.88 0.61 0.0369173 0.031842 21022 109990 -1 581 12 230 328 22222 5685 2.03937 2.03937 -36.8236 -2.03937 0 0 585099. 2024.56 0.16 0.02 0.11 -1 -1 0.16 0.00650193 0.00565059 35 16 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.36 vpr 60.73 MiB 0.01 5796 -1 -1 5 0.06 -1 -1 31836 -1 -1 6 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62188 25 13 82 95 1 66 44 17 17 289 -1 unnamed_device 22.3 MiB 0.02 261 1738 345 1379 14 60.7 MiB 0.02 0.00 2.11777 -37.2851 -2.11777 2.11777 0.64 0.000242956 0.000224674 0.00619192 0.00572665 28 714 10 6.55708e+06 72330 500653. 1732.36 2.07 0.0489346 0.0413803 21310 115450 -1 580 11 224 306 19281 5020 1.7847 1.7847 -37.4656 -1.7847 0 0 612192. 2118.31 0.18 0.02 0.11 -1 -1 0.18 0.00672584 0.00589076 40 20 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.07 vpr 60.81 MiB 0.01 5964 -1 -1 5 0.07 -1 -1 32072 -1 -1 7 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62268 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 22.3 MiB 0.02 361 1875 344 1504 27 60.8 MiB 0.02 0.00 1.70831 -38.0204 -1.70831 1.70831 0.64 0.00027381 0.000254101 0.00676226 0.0062794 26 785 27 6.55708e+06 84385 477104. 1650.88 0.73 0.0488077 0.0415323 21022 109990 -1 675 10 237 340 18614 4888 1.61564 1.61564 -40.3003 -1.61564 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00709087 0.00623777 42 24 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.88 vpr 60.81 MiB 0.02 5796 -1 -1 6 0.06 -1 -1 31740 -1 -1 7 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62272 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 22.3 MiB 0.04 444 2495 549 1721 225 60.8 MiB 0.02 0.00 2.39596 -47.6713 -2.39596 2.39596 0.64 0.000291843 0.000270602 0.00838045 0.0077761 26 907 16 6.55708e+06 84385 477104. 1650.88 0.62 0.0401185 0.0344513 21022 109990 -1 838 12 239 341 22464 5496 2.2243 2.2243 -49.1418 -2.2243 0 0 585099. 2024.56 0.17 0.02 0.11 -1 -1 0.17 0.00810516 0.00706014 45 23 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.10 vpr 60.83 MiB 0.03 5876 -1 -1 6 0.06 -1 -1 31756 -1 -1 9 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62288 31 16 104 120 1 80 56 17 17 289 -1 unnamed_device 22.3 MiB 0.12 378 5941 1874 2717 1350 60.8 MiB 0.04 0.00 2.19676 -46.103 -2.19676 2.19676 0.63 0.000368713 0.000341861 0.0187097 0.0173553 28 910 12 6.55708e+06 108495 500653. 1732.36 0.78 0.0547701 0.0475579 21310 115450 -1 831 11 376 558 32554 8498 2.07656 2.07656 -49.0102 -2.07656 0 0 612192. 2118.31 0.17 0.02 0.07 -1 -1 0.17 0.00857879 0.00751845 50 27 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.19 vpr 60.95 MiB 0.03 5824 -1 -1 7 0.06 -1 -1 31836 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62412 33 17 108 125 1 86 57 17 17 289 -1 unnamed_device 22.4 MiB 0.03 565 6270 1776 3822 672 60.9 MiB 0.05 0.00 3.08362 -63.5746 -3.08362 3.08362 0.63 0.000384404 0.00035665 0.0223606 0.0207758 30 1078 12 6.55708e+06 84385 526063. 1820.29 0.73 0.0642799 0.0560957 21886 126133 -1 998 13 303 449 26508 6458 2.84322 2.84322 -62.7775 -2.84322 0 0 666494. 2306.21 0.21 0.03 0.11 -1 -1 0.21 0.0118703 0.0103099 51 26 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.19 vpr 61.12 MiB 0.03 5972 -1 -1 7 0.07 -1 -1 32416 -1 -1 8 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62588 37 19 127 146 1 101 64 17 17 289 -1 unnamed_device 22.5 MiB 0.18 554 5144 1328 3388 428 61.1 MiB 0.04 0.00 2.78339 -65.1521 -2.78339 2.78339 0.63 0.000436208 0.00040536 0.0176434 0.0163838 26 1306 16 6.55708e+06 96440 477104. 1650.88 0.77 0.0655914 0.0570889 21022 109990 -1 1190 11 396 566 39406 9328 2.64602 2.64602 -69.1724 -2.64602 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.0099263 0.00873413 59 35 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.17 vpr 61.10 MiB 0.03 5880 -1 -1 8 0.07 -1 -1 31992 -1 -1 10 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62564 41 21 139 160 1 109 72 17 17 289 -1 unnamed_device 22.7 MiB 0.15 447 7224 1591 4752 881 61.1 MiB 0.05 0.00 3.28422 -74.213 -3.28422 3.28422 0.64 0.00047421 0.000440946 0.0239498 0.0222625 26 1153 17 6.55708e+06 120550 477104. 1650.88 0.67 0.070125 0.0616521 21022 109990 -1 988 13 413 556 34410 9054 2.92362 2.92362 -72.9932 -2.92362 0 0 585099. 2024.56 0.17 0.03 0.11 -1 -1 0.17 0.0125504 0.0109522 67 37 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.07 vpr 61.21 MiB 0.02 6084 -1 -1 9 0.07 -1 -1 32268 -1 -1 11 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62676 45 23 152 175 1 124 79 17 17 289 -1 unnamed_device 22.7 MiB 0.05 733 10219 2597 6052 1570 61.2 MiB 0.06 0.00 3.23076 -86.0719 -3.23076 3.23076 0.63 0.00043351 0.000402155 0.0275242 0.0255513 26 1549 12 6.55708e+06 132605 477104. 1650.88 0.65 0.0739214 0.0654238 21022 109990 -1 1353 16 472 658 45777 10612 3.1381 3.1381 -89.3858 -3.1381 0 0 585099. 2024.56 0.24 0.04 0.10 -1 -1 0.24 0.0159154 0.0140296 74 40 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.49 vpr 61.52 MiB 0.01 6052 -1 -1 10 0.07 -1 -1 32588 -1 -1 11 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63000 49 25 165 190 1 131 85 17 17 289 -1 unnamed_device 23.1 MiB 0.24 533 10873 3248 5447 2178 61.5 MiB 0.08 0.00 3.72533 -95.3298 -3.72533 3.72533 0.63 0.000549556 0.000509726 0.0333018 0.0309075 28 1427 44 6.55708e+06 132605 500653. 1732.36 0.81 0.105563 0.0930731 21310 115450 -1 1256 12 528 701 45892 12260 3.58796 3.58796 -98.6308 -3.58796 0 0 612192. 2118.31 0.20 0.04 0.11 -1 -1 0.20 0.0130757 0.0115871 79 43 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.61 vpr 61.63 MiB 0.02 6056 -1 -1 11 0.08 -1 -1 32604 -1 -1 14 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63112 57 29 199 228 1 157 100 17 17 289 -1 unnamed_device 23.0 MiB 0.24 728 11468 2977 6953 1538 61.6 MiB 0.08 0.00 4.49954 -124.266 -4.49954 4.49954 0.66 0.000572876 0.000533883 0.032729 0.0304463 30 1687 32 6.55708e+06 168770 526063. 1820.29 0.91 0.114573 0.101415 21886 126133 -1 1419 13 569 828 47790 12858 4.09974 4.09974 -124.39 -4.09974 0 0 666494. 2306.21 0.19 0.04 0.11 -1 -1 0.19 0.0171017 0.015168 93 57 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.92 vpr 61.71 MiB 0.02 6200 -1 -1 13 0.10 -1 -1 32124 -1 -1 15 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63192 65 33 224 257 1 179 113 17 17 289 -1 unnamed_device 23.2 MiB 0.41 1038 16493 5318 8597 2578 61.7 MiB 0.09 0.00 4.53259 -150.281 -4.53259 4.53259 0.64 0.000643715 0.000599629 0.0409332 0.0381518 28 2173 41 6.55708e+06 180825 500653. 1732.36 1.04 0.136214 0.120605 21310 115450 -1 1884 12 621 817 57982 14048 4.42276 4.42276 -153.676 -4.42276 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0156487 0.013988 107 62 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.24 vpr 62.60 MiB 0.03 6296 -1 -1 19 0.12 -1 -1 32440 -1 -1 24 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 97 49 340 389 1 265 170 17 17 289 -1 unnamed_device 23.8 MiB 0.29 1334 34950 10414 20834 3702 62.6 MiB 0.18 0.00 7.26745 -288.28 -7.26745 7.26745 0.63 0.00097962 0.000913283 0.0760972 0.0709664 28 3171 27 6.55708e+06 289320 500653. 1732.36 1.23 0.206918 0.186572 21310 115450 -1 2696 11 990 1365 95731 23807 6.78665 6.78665 -282.016 -6.78665 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0249715 0.022515 160 98 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 7.41 vpr 63.51 MiB 0.04 6624 -1 -1 26 0.11 -1 -1 32520 -1 -1 31 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 129 65 454 519 1 354 225 17 17 289 -1 unnamed_device 24.7 MiB 0.19 1718 54945 15410 32877 6658 63.5 MiB 0.26 0.00 9.81484 -466.455 -9.81484 9.81484 0.63 0.00135053 0.0012653 0.113027 0.105839 48 3235 34 6.55708e+06 373705 816265. 2824.45 4.22 0.553116 0.497642 25054 189045 -1 3027 28 1189 1684 209050 94655 9.09364 9.09364 -438.041 -9.09364 0 0 986792. 3414.50 0.26 0.14 0.17 -1 -1 0.26 0.071187 0.063916 213 132 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.44 abc 29.25 MiB 0.03 6168 -1 -1 1 0.02 -1 -1 29948 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22676 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.45 abc 29.45 MiB 0.03 6088 -1 -1 1 0.02 -1 -1 30152 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22712 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.41 abc 29.29 MiB 0.02 5980 -1 -1 1 0.02 -1 -1 29996 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22732 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.46 abc 29.32 MiB 0.06 6116 -1 -1 1 0.02 -1 -1 30028 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22952 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.42 abc 29.35 MiB 0.02 6044 -1 -1 1 0.03 -1 -1 30052 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22716 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.41 abc 29.33 MiB 0.02 6000 -1 -1 1 0.02 -1 -1 30032 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22712 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.42 abc 29.28 MiB 0.02 6104 -1 -1 1 0.02 -1 -1 29980 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22860 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.42 abc 29.36 MiB 0.02 6000 -1 -1 1 0.02 -1 -1 30064 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22680 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.41 abc 29.32 MiB 0.02 6068 -1 -1 1 0.02 -1 -1 30024 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23012 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.45 abc 29.46 MiB 0.02 6032 -1 -1 1 0.02 -1 -1 30164 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22852 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.39 abc 29.29 MiB 0.01 6164 -1 -1 1 0.02 -1 -1 29992 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22904 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.40 abc 29.36 MiB 0.03 6152 -1 -1 1 0.02 -1 -1 30068 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22896 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.38 abc 29.29 MiB 0.02 6216 -1 -1 1 0.02 -1 -1 29992 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22872 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.41 abc 29.60 MiB 0.03 6148 -1 -1 1 0.02 -1 -1 30308 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22872 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.42 abc 29.62 MiB 0.03 6244 -1 -1 1 0.02 -1 -1 30332 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22820 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.43 abc 29.53 MiB 0.02 6172 -1 -1 1 0.03 -1 -1 30236 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22936 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.43 abc 29.65 MiB 0.03 6204 -1 -1 1 0.02 -1 -1 30360 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22892 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.45 abc 29.72 MiB 0.04 6264 -1 -1 1 0.03 -1 -1 30432 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22952 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 7 7 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.41 abc 29.65 MiB 0.02 6200 -1 -1 1 0.03 -1 -1 30364 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23412 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 8 8 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.47 abc 29.64 MiB 0.01 6356 -1 -1 1 0.03 -1 -1 30348 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23160 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 9 9 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.42 abc 29.63 MiB 0.02 6496 -1 -1 1 0.03 -1 -1 30344 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23504 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 13 13 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.53 abc 29.67 MiB 0.03 6752 -1 -1 1 0.03 -1 -1 30384 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23848 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 17 17 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.41 abc 29.36 MiB 0.01 6108 -1 -1 1 0.03 -1 -1 30068 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22392 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.36 abc 29.30 MiB 0.01 6200 -1 -1 1 0.03 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22384 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.37 abc 29.31 MiB 0.02 6088 -1 -1 1 0.02 -1 -1 30016 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22508 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.37 abc 29.37 MiB 0.01 6152 -1 -1 1 0.03 -1 -1 30076 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22692 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.43 abc 29.50 MiB 0.03 5996 -1 -1 1 0.02 -1 -1 30208 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22420 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.42 abc 29.52 MiB 0.01 6100 -1 -1 1 0.02 -1 -1 30228 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22444 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.40 abc 29.28 MiB 0.03 6128 -1 -1 1 0.02 -1 -1 29980 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22520 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.39 abc 29.34 MiB 0.02 6168 -1 -1 1 0.02 -1 -1 30048 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22472 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.42 abc 29.35 MiB 0.01 6124 -1 -1 1 0.03 -1 -1 30052 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22524 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.42 abc 29.34 MiB 0.01 6024 -1 -1 1 0.03 -1 -1 30040 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22608 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.41 abc 29.30 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22504 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.40 abc 29.52 MiB 0.02 6092 -1 -1 1 0.02 -1 -1 30228 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22740 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.36 abc 29.41 MiB 0.01 6052 -1 -1 1 0.02 -1 -1 30120 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22544 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.42 abc 29.53 MiB 0.02 6164 -1 -1 1 0.02 -1 -1 30240 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22868 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.33 abc 29.54 MiB 0.01 6084 -1 -1 1 0.02 -1 -1 30248 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22696 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.35 abc 29.63 MiB 0.01 6232 -1 -1 1 0.03 -1 -1 30340 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22692 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.44 abc 29.59 MiB 0.01 6240 -1 -1 1 0.03 -1 -1 30300 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22728 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.52 abc 29.61 MiB 0.03 6272 -1 -1 1 0.03 -1 -1 30316 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22844 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 7 7 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.39 abc 29.63 MiB 0.01 6368 -1 -1 1 0.03 -1 -1 30344 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23116 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 8 8 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.38 abc 29.61 MiB 0.03 6268 -1 -1 1 0.02 -1 -1 30320 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22944 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 9 9 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.42 abc 29.62 MiB 0.02 6544 -1 -1 1 0.03 -1 -1 30328 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23076 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 13 13 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.45 abc 29.82 MiB 0.03 6784 -1 -1 1 0.03 -1 -1 30540 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23440 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 17 17 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.64 vpr 60.75 MiB 0.02 5940 -1 -1 1 0.02 -1 -1 29912 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62208 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.2 MiB 0.01 56 223 48 166 9 60.8 MiB 0.00 0.00 0.770048 -7.07635 -0.770048 0.770048 0.64 5.7054e-05 4.9685e-05 0.00116196 0.00102006 20 108 7 6.64007e+06 25116 394039. 1363.46 0.45 0.00406712 0.00363286 20530 87850 -1 104 4 20 20 1157 330 0.649848 0.649848 -7.37773 -0.649848 0 0 477104. 1650.88 0.18 0.00 0.09 -1 -1 0.18 0.00162848 0.00152727 10 2 5 5 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.70 vpr 60.82 MiB 0.01 6084 -1 -1 1 0.03 -1 -1 29948 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62280 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.2 MiB 0.01 47 376 71 284 21 60.8 MiB 0.01 0.00 0.792048 -9.53833 -0.792048 0.792048 0.70 0.000103916 9.413e-05 0.00227711 0.00205846 20 155 13 6.64007e+06 25116 394039. 1363.46 0.52 0.00633052 0.00557166 20530 87850 -1 146 11 65 65 4138 1278 1.02145 1.02145 -10.9042 -1.02145 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00334457 0.00296098 13 2 6 6 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.62 vpr 60.79 MiB 0.03 6032 -1 -1 1 0.02 -1 -1 30096 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62252 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.1 MiB 0.01 63 419 85 325 9 60.8 MiB 0.01 0.00 0.803048 -11.7113 -0.803048 0.803048 0.64 0.000104643 9.5583e-05 0.00208821 0.00190656 22 226 12 6.64007e+06 25116 420624. 1455.45 0.51 0.0141196 0.011857 20818 92861 -1 195 15 135 135 5924 1892 0.923248 0.923248 -13.4284 -0.923248 0 0 500653. 1732.36 0.14 0.01 0.08 -1 -1 0.14 0.00416611 0.00361402 16 2 7 7 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.81 vpr 60.79 MiB 0.01 6072 -1 -1 1 0.02 -1 -1 30064 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62248 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 22.2 MiB 0.02 113 727 127 584 16 60.8 MiB 0.01 0.00 0.825048 -14.4294 -0.825048 0.825048 0.72 0.000121988 0.000111861 0.0031635 0.00289369 26 251 10 6.64007e+06 37674 477104. 1650.88 0.59 0.0163143 0.013821 21682 110474 -1 241 10 93 93 6258 1676 0.803048 0.803048 -15.3843 -0.803048 0 0 585099. 2024.56 0.16 0.01 0.10 -1 -1 0.16 0.00372128 0.0032873 19 2 8 8 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.83 vpr 60.88 MiB 0.01 6004 -1 -1 1 0.02 -1 -1 29980 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62344 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.2 MiB 0.02 103 938 201 719 18 60.9 MiB 0.01 0.00 1.18536 -16.7279 -1.18536 1.18536 0.64 0.000165104 0.000151572 0.00440018 0.00405035 26 307 12 6.64007e+06 37674 477104. 1650.88 0.58 0.0198738 0.016881 21682 110474 -1 264 10 159 159 7367 2381 1.04145 1.04145 -18.7822 -1.04145 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00418514 0.00369326 22 2 9 9 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.86 vpr 61.16 MiB 0.03 6124 -1 -1 1 0.02 -1 -1 30144 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62632 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.7 MiB 0.02 174 858 170 673 15 61.2 MiB 0.01 0.00 1.19636 -20.4292 -1.19636 1.19636 0.67 0.000158832 0.000146554 0.00345142 0.00318281 26 361 14 6.64007e+06 50232 477104. 1650.88 0.62 0.0226356 0.0191262 21682 110474 -1 348 15 139 139 8493 2401 1.09645 1.09645 -23.2864 -1.09645 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00565725 0.00490607 25 2 10 10 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.96 vpr 61.04 MiB 0.01 6152 -1 -1 1 0.02 -1 -1 30056 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62500 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.6 MiB 0.03 216 1021 207 713 101 61.0 MiB 0.01 0.00 1.20736 -23.977 -1.20736 1.20736 0.67 0.000208756 0.000193226 0.00467284 0.00431874 26 453 9 6.64007e+06 50232 477104. 1650.88 0.66 0.0203026 0.0173873 21682 110474 -1 430 11 129 129 8914 2350 0.976248 0.976248 -25.7696 -0.976248 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00526413 0.00461704 28 2 11 11 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.94 vpr 61.06 MiB 0.02 5972 -1 -1 1 0.02 -1 -1 30068 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62524 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.6 MiB 0.03 214 1623 338 1262 23 61.1 MiB 0.02 0.00 1.21836 -25.661 -1.21836 1.21836 0.64 0.000201527 0.000186586 0.005828 0.00539649 28 435 13 6.64007e+06 62790 500653. 1732.36 0.62 0.0273561 0.023338 21970 115934 -1 423 6 113 113 7584 2083 0.867048 0.867048 -26.4126 -0.867048 0 0 612192. 2118.31 0.18 0.01 0.10 -1 -1 0.18 0.00425419 0.00382007 31 2 12 12 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.95 vpr 60.93 MiB 0.01 6100 -1 -1 1 0.02 -1 -1 30040 -1 -1 5 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62388 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.5 MiB 0.03 261 1536 299 1189 48 60.9 MiB 0.02 0.00 1.22936 -29.0547 -1.22936 1.22936 0.66 0.00021051 0.000194798 0.00538852 0.00499001 22 565 12 6.64007e+06 62790 420624. 1455.45 0.53 0.0286661 0.0243633 20818 92861 -1 510 14 235 235 17099 4766 0.998248 0.998248 -31.1505 -0.998248 0 0 500653. 1732.36 0.20 0.02 0.09 -1 -1 0.20 0.00691385 0.00597895 34 2 13 13 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.88 vpr 61.17 MiB 0.01 6112 -1 -1 1 0.02 -1 -1 30212 -1 -1 5 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62636 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.7 MiB 0.05 303 1618 294 1276 48 61.2 MiB 0.02 0.00 1.24036 -31.9481 -1.24036 1.24036 0.64 0.000231175 0.000213977 0.00560327 0.0051964 26 651 12 6.64007e+06 62790 477104. 1650.88 0.62 0.0317461 0.0273743 21682 110474 -1 645 13 289 289 22692 5466 1.15145 1.15145 -36.3737 -1.15145 0 0 585099. 2024.56 0.17 0.02 0.13 -1 -1 0.17 0.00692078 0.00600881 37 2 14 14 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.93 vpr 61.27 MiB 0.02 6016 -1 -1 1 0.02 -1 -1 30096 -1 -1 6 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62736 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.8 MiB 0.03 324 2231 466 1582 183 61.3 MiB 0.02 0.00 1.25136 -34.9134 -1.25136 1.25136 0.66 0.000240978 0.000223059 0.00709511 0.00656626 26 667 16 6.64007e+06 75348 477104. 1650.88 0.63 0.0353692 0.0303031 21682 110474 -1 637 9 201 201 14423 3637 0.976248 0.976248 -36.0679 -0.976248 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00636036 0.00559834 40 2 15 15 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.01 vpr 61.13 MiB 0.03 6200 -1 -1 1 0.03 -1 -1 30364 -1 -1 6 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62596 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 22.6 MiB 0.02 332 2626 448 2137 41 61.1 MiB 0.02 0.00 1.26236 -36.933 -1.26236 1.26236 0.64 0.000258901 0.000240377 0.0079943 0.00742419 32 685 10 6.64007e+06 75348 554710. 1919.41 0.67 0.0342689 0.0297017 22834 132086 -1 655 16 350 350 24099 6153 0.998248 0.998248 -38.555 -0.998248 0 0 701300. 2426.64 0.19 0.02 0.12 -1 -1 0.19 0.00805388 0.0070684 43 2 16 16 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.02 vpr 61.25 MiB 0.03 6144 -1 -1 1 0.02 -1 -1 30304 -1 -1 7 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62716 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.7 MiB 0.03 430 4134 883 2967 284 61.2 MiB 0.04 0.00 1.62267 -42.2033 -1.62267 1.62267 0.66 0.000322715 0.000299779 0.013224 0.0122769 26 817 11 6.64007e+06 87906 477104. 1650.88 0.62 0.0422818 0.0369375 21682 110474 -1 816 12 321 321 24472 5936 1.20445 1.20445 -45.4834 -1.20445 0 0 585099. 2024.56 0.17 0.03 0.11 -1 -1 0.17 0.012112 0.0105526 46 2 17 17 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.98 vpr 61.38 MiB 0.01 6172 -1 -1 1 0.03 -1 -1 30264 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62856 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.8 MiB 0.04 400 5507 1293 3991 223 61.4 MiB 0.04 0.00 1.63367 -44.5064 -1.63367 1.63367 0.64 0.000291081 0.000270084 0.0154438 0.0143365 26 881 17 6.64007e+06 87906 477104. 1650.88 0.62 0.0480119 0.0419197 21682 110474 -1 768 16 357 357 26049 6710 1.04025 1.04025 -44.3414 -1.04025 0 0 585099. 2024.56 0.16 0.03 0.10 -1 -1 0.16 0.0113143 0.00978266 49 2 18 18 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.95 vpr 61.39 MiB 0.02 6072 -1 -1 1 0.03 -1 -1 30312 -1 -1 8 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62864 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.8 MiB 0.04 467 4001 820 3044 137 61.4 MiB 0.03 0.00 1.65567 -51.2944 -1.65567 1.65567 0.64 0.000259328 0.000235758 0.0112207 0.0104382 26 1045 16 6.64007e+06 100464 477104. 1650.88 0.62 0.047727 0.0413558 21682 110474 -1 931 11 386 386 29872 7060 1.22645 1.22645 -53.9411 -1.22645 0 0 585099. 2024.56 0.20 0.01 0.10 -1 -1 0.20 0.00529279 0.00474067 55 2 20 20 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.13 vpr 61.50 MiB 0.03 6252 -1 -1 1 0.03 -1 -1 30300 -1 -1 8 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62972 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.9 MiB 0.04 551 4966 1056 3737 173 61.5 MiB 0.04 0.00 1.67767 -59.443 -1.67767 1.67767 0.61 0.00036004 0.000335223 0.0134188 0.0125014 32 1078 19 6.64007e+06 100464 554710. 1919.41 0.71 0.0557602 0.0484539 22834 132086 -1 981 15 498 498 37438 8919 1.12945 1.12945 -56.3501 -1.12945 0 0 701300. 2426.64 0.20 0.04 0.12 -1 -1 0.20 0.0138908 0.0120278 61 2 22 22 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.15 vpr 61.55 MiB 0.01 6296 -1 -1 1 0.03 -1 -1 30308 -1 -1 9 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63028 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 23.1 MiB 0.04 584 6760 1544 5011 205 61.6 MiB 0.05 0.00 1.69967 -63.9386 -1.69967 1.69967 0.64 0.000388774 0.00036212 0.0198359 0.0184574 28 1191 18 6.64007e+06 113022 500653. 1732.36 0.66 0.0643785 0.0565769 21970 115934 -1 1118 14 528 528 42588 10256 1.17345 1.17345 -62.9174 -1.17345 0 0 612192. 2118.31 0.18 0.03 0.13 -1 -1 0.18 0.0120803 0.0105928 67 2 24 24 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.30 vpr 61.61 MiB 0.02 6132 -1 -1 1 0.03 -1 -1 30324 -1 -1 10 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63088 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 23.0 MiB 0.05 754 12711 4339 7261 1111 61.6 MiB 0.09 0.00 2.07098 -75.5183 -2.07098 2.07098 0.67 0.000516549 0.000475216 0.0364987 0.0339557 30 1319 18 6.64007e+06 125580 526063. 1820.29 0.75 0.091485 0.0811039 22546 126617 -1 1197 10 456 456 32568 7809 1.13725 1.13725 -68.9549 -1.13725 0 0 666494. 2306.21 0.19 0.05 0.12 -1 -1 0.19 0.0161491 0.0146901 73 2 26 26 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.18 vpr 61.81 MiB 0.02 6268 -1 -1 1 0.03 -1 -1 29972 -1 -1 11 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 23.3 MiB 0.07 781 12973 3128 9205 640 61.8 MiB 0.08 0.00 2.11498 -88.6474 -2.11498 2.11498 0.63 0.00057425 0.000535294 0.0299399 0.0278951 28 1610 16 6.64007e+06 138138 500653. 1732.36 0.70 0.0812357 0.0722514 21970 115934 -1 1440 16 675 675 56617 12982 1.23625 1.23625 -81.6086 -1.23625 0 0 612192. 2118.31 0.21 0.04 0.11 -1 -1 0.21 0.0171077 0.0151214 85 2 30 30 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.32 vpr 62.25 MiB 0.02 6380 -1 -1 1 0.03 -1 -1 30396 -1 -1 13 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.6 MiB 0.05 1016 17401 7183 10118 100 62.2 MiB 0.10 0.00 2.50829 -106.175 -2.50829 2.50829 0.64 0.000570335 0.000531733 0.0391163 0.0364378 32 1805 17 6.64007e+06 163254 554710. 1919.41 0.76 0.102725 0.0916771 22834 132086 -1 1704 12 705 705 62663 14354 1.25625 1.25625 -92.5407 -1.25625 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0149432 0.0132416 97 2 34 34 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.62 vpr 62.81 MiB 0.02 6568 -1 -1 1 0.03 -1 -1 30516 -1 -1 19 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 24.0 MiB 0.07 1599 34969 13035 19621 2313 62.8 MiB 0.21 0.00 3.38291 -183.275 -3.38291 3.38291 0.66 0.00087185 0.00081747 0.071019 0.0665787 30 2865 25 6.64007e+06 238602 526063. 1820.29 0.87 0.180668 0.163879 22546 126617 -1 2528 17 979 979 83243 18564 1.50525 1.50525 -147.947 -1.50525 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0254108 0.0227919 145 2 50 50 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 3.93 vpr 63.53 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30280 -1 -1 25 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.7 MiB 0.09 1778 56234 21152 30749 4333 63.5 MiB 0.34 0.01 4.25753 -263.048 -4.25753 4.25753 0.65 0.00143797 0.00135245 0.109537 0.10293 32 3823 21 6.64007e+06 313950 554710. 1919.41 0.95 0.255285 0.233655 22834 132086 -1 3145 14 1364 1364 117954 27514 1.67725 1.67725 -193.473 -1.67725 0 0 701300. 2426.64 0.19 0.09 0.09 -1 -1 0.19 0.0339395 0.0307304 193 2 66 66 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.56 vpr 60.57 MiB 0.01 6052 -1 -1 1 0.02 -1 -1 29936 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62020 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.0 MiB 0.01 53 208 48 152 8 60.6 MiB 0.00 0.00 0.770048 -7.13557 -0.770048 0.770048 0.67 7.0194e-05 6.3198e-05 0.00121824 0.00109391 20 105 7 6.65987e+06 25356 394039. 1363.46 0.46 0.00434455 0.00388801 20530 87850 -1 101 4 27 27 1472 482 0.649848 0.649848 -7.25753 -0.649848 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00211419 0.00194723 10 2 5 5 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.73 vpr 60.68 MiB 0.02 6056 -1 -1 1 0.03 -1 -1 30064 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62136 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.0 MiB 0.01 48 356 62 287 7 60.7 MiB 0.01 0.00 0.792048 -9.65853 -0.792048 0.792048 0.69 0.000100988 9.1023e-05 0.00228958 0.00206068 20 138 8 6.65987e+06 25356 394039. 1363.46 0.49 0.00603489 0.00539628 20530 87850 -1 136 7 59 59 3823 1204 0.901248 0.901248 -10.5436 -0.901248 0 0 477104. 1650.88 0.16 0.02 0.09 -1 -1 0.16 0.00508408 0.00445247 13 2 6 6 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.69 vpr 60.64 MiB 0.01 6048 -1 -1 1 0.02 -1 -1 30188 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62100 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.0 MiB 0.01 67 419 80 331 8 60.6 MiB 0.01 0.00 0.803048 -11.78 -0.803048 0.803048 0.63 0.000123989 0.00011327 0.00247149 0.00225446 22 251 10 6.65987e+06 25356 420624. 1455.45 0.54 0.0143506 0.0120942 20818 92861 -1 198 8 93 93 4666 1476 1.04345 1.04345 -14.1496 -1.04345 0 0 500653. 1732.36 0.17 0.01 0.09 -1 -1 0.17 0.00311836 0.00279109 16 2 7 7 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.61 vpr 60.81 MiB 0.01 6084 -1 -1 1 0.02 -1 -1 29932 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62268 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 22.2 MiB 0.01 108 791 160 615 16 60.8 MiB 0.01 0.00 0.825048 -14.3383 -0.825048 0.825048 0.65 0.00014443 0.000132406 0.00380301 0.00347454 20 313 15 6.65987e+06 38034 394039. 1363.46 0.45 0.00899405 0.00796735 20530 87850 -1 281 9 139 139 8104 2382 1.02145 1.02145 -16.3994 -1.02145 0 0 477104. 1650.88 0.14 0.01 0.09 -1 -1 0.14 0.0040076 0.00352364 19 2 8 8 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.78 vpr 60.63 MiB 0.03 6084 -1 -1 1 0.02 -1 -1 30096 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62084 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.0 MiB 0.01 103 938 195 725 18 60.6 MiB 0.01 0.00 1.18536 -16.8309 -1.18536 1.18536 0.64 0.000139992 0.000128755 0.0039058 0.00359818 26 287 16 6.65987e+06 38034 477104. 1650.88 0.58 0.020877 0.0177356 21682 110474 -1 248 11 169 169 8146 2707 1.08545 1.08545 -19.412 -1.08545 0 0 585099. 2024.56 0.18 0.01 0.06 -1 -1 0.18 0.00442988 0.00389257 22 2 9 9 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.85 vpr 60.83 MiB 0.02 6140 -1 -1 1 0.02 -1 -1 29980 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62292 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.4 MiB 0.01 116 1180 259 878 43 60.8 MiB 0.01 0.00 1.19636 -19.5997 -1.19636 1.19636 0.65 0.000183371 0.000168841 0.00529865 0.00486947 28 333 16 6.65987e+06 50712 500653. 1732.36 0.62 0.0235706 0.0200056 21970 115934 -1 308 11 150 150 8272 2668 0.987248 0.987248 -22.2846 -0.987248 0 0 612192. 2118.31 0.18 0.02 0.10 -1 -1 0.18 0.00536488 0.00467309 25 2 10 10 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.79 vpr 60.80 MiB 0.02 6080 -1 -1 1 0.02 -1 -1 30004 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62260 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.4 MiB 0.01 185 1229 259 944 26 60.8 MiB 0.02 0.00 1.20736 -22.7097 -1.20736 1.20736 0.65 0.000207691 0.000192241 0.00559207 0.00515681 24 425 11 6.65987e+06 50712 448715. 1552.65 0.54 0.017351 0.0149956 21394 104001 -1 406 13 165 165 11227 3104 1.10639 1.10639 -26.3209 -1.10639 0 0 554710. 1919.41 0.16 0.03 0.12 -1 -1 0.16 0.010994 0.0093014 28 2 11 11 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.88 vpr 61.06 MiB 0.03 6156 -1 -1 1 0.02 -1 -1 30000 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62524 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.6 MiB 0.02 281 1379 251 1074 54 61.1 MiB 0.02 0.00 1.21836 -28.8147 -1.21836 1.21836 0.65 0.000230226 0.000213324 0.00569793 0.0052778 26 553 11 6.65987e+06 63390 477104. 1650.88 0.60 0.0290014 0.0244234 21682 110474 -1 516 16 243 243 19764 4661 0.953189 0.953189 -28.9809 -0.953189 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0126333 0.0106948 31 2 12 12 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.72 vpr 60.95 MiB 0.02 5992 -1 -1 1 0.02 -1 -1 30060 -1 -1 5 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62412 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.5 MiB 0.02 256 1536 305 1173 58 60.9 MiB 0.02 0.00 1.22936 -28.8616 -1.22936 1.22936 0.65 0.000210529 0.000195075 0.00540677 0.00500413 22 571 9 6.65987e+06 63390 420624. 1455.45 0.55 0.0296563 0.0252741 20818 92861 -1 486 10 168 168 9773 2816 0.998248 0.998248 -30.9101 -0.998248 0 0 500653. 1732.36 0.14 0.02 0.09 -1 -1 0.14 0.00563844 0.00495521 34 2 13 13 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.88 vpr 60.93 MiB 0.03 5992 -1 -1 1 0.02 -1 -1 30216 -1 -1 5 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62396 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.5 MiB 0.02 293 2293 540 1476 277 60.9 MiB 0.02 0.00 1.24036 -31.9104 -1.24036 1.24036 0.65 0.000222672 0.000206134 0.00743351 0.00686839 26 641 17 6.65987e+06 63390 477104. 1650.88 0.62 0.0357066 0.0304535 21682 110474 -1 609 15 298 298 24129 6114 1.02025 1.02025 -34.3265 -1.02025 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0130701 0.0110951 37 2 14 14 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.95 vpr 60.84 MiB 0.01 6116 -1 -1 1 0.02 -1 -1 30048 -1 -1 6 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62304 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.3 MiB 0.02 378 2231 478 1580 173 60.8 MiB 0.02 0.00 1.25136 -36.02 -1.25136 1.25136 0.64 0.000239386 0.000221863 0.00703961 0.0065221 30 672 13 6.65987e+06 76068 526063. 1820.29 0.67 0.0362539 0.0310859 22546 126617 -1 625 13 204 204 14424 3555 0.830189 0.830189 -33.8569 -0.830189 0 0 666494. 2306.21 0.19 0.02 0.12 -1 -1 0.19 0.00843239 0.00737555 40 2 15 15 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.88 vpr 61.00 MiB 0.01 6180 -1 -1 1 0.02 -1 -1 30256 -1 -1 6 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62460 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 22.5 MiB 0.02 331 2442 412 1993 37 61.0 MiB 0.02 0.00 1.26236 -36.7774 -1.26236 1.26236 0.64 0.000255304 0.000237109 0.00755612 0.00701514 26 771 9 6.65987e+06 76068 477104. 1650.88 0.66 0.0333346 0.0288117 21682 110474 -1 710 14 333 333 25907 6618 1.10745 1.10745 -39.5458 -1.10745 0 0 585099. 2024.56 0.16 0.02 0.10 -1 -1 0.16 0.00819036 0.00715065 43 2 16 16 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 2.87 vpr 60.96 MiB 0.01 6088 -1 -1 1 0.02 -1 -1 30316 -1 -1 7 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62428 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.4 MiB 0.01 435 3216 703 2283 230 61.0 MiB 0.03 0.00 1.62267 -42.4629 -1.62267 1.62267 0.66 0.000271837 0.000252099 0.00926702 0.00858249 26 863 13 6.65987e+06 88746 477104. 1650.88 0.63 0.0394741 0.0338256 21682 110474 -1 843 19 379 379 32055 7576 1.08425 1.08425 -44.4016 -1.08425 0 0 585099. 2024.56 0.16 0.03 0.11 -1 -1 0.16 0.0106269 0.00917959 46 2 17 17 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.02 vpr 61.07 MiB 0.03 6052 -1 -1 1 0.02 -1 -1 30392 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62540 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.5 MiB 0.03 427 6052 1399 4413 240 61.1 MiB 0.05 0.00 1.63367 -46.0647 -1.63367 1.63367 0.63 0.000290848 0.000270182 0.0170463 0.0158264 26 868 18 6.65987e+06 88746 477104. 1650.88 0.69 0.0516348 0.0450852 21682 110474 -1 835 14 381 381 30131 7304 1.09525 1.09525 -46.3516 -1.09525 0 0 585099. 2024.56 0.16 0.03 0.10 -1 -1 0.16 0.010369 0.00898596 49 2 18 18 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.98 vpr 61.11 MiB 0.03 6164 -1 -1 1 0.03 -1 -1 30292 -1 -1 8 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62576 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.5 MiB 0.03 445 3874 792 2975 107 61.1 MiB 0.03 0.00 1.65567 -51.2172 -1.65567 1.65567 0.66 0.000328031 0.000305277 0.0109131 0.0101502 26 976 16 6.65987e+06 101424 477104. 1650.88 0.63 0.0510882 0.0441096 21682 110474 -1 924 13 340 340 29716 7266 1.10625 1.10625 -51.6573 -1.10625 0 0 585099. 2024.56 0.20 0.03 0.10 -1 -1 0.20 0.00984489 0.00861976 55 2 20 20 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.05 vpr 61.21 MiB 0.01 6256 -1 -1 1 0.02 -1 -1 30232 -1 -1 8 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62676 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.6 MiB 0.03 520 5398 1104 4106 188 61.2 MiB 0.05 0.00 1.67767 -57.8445 -1.67767 1.67767 0.65 0.000358143 0.000333992 0.0166746 0.0155228 26 1149 26 6.65987e+06 101424 477104. 1650.88 0.72 0.0667134 0.0579531 21682 110474 -1 1013 17 534 534 43733 10882 1.14045 1.14045 -56.1815 -1.14045 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.0108919 0.00954009 61 2 22 22 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.05 vpr 61.33 MiB 0.03 6204 -1 -1 1 0.02 -1 -1 30400 -1 -1 9 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62804 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 22.9 MiB 0.05 581 5945 1255 4536 154 61.3 MiB 0.05 0.00 1.69967 -64.3369 -1.69967 1.69967 0.64 0.000391801 0.000365514 0.0178984 0.0166756 26 1314 13 6.65987e+06 114102 477104. 1650.88 0.72 0.061083 0.0537634 21682 110474 -1 1253 12 524 524 50504 12257 1.24965 1.24965 -65.9318 -1.24965 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0118207 0.0104351 67 2 24 24 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.14 vpr 61.73 MiB 0.01 6148 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63212 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 23.3 MiB 0.03 752 12711 4741 7378 592 61.7 MiB 0.08 0.00 2.07098 -75.6352 -2.07098 2.07098 0.63 0.000427824 0.000398094 0.0310486 0.0289262 30 1352 10 6.65987e+06 126780 526063. 1820.29 0.70 0.0743441 0.0662081 22546 126617 -1 1255 12 439 439 32408 7889 1.13725 1.13725 -68.7144 -1.13725 0 0 666494. 2306.21 0.19 0.04 0.14 -1 -1 0.19 0.0164274 0.014357 73 2 26 26 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.16 vpr 61.59 MiB 0.01 6380 -1 -1 1 0.03 -1 -1 29976 -1 -1 11 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63068 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 23.1 MiB 0.04 728 12751 3280 8876 595 61.6 MiB 0.08 0.00 2.11498 -85.6644 -2.11498 2.11498 0.63 0.000486355 0.000452393 0.0293639 0.0273297 32 1544 18 6.65987e+06 139458 554710. 1919.41 0.74 0.08403 0.074682 22834 132086 -1 1389 12 547 547 45634 11155 1.22525 1.22525 -78.7984 -1.22525 0 0 701300. 2426.64 0.19 0.04 0.12 -1 -1 0.19 0.0136703 0.0121766 85 2 30 30 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.30 vpr 61.71 MiB 0.01 6380 -1 -1 1 0.03 -1 -1 30268 -1 -1 13 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63192 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.1 MiB 0.04 1003 17401 6715 9666 1020 61.7 MiB 0.10 0.00 2.50829 -107.27 -2.50829 2.50829 0.64 0.000564995 0.000527365 0.0385892 0.0359922 30 1826 11 6.65987e+06 164814 526063. 1820.29 0.74 0.0970331 0.0868303 22546 126617 -1 1671 14 611 611 49547 11052 1.19105 1.19105 -91.9091 -1.19105 0 0 666494. 2306.21 0.18 0.05 0.14 -1 -1 0.18 0.0170892 0.0151981 97 2 34 34 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.52 vpr 62.68 MiB 0.02 6456 -1 -1 1 0.04 -1 -1 30520 -1 -1 19 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 23.8 MiB 0.06 1557 34969 14570 20249 150 62.7 MiB 0.21 0.00 3.38291 -180.939 -3.38291 3.38291 0.64 0.000870246 0.000815025 0.0706 0.0660776 32 2889 16 6.65987e+06 240882 554710. 1919.41 0.83 0.16844 0.153 22834 132086 -1 2667 14 986 986 94568 21634 1.39605 1.39605 -143.167 -1.39605 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.025671 0.0230992 145 2 50 50 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.05 vpr 63.27 MiB 0.04 6752 -1 -1 1 0.04 -1 -1 30256 -1 -1 25 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.5 MiB 0.08 1798 56234 20467 31758 4009 63.3 MiB 0.33 0.01 4.25753 -264.232 -4.25753 4.25753 0.68 0.00119776 0.00112604 0.105122 0.0987456 32 3834 29 6.65987e+06 316950 554710. 1919.41 1.08 0.266956 0.243996 22834 132086 -1 3326 14 1339 1339 128475 30100 1.63419 1.63419 -193.674 -1.63419 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0344429 0.0312212 193 2 66 66 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 2.61 vpr 61.47 MiB 0.01 6144 -1 -1 1 0.02 -1 -1 29964 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62948 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.9 MiB 0.02 26 246 57 175 14 61.5 MiB 0.01 0.00 0.712895 -7.69589 -0.712895 0.712895 0.67 6.9947e-05 6.2765e-05 0.0015447 0.00138309 18 88 3 6.95648e+06 14475.7 376052. 1301.22 0.45 0.00914952 0.00773228 22882 88689 -1 82 3 14 14 509 178 0.712895 0.712895 -8.10503 -0.712895 0 0 470940. 1629.55 0.13 0.00 0.09 -1 -1 0.13 0.00201732 0.00188308 5 2 5 5 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 2.63 vpr 61.44 MiB 0.01 5972 -1 -1 1 0.02 -1 -1 29920 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62916 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 22.8 MiB 0.02 38 285 68 210 7 61.4 MiB 0.01 0.00 0.62144 -9.16928 -0.62144 0.62144 0.66 8.7356e-05 7.9246e-05 0.00168539 0.00152823 20 128 9 6.95648e+06 14475.7 414966. 1435.87 0.49 0.0116541 0.00983442 23170 95770 -1 110 3 26 26 1366 430 0.74674 0.74674 -9.88017 -0.74674 0 0 503264. 1741.40 0.14 0.01 0.09 -1 -1 0.14 0.00215121 0.00200017 7 2 6 6 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 2.67 vpr 61.58 MiB 0.01 6180 -1 -1 1 0.02 -1 -1 30056 -1 -1 1 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63056 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 23.0 MiB 0.03 125 64 27 35 2 61.6 MiB 0.00 0.00 1.08519 -14.5503 -1.08519 1.08519 0.66 5.2999e-05 4.556e-05 0.000416598 0.000380347 20 207 6 6.95648e+06 14475.7 414966. 1435.87 0.47 0.00392962 0.00355543 23170 95770 -1 195 6 30 30 2480 654 1.08519 1.08519 -14.5423 -1.08519 0 0 503264. 1741.40 0.14 0.01 0.09 -1 -1 0.14 0.00288477 0.00260521 8 2 7 7 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 2.71 vpr 61.65 MiB 0.03 6128 -1 -1 1 0.02 -1 -1 29908 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63128 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 23.3 MiB 0.03 66 622 147 459 16 61.6 MiB 0.01 0.00 0.830632 -14.7061 -0.830632 0.830632 0.67 0.000121979 0.000111163 0.00291241 0.00266782 18 238 27 6.95648e+06 28951.4 376052. 1301.22 0.50 0.020427 0.0171527 22882 88689 -1 187 10 110 110 5614 1939 0.834592 0.834592 -16.5365 -0.834592 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.00395424 0.0035081 10 2 8 8 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 2.84 vpr 61.58 MiB 0.03 6020 -1 -1 1 0.02 -1 -1 30060 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63060 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 23.1 MiB 0.03 82 673 149 507 17 61.6 MiB 0.01 0.00 0.830632 -16.8934 -0.830632 0.830632 0.66 0.000164823 0.000151701 0.00359663 0.0033135 26 242 10 6.95648e+06 28951.4 503264. 1741.40 0.60 0.0192516 0.0164359 24322 120374 -1 237 10 145 145 9314 2936 1.06403 1.06403 -19.2829 -1.06403 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00419556 0.00370297 11 2 9 9 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 2.80 vpr 61.75 MiB 0.01 6104 -1 -1 1 0.02 -1 -1 30044 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63236 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 23.3 MiB 0.04 161 700 166 470 64 61.8 MiB 0.01 0.00 0.841632 -20.1922 -0.841632 0.841632 0.67 0.000186935 0.000172121 0.00362371 0.00334311 22 438 17 6.95648e+06 28951.4 443629. 1535.05 0.56 0.0222666 0.0187582 23458 102101 -1 363 12 183 183 14497 3745 1.08603 1.08603 -23.7915 -1.08603 0 0 531479. 1839.03 0.15 0.01 0.09 -1 -1 0.15 0.00509427 0.00444436 13 2 10 10 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 2.79 vpr 61.70 MiB 0.01 6044 -1 -1 1 0.02 -1 -1 30036 -1 -1 2 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63184 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 23.2 MiB 0.04 117 847 190 628 29 61.7 MiB 0.01 0.00 0.874632 -21.9508 -0.874632 0.874632 0.67 0.000174808 0.000161463 0.00366503 0.00338234 20 355 15 6.95648e+06 28951.4 414966. 1435.87 0.52 0.0106783 0.00947492 23170 95770 -1 330 12 210 210 12303 4472 0.999932 0.999932 -25.9604 -0.999932 0 0 503264. 1741.40 0.14 0.02 0.08 -1 -1 0.14 0.00549472 0.00480486 14 2 11 11 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 3.07 vpr 61.71 MiB 0.03 6172 -1 -1 1 0.02 -1 -1 29992 -1 -1 2 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63192 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 23.2 MiB 0.04 316 859 151 690 18 61.7 MiB 0.01 0.00 0.896632 -29.5922 -0.896632 0.896632 0.67 0.000219763 0.000200525 0.00426958 0.00392151 30 637 14 6.95648e+06 28951.4 556674. 1926.21 0.71 0.0261548 0.0220875 25186 138497 -1 566 12 243 243 22941 4952 1.12523 1.12523 -32.2796 -1.12523 0 0 706193. 2443.58 0.18 0.02 0.13 -1 -1 0.18 0.00595595 0.00518014 16 2 12 12 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 3.79 vpr 61.82 MiB 0.01 6112 -1 -1 1 0.02 -1 -1 30132 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63300 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 23.4 MiB 0.04 198 1298 273 1012 13 61.8 MiB 0.01 0.00 0.907632 -28.5647 -0.907632 0.907632 0.67 0.000200397 0.000180041 0.00504197 0.00467091 26 593 49 6.95648e+06 43427 503264. 1741.40 1.43 0.0617798 0.0514438 24322 120374 -1 497 14 301 301 20908 6200 1.13003 1.13003 -33.6466 -1.13003 0 0 618332. 2139.56 0.16 0.02 0.13 -1 -1 0.16 0.00710317 0.00613599 17 2 13 13 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 3.45 vpr 61.82 MiB 0.03 6220 -1 -1 1 0.02 -1 -1 30028 -1 -1 3 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63308 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.4 MiB 0.04 368 1441 285 1041 115 61.8 MiB 0.02 0.00 0.918632 -34.4491 -0.918632 0.918632 0.66 0.000270384 0.000250782 0.00622358 0.00576231 34 760 18 6.95648e+06 43427 618332. 2139.56 1.08 0.0517101 0.0435088 25762 151098 -1 716 18 330 330 35885 7608 1.20033 1.20033 -38.8217 -1.20033 0 0 787024. 2723.27 0.22 0.03 0.10 -1 -1 0.22 0.00962408 0.00827676 19 2 14 14 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 5.44 vpr 61.83 MiB 0.01 6132 -1 -1 1 0.03 -1 -1 30036 -1 -1 3 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63316 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.3 MiB 0.04 180 3971 1477 2086 408 61.8 MiB 0.03 0.00 0.951632 -32.5735 -0.951632 0.951632 0.67 0.000249923 0.000231776 0.0131599 0.0121796 38 531 27 6.95648e+06 43427 678818. 2348.85 2.99 0.0859414 0.0726927 26626 170182 -1 411 18 458 458 23093 7175 1.18933 1.18933 -32.3759 -1.18933 0 0 902133. 3121.57 0.22 0.03 0.15 -1 -1 0.22 0.01093 0.00943138 20 2 15 15 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 4.22 vpr 61.84 MiB 0.03 6168 -1 -1 1 0.02 -1 -1 30300 -1 -1 3 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63328 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 23.3 MiB 0.05 227 4331 1745 2561 25 61.8 MiB 0.05 0.00 0.962632 -36.3287 -0.962632 0.962632 0.74 0.000300889 0.000277981 0.0210961 0.0195028 36 812 35 6.95648e+06 43427 648988. 2245.63 1.60 0.0806471 0.0694036 26050 158493 -1 643 28 535 535 56901 13609 1.31033 1.31033 -44.9186 -1.31033 0 0 828058. 2865.25 0.21 0.04 0.15 -1 -1 0.21 0.0141115 0.0120837 22 2 16 16 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 3.26 vpr 62.06 MiB 0.03 6180 -1 -1 1 0.03 -1 -1 30280 -1 -1 3 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.5 MiB 0.05 237 4098 1359 2534 205 62.1 MiB 0.03 0.00 1.33396 -39.0993 -1.33396 1.33396 0.66 0.000367682 0.000335894 0.0140384 0.0130146 32 918 36 6.95648e+06 43427 586450. 2029.24 0.80 0.0559332 0.0483107 25474 144626 -1 677 19 440 440 44023 13407 1.18303 1.18303 -45.5742 -1.18303 0 0 744469. 2576.02 0.20 0.03 0.14 -1 -1 0.20 0.011618 0.0100114 24 2 17 17 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 3.37 vpr 61.86 MiB 0.01 6236 -1 -1 1 0.02 -1 -1 30384 -1 -1 4 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63348 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.3 MiB 0.08 235 5052 1687 3325 40 61.9 MiB 0.04 0.00 1.34496 -41.9783 -1.34496 1.34496 0.66 0.000288455 0.000267371 0.015275 0.0141791 28 1051 35 6.95648e+06 57902.7 531479. 1839.03 0.93 0.0574984 0.0497961 24610 126494 -1 750 18 536 536 48167 15656 1.43363 1.43363 -51.9406 -1.43363 0 0 648988. 2245.63 0.18 0.03 0.11 -1 -1 0.18 0.011302 0.00977742 25 2 18 18 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 3.67 vpr 61.97 MiB 0.03 6244 -1 -1 1 0.02 -1 -1 30288 -1 -1 4 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.4 MiB 0.08 349 5325 1277 4015 33 62.0 MiB 0.04 0.00 1.36696 -48.5746 -1.36696 1.36696 0.66 0.000386862 0.000360155 0.017502 0.0162807 34 928 20 6.95648e+06 57902.7 618332. 2139.56 1.17 0.0672604 0.0582211 25762 151098 -1 827 14 438 438 35697 8995 1.28633 1.28633 -54.7132 -1.28633 0 0 787024. 2723.27 0.23 0.03 0.14 -1 -1 0.23 0.0108629 0.00945842 28 2 20 20 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 3.66 vpr 62.03 MiB 0.01 6224 -1 -1 1 0.02 -1 -1 30240 -1 -1 4 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63516 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 23.4 MiB 0.08 643 8312 2604 4958 750 62.0 MiB 0.06 0.00 1.38896 -61.9638 -1.38896 1.38896 0.65 0.000423859 0.000394491 0.0262633 0.0244319 34 1235 30 6.95648e+06 57902.7 618332. 2139.56 1.17 0.10186 0.0884186 25762 151098 -1 1155 19 493 493 55302 11323 1.40253 1.40253 -68.9159 -1.40253 0 0 787024. 2723.27 0.20 0.04 0.14 -1 -1 0.20 0.0138833 0.0120554 31 2 22 22 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 4.07 vpr 62.13 MiB 0.03 6232 -1 -1 1 0.02 -1 -1 30376 -1 -1 5 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 23.5 MiB 0.11 465 7673 2070 5539 64 62.1 MiB 0.06 0.00 1.41096 -62.1793 -1.41096 1.41096 0.70 0.000492411 0.000459888 0.0245599 0.0228408 36 1080 17 6.95648e+06 72378.4 648988. 2245.63 1.36 0.104985 0.0916039 26050 158493 -1 993 12 490 490 43701 10133 1.40733 1.40733 -69.3961 -1.40733 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0173266 0.0151157 34 2 24 24 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 3.81 vpr 62.23 MiB 0.02 6152 -1 -1 1 0.03 -1 -1 30388 -1 -1 5 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 23.5 MiB 0.11 477 11571 2984 8400 187 62.2 MiB 0.08 0.00 1.43296 -69.314 -1.43296 1.43296 0.66 0.000502504 0.000468129 0.0359599 0.0334848 34 1312 19 6.95648e+06 72378.4 618332. 2139.56 1.22 0.12085 0.106199 25762 151098 -1 1111 17 638 638 57936 14329 1.42933 1.42933 -77.4161 -1.42933 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0148322 0.0129957 37 2 26 26 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 4.37 vpr 62.38 MiB 0.03 6340 -1 -1 1 0.03 -1 -1 30148 -1 -1 6 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 23.8 MiB 0.07 829 13133 5464 7620 49 62.4 MiB 0.08 0.00 1.47696 -85.3607 -1.47696 1.47696 0.66 0.000484852 0.000451039 0.0324261 0.0302189 34 1902 33 6.95648e+06 86854.1 618332. 2139.56 1.70 0.123759 0.108937 25762 151098 -1 1551 17 816 816 83921 18675 1.58283 1.58283 -95.4552 -1.58283 0 0 787024. 2723.27 0.23 0.10 0.14 -1 -1 0.23 0.0316181 0.0276675 43 2 30 30 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 4.83 vpr 62.60 MiB 0.04 6476 -1 -1 1 0.03 -1 -1 30316 -1 -1 7 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.9 MiB 0.08 924 18136 7790 10245 101 62.6 MiB 0.11 0.00 1.88129 -101.424 -1.88129 1.88129 0.67 0.000591594 0.000553338 0.0433945 0.0404864 38 1980 34 6.95648e+06 101330 678818. 2348.85 2.03 0.16943 0.149247 26626 170182 -1 1707 19 920 920 123833 24957 1.47763 1.47763 -102.723 -1.47763 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.0214973 0.0189327 49 2 34 34 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 5.50 vpr 63.39 MiB 0.04 6468 -1 -1 1 0.03 -1 -1 30356 -1 -1 10 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.6 MiB 0.10 1600 30324 11596 17665 1063 63.4 MiB 0.17 0.00 2.41762 -168.85 -2.41762 2.41762 0.68 0.000867666 0.000812541 0.065513 0.0613541 46 2899 27 6.95648e+06 144757 828058. 2865.25 2.55 0.250531 0.225129 28066 200906 -1 2592 17 1092 1092 113477 24045 1.72233 1.72233 -168.337 -1.72233 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0303212 0.0272155 73 2 50 50 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 6.40 vpr 64.04 MiB 0.02 6844 -1 -1 1 0.04 -1 -1 30300 -1 -1 13 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65580 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 25.3 MiB 0.12 1899 46107 19065 26925 117 64.0 MiB 0.26 0.01 2.95395 -232.912 -2.95395 2.95395 0.68 0.00143093 0.00134648 0.0952555 0.089571 58 3425 26 6.95648e+06 188184 997811. 3452.63 3.10 0.358972 0.326315 30370 251734 -1 3165 18 1575 1575 181293 37864 1.79303 1.79303 -210.904 -1.79303 0 0 1.25153e+06 4330.55 0.36 0.13 0.23 -1 -1 0.36 0.0507539 0.0460313 97 2 66 66 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 2.63 vpr 61.28 MiB 0.01 6024 -1 -1 1 0.02 -1 -1 29928 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62752 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.7 MiB 0.01 26 246 57 176 13 61.3 MiB 0.01 0.00 0.62144 -7.32583 -0.62144 0.62144 0.67 6.9842e-05 6.2759e-05 0.00155698 0.00139369 18 87 6 6.99608e+06 14715.7 376052. 1301.22 0.48 0.0139151 0.0115 22882 88689 -1 82 3 15 15 542 184 0.709292 0.709292 -7.73498 -0.709292 0 0 470940. 1629.55 0.13 0.01 0.09 -1 -1 0.13 0.00197342 0.00184307 5 2 5 5 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 2.61 vpr 61.43 MiB 0.02 6072 -1 -1 1 0.02 -1 -1 30064 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62900 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 22.8 MiB 0.01 42 285 67 217 1 61.4 MiB 0.01 0.00 0.601892 -8.86437 -0.601892 0.601892 0.65 8.8766e-05 8.0653e-05 0.00169653 0.00153446 18 115 6 6.99608e+06 14715.7 376052. 1301.22 0.46 0.0114069 0.00966204 22882 88689 -1 116 5 38 38 1967 715 0.709292 0.709292 -10.2606 -0.709292 0 0 470940. 1629.55 0.12 0.01 0.09 -1 -1 0.12 0.0023735 0.00216778 7 2 6 6 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 2.51 vpr 61.35 MiB 0.03 6100 -1 -1 1 0.02 -1 -1 30032 -1 -1 1 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62824 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 22.7 MiB 0.01 126 64 25 37 2 61.4 MiB 0.00 0.00 1.04807 -14.6563 -1.04807 1.04807 0.65 8.0867e-05 6.817e-05 0.000600532 0.000549054 16 214 10 6.99608e+06 14715.7 332735. 1151.33 0.42 0.00459504 0.00409087 22306 75877 -1 208 8 49 49 3850 981 1.12264 1.12264 -15.0613 -1.12264 0 0 414966. 1435.87 0.11 0.01 0.05 -1 -1 0.11 0.00230967 0.00211558 8 2 7 7 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 2.57 vpr 61.35 MiB 0.01 6020 -1 -1 1 0.02 -1 -1 29976 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62820 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 22.7 MiB 0.02 107 592 125 462 5 61.3 MiB 0.01 0.00 0.802432 -14.938 -0.802432 0.802432 0.66 0.000119744 0.000109232 0.00281145 0.00257676 18 269 16 6.99608e+06 29431.4 376052. 1301.22 0.44 0.00818808 0.00723898 22882 88689 -1 254 13 108 108 9334 2541 0.99734 0.99734 -17.0736 -0.99734 0 0 470940. 1629.55 0.12 0.01 0.05 -1 -1 0.12 0.00293911 0.00263407 10 2 8 8 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 2.93 vpr 61.57 MiB 0.02 6080 -1 -1 1 0.02 -1 -1 29988 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63052 15 8 55 56 1 31 25 17 17 289 -1 unnamed_device 23.2 MiB 0.02 87 673 163 490 20 61.6 MiB 0.01 0.00 0.813432 -16.9635 -0.813432 0.813432 0.65 0.000139655 0.000128416 0.00304784 0.00279712 28 210 10 6.99608e+06 29431.4 531479. 1839.03 0.66 0.0200743 0.0169411 24610 126494 -1 213 16 100 100 4797 1745 0.938732 0.938732 -19.0323 -0.938732 0 0 648988. 2245.63 0.17 0.01 0.11 -1 -1 0.17 0.0053958 0.00467712 11 2 9 9 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 2.86 vpr 61.56 MiB 0.01 6024 -1 -1 1 0.02 -1 -1 30092 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63036 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 23.1 MiB 0.02 89 868 259 545 64 61.6 MiB 0.01 0.00 0.835432 -19.044 -0.835432 0.835432 0.68 0.000155982 0.000143549 0.00376903 0.00346645 26 304 21 6.99608e+06 29431.4 503264. 1741.40 0.62 0.0252732 0.0212531 24322 120374 -1 230 8 137 137 6902 2290 0.960732 0.960732 -19.4915 -0.960732 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00512295 0.00464949 13 2 10 10 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 2.67 vpr 61.44 MiB 0.01 6116 -1 -1 1 0.02 -1 -1 30172 -1 -1 2 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62916 19 10 69 70 1 43 31 17 17 289 -1 unnamed_device 23.0 MiB 0.01 117 799 181 587 31 61.4 MiB 0.01 0.00 0.846432 -21.5131 -0.846432 0.846432 0.69 0.000174756 0.00016156 0.00344098 0.00316589 20 328 9 6.99608e+06 29431.4 414966. 1435.87 0.47 0.00892035 0.00801893 23170 95770 -1 323 12 204 204 10994 3934 1.05303 1.05303 -25.6719 -1.05303 0 0 503264. 1741.40 0.14 0.02 0.09 -1 -1 0.14 0.00551696 0.00480719 14 2 11 11 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 3.40 vpr 61.74 MiB 0.01 6096 -1 -1 1 0.02 -1 -1 30052 -1 -1 2 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63220 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 23.3 MiB 0.02 206 1079 232 829 18 61.7 MiB 0.01 0.00 0.87204 -26.5938 -0.87204 0.87204 0.66 0.000194966 0.000180194 0.00439512 0.00407367 34 516 14 6.99608e+06 29431.4 618332. 2139.56 1.05 0.0420951 0.0352119 25762 151098 -1 452 14 214 214 17119 4048 1.10803 1.10803 -28.824 -1.10803 0 0 787024. 2723.27 0.20 0.02 0.14 -1 -1 0.20 0.00696141 0.00606586 16 2 12 12 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 3.09 vpr 61.66 MiB 0.03 6060 -1 -1 1 0.03 -1 -1 30012 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63144 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 23.2 MiB 0.01 245 1298 255 1031 12 61.7 MiB 0.01 0.00 0.879432 -28.9525 -0.879432 0.879432 0.72 0.000210764 0.000195225 0.0049803 0.00461522 30 597 29 6.99608e+06 44147 556674. 1926.21 0.71 0.032753 0.027673 25186 138497 -1 502 13 273 273 20339 4722 1.08603 1.08603 -30.5153 -1.08603 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00670618 0.00582973 17 2 13 13 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 3.61 vpr 61.82 MiB 0.01 6228 -1 -1 1 0.02 -1 -1 30040 -1 -1 3 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63300 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.4 MiB 0.02 340 1441 266 1110 65 61.8 MiB 0.01 0.00 0.901432 -33.1271 -0.901432 0.901432 0.68 0.000100838 9.1709e-05 0.00258159 0.00236179 34 746 15 6.99608e+06 44147 618332. 2139.56 1.18 0.0449851 0.03759 25762 151098 -1 681 16 316 316 34407 7368 1.02388 1.02388 -36.7038 -1.02388 0 0 787024. 2723.27 0.23 0.03 0.13 -1 -1 0.23 0.0116346 0.00995567 19 2 14 14 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 5.53 vpr 61.71 MiB 0.01 6140 -1 -1 1 0.03 -1 -1 30044 -1 -1 3 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63188 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.2 MiB 0.01 178 3971 1404 1915 652 61.7 MiB 0.05 0.00 0.912432 -32.1713 -0.912432 0.912432 0.67 0.000236169 0.000216707 0.0215494 0.0198926 40 457 37 6.99608e+06 44147 706193. 2443.58 3.14 0.0951369 0.0809945 26914 176310 -1 466 15 378 378 25966 7634 1.15203 1.15203 -33.8446 -1.15203 0 0 926341. 3205.33 0.23 0.02 0.15 -1 -1 0.23 0.00815911 0.00709359 20 2 15 15 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 5.37 vpr 61.79 MiB 0.01 6216 -1 -1 1 0.03 -1 -1 30228 -1 -1 3 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63268 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 23.2 MiB 0.02 198 4331 1522 2096 713 61.8 MiB 0.05 0.00 0.934432 -35.1872 -0.934432 0.934432 0.66 0.000337412 0.000312213 0.0234828 0.021747 38 613 23 6.99608e+06 44147 678818. 2348.85 2.90 0.0889024 0.0762483 26626 170182 -1 476 15 417 417 29276 8251 1.17403 1.17403 -37.004 -1.17403 0 0 902133. 3121.57 0.22 0.03 0.15 -1 -1 0.22 0.00865225 0.00753462 22 2 16 16 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 4.44 vpr 61.74 MiB 0.01 6156 -1 -1 1 0.03 -1 -1 30384 -1 -1 3 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63224 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.2 MiB 0.02 227 4098 1263 2618 217 61.7 MiB 0.03 0.00 1.30576 -38.4531 -1.30576 1.30576 0.66 0.00031954 0.000296037 0.0132527 0.0122946 28 919 23 6.99608e+06 44147 531479. 1839.03 2.08 0.0771915 0.0658074 24610 126494 -1 742 39 524 524 136090 87091 1.34133 1.34133 -49.6429 -1.34133 0 0 648988. 2245.63 0.18 0.07 0.12 -1 -1 0.18 0.0187748 0.015963 24 2 17 17 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 3.62 vpr 61.70 MiB 0.02 6216 -1 -1 1 0.03 -1 -1 30260 -1 -1 4 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63184 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.1 MiB 0.03 362 3012 639 2325 48 61.7 MiB 0.03 0.00 1.31676 -43.8553 -1.31676 1.31676 0.66 0.000342281 0.00031786 0.011086 0.0103099 34 957 15 6.99608e+06 58862.7 618332. 2139.56 1.17 0.0655455 0.0559129 25762 151098 -1 859 18 455 455 51906 11341 1.41163 1.41163 -51.4029 -1.41163 0 0 787024. 2723.27 0.21 0.04 0.14 -1 -1 0.21 0.0132415 0.0114455 25 2 18 18 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 3.83 vpr 61.83 MiB 0.01 6212 -1 -1 1 0.02 -1 -1 30296 -1 -1 4 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63316 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.2 MiB 0.03 307 4623 989 3596 38 61.8 MiB 0.04 0.00 1.33876 -48.0718 -1.33876 1.33876 0.62 0.0003311 0.000308307 0.0140394 0.0130778 34 914 47 6.99608e+06 58862.7 618332. 2139.56 1.23 0.0916112 0.0782119 25762 151098 -1 737 20 476 476 51891 12523 1.14288 1.14288 -52.6321 -1.14288 0 0 787024. 2723.27 0.23 0.04 0.14 -1 -1 0.23 0.0138672 0.0119163 28 2 20 20 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 3.60 vpr 61.93 MiB 0.01 6108 -1 -1 1 0.03 -1 -1 30388 -1 -1 4 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 23.3 MiB 0.03 643 8179 2647 4716 816 61.9 MiB 0.05 0.00 1.36076 -60.9293 -1.36076 1.36076 0.68 0.000362028 0.000337194 0.0234688 0.0218212 34 1237 19 6.99608e+06 58862.7 618332. 2139.56 1.16 0.0945724 0.0819346 25762 151098 -1 1130 12 378 378 38925 8003 1.18303 1.18303 -64.131 -1.18303 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.0100629 0.0088598 31 2 22 22 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 3.36 vpr 62.26 MiB 0.02 6200 -1 -1 1 0.03 -1 -1 30472 -1 -1 5 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 45 23 160 161 1 106 73 17 17 289 -1 unnamed_device 23.6 MiB 0.03 375 8585 2269 6036 280 62.3 MiB 0.07 0.00 1.38276 -61.0669 -1.38276 1.38276 0.67 0.000390752 0.000363715 0.0276593 0.0257255 30 1103 19 6.99608e+06 73578.4 556674. 1926.21 0.84 0.0730901 0.0646184 25186 138497 -1 878 18 524 524 37288 10581 1.28633 1.28633 -65.5063 -1.28633 0 0 706193. 2443.58 0.19 0.04 0.11 -1 -1 0.19 0.0143167 0.012504 34 2 24 24 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 3.33 vpr 62.02 MiB 0.03 6212 -1 -1 1 0.02 -1 -1 30280 -1 -1 5 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 23.4 MiB 0.04 470 11571 3015 8364 192 62.0 MiB 0.08 0.00 1.40476 -68.6401 -1.40476 1.40476 0.67 0.000499094 0.000464533 0.0348574 0.0324337 30 1355 26 6.99608e+06 73578.4 556674. 1926.21 0.82 0.0901059 0.0797751 25186 138497 -1 1108 15 630 630 55373 14311 1.53263 1.53263 -81.075 -1.53263 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0144373 0.012727 37 2 26 26 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 4.58 vpr 62.40 MiB 0.01 6424 -1 -1 1 0.03 -1 -1 30052 -1 -1 6 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63896 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 23.9 MiB 0.04 983 13754 5168 7361 1225 62.4 MiB 0.08 0.00 1.44876 -89.273 -1.44876 1.44876 0.66 0.000495102 0.000460905 0.0338365 0.0315384 36 1932 26 6.99608e+06 88294.1 648988. 2245.63 2.04 0.136573 0.120347 26050 158493 -1 1709 14 732 732 88262 17454 1.38533 1.38533 -95.1897 -1.38533 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0147174 0.013013 43 2 30 30 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 6.51 vpr 62.25 MiB 0.03 6444 -1 -1 1 0.03 -1 -1 30296 -1 -1 7 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.7 MiB 0.05 938 18136 7666 10324 146 62.2 MiB 0.11 0.00 1.85309 -100.228 -1.85309 1.85309 0.67 0.000565693 0.000528359 0.0433505 0.0404764 44 1753 37 6.99608e+06 103010 787024. 2723.27 3.77 0.211064 0.185461 27778 195446 -1 1506 22 822 822 76229 16603 1.22073 1.22073 -93.7336 -1.22073 0 0 997811. 3452.63 0.25 0.06 0.16 -1 -1 0.25 0.0249645 0.0219304 49 2 34 34 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 11.48 vpr 63.16 MiB 0.02 6600 -1 -1 1 0.03 -1 -1 30484 -1 -1 10 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.4 MiB 0.06 1600 30324 10676 17928 1720 63.2 MiB 0.17 0.00 2.38942 -168.824 -2.38942 2.38942 0.67 0.00090045 0.000846311 0.067848 0.063699 40 2938 41 6.99608e+06 147157 706193. 2443.58 8.62 0.445449 0.397933 26914 176310 -1 2764 20 1241 1241 273195 94637 1.51533 1.51533 -157.71 -1.51533 0 0 926341. 3205.33 0.23 0.12 0.16 -1 -1 0.23 0.0345075 0.0309253 73 2 50 50 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 6.45 vpr 63.91 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65440 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 25.0 MiB 0.09 1882 46107 19193 26799 115 63.9 MiB 0.26 0.01 2.92575 -230.221 -2.92575 2.92575 0.67 0.00119577 0.00112328 0.0941022 0.0883698 56 3324 21 6.99608e+06 191304 973134. 3367.25 3.31 0.393861 0.356914 29794 239141 -1 3177 17 1483 1483 176827 36520 1.66733 1.66733 -201.755 -1.66733 0 0 1.19926e+06 4149.71 0.30 0.11 0.22 -1 -1 0.30 0.0418622 0.0378945 97 2 66 66 0 0 +fixed_k6_frac_N8_22nm.xml adder_003bits.v common 2.63 vpr 60.92 MiB 0.01 5732 -1 -1 1 0.06 -1 -1 31692 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62380 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 22.3 MiB 0.02 33 272 66 196 10 60.9 MiB 0.01 0.00 0.62144 -7.45301 -0.62144 0.62144 0.67 6.6187e-05 5.925e-05 0.00162367 0.00144416 18 89 5 6.79088e+06 13472 376052. 1301.22 0.43 0.00477332 0.00436651 22222 88205 -1 96 12 56 56 3434 1195 0.87204 0.87204 -8.56281 -0.87204 0 0 470940. 1629.55 0.16 0.01 0.08 -1 -1 0.16 0.00288475 0.00256578 6 4 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_004bits.v common 2.86 vpr 60.86 MiB 0.01 5768 -1 -1 2 0.06 -1 -1 31784 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62316 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 22.3 MiB 0.02 38 321 80 225 16 60.9 MiB 0.01 0.00 0.883748 -10.0404 -0.883748 0.883748 0.69 9.3326e-05 8.4893e-05 0.00186552 0.00169598 26 115 8 6.79088e+06 13472 503264. 1741.40 0.58 0.0132945 0.0114371 23662 119890 -1 128 5 34 34 1890 580 0.883748 0.883748 -11.0965 -0.883748 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00267052 0.00242806 8 6 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_005bits.v common 2.64 vpr 61.00 MiB 0.03 5732 -1 -1 2 0.06 -1 -1 31860 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62464 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 22.4 MiB 0.01 171 94 40 54 0 61.0 MiB 0.00 0.00 1.02368 -16.5872 -1.02368 1.02368 0.66 0.000107051 9.7386e-05 0.00073107 0.000675006 18 265 9 6.79088e+06 26944 376052. 1301.22 0.44 0.00473124 0.00423882 22222 88205 -1 288 9 87 100 7075 1832 1.02368 1.02368 -17.1824 -1.02368 0 0 470940. 1629.55 0.15 0.01 0.09 -1 -1 0.15 0.00330608 0.00294248 10 7 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_006bits.v common 2.87 vpr 60.88 MiB 0.01 5800 -1 -1 3 0.06 -1 -1 31956 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62336 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 22.3 MiB 0.01 78 532 122 389 21 60.9 MiB 0.01 0.00 1.14898 -15.9596 -1.14898 1.14898 0.79 0.000126434 0.000115978 0.00267124 0.00244984 22 254 10 6.79088e+06 26944 443629. 1535.05 0.53 0.0161963 0.0136579 22798 101617 -1 235 6 82 86 5455 1694 1.05944 1.05944 -17.5826 -1.05944 0 0 531479. 1839.03 0.15 0.01 0.10 -1 -1 0.15 0.00311086 0.00279428 11 9 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_007bits.v common 2.87 vpr 60.90 MiB 0.03 5740 -1 -1 3 0.06 -1 -1 32336 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62360 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 22.3 MiB 0.01 107 781 172 592 17 60.9 MiB 0.01 0.00 1.35273 -19.9506 -1.35273 1.35273 0.70 0.000175034 0.000157087 0.00433218 0.00398709 22 364 10 6.79088e+06 26944 443629. 1535.05 0.55 0.0197656 0.0168178 22798 101617 -1 282 8 119 134 7269 2325 1.35273 1.35273 -22.4071 -1.35273 0 0 531479. 1839.03 0.16 0.01 0.09 -1 -1 0.16 0.00390393 0.00347587 13 10 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_008bits.v common 3.00 vpr 61.07 MiB 0.03 5780 -1 -1 3 0.06 -1 -1 32044 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62536 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 22.7 MiB 0.04 115 994 199 767 28 61.1 MiB 0.01 0.00 1.52493 -22.3533 -1.52493 1.52493 0.73 0.000181298 0.000167565 0.00470021 0.00434725 26 395 12 6.79088e+06 26944 503264. 1741.40 0.61 0.0258358 0.0218753 23662 119890 -1 347 9 163 176 8572 2816 1.27433 1.27433 -24.248 -1.27433 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.0048104 0.00422768 16 14 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_009bits.v common 3.14 vpr 61.05 MiB 0.03 5760 -1 -1 4 0.07 -1 -1 31856 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62516 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 22.6 MiB 0.04 196 1232 436 745 51 61.1 MiB 0.02 0.00 1.31348 -26.7556 -1.31348 1.31348 0.66 0.000217759 0.000200929 0.00596662 0.0055114 30 497 16 6.79088e+06 40416 556674. 1926.21 0.77 0.0286625 0.0242314 24526 138013 -1 413 9 189 200 13868 3596 1.1736 1.1736 -27.3921 -1.1736 0 0 706193. 2443.58 0.19 0.01 0.12 -1 -1 0.19 0.00502343 0.00442599 17 13 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_010bits.v common 3.18 vpr 60.99 MiB 0.02 5840 -1 -1 4 0.06 -1 -1 31772 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62452 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 22.5 MiB 0.16 167 1403 308 1078 17 61.0 MiB 0.02 0.00 1.85398 -30.8307 -1.85398 1.85398 0.67 0.000245931 0.000226799 0.00647482 0.00597646 22 674 49 6.79088e+06 40416 443629. 1535.05 0.66 0.049205 0.0415479 22798 101617 -1 501 10 241 288 16885 5398 1.65028 1.65028 -34.1026 -1.65028 0 0 531479. 1839.03 0.21 0.02 0.09 -1 -1 0.21 0.0059691 0.00525898 21 17 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_011bits.v common 3.50 vpr 61.17 MiB 0.01 5852 -1 -1 5 0.06 -1 -1 32492 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62640 23 12 73 85 1 60 38 17 17 289 -1 unnamed_device 22.7 MiB 0.07 255 1424 308 1101 15 61.2 MiB 0.02 0.00 1.8114 -35.123 -1.8114 1.8114 0.69 0.000260287 0.000240887 0.00679788 0.00629437 34 666 12 6.79088e+06 40416 618332. 2139.56 1.08 0.050825 0.0428367 25102 150614 -1 580 11 233 283 23212 5544 1.8114 1.8114 -36.8915 -1.8114 0 0 787024. 2723.27 0.20 0.02 0.13 -1 -1 0.20 0.00643536 0.00565564 20 16 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_012bits.v common 3.65 vpr 61.20 MiB 0.03 5936 -1 -1 5 0.07 -1 -1 31872 -1 -1 3 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62664 25 13 82 95 1 66 41 17 17 289 -1 unnamed_device 22.7 MiB 0.18 315 1721 363 1322 36 61.2 MiB 0.02 0.00 2.11577 -41.2814 -2.11577 2.11577 0.68 0.000240218 0.000222282 0.00673743 0.00623216 34 735 13 6.79088e+06 40416 618332. 2139.56 1.06 0.0555511 0.0470063 25102 150614 -1 669 13 240 272 22872 5348 1.85403 1.85403 -41.6979 -1.85403 0 0 787024. 2723.27 0.21 0.02 0.14 -1 -1 0.21 0.00757687 0.0066196 24 20 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_013bits.v common 3.19 vpr 61.12 MiB 0.03 5872 -1 -1 5 0.06 -1 -1 32112 -1 -1 4 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62588 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 22.6 MiB 0.23 235 2285 486 1742 57 61.1 MiB 0.01 0.00 2.15497 -43.2975 -2.15497 2.15497 0.56 0.000146093 0.000133421 0.00493531 0.00451688 34 681 36 6.79088e+06 53888 618332. 2139.56 0.81 0.0343123 0.02901 25102 150614 -1 554 11 255 319 17452 5001 1.81483 1.81483 -42.4861 -1.81483 0 0 787024. 2723.27 0.20 0.02 0.13 -1 -1 0.20 0.00770394 0.00677641 27 24 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_014bits.v common 3.22 vpr 61.20 MiB 0.01 5856 -1 -1 6 0.07 -1 -1 31936 -1 -1 4 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62664 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 22.7 MiB 0.19 239 3267 703 2442 122 61.2 MiB 0.03 0.00 2.36642 -47.1965 -2.36642 2.36642 0.65 0.00028241 0.000261892 0.0115008 0.0106796 30 708 16 6.79088e+06 53888 556674. 1926.21 0.71 0.0432284 0.0373342 24526 138013 -1 556 12 292 335 17825 5336 2.06549 2.06549 -46.1813 -2.06549 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00824659 0.00721058 28 23 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_015bits.v common 3.59 vpr 61.33 MiB 0.01 5776 -1 -1 6 0.06 -1 -1 31908 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62800 31 16 104 120 1 83 52 17 17 289 -1 unnamed_device 22.8 MiB 0.51 331 4611 1094 3483 34 61.3 MiB 0.04 0.00 2.65628 -53.9613 -2.65628 2.65628 0.65 0.000311256 0.000288717 0.0158324 0.0146876 28 928 18 6.79088e+06 67360 531479. 1839.03 0.74 0.0520143 0.0450422 23950 126010 -1 775 13 341 470 30157 7825 2.36648 2.36648 -53.8367 -2.36648 0 0 648988. 2245.63 0.18 0.03 0.11 -1 -1 0.18 0.00956828 0.00834612 32 27 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_016bits.v common 3.60 vpr 61.31 MiB 0.01 5912 -1 -1 7 0.06 -1 -1 31824 -1 -1 4 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62784 33 17 108 125 1 88 54 17 17 289 -1 unnamed_device 22.8 MiB 0.48 608 5154 1451 2664 1039 61.3 MiB 0.04 0.00 2.69548 -63.6839 -2.69548 2.69548 0.66 0.000385285 0.000358152 0.0205307 0.01908 30 1143 21 6.79088e+06 53888 556674. 1926.21 0.71 0.0590489 0.0515864 24526 138013 -1 1043 11 317 384 26198 6012 2.39454 2.39454 -63.3864 -2.39454 0 0 706193. 2443.58 0.19 0.02 0.13 -1 -1 0.19 0.00881388 0.00775075 32 26 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_018bits.v common 4.43 vpr 61.29 MiB 0.01 5884 -1 -1 7 0.09 -1 -1 32484 -1 -1 5 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62764 37 19 127 146 1 100 61 17 17 289 -1 unnamed_device 22.7 MiB 0.88 661 3781 906 2518 357 61.3 MiB 0.03 0.00 3.03567 -75.9544 -3.03567 3.03567 0.68 0.000367577 0.000341109 0.0128341 0.0119164 34 1285 30 6.79088e+06 67360 618332. 2139.56 1.18 0.0903352 0.0772856 25102 150614 -1 1211 14 379 531 37075 8541 2.62057 2.62057 -74.747 -2.62057 0 0 787024. 2723.27 0.20 0.03 0.09 -1 -1 0.20 0.0116955 0.010211 37 35 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_020bits.v common 4.32 vpr 61.82 MiB 0.01 5900 -1 -1 8 0.08 -1 -1 32236 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63308 41 21 139 160 1 110 68 17 17 289 -1 unnamed_device 23.4 MiB 0.62 560 5864 1353 4034 477 61.8 MiB 0.04 0.00 2.82083 -78.2516 -2.82083 2.82083 0.65 0.000398447 0.000370144 0.0182796 0.016993 34 1359 37 6.79088e+06 80832 618332. 2139.56 1.25 0.105956 0.0913965 25102 150614 -1 1162 13 425 576 48317 11363 2.60599 2.60599 -79.9872 -2.60599 0 0 787024. 2723.27 0.20 0.03 0.14 -1 -1 0.20 0.0120408 0.0106331 42 37 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_022bits.v common 4.17 vpr 61.50 MiB 0.03 6044 -1 -1 9 0.07 -1 -1 32312 -1 -1 6 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62972 45 23 152 175 1 121 74 17 17 289 -1 unnamed_device 23.1 MiB 0.99 569 6429 1548 4565 316 61.5 MiB 0.05 0.00 3.45087 -87.8964 -3.45087 3.45087 0.65 0.00051247 0.000475924 0.0202475 0.0187956 30 1346 15 6.79088e+06 80832 556674. 1926.21 0.74 0.0679099 0.0596845 24526 138013 -1 1199 10 435 591 33788 8803 3.20027 3.20027 -91.596 -3.20027 0 0 706193. 2443.58 0.21 0.03 0.11 -1 -1 0.21 0.0118123 0.0104744 45 40 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_024bits.v common 5.06 vpr 61.68 MiB 0.01 5952 -1 -1 10 0.08 -1 -1 32656 -1 -1 6 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63156 49 25 165 190 1 131 80 17 17 289 -1 unnamed_device 23.2 MiB 1.04 490 11088 4620 6440 28 61.7 MiB 0.08 0.00 3.70153 -100.305 -3.70153 3.70153 0.65 0.00055466 0.000514496 0.035894 0.0332878 36 1543 32 6.79088e+06 80832 648988. 2245.63 1.51 0.112577 0.0991462 25390 158009 -1 1146 12 527 713 45707 11961 3.40059 3.40059 -96.9203 -3.40059 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.0135838 0.0120854 48 43 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_028bits.v common 5.87 vpr 61.81 MiB 0.03 5960 -1 -1 11 0.07 -1 -1 32692 -1 -1 9 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63292 57 29 199 228 1 156 95 17 17 289 -1 unnamed_device 23.3 MiB 2.03 858 13919 3611 9607 701 61.8 MiB 0.11 0.00 4.45687 -136.905 -4.45687 4.45687 0.79 0.000680964 0.000634009 0.0527421 0.0490878 30 1959 44 6.79088e+06 121248 556674. 1926.21 1.16 0.139955 0.124106 24526 138013 -1 1696 13 587 803 53198 12346 3.99143 3.99143 -133.711 -3.99143 0 0 706193. 2443.58 0.20 0.04 0.12 -1 -1 0.20 0.0170538 0.0150973 59 57 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_032bits.v common 5.99 vpr 61.79 MiB 0.02 6180 -1 -1 13 0.09 -1 -1 31948 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63272 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 23.2 MiB 1.30 636 20347 6786 10007 3554 61.8 MiB 0.12 0.00 5.42361 -161.246 -5.42361 5.42361 0.66 0.000797114 0.00072738 0.0586558 0.0546299 40 1688 41 6.79088e+06 121248 706193. 2443.58 1.98 0.214939 0.190014 26254 175826 -1 1351 20 710 934 110100 45329 4.92241 4.92241 -150.99 -4.92241 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0262457 0.0232549 65 62 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_048bits.v common 6.04 vpr 62.90 MiB 0.02 6352 -1 -1 19 0.10 -1 -1 32464 -1 -1 14 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 97 49 340 389 1 266 160 17 17 289 -1 unnamed_device 24.2 MiB 1.61 1414 32276 9655 19397 3224 62.9 MiB 0.17 0.00 7.54987 -303.629 -7.54987 7.54987 0.66 0.000980362 0.00091467 0.0773462 0.0721599 34 3140 17 6.79088e+06 188608 618332. 2139.56 1.59 0.268783 0.240646 25102 150614 -1 2897 31 1069 1507 318632 156581 6.95914 6.95914 -294.439 -6.95914 0 0 787024. 2723.27 0.20 0.16 0.15 -1 -1 0.20 0.0556205 0.0494543 100 98 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_064bits.v common 10.92 vpr 63.64 MiB 0.04 6584 -1 -1 26 0.15 -1 -1 32604 -1 -1 19 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 129 65 454 519 1 356 213 17 17 289 -1 unnamed_device 24.7 MiB 4.34 1780 46568 16006 26324 4238 63.6 MiB 0.25 0.00 9.37941 -468.754 -9.37941 9.37941 0.67 0.00135586 0.00126941 0.109716 0.102823 36 3957 39 6.79088e+06 255968 648988. 2245.63 3.58 0.49778 0.448354 25390 158009 -1 3260 14 1249 1621 102007 25537 8.75291 8.75291 -440.979 -8.75291 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0394467 0.0357159 133 132 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 2.62 vpr 61.15 MiB 0.02 6100 -1 -1 1 0.02 -1 -1 30060 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62616 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.6 MiB 0.02 29 285 62 205 18 61.1 MiB 0.01 0.00 0.62144 -7.02012 -0.62144 0.62144 0.71 7.0308e-05 6.3187e-05 0.00176289 0.00157812 18 105 9 6.87369e+06 13973.8 376052. 1301.22 0.44 0.0047689 0.00427134 22882 88689 -1 95 3 18 18 989 319 0.74674 0.74674 -8.09412 -0.74674 0 0 470940. 1629.55 0.13 0.01 0.09 -1 -1 0.13 0.00279541 0.00253068 8 2 5 5 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 2.63 vpr 61.18 MiB 0.01 6176 -1 -1 1 0.02 -1 -1 30044 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62644 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.6 MiB 0.03 77 376 88 272 16 61.2 MiB 0.01 0.00 0.789073 -10.1499 -0.789073 0.789073 0.65 8.7824e-05 7.9843e-05 0.00193658 0.00175777 18 164 14 6.87369e+06 27947.7 376052. 1301.22 0.44 0.00578992 0.00509344 22882 88689 -1 147 11 71 71 2907 994 0.914373 0.914373 -11.3046 -0.914373 0 0 470940. 1629.55 0.15 0.01 0.09 -1 -1 0.15 0.00365629 0.00322932 10 2 6 6 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 2.71 vpr 61.23 MiB 0.01 6080 -1 -1 1 0.02 -1 -1 30032 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62700 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 22.6 MiB 0.04 78 444 92 346 6 61.2 MiB 0.01 0.00 0.811073 -13.1985 -0.811073 0.811073 0.68 0.000104357 9.5107e-05 0.00217775 0.00198031 18 261 23 6.87369e+06 27947.7 376052. 1301.22 0.45 0.00846248 0.00733992 22882 88689 -1 206 10 111 111 5751 1825 1.06167 1.06167 -15.482 -1.06167 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.00338245 0.00298701 12 2 7 7 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 2.92 vpr 61.31 MiB 0.01 6080 -1 -1 1 0.03 -1 -1 29848 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62780 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 22.7 MiB 0.05 164 1102 278 658 166 61.3 MiB 0.02 0.00 0.833073 -17.1401 -0.833073 0.833073 0.67 0.000150045 0.000137523 0.00588988 0.00537748 26 350 12 6.87369e+06 27947.7 503264. 1741.40 0.62 0.019408 0.016588 24322 120374 -1 344 11 172 172 16807 3937 1.05067 1.05067 -19.2271 -1.05067 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00399244 0.00349402 14 2 8 8 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 2.91 vpr 61.46 MiB 0.03 6080 -1 -1 1 0.03 -1 -1 29972 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62940 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.8 MiB 0.06 117 862 186 627 49 61.5 MiB 0.01 0.00 1.38906 -18.532 -1.38906 1.38906 0.65 0.000138896 0.000127612 0.00358769 0.00330198 26 367 24 6.87369e+06 41921.5 503264. 1741.40 0.59 0.0195547 0.0164235 24322 120374 -1 302 12 192 192 11322 3550 1.11467 1.11467 -21.4021 -1.11467 0 0 618332. 2139.56 0.18 0.01 0.12 -1 -1 0.18 0.0042945 0.00374442 17 2 9 9 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 2.93 vpr 61.27 MiB 0.02 6076 -1 -1 1 0.03 -1 -1 30192 -1 -1 3 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62736 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.6 MiB 0.05 109 1525 373 1057 95 61.3 MiB 0.02 0.00 1.2154 -20.8491 -1.2154 1.2154 0.65 0.000156775 0.000144444 0.00591041 0.00544482 30 288 13 6.87369e+06 41921.5 556674. 1926.21 0.65 0.0231395 0.0197269 25186 138497 -1 215 15 199 199 7654 2862 1.08167 1.08167 -22.8352 -1.08167 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00633098 0.00540553 18 2 10 10 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 3.08 vpr 61.20 MiB 0.03 6100 -1 -1 1 0.02 -1 -1 30044 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62668 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 22.8 MiB 0.05 195 882 180 665 37 61.2 MiB 0.01 0.00 1.2264 -24.8855 -1.2264 1.2264 0.71 0.000209462 0.000193512 0.00415639 0.00382763 26 454 15 6.87369e+06 41921.5 503264. 1741.40 0.64 0.0250019 0.0211696 24322 120374 -1 422 13 236 236 19643 4836 1.00037 1.00037 -27.4072 -1.00037 0 0 618332. 2139.56 0.19 0.02 0.11 -1 -1 0.19 0.00583501 0.00506691 20 2 11 11 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 3.04 vpr 61.43 MiB 0.02 6120 -1 -1 1 0.03 -1 -1 30004 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62908 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 23.0 MiB 0.06 144 2885 1076 1578 231 61.4 MiB 0.03 0.00 1.2374 -27.0881 -1.2374 1.2374 0.66 0.000229592 0.000212414 0.011456 0.0105854 26 522 24 6.87369e+06 41921.5 503264. 1741.40 0.66 0.036044 0.0309881 24322 120374 -1 432 11 246 246 25419 6521 1.27297 1.27297 -32.5697 -1.27297 0 0 618332. 2139.56 0.17 0.03 0.11 -1 -1 0.17 0.00892762 0.00759384 22 2 12 12 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 3.14 vpr 61.39 MiB 0.01 6160 -1 -1 1 0.02 -1 -1 30032 -1 -1 4 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62860 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.7 MiB 0.06 161 3141 1140 1427 574 61.4 MiB 0.03 0.00 1.2484 -30.254 -1.2484 1.2484 0.67 0.000249444 0.000230864 0.0127135 0.0117698 30 483 13 6.87369e+06 55895.4 556674. 1926.21 0.68 0.0357906 0.031048 25186 138497 -1 417 18 332 332 25461 6749 1.23997 1.23997 -32.3745 -1.23997 0 0 706193. 2443.58 0.19 0.02 0.13 -1 -1 0.19 0.00813288 0.0069899 24 2 13 13 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 3.08 vpr 61.46 MiB 0.03 6176 -1 -1 1 0.03 -1 -1 30008 -1 -1 4 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62936 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 23.1 MiB 0.06 257 1698 288 1343 67 61.5 MiB 0.02 0.00 1.2594 -33.773 -1.2594 1.2594 0.65 0.000224753 0.000208541 0.0059376 0.00550688 30 636 21 6.87369e+06 55895.4 556674. 1926.21 0.67 0.0338937 0.0289757 25186 138497 -1 556 13 252 252 17457 4364 1.16967 1.16967 -37.8151 -1.16967 0 0 706193. 2443.58 0.22 0.03 0.12 -1 -1 0.22 0.00956834 0.00822968 26 2 14 14 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 3.23 vpr 61.54 MiB 0.01 6132 -1 -1 1 0.02 -1 -1 30124 -1 -1 4 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63016 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 23.1 MiB 0.07 199 2525 555 1893 77 61.5 MiB 0.03 0.00 1.2704 -35.5781 -1.2704 1.2704 0.66 0.000295296 0.000274169 0.00987626 0.00915734 26 688 26 6.87369e+06 55895.4 503264. 1741.40 0.69 0.0431168 0.0371423 24322 120374 -1 552 13 342 342 21118 6466 1.12567 1.12567 -39.0948 -1.12567 0 0 618332. 2139.56 0.21 0.01 0.12 -1 -1 0.21 0.0057059 0.00496797 28 2 15 15 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 3.87 vpr 61.66 MiB 0.02 6084 -1 -1 1 0.03 -1 -1 30344 -1 -1 4 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63144 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 23.2 MiB 0.11 254 5703 2371 3279 53 61.7 MiB 0.05 0.00 1.2814 -38.5865 -1.2814 1.2814 0.66 0.000304379 0.000282065 0.0205001 0.0189797 36 743 32 6.87369e+06 55895.4 648988. 2245.63 1.28 0.0728403 0.0627058 26050 158493 -1 559 22 432 432 29016 7596 1.17597 1.17597 -38.2444 -1.17597 0 0 828058. 2865.25 0.21 0.03 0.16 -1 -1 0.21 0.0110775 0.00951649 31 2 16 16 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 3.17 vpr 61.57 MiB 0.03 6208 -1 -1 1 0.02 -1 -1 30244 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63044 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 23.0 MiB 0.16 339 2768 498 2177 93 61.6 MiB 0.03 0.00 1.65273 -43.0941 -1.65273 1.65273 0.65 0.000319723 0.000296981 0.00974148 0.00904919 30 844 15 6.87369e+06 69869.2 556674. 1926.21 0.69 0.0394877 0.0341834 25186 138497 -1 747 16 341 341 24842 6127 1.22267 1.22267 -46.5824 -1.22267 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00926254 0.00801814 33 2 17 17 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 3.32 vpr 61.62 MiB 0.01 6232 -1 -1 1 0.03 -1 -1 30228 -1 -1 5 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63100 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.0 MiB 0.08 294 6191 2575 3554 62 61.6 MiB 0.05 0.00 1.66373 -46.2163 -1.66373 1.66373 0.68 0.000340842 0.000315743 0.0211013 0.0195687 28 838 43 6.87369e+06 69869.2 531479. 1839.03 0.78 0.0679041 0.0590003 24610 126494 -1 690 17 444 444 39147 10286 1.30397 1.30397 -48.7671 -1.30397 0 0 648988. 2245.63 0.18 0.03 0.12 -1 -1 0.18 0.0110976 0.00957938 34 2 18 18 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 3.34 vpr 61.80 MiB 0.01 6188 -1 -1 1 0.03 -1 -1 30480 -1 -1 5 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63280 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 23.2 MiB 0.08 394 3301 624 2568 109 61.8 MiB 0.03 0.00 1.68573 -53.1175 -1.68573 1.68573 0.66 0.000328768 0.000306067 0.00997869 0.00930126 30 904 14 6.87369e+06 69869.2 556674. 1926.21 0.72 0.0475417 0.0410943 25186 138497 -1 797 14 388 388 23146 6118 1.15867 1.15867 -53.1603 -1.15867 0 0 706193. 2443.58 0.19 0.03 0.12 -1 -1 0.19 0.0101719 0.00881235 38 2 20 20 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 3.34 vpr 61.74 MiB 0.01 6208 -1 -1 1 0.04 -1 -1 30344 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63224 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 23.2 MiB 0.10 378 8210 2985 4229 996 61.7 MiB 0.06 0.00 1.70773 -58.8485 -1.70773 1.70773 0.68 0.00042459 0.000394706 0.0249675 0.0232242 32 984 15 6.87369e+06 83843 586450. 2029.24 0.77 0.0684882 0.0601848 25474 144626 -1 837 15 474 474 34249 9299 1.25567 1.25567 -59.9491 -1.25567 0 0 744469. 2576.02 0.20 0.03 0.13 -1 -1 0.20 0.0125641 0.0109129 42 2 22 22 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 3.84 vpr 61.85 MiB 0.01 6128 -1 -1 1 0.03 -1 -1 30300 -1 -1 6 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63336 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 23.2 MiB 0.13 726 8754 2873 4502 1379 61.9 MiB 0.06 0.00 1.72973 -73.6047 -1.72973 1.72973 0.68 0.000465959 0.000433528 0.0261596 0.0243438 34 1433 18 6.87369e+06 83843 618332. 2139.56 1.19 0.105255 0.091708 25762 151098 -1 1320 19 593 593 59737 12698 1.19167 1.19167 -70.5448 -1.19167 0 0 787024. 2723.27 0.20 0.04 0.14 -1 -1 0.20 0.0157244 0.0136661 47 2 24 24 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 3.87 vpr 61.85 MiB 0.03 6244 -1 -1 1 0.03 -1 -1 30356 -1 -1 7 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63336 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.3 MiB 0.09 625 7256 1774 5266 216 61.9 MiB 0.06 0.00 2.11206 -76.8475 -2.11206 2.11206 0.69 0.000422817 0.000393817 0.0209851 0.0195604 34 1477 19 6.87369e+06 97816.9 618332. 2139.56 1.19 0.104641 0.0910665 25762 151098 -1 1234 15 608 608 61449 14229 1.34167 1.34167 -76.3842 -1.34167 0 0 787024. 2723.27 0.21 0.04 0.15 -1 -1 0.21 0.0140436 0.0123091 50 2 26 26 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 3.97 vpr 62.08 MiB 0.03 6284 -1 -1 1 0.03 -1 -1 30108 -1 -1 8 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 23.6 MiB 0.11 776 15004 5726 8363 915 62.1 MiB 0.10 0.00 2.15606 -94.9711 -2.15606 2.15606 0.68 0.00049284 0.00045922 0.038032 0.0353989 34 1613 19 6.87369e+06 111791 618332. 2139.56 1.21 0.133854 0.117878 25762 151098 -1 1483 17 717 717 66075 14749 1.33697 1.33697 -88.3319 -1.33697 0 0 787024. 2723.27 0.23 0.05 0.14 -1 -1 0.23 0.0188411 0.0166286 58 2 30 30 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 4.15 vpr 62.26 MiB 0.02 6316 -1 -1 1 0.03 -1 -1 30400 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.7 MiB 0.11 954 16046 4777 9693 1576 62.3 MiB 0.09 0.00 2.56039 -113.756 -2.56039 2.56039 0.68 0.000416276 0.000382484 0.0323641 0.030007 34 2130 16 6.87369e+06 125765 618332. 2139.56 1.43 0.127044 0.11157 25762 151098 -1 1787 15 792 792 74414 16730 1.39467 1.39467 -104.5 -1.39467 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0267273 0.0237342 66 2 34 34 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 4.80 vpr 63.08 MiB 0.04 6680 -1 -1 1 0.03 -1 -1 30260 -1 -1 13 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1267 31119 10636 17936 2547 63.1 MiB 0.19 0.00 3.45705 -187.252 -3.45705 3.45705 0.67 0.000866354 0.000811486 0.0652057 0.0611076 34 3112 27 6.87369e+06 181660 618332. 2139.56 1.87 0.246571 0.221407 25762 151098 -1 2639 15 1172 1172 115640 25841 1.66097 1.66097 -158.316 -1.66097 0 0 787024. 2723.27 0.21 0.08 0.15 -1 -1 0.21 0.0272897 0.024447 98 2 50 50 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 7.11 vpr 63.58 MiB 0.03 6748 -1 -1 1 0.04 -1 -1 30320 -1 -1 17 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.7 MiB 0.14 1676 49117 18403 27988 2726 63.6 MiB 0.30 0.01 4.35372 -277.769 -4.35372 4.35372 0.67 0.00138414 0.00129463 0.0958201 0.0898955 38 3774 17 6.87369e+06 237555 678818. 2348.85 4.00 0.434922 0.393102 26626 170182 -1 3207 16 1541 1541 147996 32812 1.85967 1.85967 -213.59 -1.85967 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0382639 0.0345451 130 2 66 66 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 2.64 vpr 60.99 MiB 0.02 6072 -1 -1 1 0.02 -1 -1 29900 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62452 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.4 MiB 0.02 29 285 62 205 18 61.0 MiB 0.01 0.00 0.62144 -7.02012 -0.62144 0.62144 0.66 7.0281e-05 6.3174e-05 0.00177475 0.00158971 18 105 9 6.89349e+06 14093.8 376052. 1301.22 0.46 0.00486865 0.00436213 22882 88689 -1 95 3 18 18 989 319 0.74674 0.74674 -8.09412 -0.74674 0 0 470940. 1629.55 0.13 0.01 0.09 -1 -1 0.13 0.00193885 0.00180429 8 2 5 5 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 2.74 vpr 61.37 MiB 0.01 6128 -1 -1 1 0.03 -1 -1 29896 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62844 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.8 MiB 0.05 78 376 85 271 20 61.4 MiB 0.01 0.00 0.828273 -10.1712 -0.828273 0.828273 0.66 8.7255e-05 7.9141e-05 0.00195941 0.00177683 18 170 7 6.89349e+06 28187.7 376052. 1301.22 0.50 0.00661946 0.0060564 22882 88689 -1 164 10 60 60 2719 975 0.87204 0.87204 -11.6748 -0.87204 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.0032222 0.00287079 10 2 6 6 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 2.73 vpr 61.13 MiB 0.03 5976 -1 -1 1 0.03 -1 -1 30044 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62596 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 22.5 MiB 0.04 78 444 92 346 6 61.1 MiB 0.01 0.00 0.850273 -13.3945 -0.850273 0.850273 0.68 0.000123469 0.00011253 0.00251789 0.00228139 18 265 10 6.89349e+06 28187.7 376052. 1301.22 0.45 0.00629213 0.00559388 22882 88689 -1 213 11 119 119 6760 2059 0.975573 0.975573 -15.1768 -0.975573 0 0 470940. 1629.55 0.15 0.01 0.10 -1 -1 0.15 0.00367489 0.00328141 12 2 7 7 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 3.49 vpr 61.22 MiB 0.01 6012 -1 -1 1 0.02 -1 -1 30056 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62688 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 22.6 MiB 0.04 200 1012 243 655 114 61.2 MiB 0.01 0.00 0.872273 -18.5692 -0.872273 0.872273 0.65 0.000121904 0.000111517 0.00448231 0.00411053 24 432 15 6.89349e+06 28187.7 470940. 1629.55 1.25 0.0376156 0.0310544 24034 113901 -1 407 11 172 172 14117 3086 1.06167 1.06167 -21.3831 -1.06167 0 0 586450. 2029.24 0.16 0.01 0.11 -1 -1 0.16 0.00429559 0.0037877 14 2 8 8 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 3.05 vpr 61.16 MiB 0.01 6028 -1 -1 1 0.02 -1 -1 29964 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62632 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.5 MiB 0.09 118 862 183 616 63 61.2 MiB 0.01 0.00 1.2657 -18.4312 -1.2657 1.2657 0.66 0.000140098 0.000128724 0.00356136 0.00327094 28 343 16 6.89349e+06 42281.5 531479. 1839.03 0.70 0.0197091 0.0166329 24610 126494 -1 278 12 173 173 9204 2785 1.08787 1.08787 -20.7701 -1.08787 0 0 648988. 2245.63 0.17 0.01 0.12 -1 -1 0.17 0.0049179 0.00429209 17 2 9 9 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 3.07 vpr 61.41 MiB 0.01 5972 -1 -1 1 0.02 -1 -1 30076 -1 -1 3 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62888 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.8 MiB 0.06 149 1217 254 894 69 61.4 MiB 0.01 0.00 1.2326 -21.9687 -1.2326 1.2326 0.67 0.000160338 0.000147814 0.0049584 0.00458339 30 358 10 6.89349e+06 42281.5 556674. 1926.21 0.68 0.0246886 0.0212999 25186 138497 -1 321 16 186 186 12484 3682 1.00232 1.00232 -23.8775 -1.00232 0 0 706193. 2443.58 0.19 0.02 0.13 -1 -1 0.19 0.005796 0.0049871 18 2 10 10 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 3.07 vpr 61.27 MiB 0.01 6080 -1 -1 1 0.03 -1 -1 30080 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62744 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 22.8 MiB 0.06 200 932 174 705 53 61.3 MiB 0.01 0.00 1.2436 -25.1484 -1.2436 1.2436 0.68 0.000174877 0.00016186 0.003772 0.00349402 26 461 11 6.89349e+06 42281.5 503264. 1741.40 0.63 0.023094 0.0196071 24322 120374 -1 420 11 219 219 14780 3879 1.00037 1.00037 -27.3852 -1.00037 0 0 618332. 2139.56 0.18 0.02 0.11 -1 -1 0.18 0.00780658 0.00688177 20 2 11 11 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 3.13 vpr 61.19 MiB 0.03 6060 -1 -1 1 0.02 -1 -1 30008 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62660 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 22.8 MiB 0.05 144 2828 1054 1431 343 61.2 MiB 0.02 0.00 1.2546 -27.4315 -1.2546 1.2546 0.66 0.000191502 0.00017707 0.0101408 0.00937194 32 374 10 6.89349e+06 42281.5 586450. 2029.24 0.68 0.0304 0.0262275 25474 144626 -1 343 12 206 206 13022 3666 1.02237 1.02237 -27.4544 -1.02237 0 0 744469. 2576.02 0.21 0.03 0.13 -1 -1 0.21 0.00951205 0.00812297 22 2 12 12 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 3.13 vpr 61.35 MiB 0.02 6048 -1 -1 1 0.03 -1 -1 29988 -1 -1 4 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62824 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.7 MiB 0.05 160 3141 1095 1440 606 61.4 MiB 0.03 0.00 1.2656 -30.185 -1.2656 1.2656 0.66 0.000245974 0.00022759 0.011324 0.0104815 30 467 12 6.89349e+06 56375.4 556674. 1926.21 0.67 0.0337847 0.0291761 25186 138497 -1 386 14 243 243 14853 3925 1.15867 1.15867 -31.0145 -1.15867 0 0 706193. 2443.58 0.26 0.02 0.13 -1 -1 0.26 0.0068877 0.00603854 24 2 13 13 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 3.17 vpr 61.41 MiB 0.02 6224 -1 -1 1 0.02 -1 -1 30084 -1 -1 4 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62884 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 23.0 MiB 0.05 266 2346 496 1701 149 61.4 MiB 0.02 0.00 1.2766 -33.6936 -1.2766 1.2766 0.72 0.000263537 0.000243992 0.00937388 0.00868446 30 630 15 6.89349e+06 56375.4 556674. 1926.21 0.69 0.0355263 0.0306465 25186 138497 -1 552 10 238 238 15903 3959 1.14287 1.14287 -36.6551 -1.14287 0 0 706193. 2443.58 0.19 0.03 0.08 -1 -1 0.19 0.0107139 0.00920244 26 2 14 14 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 4.02 vpr 61.32 MiB 0.03 6140 -1 -1 1 0.03 -1 -1 30112 -1 -1 4 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62796 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 22.8 MiB 0.06 176 2845 630 2149 66 61.3 MiB 0.04 0.00 1.2876 -35.1215 -1.2876 1.2876 0.66 0.000317056 0.000293655 0.0164775 0.0152256 26 673 35 6.89349e+06 56375.4 503264. 1741.40 1.52 0.0811743 0.0691527 24322 120374 -1 579 12 333 333 22000 6590 1.27917 1.27917 -40.8337 -1.27917 0 0 618332. 2139.56 0.22 0.02 0.13 -1 -1 0.22 0.00899422 0.00797406 28 2 15 15 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 3.17 vpr 61.52 MiB 0.03 6028 -1 -1 1 0.02 -1 -1 30236 -1 -1 4 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63000 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 23.0 MiB 0.07 407 5703 1643 3514 546 61.5 MiB 0.04 0.00 1.2986 -43.2206 -1.2986 1.2986 0.66 0.000252206 0.000233258 0.0192145 0.0177633 32 861 15 6.89349e+06 56375.4 586450. 2029.24 0.71 0.0471833 0.0413288 25474 144626 -1 772 16 354 354 33051 7619 1.17597 1.17597 -43.3002 -1.17597 0 0 744469. 2576.02 0.19 0.03 0.14 -1 -1 0.19 0.00894542 0.00776425 31 2 16 16 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 3.17 vpr 61.59 MiB 0.02 6160 -1 -1 1 0.03 -1 -1 30240 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63068 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 23.1 MiB 0.15 339 2477 446 1968 63 61.6 MiB 0.02 0.00 1.66993 -43.2794 -1.66993 1.66993 0.66 0.000275121 0.00025543 0.00767111 0.00711693 30 841 17 6.89349e+06 70469.2 556674. 1926.21 0.70 0.0389343 0.0334446 25186 138497 -1 753 13 329 329 22766 5542 1.33217 1.33217 -47.2275 -1.33217 0 0 706193. 2443.58 0.19 0.02 0.11 -1 -1 0.19 0.00812679 0.00708604 33 2 17 17 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 3.31 vpr 61.48 MiB 0.02 6176 -1 -1 1 0.02 -1 -1 30280 -1 -1 5 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62960 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.0 MiB 0.08 533 6191 2070 2945 1176 61.5 MiB 0.04 0.00 1.68093 -51.8948 -1.68093 1.68093 0.66 0.000290552 0.000269498 0.0182119 0.0168976 32 1018 16 6.89349e+06 70469.2 586450. 2029.24 0.72 0.0526262 0.0460119 25474 144626 -1 972 16 402 402 40039 8856 1.34797 1.34797 -56.3309 -1.34797 0 0 744469. 2576.02 0.23 0.04 0.13 -1 -1 0.23 0.0131992 0.0115226 34 2 18 18 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 3.19 vpr 61.73 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 30264 -1 -1 5 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63212 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 23.2 MiB 0.07 387 3901 827 2954 120 61.7 MiB 0.04 0.00 1.70293 -53.0623 -1.70293 1.70293 0.66 0.000389504 0.000362966 0.0140394 0.0130766 32 965 15 6.89349e+06 70469.2 586450. 2029.24 0.73 0.0497377 0.0431747 25474 144626 -1 812 13 414 414 32698 8490 1.11467 1.11467 -51.9686 -1.11467 0 0 744469. 2576.02 0.20 0.03 0.14 -1 -1 0.20 0.00981715 0.00856157 38 2 20 20 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 3.84 vpr 61.52 MiB 0.02 6156 -1 -1 1 0.03 -1 -1 30352 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62996 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 22.9 MiB 0.08 542 9176 2598 5872 706 61.5 MiB 0.07 0.00 1.72493 -64.2553 -1.72493 1.72493 0.68 0.000427384 0.000398049 0.0292834 0.0272484 34 1221 18 6.89349e+06 84563 618332. 2139.56 1.20 0.107211 0.0930607 25762 151098 -1 1089 13 448 448 37853 8705 1.18067 1.18067 -62.7217 -1.18067 0 0 787024. 2723.27 0.21 0.03 0.14 -1 -1 0.21 0.0103702 0.00904003 42 2 22 22 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 3.81 vpr 61.78 MiB 0.01 6192 -1 -1 1 0.03 -1 -1 30444 -1 -1 6 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63260 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 23.2 MiB 0.12 723 8754 3239 4614 901 61.8 MiB 0.06 0.00 1.74693 -73.4399 -1.74693 1.74693 0.66 0.000389849 0.000362479 0.0231872 0.0215623 34 1405 14 6.89349e+06 84563 618332. 2139.56 1.23 0.104966 0.0908459 25762 151098 -1 1319 12 478 478 44532 9854 1.16487 1.16487 -69.1891 -1.16487 0 0 787024. 2723.27 0.21 0.03 0.15 -1 -1 0.21 0.00899502 0.00792887 47 2 24 24 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 3.72 vpr 61.84 MiB 0.03 6368 -1 -1 1 0.03 -1 -1 30312 -1 -1 7 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63320 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.2 MiB 0.10 631 6906 1526 5153 227 61.8 MiB 0.05 0.00 2.12926 -78.3694 -2.12926 2.12926 0.65 0.000415919 0.000386967 0.017901 0.016691 34 1472 17 6.89349e+06 98656.9 618332. 2139.56 1.14 0.0987786 0.085825 25762 151098 -1 1305 16 554 554 53475 11899 1.20067 1.20067 -74.546 -1.20067 0 0 787024. 2723.27 0.20 0.04 0.14 -1 -1 0.20 0.0137468 0.0120008 50 2 26 26 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 3.93 vpr 61.91 MiB 0.03 6408 -1 -1 1 0.03 -1 -1 29984 -1 -1 8 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 23.5 MiB 0.09 807 15217 5536 8453 1228 61.9 MiB 0.09 0.00 2.17326 -96.6426 -2.17326 2.17326 0.67 0.000488645 0.000454915 0.0362765 0.033811 34 1706 22 6.89349e+06 112751 618332. 2139.56 1.24 0.134486 0.118283 25762 151098 -1 1506 13 634 634 52882 12034 1.38087 1.38087 -90.2802 -1.38087 0 0 787024. 2723.27 0.22 0.04 0.14 -1 -1 0.22 0.0136986 0.0121331 58 2 30 30 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 3.93 vpr 61.96 MiB 0.02 6308 -1 -1 1 0.03 -1 -1 30472 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63444 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.5 MiB 0.10 932 16046 5153 9164 1729 62.0 MiB 0.10 0.00 2.57759 -112.715 -2.57759 2.57759 0.66 0.000567205 0.000529745 0.0376243 0.035133 34 1931 21 6.89349e+06 126845 618332. 2139.56 1.21 0.148713 0.131075 25762 151098 -1 1724 12 674 674 55073 12631 1.42297 1.42297 -103.442 -1.42297 0 0 787024. 2723.27 0.21 0.05 0.14 -1 -1 0.21 0.0156217 0.0138238 66 2 34 34 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 4.24 vpr 62.80 MiB 0.03 6468 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.1 MiB 0.09 1295 31119 10716 17608 2795 62.8 MiB 0.19 0.00 3.47425 -188.48 -3.47425 3.47425 0.66 0.000876758 0.000822682 0.0660818 0.0619761 34 3041 16 6.89349e+06 183220 618332. 2139.56 1.49 0.235846 0.212257 25762 151098 -1 2661 17 1201 1201 117945 26410 1.80817 1.80817 -167.482 -1.80817 0 0 787024. 2723.27 0.21 0.08 0.11 -1 -1 0.21 0.0294933 0.0263278 98 2 50 50 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 5.21 vpr 63.39 MiB 0.04 6768 -1 -1 1 0.05 -1 -1 30248 -1 -1 17 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.6 MiB 0.14 1716 49117 18160 27971 2986 63.4 MiB 0.31 0.01 4.37092 -279.363 -4.37092 4.37092 0.66 0.00119557 0.00112429 0.0996286 0.0936119 34 4563 35 6.89349e+06 239595 618332. 2139.56 2.07 0.317301 0.288503 25762 151098 -1 3491 15 1497 1497 159197 35778 1.79097 1.79097 -213.79 -1.79097 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0361634 0.0326969 130 2 66 66 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt index 6a9e4fa3a92..18e7b6ae191 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,1025 +1,1025 @@ 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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 5.68 vpr 64.76 MiB 0.02 7264 -1 -1 14 0.33 -1 -1 36340 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 26.4 MiB 0.31 1354 8532 2094 5512 926 64.8 MiB 0.08 0.00 8.19013 -165.934 -8.19013 8.19013 0.88 0.000657261 0.000596344 0.0316801 0.0287868 28 3693 28 6.55708e+06 313430 500653. 1732.36 2.13 0.140935 0.125205 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.26 0.10 0.11 -1 -1 0.26 0.0324905 0.0290406 186 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 5.25 vpr 65.10 MiB 0.02 7056 -1 -1 14 0.36 -1 -1 36724 -1 -1 30 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 26.6 MiB 0.50 1292 15824 4267 9033 2524 65.1 MiB 0.13 0.00 8.12966 -162.719 -8.12966 8.12966 0.88 0.000635406 0.000576175 0.0526901 0.0478039 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.41 0.15268 0.135394 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0292306 0.0262469 189 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 13.70 vpr 64.70 MiB 0.02 7044 -1 -1 11 0.25 -1 -1 36540 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66248 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 26.2 MiB 0.40 1266 13157 3416 7667 2074 64.7 MiB 0.11 0.00 6.4728 -136.716 -6.4728 6.4728 0.83 0.000559967 0.000507814 0.0436372 0.0393037 36 3746 35 6.55708e+06 301375 612192. 2118.31 10.14 0.295029 0.257182 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.32 0.11 0.14 -1 -1 0.32 0.0329843 0.0294305 180 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 8.21 vpr 65.20 MiB 0.02 6964 -1 -1 12 0.43 -1 -1 36344 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 26.6 MiB 0.40 1320 8130 2002 5291 837 65.2 MiB 0.08 0.00 7.77357 -147.192 -7.77357 7.77357 0.88 0.000638125 0.000579509 0.0298693 0.0271446 36 3542 23 6.55708e+06 349595 612192. 2118.31 4.39 0.185227 0.16273 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.31 0.08 0.15 -1 -1 0.31 0.0280351 0.0250909 185 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 13.59 vpr 65.23 MiB 0.02 7172 -1 -1 13 0.40 -1 -1 36800 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 26.6 MiB 0.52 1568 9951 2486 6481 984 65.2 MiB 0.10 0.00 7.68511 -161.036 -7.68511 7.68511 0.88 0.000741385 0.00067202 0.0377881 0.0342051 30 4458 47 6.55708e+06 385760 526063. 1820.29 9.69 0.310363 0.271257 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.28 0.10 0.13 -1 -1 0.28 0.035431 0.0316869 223 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 6.35 vpr 64.97 MiB 0.02 7144 -1 -1 12 0.33 -1 -1 36568 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 26.4 MiB 0.52 1500 9773 2280 6498 995 65.0 MiB 0.09 0.00 7.53766 -152.093 -7.53766 7.53766 0.84 0.000668187 0.000607104 0.0328987 0.0299084 36 3688 23 6.55708e+06 409870 612192. 2118.31 2.62 0.206389 0.182686 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0278912 0.0252433 209 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.39 vpr 64.46 MiB 0.02 6824 -1 -1 12 0.23 -1 -1 35948 -1 -1 27 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 26.1 MiB 0.30 1024 5945 1385 4013 547 64.5 MiB 0.05 0.00 7.15274 -128.455 -7.15274 7.15274 0.89 0.000503189 0.000457449 0.018819 0.0171675 28 3014 27 6.55708e+06 325485 500653. 1732.36 2.05 0.0971561 0.0856053 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0219233 0.0196568 136 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 5.03 vpr 64.58 MiB 0.02 7096 -1 -1 11 0.22 -1 -1 36468 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 26.0 MiB 0.30 1220 9679 2547 5973 1159 64.6 MiB 0.08 0.00 6.45772 -132.139 -6.45772 6.45772 0.88 0.000614174 0.00055733 0.0322605 0.0292834 30 3114 33 6.55708e+06 337540 526063. 1820.29 1.60 0.129909 0.11459 21886 126133 -1 2648 14 1146 3627 182841 42517 5.46178 5.46178 -127.489 -5.46178 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0233138 0.0210195 175 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.37 vpr 64.50 MiB 0.02 6892 -1 -1 12 0.21 -1 -1 36092 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 26.1 MiB 0.41 1146 12373 3633 6385 2355 64.5 MiB 0.09 0.00 7.00181 -148.703 -7.00181 7.00181 0.88 0.000538219 0.000488169 0.0378616 0.0343728 28 3391 24 6.55708e+06 301375 500653. 1732.36 1.89 0.123973 0.109987 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0252092 0.0225416 145 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 9.95 vpr 64.33 MiB 0.02 6820 -1 -1 13 0.24 -1 -1 36532 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65876 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 25.9 MiB 0.49 1098 10979 3065 6306 1608 64.3 MiB 0.09 0.00 7.23855 -159.771 -7.23855 7.23855 0.88 0.000588148 0.000534566 0.0361331 0.0327642 30 3034 26 6.55708e+06 301375 526063. 1820.29 6.30 0.243039 0.211844 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0255811 0.0229929 162 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.89 vpr 64.16 MiB 0.02 6820 -1 -1 12 0.20 -1 -1 36568 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 25.6 MiB 0.37 1073 8868 2309 4974 1585 64.2 MiB 0.06 0.00 7.23424 -146.32 -7.23424 7.23424 0.83 0.000451438 0.000409494 0.0251306 0.0229147 28 2862 44 6.55708e+06 265210 500653. 1732.36 1.65 0.117036 0.103231 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.25 0.05 0.11 -1 -1 0.25 0.0192463 0.0172858 132 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.38 vpr 64.51 MiB 0.02 6828 -1 -1 12 0.16 -1 -1 36228 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 25.9 MiB 0.21 971 12175 3572 6038 2565 64.5 MiB 0.09 0.00 6.75009 -143.946 -6.75009 6.75009 0.84 0.000494624 0.000447686 0.0363852 0.0330014 36 2632 22 6.55708e+06 253155 612192. 2118.31 2.19 0.161805 0.142746 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.32 0.05 0.13 -1 -1 0.32 0.0195984 0.0176579 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 10.99 vpr 65.00 MiB 0.02 7132 -1 -1 13 0.34 -1 -1 36888 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 26.4 MiB 0.39 1456 5419 862 4216 341 65.0 MiB 0.06 0.00 7.90792 -162.801 -7.90792 7.90792 0.88 0.000682656 0.000619001 0.0216922 0.0197294 28 4018 41 6.55708e+06 361650 500653. 1732.36 7.37 0.28464 0.248131 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0312352 0.0281004 212 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 7.79 vpr 65.09 MiB 0.02 7040 -1 -1 14 0.42 -1 -1 36540 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 26.5 MiB 0.55 1487 7653 1685 5037 931 65.1 MiB 0.07 0.00 8.67599 -179.222 -8.67599 8.67599 0.87 0.000703972 0.00063672 0.0288754 0.0262577 34 4030 26 6.55708e+06 349595 585099. 2024.56 3.85 0.259422 0.225824 22462 138074 -1 3285 20 1626 4702 256491 60555 7.53782 7.53782 -169.858 -7.53782 0 0 742403. 2568.87 0.30 0.09 0.14 -1 -1 0.30 0.0336823 0.0301929 208 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 12.07 vpr 64.38 MiB 0.02 6968 -1 -1 11 0.21 -1 -1 36004 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 26.0 MiB 0.26 1095 15366 4454 8585 2327 64.4 MiB 0.11 0.00 6.42654 -129.9 -6.42654 6.42654 0.88 0.000543967 0.000494622 0.0448371 0.0406828 28 3139 21 6.55708e+06 349595 500653. 1732.36 8.69 0.202385 0.177063 21310 115450 -1 2830 20 1432 4043 278896 69092 5.81012 5.81012 -131.609 -5.81012 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0259074 0.0230507 160 149 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 9.02 vpr 65.25 MiB 0.02 7176 -1 -1 12 0.35 -1 -1 36816 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 26.8 MiB 0.65 1497 7523 1547 5261 715 65.3 MiB 0.07 0.00 7.78498 -159.33 -7.78498 7.78498 0.87 0.000688937 0.000619313 0.0280334 0.0252945 36 3844 37 6.55708e+06 409870 612192. 2118.31 5.02 0.215027 0.188769 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.32 0.10 0.14 -1 -1 0.32 0.0318788 0.0287585 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.52 vpr 65.39 MiB 0.02 6896 -1 -1 13 0.33 -1 -1 36824 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 26.7 MiB 0.35 1448 9075 2050 5697 1328 65.4 MiB 0.08 0.00 8.28129 -168.719 -8.28129 8.28129 0.87 0.000739797 0.000643904 0.0330358 0.0298594 30 3798 28 6.55708e+06 385760 526063. 1820.29 1.90 0.142558 0.125861 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0313818 0.0282247 217 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.29 vpr 64.21 MiB 0.02 6912 -1 -1 12 0.19 -1 -1 36476 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65752 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 25.9 MiB 0.59 1089 8402 1864 6112 426 64.2 MiB 0.07 0.00 7.26292 -158.375 -7.26292 7.26292 0.89 0.000534375 0.00048597 0.0268433 0.0244213 28 3024 19 6.55708e+06 265210 500653. 1732.36 1.64 0.103237 0.091284 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0227377 0.0204666 139 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.18 vpr 63.83 MiB 0.02 6684 -1 -1 10 0.12 -1 -1 36104 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65364 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 25.3 MiB 0.12 786 5244 1130 3909 205 63.8 MiB 0.04 0.00 5.1986 -117.15 -5.1986 5.1986 0.85 0.000384601 0.000351407 0.0138827 0.012659 30 2126 24 6.55708e+06 241100 526063. 1820.29 1.26 0.0738163 0.0647887 21886 126133 -1 1800 21 731 1861 102932 24553 4.7502 4.7502 -115.743 -4.7502 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0190561 0.0168781 96 85 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 6.19 vpr 64.44 MiB 0.02 6852 -1 -1 13 0.20 -1 -1 36456 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 26.1 MiB 0.36 1123 5079 946 3658 475 64.4 MiB 0.05 0.00 7.44701 -156.373 -7.44701 7.44701 0.87 0.000551174 0.000501842 0.0171734 0.0155969 26 3256 40 6.55708e+06 289320 477104. 1650.88 2.86 0.11522 0.10123 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0247319 0.0220963 139 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 13.90 vpr 65.09 MiB 0.02 7068 -1 -1 13 0.37 -1 -1 36904 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 26.6 MiB 0.43 1494 10031 2522 6626 883 65.1 MiB 0.09 0.00 7.77584 -154.394 -7.77584 7.77584 0.88 0.000679906 0.000616415 0.0364133 0.0329169 28 4288 44 6.55708e+06 373705 500653. 1732.36 10.15 0.274453 0.24094 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.26 0.13 0.11 -1 -1 0.26 0.0365174 0.0327572 208 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 10.32 vpr 64.95 MiB 0.02 7092 -1 -1 13 0.37 -1 -1 36240 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 26.3 MiB 0.54 1626 7973 1601 5735 637 65.0 MiB 0.08 0.00 7.9648 -163.763 -7.9648 7.9648 0.89 0.000683327 0.000618792 0.0278582 0.0252713 34 4543 38 6.55708e+06 409870 585099. 2024.56 6.33 0.309492 0.271938 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.31 0.18 0.13 -1 -1 0.31 0.0413607 0.0365921 207 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.33 vpr 63.68 MiB 0.02 6712 -1 -1 9 0.11 -1 -1 36016 -1 -1 21 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65212 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 25.2 MiB 0.34 710 10557 2762 6888 907 63.7 MiB 0.06 0.00 4.66154 -94.5374 -4.66154 4.66154 0.88 0.000347263 0.00031622 0.0234775 0.0213855 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.13 0.0760791 0.0667796 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.26 0.04 0.11 -1 -1 0.26 0.013182 0.0118144 83 66 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 11.38 vpr 65.19 MiB 0.02 6824 -1 -1 13 0.39 -1 -1 36360 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 26.5 MiB 0.24 1530 4780 793 3650 337 65.2 MiB 0.05 0.00 7.84695 -156.636 -7.84695 7.84695 0.86 0.000672342 0.000606416 0.019812 0.0180403 26 4457 46 6.55708e+06 361650 477104. 1650.88 7.34 0.262615 0.230228 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.25 0.70 0.10 -1 -1 0.25 0.103168 0.0903474 211 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 6.40 vpr 63.79 MiB 0.02 6636 -1 -1 8 0.10 -1 -1 36248 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65324 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 25.4 MiB 0.22 436 8831 2193 4716 1922 63.8 MiB 0.05 0.00 4.66158 -87.3613 -4.66158 4.66158 0.85 0.000357053 0.000326 0.0196455 0.0179105 30 1374 37 6.55708e+06 204935 526063. 1820.29 3.44 0.15735 0.136417 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.28 0.03 0.11 -1 -1 0.28 0.0121387 0.0108899 77 60 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 9.87 vpr 64.59 MiB 0.02 7200 -1 -1 15 0.29 -1 -1 36492 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 26.1 MiB 0.26 1127 8999 2110 5455 1434 64.6 MiB 0.08 0.00 8.78748 -168.447 -8.78748 8.78748 0.87 0.00059795 0.000542151 0.0305556 0.0278162 30 3036 31 6.55708e+06 301375 526063. 1820.29 6.41 0.230169 0.20215 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0282852 0.0253076 161 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.92 vpr 64.88 MiB 0.02 6884 -1 -1 12 0.32 -1 -1 36676 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 26.4 MiB 0.27 1426 7871 1871 5355 645 64.9 MiB 0.08 0.00 6.97141 -150.212 -6.97141 6.97141 0.87 0.0006774 0.000613375 0.0294893 0.0266976 40 3289 24 6.55708e+06 373705 666494. 2306.21 4.32 0.220439 0.192017 23614 160646 -1 3177 16 1303 4124 231796 53025 6.49978 6.49978 -146.896 -6.49978 0 0 872365. 3018.56 0.34 0.08 0.16 -1 -1 0.34 0.0296525 0.0267676 218 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 7.93 vpr 64.82 MiB 0.02 7200 -1 -1 13 0.35 -1 -1 36336 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 26.4 MiB 0.40 1403 8993 2077 6178 738 64.8 MiB 0.09 0.00 7.73601 -160.617 -7.73601 7.73601 0.86 0.000635737 0.000576022 0.0319806 0.029007 34 3435 20 6.55708e+06 337540 585099. 2024.56 4.23 0.246028 0.214699 22462 138074 -1 3243 21 1558 4932 279333 63756 6.8823 6.8823 -157.372 -6.8823 0 0 742403. 2568.87 0.29 0.09 0.14 -1 -1 0.29 0.0310018 0.0277398 196 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 9.39 vpr 64.69 MiB 0.02 7012 -1 -1 12 0.21 -1 -1 36136 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 26.3 MiB 0.28 1093 9158 2327 6239 592 64.7 MiB 0.08 0.00 6.471 -143.803 -6.471 6.471 0.88 0.000552938 0.000492674 0.0303349 0.0274899 28 3047 45 6.55708e+06 265210 500653. 1732.36 6.04 0.212006 0.185354 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0249324 0.0223175 146 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.33 vpr 64.12 MiB 0.02 6792 -1 -1 11 0.19 -1 -1 36440 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65660 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 25.6 MiB 0.21 1045 6781 1469 4387 925 64.1 MiB 0.05 0.00 6.28146 -130.954 -6.28146 6.28146 0.90 0.000471266 0.00042699 0.0208323 0.0189259 30 2354 17 6.55708e+06 277265 526063. 1820.29 1.08 0.0871462 0.0767089 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0175723 0.0159159 128 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.79 vpr 64.38 MiB 0.02 6832 -1 -1 11 0.19 -1 -1 36840 -1 -1 27 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 26.0 MiB 0.28 1079 8535 1915 5707 913 64.4 MiB 0.06 0.00 6.57292 -128.193 -6.57292 6.57292 0.88 0.000546411 0.000492914 0.0253194 0.022973 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.45 0.122294 0.106994 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.29 0.11 0.11 -1 -1 0.29 0.0309427 0.0273595 142 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 6.77 vpr 64.86 MiB 0.02 6788 -1 -1 12 0.24 -1 -1 36080 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 26.1 MiB 0.24 1327 6716 1263 5020 433 64.9 MiB 0.06 0.00 7.20375 -160.021 -7.20375 7.20375 0.89 0.000613597 0.000555754 0.0235428 0.0214568 30 3050 19 6.55708e+06 337540 526063. 1820.29 3.39 0.204461 0.17904 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0283828 0.0253794 180 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 4.61 vpr 64.36 MiB 0.02 6776 -1 -1 11 0.20 -1 -1 36176 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65904 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 26.0 MiB 0.31 1072 4244 722 3315 207 64.4 MiB 0.04 0.00 6.41894 -136.128 -6.41894 6.41894 0.88 0.000570978 0.000508379 0.0162316 0.0147758 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.28 0.103077 0.0907546 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0283022 0.0251569 147 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 4.32 vpr 64.38 MiB 0.02 6988 -1 -1 10 0.18 -1 -1 36304 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 25.8 MiB 0.26 967 12733 4051 6442 2240 64.4 MiB 0.09 0.00 6.08886 -123.876 -6.08886 6.08886 0.89 0.00051278 0.000466814 0.0375863 0.0340485 32 2471 22 6.55708e+06 289320 554710. 1919.41 0.97 0.106615 0.0938331 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0205929 0.0185686 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.77 vpr 65.36 MiB 0.02 7300 -1 -1 13 0.40 -1 -1 37072 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66924 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 26.9 MiB 0.37 1621 5869 1104 4212 553 65.4 MiB 0.06 0.00 7.46683 -155.207 -7.46683 7.46683 0.85 0.000726646 0.000659513 0.0241858 0.0220094 30 3995 44 6.55708e+06 397815 526063. 1820.29 3.13 0.173011 0.153227 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.27 0.09 0.13 -1 -1 0.27 0.0337152 0.0303871 239 238 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 15.62 vpr 64.96 MiB 0.02 6880 -1 -1 13 0.40 -1 -1 36732 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 26.4 MiB 0.48 1508 8283 1888 5355 1040 65.0 MiB 0.08 0.00 8.09706 -175.077 -8.09706 8.09706 0.88 0.0006953 0.000629304 0.0317491 0.0287333 36 3925 27 6.55708e+06 349595 612192. 2118.31 11.69 0.317302 0.276431 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.33 0.09 0.14 -1 -1 0.33 0.0316136 0.0283521 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.87 vpr 64.18 MiB 0.02 6788 -1 -1 12 0.17 -1 -1 36500 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65720 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 25.8 MiB 0.36 1096 12568 3446 6926 2196 64.2 MiB 0.09 0.00 6.66868 -144.132 -6.66868 6.66868 0.88 0.000545618 0.000496232 0.0373115 0.033746 36 2895 29 6.55708e+06 301375 612192. 2118.31 2.42 0.164005 0.143131 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.31 0.06 0.14 -1 -1 0.31 0.0201427 0.0180951 150 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 7.46 vpr 65.25 MiB 0.02 7076 -1 -1 12 0.31 -1 -1 36948 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 26.6 MiB 0.24 1489 8977 2020 5913 1044 65.2 MiB 0.08 0.00 8.10558 -165.766 -8.10558 8.10558 0.89 0.000697906 0.000632517 0.0326623 0.0295744 36 3566 22 6.55708e+06 409870 612192. 2118.31 3.98 0.254761 0.222733 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0290705 0.0263913 219 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 17.10 vpr 65.10 MiB 0.02 7084 -1 -1 14 0.42 -1 -1 36632 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 26.7 MiB 0.26 1460 6211 1289 4295 627 65.1 MiB 0.06 0.00 8.35283 -161.679 -8.35283 8.35283 0.88 0.000630232 0.000571478 0.0233589 0.0212348 30 3894 50 6.55708e+06 337540 526063. 1820.29 13.50 0.321495 0.280289 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0302645 0.0273606 194 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 4.86 vpr 64.77 MiB 0.02 7024 -1 -1 13 0.31 -1 -1 36720 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 26.2 MiB 0.29 1364 9271 2151 5683 1437 64.8 MiB 0.08 0.00 7.40806 -157.551 -7.40806 7.40806 0.87 0.000695272 0.00062579 0.0321074 0.0288526 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.32 0.130389 0.114748 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0282251 0.0254221 181 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 7.36 vpr 64.72 MiB 0.02 7008 -1 -1 12 0.30 -1 -1 36652 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 26.4 MiB 0.59 1374 13743 3666 8130 1947 64.7 MiB 0.12 0.00 6.76701 -143.203 -6.76701 6.76701 0.89 0.000546336 0.000496419 0.0462809 0.0419554 34 4200 50 6.55708e+06 361650 585099. 2024.56 3.45 0.206292 0.181897 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.31 0.09 0.14 -1 -1 0.31 0.0335776 0.0301731 189 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 4.48 vpr 64.81 MiB 0.02 7252 -1 -1 12 0.23 -1 -1 36160 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 26.3 MiB 0.31 1252 8278 1977 5044 1257 64.8 MiB 0.07 0.00 7.19338 -143.847 -7.19338 7.19338 0.88 0.000596896 0.00054042 0.0289704 0.0263679 30 3079 17 6.55708e+06 289320 526063. 1820.29 1.06 0.108296 0.0956367 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0256697 0.023087 172 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 7.88 vpr 65.16 MiB 0.02 7320 -1 -1 14 0.56 -1 -1 36580 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 26.9 MiB 0.44 1757 10673 2583 7118 972 65.2 MiB 0.10 0.00 8.08019 -170.094 -8.08019 8.08019 0.89 0.000753529 0.000681101 0.0411513 0.037239 38 4328 19 6.55708e+06 409870 638502. 2209.35 3.74 0.243408 0.215783 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.34 0.11 0.15 -1 -1 0.34 0.0383377 0.0347298 245 244 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 7.20 vpr 64.71 MiB 0.02 6948 -1 -1 11 0.24 -1 -1 36056 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 26.3 MiB 0.28 1212 8009 2047 5116 846 64.7 MiB 0.07 0.00 6.43815 -136.573 -6.43815 6.43815 0.88 0.000587889 0.000536735 0.026969 0.0245314 30 3062 33 6.55708e+06 313430 526063. 1820.29 3.78 0.218733 0.190255 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0262272 0.0235702 160 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.23 vpr 64.80 MiB 0.02 7208 -1 -1 13 0.35 -1 -1 37148 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 26.5 MiB 0.48 1339 4512 785 3381 346 64.8 MiB 0.05 0.00 8.23298 -156.44 -8.23298 8.23298 0.87 0.000609447 0.000538976 0.0175338 0.0159232 36 3361 29 6.55708e+06 325485 612192. 2118.31 3.49 0.170605 0.148973 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.31 0.07 0.14 -1 -1 0.31 0.0265662 0.02395 177 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 7.06 vpr 65.22 MiB 0.02 7084 -1 -1 12 0.33 -1 -1 36436 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 26.6 MiB 0.43 1513 7973 1697 5548 728 65.2 MiB 0.08 0.00 7.05697 -153.444 -7.05697 7.05697 0.88 0.000727944 0.00066096 0.0295827 0.0268942 34 4231 45 6.55708e+06 409870 585099. 2024.56 3.21 0.219685 0.193351 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.30 0.19 0.14 -1 -1 0.30 0.0461859 0.0411452 227 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 5.83 vpr 64.77 MiB 0.02 7064 -1 -1 13 0.30 -1 -1 36672 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 26.2 MiB 0.22 1286 13340 3362 8056 1922 64.8 MiB 0.10 0.00 7.57452 -156.038 -7.57452 7.57452 0.86 0.000574535 0.000522922 0.043143 0.0389735 34 3373 23 6.55708e+06 337540 585099. 2024.56 2.32 0.170333 0.150043 22462 138074 -1 2915 19 1362 3783 211070 50825 6.63024 6.63024 -152.551 -6.63024 0 0 742403. 2568.87 0.31 0.08 0.14 -1 -1 0.31 0.0308871 0.0277319 184 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 5.49 vpr 64.69 MiB 0.02 7184 -1 -1 13 0.27 -1 -1 36752 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 26.1 MiB 0.34 1203 12563 3367 6823 2373 64.7 MiB 0.10 0.00 7.77281 -162.033 -7.77281 7.77281 0.87 0.00055409 0.000498284 0.0406328 0.0364801 34 3219 28 6.55708e+06 301375 585099. 2024.56 1.96 0.162711 0.14224 22462 138074 -1 2591 15 1077 3323 184134 43944 6.7229 6.7229 -148.248 -6.7229 0 0 742403. 2568.87 0.30 0.07 0.13 -1 -1 0.30 0.0254938 0.0230753 175 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 8.65 vpr 65.23 MiB 0.02 7024 -1 -1 12 0.34 -1 -1 37012 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66800 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 26.7 MiB 0.80 1416 10679 2747 6565 1367 65.2 MiB 0.10 0.00 6.86528 -151.049 -6.86528 6.86528 0.89 0.000689551 0.000624171 0.0382311 0.0346166 36 3519 46 6.55708e+06 373705 612192. 2118.31 4.52 0.301432 0.263503 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0303523 0.0275092 205 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.79 vpr 65.09 MiB 0.02 6992 -1 -1 13 0.35 -1 -1 36920 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 26.5 MiB 0.41 1584 11223 2635 7117 1471 65.1 MiB 0.10 0.00 7.96921 -159.229 -7.96921 7.96921 0.89 0.000674197 0.000610161 0.0407528 0.0368819 36 3876 21 6.55708e+06 349595 612192. 2118.31 5.00 0.276012 0.242248 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.33 0.09 0.14 -1 -1 0.33 0.0319526 0.0288673 205 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 6.14 vpr 64.59 MiB 0.02 7140 -1 -1 14 0.34 -1 -1 36652 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 26.1 MiB 0.47 1228 9197 2464 5958 775 64.6 MiB 0.08 0.00 7.91369 -163.421 -7.91369 7.91369 0.89 0.000633527 0.000565783 0.0332443 0.03004 28 3563 32 6.55708e+06 301375 500653. 1732.36 2.42 0.135454 0.119627 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0300125 0.0266673 167 164 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.17 vpr 65.17 MiB 0.02 7056 -1 -1 13 0.33 -1 -1 36828 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 26.6 MiB 0.60 1537 7336 1683 5066 587 65.2 MiB 0.07 0.00 8.38432 -170.174 -8.38432 8.38432 0.84 0.000653558 0.000586287 0.027109 0.0245719 30 3969 38 6.55708e+06 361650 526063. 1820.29 2.45 0.152094 0.135058 21886 126133 -1 3163 16 1446 4156 214013 48953 7.21136 7.21136 -158.492 -7.21136 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0281518 0.025426 199 198 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.61 vpr 65.18 MiB 0.02 7148 -1 -1 13 0.33 -1 -1 36608 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 26.7 MiB 0.34 1531 8951 1993 6087 871 65.2 MiB 0.09 0.00 8.45326 -176.134 -8.45326 8.45326 0.82 0.000722972 0.000651275 0.0343673 0.0309918 30 3859 27 6.55708e+06 385760 526063. 1820.29 2.12 0.145241 0.128214 21886 126133 -1 3179 14 1309 4204 206454 47477 7.48636 7.48636 -165.351 -7.48636 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0289858 0.0262274 221 218 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 8.02 vpr 65.33 MiB 0.02 7212 -1 -1 12 0.37 -1 -1 36348 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 26.7 MiB 0.49 1599 7323 1463 5208 652 65.3 MiB 0.08 0.00 7.47193 -159.786 -7.47193 7.47193 0.89 0.000731269 0.000665029 0.0291549 0.0265002 36 4072 27 6.55708e+06 385760 612192. 2118.31 4.16 0.226601 0.200897 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.32 0.09 0.14 -1 -1 0.32 0.0331224 0.0299295 231 229 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 4.33 vpr 64.36 MiB 0.02 7004 -1 -1 11 0.16 -1 -1 36452 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 25.8 MiB 0.24 1043 10883 2916 6057 1910 64.4 MiB 0.08 0.00 5.95009 -133.303 -5.95009 5.95009 0.84 0.000493867 0.000447631 0.0328425 0.0297586 30 2668 32 6.55708e+06 229045 526063. 1820.29 1.10 0.108252 0.0950164 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0216674 0.0193412 127 121 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 5.59 vpr 64.69 MiB 0.02 6848 -1 -1 13 0.24 -1 -1 36384 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 26.2 MiB 0.57 1281 6211 1217 4524 470 64.7 MiB 0.06 0.00 7.73937 -166.104 -7.73937 7.73937 0.88 0.000594048 0.000540216 0.0217191 0.0197785 28 3459 26 6.55708e+06 325485 500653. 1732.36 1.92 0.108892 0.0959491 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0304846 0.0270348 156 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 7.03 vpr 65.31 MiB 0.02 7184 -1 -1 14 0.57 -1 -1 36412 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66876 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 27.0 MiB 0.47 1818 9380 1999 6471 910 65.3 MiB 0.09 0.00 8.82888 -183.788 -8.82888 8.82888 0.87 0.000795982 0.000720186 0.0369206 0.0333693 30 4907 35 6.55708e+06 433980 526063. 1820.29 2.99 0.172542 0.152274 21886 126133 -1 3812 17 1794 5584 296408 67225 7.76595 7.76595 -174.414 -7.76595 0 0 666494. 2306.21 0.28 0.10 0.12 -1 -1 0.28 0.0360445 0.0325778 267 266 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.21 vpr 64.95 MiB 0.02 6964 -1 -1 13 0.41 -1 -1 36760 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 26.4 MiB 0.55 1477 8735 1981 6002 752 64.9 MiB 0.09 0.00 7.79483 -168.531 -7.79483 7.79483 0.89 0.000721475 0.000663386 0.0348369 0.0314579 26 4757 42 6.55708e+06 373705 477104. 1650.88 3.21 0.175231 0.154996 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.25 0.18 0.11 -1 -1 0.25 0.0564916 0.0499559 224 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 7.21 vpr 64.30 MiB 0.02 6920 -1 -1 11 0.21 -1 -1 36496 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65840 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 25.7 MiB 0.24 916 9943 3248 5072 1623 64.3 MiB 0.07 0.00 6.47975 -131.851 -6.47975 6.47975 0.87 0.000524251 0.000473886 0.0308031 0.027809 36 2386 24 6.55708e+06 277265 612192. 2118.31 3.87 0.183611 0.158725 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.32 0.06 0.14 -1 -1 0.32 0.0211898 0.0190049 137 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 9.37 vpr 65.04 MiB 0.02 7276 -1 -1 15 0.56 -1 -1 37136 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 26.6 MiB 0.41 1670 7867 1614 5465 788 65.0 MiB 0.08 0.00 8.70958 -179.837 -8.70958 8.70958 0.89 0.00078475 0.000710106 0.032678 0.0296288 36 4552 44 6.55708e+06 397815 612192. 2118.31 5.31 0.343647 0.300652 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.33 0.12 0.14 -1 -1 0.33 0.0404618 0.036293 241 240 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 8.11 vpr 65.18 MiB 0.02 7120 -1 -1 13 0.40 -1 -1 36440 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 26.6 MiB 0.41 1370 12483 3068 7076 2339 65.2 MiB 0.10 0.00 7.72925 -154.988 -7.72925 7.72925 0.88 0.000648593 0.000583475 0.0432747 0.0391496 44 3462 16 6.55708e+06 349595 742403. 2568.87 4.21 0.266557 0.233025 24478 177802 -1 2769 17 1202 3731 190942 44305 7.0025 7.0025 -148.322 -7.0025 0 0 937218. 3242.97 0.39 0.08 0.16 -1 -1 0.39 0.0297763 0.026826 207 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.07 vpr 64.38 MiB 0.02 6788 -1 -1 11 0.16 -1 -1 36600 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 26.0 MiB 0.26 1161 6718 1477 4583 658 64.4 MiB 0.06 0.00 6.62468 -135.028 -6.62468 6.62468 0.88 0.000522376 0.000474578 0.021072 0.0191787 28 3179 30 6.55708e+06 289320 500653. 1732.36 1.77 0.106385 0.0936932 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0258625 0.0230995 149 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 8.21 vpr 64.93 MiB 0.02 7244 -1 -1 12 0.37 -1 -1 36724 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 26.4 MiB 0.39 1540 8735 2140 5810 785 64.9 MiB 0.08 0.00 7.17512 -150.872 -7.17512 7.17512 0.86 0.000683751 0.000621904 0.0321645 0.0292495 38 3444 21 6.55708e+06 373705 638502. 2209.35 4.47 0.260452 0.2275 23326 155178 -1 2888 15 1226 3932 189527 43326 6.31224 6.31224 -142.735 -6.31224 0 0 851065. 2944.86 0.33 0.07 0.15 -1 -1 0.33 0.0293112 0.0264809 217 213 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 8.86 vpr 64.43 MiB 0.02 6704 -1 -1 12 0.25 -1 -1 36068 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65972 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 25.9 MiB 0.29 1252 5517 962 4221 334 64.4 MiB 0.05 0.00 7.41221 -152.744 -7.41221 7.41221 0.88 0.000597848 0.000543308 0.0199453 0.0182452 30 2953 20 6.55708e+06 313430 526063. 1820.29 5.44 0.221067 0.193362 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0259914 0.0233987 164 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 6.18 vpr 64.49 MiB 0.02 6820 -1 -1 12 0.23 -1 -1 36284 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66036 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 25.9 MiB 0.26 998 6383 1524 4361 498 64.5 MiB 0.05 0.00 7.15324 -144.822 -7.15324 7.15324 0.87 0.000517613 0.000469322 0.0214834 0.0195178 28 2443 17 6.55708e+06 253155 500653. 1732.36 2.88 0.150313 0.130484 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0269337 0.0240449 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 6.23 vpr 65.02 MiB 0.02 7092 -1 -1 12 0.37 -1 -1 36636 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 26.5 MiB 0.33 1315 14583 4048 7926 2609 65.0 MiB 0.12 0.00 7.005 -132.757 -7.005 7.005 0.89 0.000689106 0.000623377 0.0518808 0.0469204 34 3574 37 6.55708e+06 385760 585099. 2024.56 2.48 0.210888 0.186483 22462 138074 -1 3016 19 1567 5039 296847 68171 6.43304 6.43304 -129.751 -6.43304 0 0 742403. 2568.87 0.31 0.10 0.13 -1 -1 0.31 0.0329477 0.0296294 208 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 12.22 vpr 65.43 MiB 0.02 7132 -1 -1 14 0.40 -1 -1 36664 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 26.8 MiB 0.60 1622 11046 2782 7202 1062 65.4 MiB 0.10 0.00 8.27143 -173.321 -8.27143 8.27143 0.89 0.000752975 0.000686794 0.0413702 0.0375226 30 4187 27 6.55708e+06 385760 526063. 1820.29 8.20 0.25383 0.223183 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0342564 0.0308777 227 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 5.58 vpr 64.87 MiB 0.02 7228 -1 -1 12 0.28 -1 -1 36420 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 26.4 MiB 0.46 1318 5191 912 3744 535 64.9 MiB 0.05 0.00 7.44045 -154.388 -7.44045 7.44045 0.88 0.00068343 0.000613477 0.0197312 0.0178566 28 3868 27 6.55708e+06 325485 500653. 1732.36 2.00 0.125219 0.110569 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.26 0.10 0.10 -1 -1 0.26 0.0294652 0.0264496 192 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 6.36 vpr 64.21 MiB 0.02 7000 -1 -1 12 0.17 -1 -1 36504 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65748 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 25.7 MiB 0.45 1100 6615 1512 4600 503 64.2 MiB 0.05 0.00 6.69922 -140.427 -6.69922 6.69922 0.84 0.000459645 0.000417988 0.0183922 0.0167888 30 2478 18 6.55708e+06 277265 526063. 1820.29 2.97 0.162448 0.14105 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0215901 0.019256 133 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.93 vpr 64.54 MiB 0.02 7072 -1 -1 12 0.27 -1 -1 36028 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 26.1 MiB 0.29 1148 11398 2849 6739 1810 64.5 MiB 0.09 0.00 7.39043 -143.264 -7.39043 7.39043 0.88 0.000587797 0.000533156 0.0385076 0.0349446 28 3477 38 6.55708e+06 301375 500653. 1732.36 2.49 0.143097 0.126276 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0296358 0.0265365 170 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 11.32 vpr 64.83 MiB 0.02 7152 -1 -1 11 0.24 -1 -1 36572 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 26.5 MiB 0.26 1267 6723 1289 4852 582 64.8 MiB 0.06 0.00 6.0378 -125.718 -6.0378 6.0378 0.86 0.000593211 0.000536921 0.023764 0.0215914 28 3807 32 6.55708e+06 337540 500653. 1732.36 7.99 0.253965 0.221426 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.25 0.11 0.11 -1 -1 0.25 0.0315563 0.0280872 189 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 6.05 vpr 64.32 MiB 0.02 7184 -1 -1 11 0.26 -1 -1 36476 -1 -1 28 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 25.8 MiB 0.40 1153 14128 4158 7800 2170 64.3 MiB 0.11 0.00 6.59995 -118.466 -6.59995 6.59995 0.87 0.00058991 0.000534805 0.0453766 0.0411279 38 2640 22 6.55708e+06 337540 638502. 2209.35 2.39 0.178282 0.156252 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.34 0.07 0.15 -1 -1 0.34 0.0257339 0.0232293 171 164 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 6.64 vpr 64.57 MiB 0.02 7064 -1 -1 13 0.23 -1 -1 36332 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66120 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 26.2 MiB 0.51 1112 5463 1180 3669 614 64.6 MiB 0.05 0.00 7.87624 -151.634 -7.87624 7.87624 0.86 0.000517028 0.000470452 0.0177415 0.0162008 30 2565 19 6.55708e+06 301375 526063. 1820.29 3.17 0.163715 0.143092 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.27 0.05 0.11 -1 -1 0.27 0.020446 0.0184965 142 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 4.49 vpr 64.99 MiB 0.02 7012 -1 -1 12 0.25 -1 -1 36268 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 26.4 MiB 0.41 1245 6211 1266 4515 430 65.0 MiB 0.06 0.00 7.2362 -155.292 -7.2362 7.2362 0.83 0.000574248 0.000521145 0.0218835 0.0199148 30 3044 16 6.55708e+06 325485 526063. 1820.29 1.06 0.0989836 0.0871693 21886 126133 -1 2579 17 1186 3221 154686 37072 6.38924 6.38924 -147.46 -6.38924 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0253861 0.022832 180 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 6.35 vpr 65.03 MiB 0.02 7180 -1 -1 13 0.36 -1 -1 36444 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 26.5 MiB 0.43 1187 15843 5382 8046 2415 65.0 MiB 0.13 0.00 7.69912 -151.004 -7.69912 7.69912 0.87 0.000645015 0.000583889 0.0528338 0.0478669 32 3890 40 6.55708e+06 361650 554710. 1919.41 2.53 0.23108 0.204608 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.29 0.11 0.13 -1 -1 0.29 0.0364059 0.0325953 195 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 5.22 vpr 64.82 MiB 0.02 6972 -1 -1 14 0.36 -1 -1 36576 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 26.3 MiB 0.35 1371 16295 4299 9326 2670 64.8 MiB 0.14 0.00 7.90558 -162.398 -7.90558 7.90558 0.87 0.000646086 0.000580606 0.0582393 0.0526675 30 3631 37 6.55708e+06 373705 526063. 1820.29 1.56 0.176439 0.155902 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0305851 0.027553 215 213 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 7.57 vpr 64.71 MiB 0.02 7216 -1 -1 14 0.32 -1 -1 37020 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 26.3 MiB 0.49 1364 9067 2106 6307 654 64.7 MiB 0.08 0.00 7.8859 -150.917 -7.8859 7.8859 0.88 0.000615141 0.000549056 0.031617 0.0284792 36 3364 28 6.55708e+06 325485 612192. 2118.31 3.81 0.193513 0.169957 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.32 0.08 0.13 -1 -1 0.32 0.0288511 0.0258864 183 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 8.17 vpr 65.12 MiB 0.02 7172 -1 -1 13 0.44 -1 -1 37200 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 26.7 MiB 0.48 1350 6211 1219 4577 415 65.1 MiB 0.06 0.00 7.98147 -162.621 -7.98147 7.98147 0.88 0.000666365 0.000604762 0.0250502 0.0228215 36 3253 20 6.55708e+06 325485 612192. 2118.31 4.27 0.229702 0.200999 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.31 0.09 0.14 -1 -1 0.31 0.0284208 0.0255424 195 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 7.02 vpr 64.30 MiB 0.02 6824 -1 -1 13 0.22 -1 -1 36588 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65848 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 25.9 MiB 0.32 1092 10670 2647 6412 1611 64.3 MiB 0.08 0.00 7.9674 -161.443 -7.9674 7.9674 0.87 0.000528723 0.000479815 0.0326828 0.0297214 32 2870 34 6.55708e+06 289320 554710. 1919.41 3.60 0.206204 0.179028 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0217491 0.0195854 146 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.82 vpr 65.05 MiB 0.02 7036 -1 -1 13 0.56 -1 -1 36316 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 26.5 MiB 0.37 1304 7653 1748 5033 872 65.0 MiB 0.08 0.00 8.34953 -161.953 -8.34953 8.34953 0.90 0.000700204 0.000634179 0.0298871 0.0270967 30 3707 24 6.55708e+06 373705 526063. 1820.29 1.92 0.144596 0.128294 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.033089 0.0296835 208 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 15.03 vpr 64.96 MiB 0.02 7220 -1 -1 14 0.35 -1 -1 36696 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 26.4 MiB 0.37 1332 7336 1480 5450 406 65.0 MiB 0.07 0.00 7.42283 -159.831 -7.42283 7.42283 0.88 0.000643591 0.000580467 0.0252973 0.022889 28 3869 50 6.55708e+06 361650 500653. 1732.36 11.04 0.251818 0.220909 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.27 0.45 0.12 -1 -1 0.27 0.0774615 0.0681637 184 181 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 7.47 vpr 64.90 MiB 0.02 7188 -1 -1 12 0.30 -1 -1 37116 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 26.5 MiB 0.29 1420 6575 1256 4964 355 64.9 MiB 0.06 0.00 8.28906 -160.635 -8.28906 8.28906 0.84 0.00066065 0.000602757 0.0237706 0.0216357 34 3727 35 6.55708e+06 385760 585099. 2024.56 4.04 0.266242 0.234254 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.30 0.09 0.12 -1 -1 0.30 0.0301948 0.0272846 203 200 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 12.44 vpr 64.71 MiB 0.02 7200 -1 -1 13 0.32 -1 -1 36744 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 26.1 MiB 0.30 1315 6522 1420 4675 427 64.7 MiB 0.06 0.00 7.42898 -137.517 -7.42898 7.42898 0.89 0.000634757 0.000577349 0.0246663 0.0224077 30 3356 18 6.55708e+06 337540 526063. 1820.29 8.90 0.222883 0.195671 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0280267 0.025289 186 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.45 vpr 64.99 MiB 0.02 7064 -1 -1 14 0.45 -1 -1 37136 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 26.4 MiB 0.59 1483 8199 1652 5918 629 65.0 MiB 0.08 0.00 8.85275 -170.114 -8.85275 8.85275 0.89 0.000739651 0.000663224 0.0318251 0.0288631 34 4006 46 6.55708e+06 385760 585099. 2024.56 2.38 0.199987 0.176475 22462 138074 -1 3349 16 1484 4433 238013 55460 7.78082 7.78082 -164.519 -7.78082 0 0 742403. 2568.87 0.31 0.09 0.14 -1 -1 0.31 0.0324482 0.0293748 220 215 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 11.09 vpr 64.85 MiB 0.02 7032 -1 -1 11 0.36 -1 -1 36352 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 26.2 MiB 0.44 1183 4512 917 3199 396 64.8 MiB 0.05 0.00 6.95549 -133.856 -6.95549 6.95549 0.88 0.000625503 0.000568284 0.0175193 0.0159945 28 3440 40 6.55708e+06 349595 500653. 1732.36 7.34 0.216957 0.188969 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.26 0.14 0.12 -1 -1 0.26 0.0353854 0.0313793 174 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.50 vpr 64.38 MiB 0.02 6948 -1 -1 13 0.21 -1 -1 36412 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 25.7 MiB 0.36 1098 6999 1531 4700 768 64.4 MiB 0.06 0.00 7.85907 -167.622 -7.85907 7.85907 0.89 0.00054066 0.000491796 0.0225741 0.0205974 26 3154 29 6.55708e+06 277265 477104. 1650.88 2.11 0.106246 0.0935075 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0255493 0.0228914 142 130 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 5.56 vpr 64.82 MiB 0.02 7136 -1 -1 14 0.30 -1 -1 36244 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 26.5 MiB 0.29 1308 7027 1497 5027 503 64.8 MiB 0.06 0.00 8.02087 -160.438 -8.02087 8.02087 0.86 0.000598186 0.000535332 0.0249604 0.0226131 28 3737 36 6.55708e+06 325485 500653. 1732.36 2.07 0.135127 0.119003 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.27 0.10 0.11 -1 -1 0.27 0.0317314 0.0282558 183 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 5.98 vpr 65.37 MiB 0.02 7196 -1 -1 15 0.47 -1 -1 36640 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 26.7 MiB 0.68 1579 7323 1484 5148 691 65.4 MiB 0.07 0.00 9.31018 -193.267 -9.31018 9.31018 0.84 0.000763492 0.000689403 0.0284269 0.0258059 28 4344 42 6.55708e+06 385760 500653. 1732.36 1.95 0.165949 0.146669 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0339856 0.0306986 228 227 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 5.80 vpr 64.23 MiB 0.02 7032 -1 -1 11 0.20 -1 -1 36324 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 25.7 MiB 0.74 1088 7079 1594 5001 484 64.2 MiB 0.06 0.00 6.82798 -137.917 -6.82798 6.82798 0.88 0.00051595 0.000469597 0.0218468 0.0198758 38 2286 15 6.55708e+06 265210 638502. 2209.35 1.93 0.131874 0.115511 23326 155178 -1 2053 17 798 2444 119607 27783 5.83204 5.83204 -129.113 -5.83204 0 0 851065. 2944.86 0.33 0.06 0.15 -1 -1 0.33 0.0219228 0.0196377 126 123 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.45 vpr 64.39 MiB 0.02 7000 -1 -1 12 0.23 -1 -1 35780 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65932 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 26.0 MiB 0.44 1155 8207 1978 5141 1088 64.4 MiB 0.07 0.00 7.38032 -154.384 -7.38032 7.38032 0.88 0.000523306 0.000470179 0.0257635 0.0233043 46 2574 16 6.55708e+06 313430 782063. 2706.10 3.78 0.188342 0.163256 24766 183262 -1 2168 17 929 2778 124629 29449 6.47024 6.47024 -143.196 -6.47024 0 0 958460. 3316.47 0.39 0.06 0.17 -1 -1 0.39 0.0242504 0.0217671 157 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.55 vpr 64.61 MiB 0.02 6944 -1 -1 12 0.39 -1 -1 36592 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 26.2 MiB 0.42 1424 7439 1505 5396 538 64.6 MiB 0.08 0.00 7.41461 -164.576 -7.41461 7.41461 0.89 0.000739564 0.000652504 0.029513 0.0267026 28 4519 45 6.55708e+06 373705 500653. 1732.36 2.80 0.17049 0.150894 21310 115450 -1 3481 18 1714 5153 317181 70391 6.7249 6.7249 -164.1 -6.7249 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.0344738 0.0310972 209 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 13.58 vpr 64.75 MiB 0.02 7024 -1 -1 12 0.30 -1 -1 36876 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 26.4 MiB 0.58 1429 8579 2186 5781 612 64.8 MiB 0.08 0.00 7.42022 -157.463 -7.42022 7.42022 0.86 0.000638278 0.000578843 0.0300281 0.0271642 30 3708 20 6.55708e+06 337540 526063. 1820.29 9.81 0.205583 0.179895 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0298828 0.0269087 186 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 8.52 vpr 65.36 MiB 0.02 7216 -1 -1 14 0.58 -1 -1 36908 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 26.9 MiB 0.33 1656 14691 3485 9017 2189 65.4 MiB 0.13 0.00 8.55829 -177.042 -8.55829 8.55829 0.85 0.000753537 0.000680517 0.0538974 0.0487575 38 3905 20 6.55708e+06 421925 638502. 2209.35 4.54 0.305952 0.269331 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.33 0.09 0.14 -1 -1 0.33 0.0352957 0.0319755 241 238 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 5.46 vpr 64.91 MiB 0.02 7204 -1 -1 11 0.29 -1 -1 36624 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 26.3 MiB 0.56 1210 13157 4017 6643 2497 64.9 MiB 0.11 0.00 6.86503 -131.636 -6.86503 6.86503 0.90 0.000628558 0.00057132 0.0448767 0.0407529 30 3211 36 6.55708e+06 325485 526063. 1820.29 1.65 0.153615 0.136242 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.02628 0.0237199 176 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.52 vpr 64.53 MiB 0.02 6904 -1 -1 11 0.21 -1 -1 36476 -1 -1 25 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66076 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 25.9 MiB 0.27 858 9234 2019 6554 661 64.5 MiB 0.07 0.00 6.39815 -115.858 -6.39815 6.39815 0.87 0.000520228 0.00047469 0.0291498 0.0265279 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.21 0.104752 0.0923252 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.027146 0.0240699 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 10.16 vpr 65.40 MiB 0.02 7196 -1 -1 13 0.55 -1 -1 36868 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 27.2 MiB 0.33 1915 8888 1943 6342 603 65.4 MiB 0.09 0.00 7.96961 -161.89 -7.96961 7.96961 0.86 0.00081509 0.000724596 0.0350445 0.0316994 36 5494 32 6.55708e+06 482200 612192. 2118.31 6.20 0.255231 0.224426 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.33 0.11 0.15 -1 -1 0.33 0.0387206 0.0349219 280 278 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 8.52 vpr 64.64 MiB 0.02 7096 -1 -1 14 0.34 -1 -1 36644 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66196 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 26.1 MiB 0.32 1307 6821 1398 4713 710 64.6 MiB 0.06 0.00 8.63003 -171.716 -8.63003 8.63003 0.89 0.000634635 0.000576546 0.0254051 0.0231036 28 3653 27 6.55708e+06 313430 500653. 1732.36 4.95 0.224415 0.196812 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0276179 0.024831 178 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 11.02 vpr 64.09 MiB 0.02 6888 -1 -1 12 0.19 -1 -1 36340 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65628 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 25.7 MiB 0.44 1197 8251 1803 5271 1177 64.1 MiB 0.07 0.00 7.37817 -162.484 -7.37817 7.37817 0.90 0.000547406 0.000497819 0.0251711 0.0229294 28 3416 42 6.55708e+06 325485 500653. 1732.36 7.48 0.233587 0.203352 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.27 0.08 0.12 -1 -1 0.27 0.0235856 0.021214 144 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.85 vpr 64.56 MiB 0.02 6860 -1 -1 13 0.35 -1 -1 36540 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 26.0 MiB 0.49 1296 6623 1420 4442 761 64.6 MiB 0.06 0.00 7.83929 -154.667 -7.83929 7.83929 0.86 0.000649895 0.000591315 0.0241924 0.0219071 34 3533 28 6.55708e+06 301375 585099. 2024.56 3.14 0.167245 0.146663 22462 138074 -1 2871 16 1200 3584 208636 47798 6.79164 6.79164 -152.938 -6.79164 0 0 742403. 2568.87 0.31 0.07 0.12 -1 -1 0.31 0.0259462 0.0233734 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 15.34 vpr 65.14 MiB 0.02 7060 -1 -1 13 0.38 -1 -1 37116 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 26.7 MiB 0.40 1675 5723 977 4473 273 65.1 MiB 0.06 0.00 7.72485 -162.113 -7.72485 7.72485 0.89 0.000711619 0.000643995 0.0231558 0.0210358 30 4421 42 6.55708e+06 421925 526063. 1820.29 11.59 0.319133 0.280469 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0350629 0.03174 235 232 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 5.88 vpr 64.89 MiB 0.02 7124 -1 -1 11 0.29 -1 -1 36480 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 26.5 MiB 0.49 1363 8827 2077 5986 764 64.9 MiB 0.08 0.00 7.0834 -142.912 -7.0834 7.0834 0.86 0.000661202 0.000599961 0.032101 0.0290845 30 3732 37 6.55708e+06 385760 526063. 1820.29 2.17 0.144103 0.126889 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0301319 0.0269453 199 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 16.93 vpr 65.19 MiB 0.02 7224 -1 -1 15 0.42 -1 -1 36780 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 26.6 MiB 0.38 1473 9543 2499 5737 1307 65.2 MiB 0.09 0.00 9.02492 -182.614 -9.02492 9.02492 0.87 0.000665962 0.000603679 0.0351891 0.0317773 36 3930 43 6.55708e+06 349595 612192. 2118.31 13.14 0.316517 0.275364 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.31 0.09 0.14 -1 -1 0.31 0.0298051 0.0268385 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 8.12 vpr 64.95 MiB 0.02 7012 -1 -1 13 0.41 -1 -1 36596 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 26.4 MiB 0.24 1528 11922 3138 7505 1279 65.0 MiB 0.11 0.00 8.01701 -168.403 -8.01701 8.01701 0.88 0.000741045 0.000671901 0.0441406 0.0400073 34 4013 32 6.55708e+06 385760 585099. 2024.56 4.44 0.297036 0.261422 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.30 0.09 0.14 -1 -1 0.30 0.0315765 0.0284071 217 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.81 vpr 64.41 MiB 0.02 7000 -1 -1 12 0.24 -1 -1 35816 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65952 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 26.0 MiB 0.53 1144 6321 1459 4287 575 64.4 MiB 0.06 0.00 6.98904 -150.776 -6.98904 6.98904 0.89 0.00056814 0.000518261 0.02057 0.0187275 34 2893 24 6.55708e+06 349595 585099. 2024.56 4.07 0.225071 0.196806 22462 138074 -1 2556 27 1167 3010 287043 103811 6.25938 6.25938 -142.054 -6.25938 0 0 742403. 2568.87 0.31 0.11 0.13 -1 -1 0.31 0.0330467 0.0292466 159 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 5.52 vpr 64.41 MiB 0.02 6820 -1 -1 11 0.19 -1 -1 36520 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 26.1 MiB 0.48 1041 8402 1813 6153 436 64.4 MiB 0.07 0.00 6.97021 -142.93 -6.97021 6.97021 0.88 0.000545114 0.000495885 0.0265405 0.0241225 34 2908 26 6.55708e+06 265210 585099. 2024.56 1.94 0.133046 0.117138 22462 138074 -1 2476 15 1027 2936 158280 38462 5.86158 5.86158 -136.113 -5.86158 0 0 742403. 2568.87 0.31 0.06 0.13 -1 -1 0.31 0.021889 0.0197328 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 6.32 vpr 65.26 MiB 0.02 7016 -1 -1 13 0.39 -1 -1 36856 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 26.7 MiB 0.43 1528 7975 1701 5466 808 65.3 MiB 0.08 0.00 8.19329 -167.366 -8.19329 8.19329 0.89 0.000723451 0.000649146 0.0294886 0.0267492 28 4213 29 6.55708e+06 373705 500653. 1732.36 2.56 0.144499 0.127971 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.030331 0.0272787 204 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 6.48 vpr 64.38 MiB 0.02 6800 -1 -1 10 0.21 -1 -1 35940 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 25.8 MiB 0.25 1030 5107 1053 3581 473 64.4 MiB 0.04 0.00 6.08471 -123.999 -6.08471 6.08471 0.89 0.000449892 0.00040859 0.0162452 0.0147922 26 3016 46 6.55708e+06 289320 477104. 1650.88 3.23 0.117171 0.102862 21022 109990 -1 2373 19 1107 3180 197521 45332 5.45152 5.45152 -125.81 -5.45152 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0239972 0.021387 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 11.61 vpr 64.18 MiB 0.02 6988 -1 -1 14 0.23 -1 -1 36200 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65724 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 25.8 MiB 0.53 1019 11203 3089 5915 2199 64.2 MiB 0.09 0.00 7.69221 -156.392 -7.69221 7.69221 0.88 0.000556349 0.000502928 0.0346854 0.0314843 28 3519 29 6.55708e+06 289320 500653. 1732.36 7.98 0.24423 0.213729 21310 115450 -1 2590 22 1381 4103 241007 57254 7.4813 7.4813 -165.085 -7.4813 0 0 612192. 2118.31 0.25 0.08 0.11 -1 -1 0.25 0.0274148 0.0242369 149 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 8.05 vpr 65.13 MiB 0.02 7180 -1 -1 12 0.39 -1 -1 36364 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 26.7 MiB 0.38 1351 11891 3061 6959 1871 65.1 MiB 0.11 0.00 7.58423 -159.03 -7.58423 7.58423 0.88 0.000690493 0.000621146 0.0437213 0.0395153 36 3367 18 6.55708e+06 349595 612192. 2118.31 4.23 0.255103 0.223448 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0305271 0.0275597 201 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 5.12 vpr 64.29 MiB 0.02 6828 -1 -1 12 0.19 -1 -1 36220 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65832 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 25.9 MiB 0.38 1079 5567 1026 4331 210 64.3 MiB 0.05 0.00 6.95154 -149.121 -6.95154 6.95154 0.87 0.000512441 0.000465363 0.0180615 0.01646 28 3150 46 6.55708e+06 277265 500653. 1732.36 1.77 0.111305 0.0972816 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0230162 0.0205655 141 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 5.45 vpr 65.00 MiB 0.02 7164 -1 -1 12 0.24 -1 -1 36556 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 26.2 MiB 0.33 1263 7843 1830 5405 608 65.0 MiB 0.07 0.00 7.086 -151.926 -7.086 7.086 0.86 0.000628825 0.000567159 0.0282183 0.0255314 28 3643 19 6.55708e+06 325485 500653. 1732.36 1.93 0.118219 0.104233 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.26 0.15 0.11 -1 -1 0.26 0.0363998 0.0324501 188 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 7.71 vpr 65.07 MiB 0.02 7060 -1 -1 13 0.34 -1 -1 36636 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66628 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 26.5 MiB 0.35 1349 6509 1390 4237 882 65.1 MiB 0.06 0.00 7.60996 -160.091 -7.60996 7.60996 0.89 0.000637057 0.000576165 0.0233975 0.0212343 34 3758 47 6.55708e+06 349595 585099. 2024.56 4.03 0.246291 0.21511 22462 138074 -1 3187 19 1257 3833 298777 77572 6.5197 6.5197 -154.677 -6.5197 0 0 742403. 2568.87 0.31 0.10 0.13 -1 -1 0.31 0.0308436 0.0277178 179 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 8.91 vpr 64.25 MiB 0.02 7016 -1 -1 11 0.19 -1 -1 36200 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65796 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 25.9 MiB 0.29 1256 8251 2031 5471 749 64.3 MiB 0.07 0.00 6.67834 -143.715 -6.67834 6.67834 0.87 0.000521059 0.000472713 0.0249178 0.0226077 28 3436 25 6.55708e+06 325485 500653. 1732.36 5.61 0.198644 0.173169 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0246737 0.021999 148 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 5.59 vpr 64.31 MiB 0.02 6896 -1 -1 13 0.24 -1 -1 36384 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 25.8 MiB 0.31 1339 8047 1963 5261 823 64.3 MiB 0.07 0.00 7.72555 -161.807 -7.72555 7.72555 0.88 0.000592232 0.00053458 0.0269676 0.0244376 28 3857 33 6.55708e+06 325485 500653. 1732.36 2.10 0.139076 0.123184 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.27 0.16 0.11 -1 -1 0.27 0.0405046 0.0359032 167 164 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 6.61 vpr 64.85 MiB 0.02 7120 -1 -1 13 0.32 -1 -1 36468 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 26.5 MiB 0.22 1276 15187 4382 8407 2398 64.9 MiB 0.13 0.00 7.99583 -160.474 -7.99583 7.99583 0.88 0.00067756 0.000617783 0.0523384 0.0474109 36 3413 20 6.55708e+06 325485 612192. 2118.31 3.03 0.212722 0.188418 22750 144809 -1 2918 17 1346 4006 219400 51325 7.09316 7.09316 -153.316 -7.09316 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0287072 0.0259 184 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 5.62 vpr 64.72 MiB 0.02 7008 -1 -1 11 0.24 -1 -1 36268 -1 -1 28 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 26.3 MiB 0.40 1142 12761 3414 7382 1965 64.7 MiB 0.10 0.00 6.37111 -124.414 -6.37111 6.37111 0.87 0.000582471 0.000526515 0.0401798 0.0363406 36 2747 19 6.55708e+06 337540 612192. 2118.31 2.03 0.165353 0.144625 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.31 0.06 0.14 -1 -1 0.31 0.0237773 0.0213673 162 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 5.37 vpr 65.46 MiB 0.02 7244 -1 -1 14 0.40 -1 -1 37236 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67036 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 26.8 MiB 0.47 1569 9951 2260 6812 879 65.5 MiB 0.10 0.00 8.3634 -177.338 -8.3634 8.3634 0.87 0.000738828 0.000668586 0.0376384 0.0340423 30 4355 28 6.55708e+06 385760 526063. 1820.29 1.54 0.15061 0.133072 21886 126133 -1 3455 18 1687 4974 233475 55515 7.34382 7.34382 -169.849 -7.34382 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0347419 0.0313414 225 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 7.71 vpr 64.32 MiB 0.02 6828 -1 -1 12 0.21 -1 -1 36240 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 25.9 MiB 0.50 1144 6619 1429 4488 702 64.3 MiB 0.06 0.00 6.81857 -143.271 -6.81857 6.81857 0.90 0.000523455 0.000473118 0.0209193 0.0190649 36 2680 25 6.55708e+06 337540 612192. 2118.31 4.06 0.185874 0.161779 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.31 0.06 0.14 -1 -1 0.31 0.0208436 0.0188066 145 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 12.61 vpr 65.03 MiB 0.02 7128 -1 -1 13 0.36 -1 -1 36836 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 26.6 MiB 0.44 1396 7843 1736 5120 987 65.0 MiB 0.07 0.00 7.69421 -153.973 -7.69421 7.69421 0.90 0.000665202 0.000598299 0.0278338 0.0251758 28 3900 43 6.55708e+06 325485 500653. 1732.36 8.83 0.246442 0.215971 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.26 0.12 0.12 -1 -1 0.26 0.0347906 0.0312634 189 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.58 vpr 64.16 MiB 0.02 6876 -1 -1 13 0.21 -1 -1 36180 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 25.8 MiB 0.43 1076 10583 2933 6087 1563 64.2 MiB 0.08 0.00 7.44215 -162.135 -7.44215 7.44215 0.86 0.000506336 0.000456655 0.0298564 0.0269963 28 3369 28 6.55708e+06 301375 500653. 1732.36 2.17 0.115084 0.101262 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0260285 0.0230177 146 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 6.94 vpr 64.79 MiB 0.02 7192 -1 -1 12 0.27 -1 -1 36660 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 26.3 MiB 0.39 1148 5517 1034 4096 387 64.8 MiB 0.05 0.00 7.36755 -151.17 -7.36755 7.36755 0.87 0.000587519 0.000526599 0.0197615 0.0179578 34 3150 21 6.55708e+06 313430 585099. 2024.56 3.37 0.199808 0.173245 22462 138074 -1 2544 17 1051 3386 187761 43277 6.5237 6.5237 -142.576 -6.5237 0 0 742403. 2568.87 0.30 0.07 0.14 -1 -1 0.30 0.0268781 0.0241204 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 8.87 vpr 64.94 MiB 0.02 7296 -1 -1 15 0.60 -1 -1 36748 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 26.7 MiB 0.35 1759 9998 2422 6696 880 64.9 MiB 0.10 0.00 8.78932 -180.299 -8.78932 8.78932 0.87 0.000815534 0.000733654 0.0413549 0.0372421 36 4483 32 6.55708e+06 409870 612192. 2118.31 4.86 0.262335 0.231641 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.32 0.12 0.14 -1 -1 0.32 0.0396879 0.0356537 250 249 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 6.64 vpr 63.54 MiB 0.02 6704 -1 -1 10 0.11 -1 -1 35772 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65064 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 25.0 MiB 0.33 757 9042 2084 6396 562 63.5 MiB 0.06 0.00 5.22063 -120.025 -5.22063 5.22063 0.88 0.000383161 0.000348449 0.023334 0.021162 28 1925 17 6.55708e+06 192880 500653. 1732.36 3.44 0.13085 0.113416 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0145191 0.012977 92 82 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 7.61 vpr 64.65 MiB 0.02 6844 -1 -1 13 0.22 -1 -1 36288 -1 -1 29 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 26.2 MiB 0.25 1069 6415 1411 4237 767 64.7 MiB 0.05 0.00 7.77311 -151.473 -7.77311 7.77311 0.89 0.000542677 0.000493573 0.0200331 0.0182184 28 2954 45 6.55708e+06 349595 500653. 1732.36 4.24 0.225629 0.195947 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.25 0.11 0.12 -1 -1 0.25 0.0330695 0.0291408 150 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 5.56 vpr 64.44 MiB 0.02 6740 -1 -1 12 0.24 -1 -1 36388 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 25.9 MiB 0.36 1241 11223 2642 6703 1878 64.4 MiB 0.10 0.00 6.72746 -150.964 -6.72746 6.72746 0.89 0.000653442 0.000597174 0.0452472 0.0367872 34 3118 16 6.55708e+06 277265 585099. 2024.56 1.97 0.141844 0.120904 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.31 0.08 0.14 -1 -1 0.31 0.0270565 0.0243319 167 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 8.11 vpr 63.78 MiB 0.02 6892 -1 -1 9 0.16 -1 -1 35956 -1 -1 25 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65308 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 25.4 MiB 0.20 840 9694 2571 5897 1226 63.8 MiB 0.07 0.00 5.60806 -104.508 -5.60806 5.60806 0.88 0.000429209 0.000383661 0.0258097 0.02349 26 2429 32 6.55708e+06 301375 477104. 1650.88 4.95 0.174483 0.152986 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0214049 0.0189193 112 103 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 7.08 vpr 65.19 MiB 0.02 7224 -1 -1 12 0.33 -1 -1 36272 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 26.5 MiB 0.69 1640 5273 863 4118 292 65.2 MiB 0.06 0.00 7.59969 -165.851 -7.59969 7.59969 0.88 0.000700039 0.000625196 0.020358 0.0185489 36 4101 31 6.55708e+06 409870 612192. 2118.31 2.98 0.190786 0.16855 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.32 0.14 0.14 -1 -1 0.32 0.0421151 0.0375729 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 7.08 vpr 65.26 MiB 0.02 7016 -1 -1 14 0.39 -1 -1 36928 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 26.7 MiB 0.51 1228 13340 3394 7367 2579 65.3 MiB 0.12 0.00 8.33716 -163.889 -8.33716 8.33716 0.90 0.000684816 0.000615444 0.0483336 0.0435068 38 3334 33 6.55708e+06 349595 638502. 2209.35 3.10 0.226934 0.199519 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.33 0.07 0.15 -1 -1 0.33 0.0290335 0.0263318 204 202 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.33 vpr 65.54 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34032 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 26.9 MiB 0.11 929 17268 4565 10218 2485 65.5 MiB 0.15 0.00 4.24756 -141.398 -4.24756 4.24756 0.91 0.000595811 0.000540085 0.0471696 0.042707 32 2653 22 6.64007e+06 452088 554710. 1919.41 1.09 0.126744 0.112053 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0265007 0.0235621 153 80 32 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.29 vpr 65.18 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34080 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 26.4 MiB 0.19 873 12919 4129 6395 2395 65.2 MiB 0.12 0.00 4.44716 -130.844 -4.44716 4.44716 0.91 0.000570185 0.000517779 0.0417503 0.0381432 32 2348 20 6.64007e+06 288834 554710. 1919.41 1.03 0.113437 0.100313 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0272093 0.024052 142 78 30 30 89 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.86 vpr 65.34 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 34252 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66904 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 26.7 MiB 0.09 1003 9675 2005 7104 566 65.3 MiB 0.08 0.00 3.83457 -129.818 -3.83457 3.83457 0.87 0.000508012 0.000462605 0.0239228 0.0217112 30 2305 22 6.64007e+06 439530 526063. 1820.29 0.93 0.0886611 0.0775384 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.26 0.05 0.11 -1 -1 0.26 0.020647 0.0183063 142 50 54 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.19 vpr 65.08 MiB 0.07 7088 -1 -1 1 0.03 -1 -1 33960 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 26.5 MiB 0.07 990 11245 3461 6773 1011 65.1 MiB 0.11 0.00 4.46418 -132.921 -4.46418 4.46418 0.89 0.000542505 0.00049789 0.0329292 0.0301789 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.11 0.101984 0.0905558 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.022802 0.020183 138 25 87 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.92 vpr 65.18 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 33992 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 26.5 MiB 0.10 849 15017 4515 8552 1950 65.2 MiB 0.13 0.00 4.14936 -139.21 -4.14936 4.14936 0.81 0.000543077 0.000494202 0.0433317 0.0395005 32 2360 21 6.64007e+06 276276 554710. 1919.41 0.98 0.106967 0.0944895 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.024474 0.0216693 153 31 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.19 vpr 65.22 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33888 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 26.7 MiB 0.11 1024 19142 5848 10342 2952 65.2 MiB 0.16 0.00 3.5603 -122.153 -3.5603 3.5603 0.90 0.000568478 0.000510739 0.0468362 0.0424845 32 2260 24 6.64007e+06 489762 554710. 1919.41 1.00 0.120452 0.106083 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0268585 0.0236892 156 61 63 32 63 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.91 vpr 64.61 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34000 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 26.2 MiB 0.10 722 12923 4015 7171 1737 64.6 MiB 0.09 0.00 3.7987 -103.375 -3.7987 3.7987 0.89 0.00040099 0.000365683 0.0329061 0.03008 32 1657 16 6.64007e+06 251160 554710. 1919.41 0.90 0.0802947 0.0710287 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0171868 0.0152601 96 26 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.10 vpr 65.30 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33888 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 26.7 MiB 0.08 948 16081 4441 8879 2761 65.3 MiB 0.13 0.00 3.49449 -109.504 -3.49449 3.49449 0.92 0.000496537 0.000454168 0.0372917 0.0339947 28 2371 22 6.64007e+06 426972 500653. 1732.36 1.07 0.102097 0.0902698 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.25 0.06 0.12 -1 -1 0.25 0.0213611 0.0188445 140 -1 115 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.90 vpr 64.82 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33828 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 26.1 MiB 0.15 706 7820 1805 5417 598 64.8 MiB 0.07 0.00 3.31336 -101.862 -3.31336 3.31336 0.90 0.00048389 0.000441895 0.0236328 0.0215985 28 1873 21 6.64007e+06 213486 500653. 1732.36 0.86 0.0826305 0.0724905 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0200799 0.017747 106 81 0 0 84 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.00 vpr 64.91 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33760 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 26.2 MiB 0.14 890 10756 2975 5928 1853 64.9 MiB 0.09 0.00 3.5061 -124.869 -3.5061 3.5061 0.87 0.000446673 0.000406808 0.0299906 0.0273836 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.95 0.0876504 0.0773004 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0193361 0.0171641 121 31 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.92 vpr 64.88 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33724 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 26.1 MiB 0.13 822 14012 5060 7295 1657 64.9 MiB 0.10 0.00 3.4841 -115.834 -3.4841 3.4841 0.89 0.000466011 0.000423756 0.0381991 0.0348665 28 1767 16 6.64007e+06 226044 500653. 1732.36 0.90 0.0934721 0.0825816 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0189613 0.0168183 110 58 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.80 vpr 64.77 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33732 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 25.9 MiB 0.09 840 9753 2297 6936 520 64.8 MiB 0.08 0.00 3.52209 -114.564 -3.52209 3.52209 0.86 0.000427258 0.000386707 0.0230359 0.0208996 30 1922 21 6.64007e+06 364182 526063. 1820.29 0.90 0.0792945 0.0692566 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.28 0.04 0.11 -1 -1 0.28 0.0178452 0.0158348 114 57 25 25 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.23 vpr 64.95 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33940 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 26.2 MiB 0.19 893 19448 6133 10048 3267 64.9 MiB 0.16 0.00 3.56129 -122.026 -3.56129 3.56129 0.87 0.000550726 0.00050115 0.0508219 0.0462795 32 2222 23 6.64007e+06 426972 554710. 1919.41 1.04 0.121844 0.107645 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.022639 0.0199901 145 55 64 32 57 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.92 vpr 65.18 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 34268 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 26.7 MiB 0.13 1031 17036 4693 9820 2523 65.2 MiB 0.15 0.00 4.31123 -147.759 -4.31123 4.31123 0.90 0.000585331 0.00053345 0.0444686 0.0404907 26 2990 23 6.64007e+06 452088 477104. 1650.88 1.78 0.125032 0.110771 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.02661 0.0235713 158 60 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.88 vpr 64.38 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34024 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 25.9 MiB 0.10 800 8852 2481 5509 862 64.4 MiB 0.07 0.00 3.4261 -103.793 -3.4261 3.4261 0.89 0.000418914 0.000382451 0.0231494 0.0211594 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.90 0.0748976 0.0658567 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0187166 0.0165035 108 21 58 29 24 24 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.20 vpr 65.44 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33860 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67008 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 26.6 MiB 0.16 1068 13316 3890 7652 1774 65.4 MiB 0.13 0.00 3.5141 -124.724 -3.5141 3.5141 0.89 0.000546405 0.00049328 0.0425394 0.038845 32 2326 21 6.64007e+06 276276 554710. 1919.41 1.01 0.112974 0.0998243 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0267958 0.0237605 147 60 64 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.42 vpr 65.43 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33860 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 26.7 MiB 0.15 964 16340 5208 8057 3075 65.4 MiB 0.11 0.00 3.6263 -123.14 -3.6263 3.6263 0.88 0.000551943 0.000497829 0.0411959 0.0375578 34 2358 39 6.64007e+06 452088 585099. 2024.56 2.26 0.181147 0.159503 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.31 0.06 0.13 -1 -1 0.31 0.023605 0.0209428 144 54 64 32 56 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.91 vpr 64.90 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33796 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 26.3 MiB 0.12 919 13487 3473 7992 2022 64.9 MiB 0.10 0.00 2.83964 -105.375 -2.83964 2.83964 0.89 0.0004907 0.00044673 0.0323581 0.0294597 26 2137 22 6.64007e+06 389298 477104. 1650.88 0.91 0.0953428 0.0838932 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0199869 0.0176675 119 62 29 29 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.82 vpr 63.96 MiB 0.02 6836 -1 -1 1 0.03 -1 -1 33800 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65496 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 25.5 MiB 0.04 670 10835 3352 6011 1472 64.0 MiB 0.07 0.00 2.72344 -89.4054 -2.72344 2.72344 0.89 0.000371537 0.000340715 0.0258422 0.0236343 32 1416 19 6.64007e+06 188370 554710. 1919.41 0.90 0.0691071 0.0608782 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.28 0.04 0.13 -1 -1 0.28 0.0157144 0.013811 85 29 24 24 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.96 vpr 65.01 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33840 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 26.3 MiB 0.12 727 12120 4439 5930 1751 65.0 MiB 0.10 0.00 4.19115 -121.049 -4.19115 4.19115 0.87 0.000473245 0.000429935 0.0355206 0.0324466 32 2029 16 6.64007e+06 213486 554710. 1919.41 0.94 0.0912584 0.0806202 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0184282 0.0164256 113 55 31 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.16 vpr 65.09 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33840 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 26.4 MiB 0.09 885 17732 4998 9545 3189 65.1 MiB 0.14 0.00 4.22193 -138.344 -4.22193 4.22193 0.89 0.000549423 0.000502933 0.0438154 0.0398974 32 2479 24 6.64007e+06 452088 554710. 1919.41 1.02 0.113777 0.100403 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0242434 0.0214635 147 31 91 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.13 vpr 65.38 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 34224 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 27.1 MiB 0.21 960 11288 2842 7087 1359 65.4 MiB 0.11 0.00 3.74425 -123.858 -3.74425 3.74425 0.87 0.000550248 0.000499931 0.0298284 0.0269874 30 2640 22 6.64007e+06 477204 526063. 1820.29 1.01 0.103647 0.090494 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.29 0.06 0.11 -1 -1 0.29 0.0275745 0.0242975 150 108 0 0 125 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.71 vpr 63.95 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 34308 -1 -1 17 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65488 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 25.6 MiB 0.08 395 10503 3120 6151 1232 64.0 MiB 0.06 0.00 2.74064 -71.156 -2.74064 2.74064 0.87 0.000300958 0.000272648 0.0221035 0.020125 28 1145 19 6.64007e+06 213486 500653. 1732.36 0.87 0.0614308 0.0539072 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.26 0.03 0.12 -1 -1 0.26 0.0136559 0.0120091 77 21 26 26 22 22 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.99 vpr 64.89 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34132 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 26.4 MiB 0.07 990 12749 4130 6257 2362 64.9 MiB 0.11 0.00 4.45633 -140.507 -4.45633 4.45633 0.86 0.000505425 0.000459975 0.0346962 0.0317667 32 2561 21 6.64007e+06 276276 554710. 1919.41 0.98 0.0955255 0.084442 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0222283 0.0197383 138 -1 122 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.81 vpr 64.32 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33780 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65868 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 25.9 MiB 0.04 603 10672 2424 7898 350 64.3 MiB 0.06 0.00 2.3583 -83.9313 -2.3583 2.3583 0.87 0.000299878 0.000276139 0.0230947 0.0210804 28 1546 20 6.64007e+06 163254 500653. 1732.36 1.01 0.0666816 0.0589081 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0141975 0.0125613 81 -1 53 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.11 vpr 65.50 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 34120 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 26.8 MiB 0.07 956 14691 4376 8904 1411 65.5 MiB 0.13 0.00 4.18856 -140.856 -4.18856 4.18856 0.89 0.000567806 0.000520643 0.0375182 0.0341448 32 2560 22 6.64007e+06 439530 554710. 1919.41 1.02 0.105484 0.0930071 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.026217 0.023089 153 21 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 8.59 vpr 65.41 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 33752 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 26.7 MiB 0.08 1019 8796 1857 6524 415 65.4 MiB 0.08 0.00 3.60659 -123.354 -3.60659 3.60659 0.89 0.00048499 0.000441217 0.0207685 0.0189151 26 3249 33 6.64007e+06 464646 477104. 1650.88 5.58 0.183731 0.161143 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0241351 0.0213461 152 -1 124 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.15 vpr 65.32 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33872 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 26.8 MiB 0.08 1069 18901 5689 10576 2636 65.3 MiB 0.16 0.00 4.16036 -141.868 -4.16036 4.16036 0.88 0.000583951 0.000532183 0.0485867 0.0442508 32 2736 22 6.64007e+06 464646 554710. 1919.41 1.03 0.121048 0.107073 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0272203 0.0241055 155 54 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.90 vpr 64.63 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 33832 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 26.1 MiB 0.07 857 10572 2555 6423 1594 64.6 MiB 0.08 0.00 3.07196 -107.422 -3.07196 3.07196 0.88 0.000441391 0.000402265 0.0297163 0.0271265 32 1869 19 6.64007e+06 200928 554710. 1919.41 0.94 0.0842835 0.0742876 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0188168 0.0166902 107 31 54 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.95 vpr 64.83 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 33740 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66388 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 26.3 MiB 0.08 824 11806 3275 6761 1770 64.8 MiB 0.09 0.00 3.4951 -114.009 -3.4951 3.4951 0.88 0.000460333 0.000421378 0.0315948 0.0288606 32 1835 21 6.64007e+06 238602 554710. 1919.41 0.94 0.0881266 0.077721 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.29 0.06 0.14 -1 -1 0.29 0.0216702 0.0191435 115 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.94 vpr 64.50 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33948 -1 -1 20 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66044 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 26.0 MiB 0.09 658 7132 1686 4570 876 64.5 MiB 0.07 0.00 3.4309 -100.483 -3.4309 3.4309 0.88 0.000423117 0.000386436 0.019504 0.0178768 32 1851 20 6.64007e+06 251160 554710. 1919.41 0.95 0.072213 0.0633467 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0186385 0.016502 107 27 56 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.01 vpr 64.69 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33932 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 26.1 MiB 0.08 802 15390 5648 7380 2362 64.7 MiB 0.12 0.00 3.5251 -121.985 -3.5251 3.5251 0.87 0.000429883 0.000391602 0.0399043 0.0364702 32 2003 23 6.64007e+06 226044 554710. 1919.41 0.94 0.095745 0.0846852 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0209015 0.0184147 125 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.83 vpr 64.83 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33916 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 26.2 MiB 0.05 772 9679 2262 6618 799 64.8 MiB 0.08 0.00 3.47387 -114.287 -3.47387 3.47387 0.86 0.000467484 0.00042491 0.0225856 0.0205624 28 2025 20 6.64007e+06 389298 500653. 1732.36 0.92 0.0789786 0.0690871 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.019038 0.0169047 119 26 61 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.00 vpr 64.63 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33768 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 26.3 MiB 0.12 877 15824 4460 9332 2032 64.6 MiB 0.12 0.00 2.80466 -91.9047 -2.80466 2.80466 0.89 0.000459495 0.000417967 0.0372795 0.0339341 26 2073 22 6.64007e+06 389298 477104. 1650.88 0.95 0.0953491 0.0841209 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0198941 0.01751 110 55 29 29 57 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.36 vpr 65.17 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34076 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 27.0 MiB 0.16 1234 17889 5288 10109 2492 65.2 MiB 0.18 0.00 4.16036 -142.499 -4.16036 4.16036 0.91 0.000580015 0.000527212 0.0458917 0.0417321 28 3347 24 6.64007e+06 514878 500653. 1732.36 2.06 0.130965 0.115972 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.27 0.09 0.12 -1 -1 0.27 0.0273684 0.024335 181 26 128 32 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.12 vpr 65.39 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34244 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 26.8 MiB 0.14 996 11616 2636 8022 958 65.4 MiB 0.11 0.00 3.5823 -125.213 -3.5823 3.5823 0.90 0.00057829 0.0005204 0.0312462 0.0283705 30 2080 20 6.64007e+06 464646 526063. 1820.29 0.95 0.100878 0.0887317 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0247232 0.0220039 154 62 62 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.05 vpr 65.07 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33824 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 26.3 MiB 0.19 803 9407 2189 6388 830 65.1 MiB 0.08 0.00 3.6833 -114.43 -3.6833 3.6833 0.90 0.000498187 0.000448393 0.0243669 0.0222099 30 1852 20 6.64007e+06 364182 526063. 1820.29 0.93 0.0849782 0.074301 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0203134 0.0180201 114 77 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.07 vpr 65.45 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34012 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 26.8 MiB 0.13 1052 11799 3060 6831 1908 65.5 MiB 0.11 0.00 3.64847 -119.816 -3.64847 3.64847 0.87 0.00056005 0.000507296 0.0346287 0.0314588 32 2372 21 6.64007e+06 301392 554710. 1919.41 0.96 0.101496 0.0892599 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0264374 0.0233626 149 59 60 30 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.31 vpr 65.73 MiB 0.02 7388 -1 -1 1 0.04 -1 -1 34084 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 27.1 MiB 0.34 953 7835 1760 5704 371 65.7 MiB 0.08 0.00 5.23812 -147.937 -5.23812 5.23812 0.88 0.000602213 0.000546856 0.027357 0.024965 32 2549 24 6.64007e+06 288834 554710. 1919.41 1.00 0.10467 0.0916894 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0258933 0.0228922 150 111 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.11 vpr 65.34 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34132 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 26.6 MiB 0.18 955 10859 3044 7047 768 65.3 MiB 0.11 0.00 5.02279 -136.574 -5.02279 5.02279 0.91 0.000567353 0.000517182 0.0353886 0.032249 30 2107 21 6.64007e+06 288834 526063. 1820.29 0.96 0.106645 0.0939511 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.27 0.05 0.13 -1 -1 0.27 0.0223952 0.0199357 144 86 31 31 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.07 vpr 65.32 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 33732 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1046 15623 4332 9609 1682 65.3 MiB 0.14 0.00 3.5621 -120.379 -3.5621 3.5621 0.88 0.000566381 0.00051706 0.0412492 0.037568 26 2560 22 6.64007e+06 439530 477104. 1650.88 1.00 0.113397 0.100111 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.022664 0.0201639 148 58 60 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.18 vpr 65.51 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33756 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 26.9 MiB 0.09 865 10206 2264 6941 1001 65.5 MiB 0.10 0.00 4.23656 -140.329 -4.23656 4.23656 0.90 0.000553454 0.000503548 0.0278969 0.0254093 32 2829 21 6.64007e+06 464646 554710. 1919.41 1.07 0.102136 0.0899814 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.026139 0.0231906 156 42 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.29 vpr 65.60 MiB 0.02 7548 -1 -1 1 0.05 -1 -1 34120 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 27.3 MiB 0.16 1205 17356 4219 10649 2488 65.6 MiB 0.17 0.00 4.21478 -145.938 -4.21478 4.21478 0.87 0.000640709 0.000583253 0.0497256 0.0452033 32 2779 22 6.64007e+06 527436 554710. 1919.41 1.02 0.135258 0.119397 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.031803 0.0283033 186 91 62 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.94 vpr 64.77 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 33912 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 26.0 MiB 0.09 655 13731 5030 6417 2284 64.8 MiB 0.11 0.00 3.7665 -117.146 -3.7665 3.7665 0.86 0.00042847 0.000390477 0.0365484 0.0334032 32 1931 27 6.64007e+06 226044 554710. 1919.41 0.96 0.095815 0.0845698 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0199046 0.017631 116 24 62 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.04 vpr 65.45 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33996 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 26.9 MiB 0.13 910 7386 1527 5477 382 65.4 MiB 0.07 0.00 4.20356 -136.322 -4.20356 4.20356 0.87 0.00052467 0.00047389 0.0187704 0.0170122 32 2713 25 6.64007e+06 477204 554710. 1919.41 1.02 0.0893745 0.0779025 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0240466 0.0211503 152 59 62 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.03 vpr 65.34 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33992 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 26.5 MiB 0.10 994 14048 3500 8468 2080 65.3 MiB 0.12 0.00 3.7163 -119.726 -3.7163 3.7163 0.88 0.000458895 0.000418223 0.0355908 0.0323955 32 2435 23 6.64007e+06 426972 554710. 1919.41 0.97 0.106238 0.0930727 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0245033 0.0216581 149 54 62 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.19 vpr 64.56 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 33660 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66112 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 26.1 MiB 0.08 1080 15017 4624 8554 1839 64.6 MiB 0.14 0.00 4.14936 -144.892 -4.14936 4.14936 0.90 0.000518035 0.00047217 0.0439576 0.0402015 32 2624 22 6.64007e+06 276276 554710. 1919.41 1.04 0.111132 0.0985581 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0251811 0.0223292 151 -1 128 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.23 vpr 65.44 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33804 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 26.7 MiB 0.17 1044 15603 4218 9336 2049 65.4 MiB 0.14 0.00 3.55822 -125.535 -3.55822 3.55822 0.90 0.00056806 0.000514941 0.0424058 0.0385769 32 2394 19 6.64007e+06 439530 554710. 1919.41 0.99 0.113035 0.0996233 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0257256 0.0228223 146 81 25 25 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.74 vpr 65.62 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 33740 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67200 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 26.8 MiB 0.17 1017 12791 3286 8285 1220 65.6 MiB 0.12 0.00 3.47912 -120.914 -3.47912 3.47912 0.87 0.00055031 0.000500898 0.0327549 0.0297617 26 2568 45 6.64007e+06 464646 477104. 1650.88 1.64 0.128355 0.112517 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0237066 0.0210925 148 58 64 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.18 vpr 65.36 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 34084 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 26.8 MiB 0.14 1102 19142 5372 11310 2460 65.4 MiB 0.16 0.00 3.5243 -123.608 -3.5243 3.5243 0.89 0.000563229 0.000513346 0.0476884 0.043369 32 2414 19 6.64007e+06 489762 554710. 1919.41 0.99 0.117246 0.103626 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.024817 0.0220971 157 61 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.05 vpr 65.13 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33804 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 26.4 MiB 0.08 1032 14906 4320 9186 1400 65.1 MiB 0.14 0.00 4.18856 -144.112 -4.18856 4.18856 0.88 0.000559659 0.000506066 0.0373184 0.0340438 30 2290 20 6.64007e+06 464646 526063. 1820.29 1.00 0.104422 0.0922182 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0241098 0.0213983 152 21 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 7.45 vpr 65.19 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 34284 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 26.7 MiB 0.12 1016 12153 3010 8355 788 65.2 MiB 0.11 0.00 4.23153 -146.068 -4.23153 4.23153 0.89 0.000567541 0.000516323 0.0313079 0.0284851 26 2842 35 6.64007e+06 489762 477104. 1650.88 4.35 0.196408 0.171331 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.26 0.09 0.11 -1 -1 0.26 0.027753 0.0244703 155 50 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.57 vpr 65.37 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33944 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 27.1 MiB 0.19 1141 13095 3356 8753 986 65.4 MiB 0.12 0.00 4.67535 -137.171 -4.67535 4.67535 0.87 0.000565569 0.000512868 0.0356054 0.0322811 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.45 0.117888 0.103631 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0248475 0.0219832 147 110 0 0 122 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.18 vpr 65.48 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 33740 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67048 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 26.9 MiB 0.15 1069 15584 4992 8664 1928 65.5 MiB 0.15 0.00 4.34993 -137.194 -4.34993 4.34993 0.88 0.00057568 0.000523707 0.0501953 0.045731 32 2657 20 6.64007e+06 276276 554710. 1919.41 1.00 0.12204 0.10789 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0264792 0.0233703 151 86 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.82 vpr 65.03 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34280 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 26.2 MiB 0.06 928 8735 1852 5986 897 65.0 MiB 0.07 0.00 3.50687 -122.364 -3.50687 3.50687 0.88 0.00045576 0.000414934 0.0208019 0.0190072 28 2197 22 6.64007e+06 389298 500653. 1732.36 0.94 0.0795523 0.0697733 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.25 0.06 0.11 -1 -1 0.25 0.0204785 0.0181252 125 20 63 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.02 vpr 64.94 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 33716 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 26.3 MiB 0.16 885 10406 2864 6861 681 64.9 MiB 0.10 0.00 3.5031 -121.505 -3.5031 3.5031 0.88 0.000516909 0.000472199 0.0323093 0.0294971 26 2358 26 6.64007e+06 226044 477104. 1650.88 1.00 0.102915 0.0905138 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0222257 0.0196757 121 91 0 0 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.09 vpr 65.58 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34024 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67152 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 27.3 MiB 0.10 1352 17606 4821 10688 2097 65.6 MiB 0.17 0.00 4.98622 -168.741 -4.98622 4.98622 0.86 0.000560694 0.000511273 0.0446097 0.0405987 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.02 0.121377 0.107107 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.27 0.10 0.12 -1 -1 0.27 0.030392 0.0268099 189 53 96 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.01 vpr 64.86 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 33796 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 26.2 MiB 0.12 1055 17857 5354 10411 2092 64.9 MiB 0.16 0.00 3.51607 -123.396 -3.51607 3.51607 0.88 0.000529229 0.00048268 0.0448051 0.0406861 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.90 0.109116 0.096379 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0230173 0.020421 148 31 92 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.01 vpr 64.86 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33668 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 26.3 MiB 0.07 853 17523 5443 9889 2191 64.9 MiB 0.13 0.00 3.4529 -114.711 -3.4529 3.4529 0.91 0.000453332 0.000414279 0.0398713 0.0363693 30 1885 20 6.64007e+06 389298 526063. 1820.29 0.92 0.0955351 0.0844856 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0211858 0.0186698 116 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.48 vpr 65.64 MiB 0.02 7668 -1 -1 1 0.04 -1 -1 34472 -1 -1 45 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 27.4 MiB 0.27 1192 13629 3357 8864 1408 65.6 MiB 0.14 0.00 4.97469 -167.233 -4.97469 4.97469 0.91 0.00069269 0.00062722 0.0391096 0.0355025 32 2825 26 6.64007e+06 565110 554710. 1919.41 1.06 0.125556 0.110418 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0307313 0.0274197 188 109 32 32 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.11 vpr 65.25 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33480 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 26.5 MiB 0.12 1027 16762 4357 10483 1922 65.2 MiB 0.13 0.00 4.27488 -146.847 -4.27488 4.27488 0.88 0.000548011 0.000499112 0.0396979 0.0360375 28 2563 23 6.64007e+06 477204 500653. 1732.36 1.01 0.111998 0.0987102 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0226972 0.0202227 153 31 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.88 vpr 64.67 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33844 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 26.1 MiB 0.07 882 11046 2802 6952 1292 64.7 MiB 0.10 0.00 3.5621 -124.172 -3.5621 3.5621 0.89 0.000435856 0.000397273 0.0249167 0.0226764 30 1857 21 6.64007e+06 401856 526063. 1820.29 0.88 0.0787649 0.0692456 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0197683 0.0175485 124 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.52 vpr 65.48 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34568 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67048 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 27.2 MiB 0.11 1334 20347 5362 13158 1827 65.5 MiB 0.19 0.00 4.95502 -168.119 -4.95502 4.95502 0.89 0.000595613 0.000540643 0.0521029 0.0474258 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.26 0.137778 0.122314 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.31 0.08 0.12 -1 -1 0.31 0.0296293 0.0263435 190 26 128 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.04 vpr 64.85 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 33800 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 26.3 MiB 0.08 623 13731 4925 6406 2400 64.8 MiB 0.11 0.00 3.5061 -118.666 -3.5061 3.5061 0.89 0.000438487 0.000400115 0.0368053 0.0336431 32 2131 28 6.64007e+06 213486 554710. 1919.41 1.00 0.0980609 0.0865943 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0205867 0.0181901 121 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.79 vpr 64.71 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34068 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 26.4 MiB 0.12 855 13939 4099 8667 1173 64.7 MiB 0.11 0.00 3.47387 -112.968 -3.47387 3.47387 0.85 0.000451175 0.000410145 0.0307641 0.0280172 28 1888 22 6.64007e+06 401856 500653. 1732.36 0.88 0.0856771 0.075468 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0196109 0.017367 114 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.98 vpr 65.51 MiB 0.02 7456 -1 -1 1 0.03 -1 -1 34100 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67084 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 26.7 MiB 0.15 1003 12839 3224 8329 1286 65.5 MiB 0.11 0.00 3.6803 -109.03 -3.6803 3.6803 0.87 0.000484469 0.000441941 0.0331526 0.0301008 26 2529 22 6.64007e+06 426972 477104. 1650.88 0.98 0.102021 0.0895138 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0230192 0.0203277 134 81 29 29 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.07 vpr 65.39 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34400 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 26.6 MiB 0.12 937 11048 2797 7564 687 65.4 MiB 0.10 0.00 4.21976 -143.232 -4.21976 4.21976 0.88 0.000578484 0.000526017 0.0359542 0.0328306 32 2378 24 6.64007e+06 276276 554710. 1919.41 1.00 0.105378 0.0927048 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.27 0.07 0.12 -1 -1 0.27 0.0256065 0.0226293 152 53 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.34 vpr 65.60 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 34180 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 27.0 MiB 0.20 1070 15876 4480 9346 2050 65.6 MiB 0.15 0.00 4.25856 -146.098 -4.25856 4.25856 0.88 0.000573223 0.000521673 0.0417503 0.0380398 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.12 0.131524 0.116007 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0286226 0.0253583 154 55 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.01 vpr 64.93 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 34220 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 26.3 MiB 0.12 863 8856 1892 6516 448 64.9 MiB 0.08 0.00 3.4749 -121.747 -3.4749 3.4749 0.88 0.000496241 0.000453247 0.0217898 0.0198203 32 2048 21 6.64007e+06 401856 554710. 1919.41 0.96 0.0831033 0.0727446 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0223497 0.0197265 122 55 32 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.08 vpr 65.18 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34088 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 26.4 MiB 0.17 821 8336 2395 4162 1779 65.2 MiB 0.07 0.00 3.72326 -116.749 -3.72326 3.72326 0.89 0.000478212 0.00043278 0.0262134 0.0239511 32 1980 18 6.64007e+06 213486 554710. 1919.41 0.96 0.0851581 0.0748475 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0207871 0.0182768 109 82 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.48 vpr 64.86 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34136 -1 -1 35 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 26.2 MiB 0.13 985 17635 4923 10695 2017 64.9 MiB 0.16 0.00 3.4529 -110.073 -3.4529 3.4529 0.90 0.000533354 0.000486408 0.044908 0.0409046 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.36 0.12688 0.112064 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0232533 0.0205103 139 52 60 30 57 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.46 vpr 64.86 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 33800 -1 -1 32 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 26.3 MiB 0.08 939 14996 4215 8524 2257 64.9 MiB 0.12 0.00 4.39198 -124.88 -4.39198 4.39198 0.92 0.000483924 0.000441823 0.0379247 0.0344464 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.46 0.111352 0.0982378 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.021719 0.0191848 134 20 84 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.06 vpr 65.20 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 34084 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 26.4 MiB 0.16 846 13731 4520 7348 1863 65.2 MiB 0.11 0.00 3.5343 -117.296 -3.5343 3.5343 0.88 0.000458754 0.000417071 0.0378925 0.0345761 32 1980 19 6.64007e+06 238602 554710. 1919.41 0.95 0.0946194 0.08352 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0200077 0.0176086 114 58 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.93 vpr 65.25 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33364 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 26.4 MiB 0.15 892 11281 2807 6986 1488 65.2 MiB 0.09 0.00 3.6865 -117.315 -3.6865 3.6865 0.87 0.00046697 0.000423879 0.033141 0.0301249 30 1846 19 6.64007e+06 213486 526063. 1820.29 0.90 0.0918221 0.0806453 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0210192 0.0185309 114 88 0 0 91 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.12 vpr 64.98 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34052 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 26.4 MiB 0.08 1121 19124 6194 10224 2706 65.0 MiB 0.16 0.00 4.18856 -139.706 -4.18856 4.18856 0.89 0.000499526 0.000455783 0.0431688 0.0392601 32 2557 23 6.64007e+06 464646 554710. 1919.41 1.00 0.10875 0.0960715 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0254226 0.0225222 152 -1 124 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.22 vpr 65.35 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34112 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 26.8 MiB 0.17 1037 18660 5257 10625 2778 65.4 MiB 0.15 0.00 4.17032 -143.358 -4.17032 4.17032 0.87 0.000584 0.000530802 0.0474559 0.0430854 32 2589 21 6.64007e+06 452088 554710. 1919.41 1.02 0.1183 0.104401 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0256633 0.0227061 155 57 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.28 vpr 65.53 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 33856 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67100 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 27.0 MiB 0.15 1085 15876 4268 10377 1231 65.5 MiB 0.14 0.00 4.15553 -144.194 -4.15553 4.15553 0.90 0.000579534 0.000521169 0.0412409 0.0374726 32 2670 22 6.64007e+06 452088 554710. 1919.41 1.05 0.115627 0.101985 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0275759 0.0244311 153 62 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 6.38 vpr 65.60 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33996 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 27.0 MiB 0.13 963 9146 1745 6045 1356 65.6 MiB 0.07 0.00 4.17056 -135.219 -4.17056 4.17056 0.87 0.00054571 0.000495698 0.0241765 0.0220353 30 3028 24 6.64007e+06 477204 526063. 1820.29 3.33 0.181442 0.157477 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0275022 0.0242488 149 62 60 30 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.99 vpr 65.02 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33780 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 26.2 MiB 0.10 840 12856 4254 6466 2136 65.0 MiB 0.10 0.00 3.4921 -115.538 -3.4921 3.4921 0.88 0.000444699 0.000405098 0.0347867 0.0317704 32 2099 22 6.64007e+06 238602 554710. 1919.41 0.96 0.0916755 0.0808571 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0196298 0.0173466 113 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.40 vpr 65.33 MiB 0.06 7304 -1 -1 1 0.03 -1 -1 34184 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66896 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 26.6 MiB 0.15 996 13127 3599 7422 2106 65.3 MiB 0.12 0.00 4.20393 -135.69 -4.20393 4.20393 0.87 0.000540379 0.000491749 0.0401961 0.0367194 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.26 0.124948 0.110434 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0237119 0.0210665 146 58 60 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.26 vpr 65.45 MiB 0.02 7488 -1 -1 1 0.04 -1 -1 34192 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 27.1 MiB 0.21 1061 10232 2187 7405 640 65.5 MiB 0.10 0.00 4.16036 -143.59 -4.16036 4.16036 0.89 0.000635947 0.00058228 0.0282669 0.0257607 26 3037 26 6.64007e+06 514878 477104. 1650.88 2.06 0.122884 0.108288 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0277844 0.0245168 156 106 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.10 vpr 65.16 MiB 0.02 7232 -1 -1 1 0.03 -1 -1 33884 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 26.7 MiB 0.11 924 14769 3776 9247 1746 65.2 MiB 0.13 0.00 4.18868 -135.93 -4.18868 4.18868 0.87 0.00055959 0.000510051 0.0403857 0.0368034 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.00 0.114163 0.100619 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.02646 0.0233724 148 79 31 31 93 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.02 vpr 64.80 MiB 0.02 7540 -1 -1 1 0.03 -1 -1 33948 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 26.1 MiB 0.13 973 15004 4033 8498 2473 64.8 MiB 0.12 0.00 3.6693 -113.052 -3.6693 3.6693 0.88 0.000492497 0.00044621 0.0396718 0.0360316 32 2183 19 6.64007e+06 401856 554710. 1919.41 0.94 0.105235 0.0926208 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0231638 0.0204952 138 83 26 26 90 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.30 vpr 65.08 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34016 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 26.3 MiB 0.22 1125 9725 2385 6614 726 65.1 MiB 0.10 0.00 4.21673 -144.443 -4.21673 4.21673 0.89 0.000594988 0.000536235 0.0316425 0.0289025 30 2849 27 6.64007e+06 276276 526063. 1820.29 1.08 0.111725 0.0982844 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0270646 0.0240958 155 58 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.11 vpr 65.12 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33776 -1 -1 36 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 26.4 MiB 0.14 964 18079 5189 10710 2180 65.1 MiB 0.14 0.00 3.5353 -109.312 -3.5353 3.5353 0.88 0.000534475 0.00048853 0.0460543 0.0418217 32 2101 19 6.64007e+06 452088 554710. 1919.41 0.94 0.111805 0.0984043 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0239965 0.0211665 136 81 26 26 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.97 vpr 64.45 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 33724 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66000 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 25.9 MiB 0.05 799 9356 2113 6168 1075 64.5 MiB 0.08 0.00 3.4921 -122.483 -3.4921 3.4921 0.91 0.000430454 0.000393863 0.0255165 0.0233207 32 1948 20 6.64007e+06 213486 554710. 1919.41 0.97 0.0810233 0.0714093 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0193824 0.0172362 115 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.49 vpr 65.29 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34076 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 26.7 MiB 0.24 992 16743 5741 8435 2567 65.3 MiB 0.15 0.00 4.25856 -144.485 -4.25856 4.25856 0.89 0.000570884 0.000521004 0.0453272 0.0412824 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.20 0.127569 0.112917 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.28 0.08 0.12 -1 -1 0.28 0.0275947 0.0244536 152 62 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.23 vpr 65.28 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 34036 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 26.4 MiB 0.15 1054 17367 5167 10302 1898 65.3 MiB 0.16 0.00 4.21976 -145.962 -4.21976 4.21976 0.90 0.000571336 0.000519737 0.0542501 0.0494752 32 2466 19 6.64007e+06 288834 554710. 1919.41 0.98 0.123573 0.10955 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0292675 0.0258417 158 62 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.56 vpr 64.99 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34004 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 26.2 MiB 0.14 691 7975 1531 6145 299 65.0 MiB 0.07 0.00 3.6913 -111.241 -3.6913 3.6913 0.91 0.000462129 0.000410122 0.0189504 0.0172526 26 2376 30 6.64007e+06 376740 477104. 1650.88 1.47 0.0885979 0.077352 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.021078 0.0185299 112 47 32 32 54 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.02 vpr 64.59 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33784 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 26.1 MiB 0.07 653 13381 4684 6039 2658 64.6 MiB 0.10 0.00 3.5533 -116.629 -3.5533 3.5533 0.90 0.00044819 0.000409615 0.0354603 0.0324465 32 1990 24 6.64007e+06 226044 554710. 1919.41 0.97 0.092769 0.0820055 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0210217 0.0186232 118 -1 93 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.11 vpr 65.20 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33916 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 26.4 MiB 0.14 927 16303 4785 8793 2725 65.2 MiB 0.13 0.00 4.16476 -135.871 -4.16476 4.16476 0.88 0.000528767 0.000481679 0.0410813 0.0374541 32 2289 21 6.64007e+06 414414 554710. 1919.41 0.96 0.107814 0.0951128 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0245747 0.0217206 139 56 60 32 58 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 7.19 vpr 65.63 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 34044 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67208 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 26.8 MiB 0.10 1051 17397 5163 9750 2484 65.6 MiB 0.15 0.00 4.41596 -136.112 -4.41596 4.41596 0.90 0.000558224 0.000508857 0.0467016 0.0425404 26 2942 23 6.64007e+06 401856 477104. 1650.88 4.07 0.211338 0.185699 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.26 0.08 0.10 -1 -1 0.26 0.0286794 0.0252679 136 81 28 28 88 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.35 vpr 65.01 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34020 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 26.7 MiB 0.09 1159 10441 2545 7247 649 65.0 MiB 0.11 0.00 4.95022 -163.094 -4.95022 4.95022 0.89 0.000550141 0.0005046 0.0282881 0.0257966 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.18 0.110855 0.0978986 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.31 0.09 0.13 -1 -1 0.31 0.0293436 0.0261156 179 -1 156 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.68 vpr 64.96 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 33728 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 26.3 MiB 0.14 813 9732 2096 6039 1597 65.0 MiB 0.07 0.00 3.7815 -111.41 -3.7815 3.7815 0.91 0.000524462 0.000474516 0.0243243 0.0220964 28 2429 27 6.64007e+06 426972 500653. 1732.36 1.64 0.104296 0.0917846 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0196069 0.0173822 138 47 60 30 56 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.04 vpr 64.39 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34244 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65936 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 25.9 MiB 0.09 529 12292 5081 5761 1450 64.4 MiB 0.08 0.00 3.54427 -98.353 -3.54427 3.54427 0.90 0.000402346 0.000366177 0.0310103 0.028328 32 1668 31 6.64007e+06 263718 554710. 1919.41 1.02 0.0904818 0.0796379 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0203997 0.0180361 107 26 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.48 vpr 65.55 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 34168 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67124 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 27.3 MiB 0.15 1462 20856 5895 12562 2399 65.6 MiB 0.21 0.00 4.52196 -148.077 -4.52196 4.52196 0.88 0.000652021 0.000591761 0.058713 0.0534184 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.20 0.156632 0.139633 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0321517 0.0285913 186 85 62 31 95 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.31 vpr 65.50 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33888 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 27.0 MiB 0.23 998 12919 3192 8538 1189 65.5 MiB 0.12 0.00 4.42996 -140.975 -4.42996 4.42996 0.87 0.000598375 0.000546159 0.0445533 0.0406602 32 2535 22 6.64007e+06 276276 554710. 1919.41 1.04 0.123091 0.108703 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0296022 0.0261261 145 105 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.13 vpr 65.04 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33740 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 26.3 MiB 0.20 894 11948 3681 7128 1139 65.0 MiB 0.10 0.00 3.6755 -115.703 -3.6755 3.6755 0.90 0.000489597 0.00044722 0.0362998 0.0330798 32 1930 19 6.64007e+06 200928 554710. 1919.41 0.95 0.0967275 0.0852425 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0202971 0.018025 108 86 0 0 89 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.69 vpr 65.37 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33836 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 26.7 MiB 0.07 1023 18745 6322 9498 2925 65.4 MiB 0.15 0.00 4.46396 -140.121 -4.46396 4.46396 0.88 0.000486788 0.000433857 0.0455945 0.0414346 28 3262 26 6.64007e+06 414414 500653. 1732.36 1.66 0.12315 0.109077 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0243381 0.021488 147 31 90 30 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.27 vpr 65.49 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34056 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67060 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 27.0 MiB 0.13 1135 20076 5790 11566 2720 65.5 MiB 0.18 0.00 4.51716 -144.659 -4.51716 4.51716 0.90 0.000582868 0.000528935 0.0547065 0.0496929 32 2682 21 6.64007e+06 477204 554710. 1919.41 1.01 0.131666 0.116393 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0286759 0.0254005 173 50 87 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.99 vpr 65.44 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33768 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 26.7 MiB 0.10 923 11484 2608 8162 714 65.4 MiB 0.11 0.00 3.73061 -110.59 -3.73061 3.73061 0.89 0.000521122 0.000474775 0.0303039 0.0276052 26 3004 29 6.64007e+06 426972 477104. 1650.88 1.92 0.110017 0.096642 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.24 0.09 0.11 -1 -1 0.24 0.026596 0.0234729 135 50 58 30 58 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 6.28 vpr 65.03 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33916 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 26.8 MiB 0.12 1008 13516 3637 9135 744 65.0 MiB 0.13 0.00 4.19956 -142.899 -4.19956 4.19956 0.89 0.000616751 0.000562653 0.0335212 0.0305117 28 2725 41 6.64007e+06 539994 500653. 1732.36 3.16 0.215274 0.187071 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0275464 0.024334 158 61 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.65 vpr 65.45 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33784 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 26.9 MiB 0.13 988 17184 5218 8807 3159 65.4 MiB 0.14 0.00 3.62559 -123.648 -3.62559 3.62559 0.88 0.000545894 0.000491624 0.041901 0.0382067 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.50 0.12784 0.113543 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.0329623 0.029018 157 61 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.46 vpr 64.62 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33852 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 26.0 MiB 0.07 573 13430 5649 6739 1042 64.6 MiB 0.09 0.00 3.6785 -105.931 -3.6785 3.6785 0.90 0.00038616 0.000353888 0.0360807 0.0329285 28 1653 18 6.64007e+06 226044 500653. 1732.36 2.57 0.145269 0.126861 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0190229 0.0168622 95 28 58 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.01 vpr 65.11 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 34164 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 26.3 MiB 0.16 857 11783 4174 5528 2081 65.1 MiB 0.09 0.00 4.00656 -110.848 -4.00656 4.00656 0.90 0.000475582 0.000431931 0.0330427 0.0300674 30 1873 19 6.64007e+06 238602 526063. 1820.29 0.93 0.0902261 0.0794151 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0172914 0.0154061 112 79 0 0 82 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 6.14 vpr 65.14 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34004 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1100 13261 3564 8068 1629 65.1 MiB 0.11 0.00 4.80256 -145.153 -4.80256 4.80256 0.90 0.000541649 0.000494087 0.0327532 0.029909 28 2902 24 6.64007e+06 477204 500653. 1732.36 3.05 0.179722 0.15655 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0251462 0.0222694 151 29 93 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.39 vpr 64.41 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33656 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65960 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 25.9 MiB 0.18 620 10442 2502 7352 588 64.4 MiB 0.08 0.00 3.6803 -100.526 -3.6803 3.6803 0.91 0.000440344 0.000401291 0.0240636 0.0218705 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.31 0.096879 0.0844246 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.018849 0.0166465 108 48 29 29 52 26 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.09 vpr 64.84 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 33884 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 26.3 MiB 0.12 691 13906 4599 7385 1922 64.8 MiB 0.11 0.00 3.53127 -120.288 -3.53127 3.53127 0.89 0.000463381 0.000423182 0.0381744 0.0348242 32 2039 20 6.64007e+06 213486 554710. 1919.41 0.97 0.0960039 0.0848139 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0219248 0.019418 118 31 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.96 vpr 65.27 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34020 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 26.6 MiB 0.12 999 13261 3446 8635 1180 65.3 MiB 0.11 0.00 3.5665 -119.865 -3.5665 3.5665 0.88 0.000503116 0.000454755 0.0317038 0.0286665 30 2030 20 6.64007e+06 477204 526063. 1820.29 0.93 0.0966433 0.0847213 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0227973 0.0201465 144 60 58 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.02 vpr 65.00 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33864 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 26.2 MiB 0.13 869 9368 2508 6076 784 65.0 MiB 0.08 0.00 3.34153 -105.882 -3.34153 3.34153 0.91 0.000458841 0.00041282 0.0267893 0.0244939 32 1935 19 6.64007e+06 213486 554710. 1919.41 0.93 0.0818362 0.0720517 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0180452 0.0160616 106 49 31 31 53 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.49 vpr 65.14 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33768 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 26.4 MiB 0.12 879 9865 2512 6573 780 65.1 MiB 0.09 0.00 3.57229 -117.612 -3.57229 3.57229 0.88 0.000531054 0.000484354 0.0265293 0.0241744 28 2622 27 6.64007e+06 414414 500653. 1732.36 4.47 0.171712 0.149034 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.022801 0.0201753 137 56 52 26 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.23 vpr 65.31 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34176 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66880 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 26.7 MiB 0.23 875 10540 2287 7686 567 65.3 MiB 0.10 0.00 3.79366 -119.555 -3.79366 3.79366 0.90 0.000566932 0.000517249 0.0290683 0.0264903 30 2033 25 6.64007e+06 464646 526063. 1820.29 0.99 0.105991 0.0930587 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0247866 0.0219427 149 88 31 31 92 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.00 vpr 65.14 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 33796 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 26.3 MiB 0.12 816 8626 2345 5890 391 65.1 MiB 0.08 0.00 3.06096 -106.925 -3.06096 3.06096 0.91 0.000512378 0.000459621 0.0261564 0.0239296 32 2043 18 6.64007e+06 226044 554710. 1919.41 0.95 0.0842834 0.0742087 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.022864 0.0202634 115 54 32 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.04 vpr 65.05 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33544 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66612 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 26.2 MiB 0.16 920 11296 3024 7326 946 65.1 MiB 0.10 0.00 3.5031 -121.121 -3.5031 3.5031 0.88 0.000494344 0.000450194 0.0333693 0.0304181 30 2197 20 6.64007e+06 226044 526063. 1820.29 0.95 0.0955467 0.0843265 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0232635 0.0206369 121 60 32 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.23 vpr 65.54 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34504 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 26.9 MiB 0.12 1027 12240 2965 8371 904 65.5 MiB 0.11 0.00 4.25676 -144.495 -4.25676 4.25676 0.89 0.000569611 0.000518154 0.0315932 0.028726 32 2501 30 6.64007e+06 477204 554710. 1919.41 1.08 0.11346 0.0997764 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0286653 0.025383 156 49 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.12 vpr 65.14 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 33988 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 26.4 MiB 0.12 1021 16079 4076 10280 1723 65.1 MiB 0.14 0.00 3.7925 -111.563 -3.7925 3.7925 0.91 0.00052642 0.000477412 0.0410489 0.0373052 32 2199 23 6.64007e+06 426972 554710. 1919.41 0.96 0.109052 0.096187 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0229369 0.0204018 135 54 56 29 58 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.31 vpr 65.57 MiB 0.02 7312 -1 -1 1 0.04 -1 -1 34336 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 26.9 MiB 0.23 937 9020 1835 6701 484 65.6 MiB 0.09 0.00 4.29776 -145.038 -4.29776 4.29776 0.89 0.000613521 0.000556528 0.0256169 0.0233082 32 2670 31 6.64007e+06 489762 554710. 1919.41 1.05 0.11206 0.0981381 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0285913 0.0250583 158 117 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.83 vpr 64.73 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33888 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 26.3 MiB 0.07 804 11948 3966 6404 1578 64.7 MiB 0.08 0.00 3.08296 -103.61 -3.08296 3.08296 0.89 0.000378698 0.000344213 0.0285467 0.0259824 32 1812 20 6.64007e+06 213486 554710. 1919.41 0.89 0.0773359 0.0680621 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.018224 0.0160447 106 -1 85 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.51 vpr 65.60 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 34132 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 27.1 MiB 0.12 998 18111 4956 10747 2408 65.6 MiB 0.14 0.00 4.26296 -139.632 -4.26296 4.26296 0.89 0.000589437 0.000537514 0.0458292 0.0417131 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.43 0.134229 0.118655 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.026159 0.0230138 144 89 28 28 92 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.06 vpr 65.18 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34048 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 26.3 MiB 0.24 734 13381 4309 7077 1995 65.2 MiB 0.11 0.00 3.54047 -121.881 -3.54047 3.54047 0.88 0.000510854 0.000465344 0.0411536 0.0376014 28 2004 19 6.64007e+06 213486 500653. 1732.36 0.92 0.103956 0.0917759 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.023855 0.0210405 114 93 0 0 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.11 vpr 65.22 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 33720 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 26.7 MiB 0.14 1102 9501 2041 6911 549 65.2 MiB 0.10 0.00 3.5841 -124.322 -3.5841 3.5841 0.89 0.000556943 0.000508522 0.0249619 0.0228196 30 2381 21 6.64007e+06 464646 526063. 1820.29 0.97 0.0973861 0.0852215 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.28 0.06 0.13 -1 -1 0.28 0.0228909 0.0203709 151 59 61 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.49 vpr 65.44 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 34260 -1 -1 45 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67008 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 27.2 MiB 0.19 1244 16489 4012 10933 1544 65.4 MiB 0.15 0.00 4.96651 -168.366 -4.96651 4.96651 0.85 0.000686452 0.000623403 0.0455356 0.0413196 26 3486 28 6.64007e+06 565110 477104. 1650.88 2.39 0.143359 0.126422 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.24 0.09 0.10 -1 -1 0.24 0.0280175 0.0248633 188 81 64 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.80 vpr 64.07 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 33724 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65608 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 25.6 MiB 0.07 483 10509 2545 7262 702 64.1 MiB 0.06 0.00 2.73878 -81.5531 -2.73878 2.73878 0.90 0.00036793 0.000334354 0.0258373 0.0235506 28 1397 23 6.64007e+06 188370 500653. 1732.36 0.91 0.0747294 0.0655801 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.26 0.04 0.12 -1 -1 0.26 0.0171108 0.0149856 83 51 0 0 53 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.93 vpr 64.52 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 34036 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 26.1 MiB 0.07 793 10388 3558 5136 1694 64.5 MiB 0.08 0.00 3.6815 -114.291 -3.6815 3.6815 0.90 0.000418729 0.000380795 0.0286901 0.026181 32 1615 19 6.64007e+06 213486 554710. 1919.41 0.92 0.083285 0.0733605 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0202883 0.0180295 97 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.14 vpr 65.18 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33784 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 26.4 MiB 0.09 798 13966 5020 6560 2386 65.2 MiB 0.11 0.00 3.4859 -119.604 -3.4859 3.4859 0.90 0.000421282 0.000380507 0.0369995 0.0336252 32 2382 23 6.64007e+06 226044 554710. 1919.41 1.04 0.0972486 0.0855287 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.30 0.08 0.12 -1 -1 0.30 0.0231028 0.02038 126 31 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.78 vpr 64.20 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33988 -1 -1 34 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65740 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 25.8 MiB 0.05 678 12127 3168 7672 1287 64.2 MiB 0.08 0.00 3.4089 -91.215 -3.4089 3.4089 0.84 0.000464947 0.00042574 0.0248384 0.0226287 26 1687 20 6.64007e+06 426972 477104. 1650.88 1.01 0.0756214 0.0663822 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0182181 0.0159932 103 19 50 25 25 25 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.16 vpr 65.36 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 33948 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66928 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 26.9 MiB 0.14 1064 14828 5337 7470 2021 65.4 MiB 0.14 0.00 4.34676 -140.278 -4.34676 4.34676 0.88 0.000569001 0.000518435 0.0471169 0.0429578 32 2475 24 6.64007e+06 276276 554710. 1919.41 1.01 0.122964 0.10863 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0266653 0.0235745 149 84 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.01 vpr 65.16 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33740 -1 -1 39 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 26.7 MiB 0.15 786 10336 2273 7345 718 65.2 MiB 0.10 0.00 3.53327 -114.261 -3.53327 3.53327 0.92 0.000531642 0.000468502 0.0282771 0.0256653 28 2510 49 6.64007e+06 489762 500653. 1732.36 1.87 0.134502 0.117902 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0256532 0.0226847 148 88 29 29 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.49 vpr 65.12 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34000 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 26.8 MiB 0.22 984 7523 1506 5708 309 65.1 MiB 0.08 0.00 3.92206 -133.487 -3.92206 3.92206 0.92 0.00059707 0.000543341 0.0231825 0.0211393 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.21 0.106144 0.0934166 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.29 0.10 0.13 -1 -1 0.29 0.0300268 0.026559 151 80 32 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.44 vpr 65.04 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34076 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 26.6 MiB 0.39 986 12323 4513 6271 1539 65.0 MiB 0.11 0.00 4.33507 -129.747 -4.33507 4.33507 0.91 0.000562673 0.000511086 0.0398828 0.0363219 32 2540 23 6.65987e+06 266238 554710. 1919.41 1.03 0.114731 0.101208 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0263366 0.0232014 140 78 30 30 89 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 6.71 vpr 64.79 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33956 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 26.1 MiB 0.13 1040 16523 4439 10256 1828 64.8 MiB 0.14 0.00 3.41879 -119.689 -3.41879 3.41879 0.89 0.00054962 0.000499037 0.0423327 0.038579 28 2534 22 6.65987e+06 431052 500653. 1732.36 3.58 0.213223 0.187099 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0278727 0.0246375 141 50 54 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.60 vpr 64.99 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34064 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 26.3 MiB 0.09 793 11603 2857 6819 1927 65.0 MiB 0.09 0.00 4.2977 -123.649 -4.2977 4.2977 0.85 0.000496312 0.000453433 0.0335097 0.0307247 34 2278 23 6.65987e+06 278916 585099. 2024.56 1.66 0.124507 0.110101 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.30 0.08 0.13 -1 -1 0.30 0.0250724 0.0222405 138 25 87 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.25 vpr 65.08 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33880 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 26.6 MiB 0.20 1026 15456 4961 8586 1909 65.1 MiB 0.14 0.00 4.14936 -143.085 -4.14936 4.14936 0.88 0.000475764 0.000431987 0.0466299 0.0422923 32 2926 21 6.65987e+06 253560 554710. 1919.41 1.03 0.114669 0.101054 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.30 0.09 0.12 -1 -1 0.30 0.02726 0.0241385 151 31 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.24 vpr 65.10 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34124 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 26.8 MiB 0.22 1029 9501 1978 7135 388 65.1 MiB 0.09 0.00 3.43623 -117.882 -3.43623 3.43623 0.89 0.000567005 0.000514363 0.0251511 0.0228649 32 2567 26 6.65987e+06 469086 554710. 1919.41 1.01 0.101331 0.0885654 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0268103 0.0238014 154 61 63 32 63 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.98 vpr 64.29 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 34092 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65836 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 25.8 MiB 0.19 580 13026 4344 6329 2353 64.3 MiB 0.10 0.00 3.7565 -98.351 -3.7565 3.7565 0.87 0.000412847 0.000374814 0.0335601 0.0306785 30 1363 17 6.65987e+06 240882 526063. 1820.29 0.91 0.083653 0.0738858 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0175806 0.0156375 96 26 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.06 vpr 65.09 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34172 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 26.5 MiB 0.15 1006 10170 2426 6636 1108 65.1 MiB 0.09 0.00 3.27903 -106.33 -3.27903 3.27903 0.88 0.000481948 0.000438164 0.0247464 0.0225245 28 2449 18 6.65987e+06 418374 500653. 1732.36 1.03 0.0851914 0.074947 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0216287 0.0191868 139 -1 115 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.14 vpr 64.79 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33760 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 26.0 MiB 0.29 870 11571 3268 6617 1686 64.8 MiB 0.09 0.00 3.07084 -101.313 -3.07084 3.07084 0.88 0.000469274 0.000426976 0.0346568 0.0316543 32 1812 21 6.65987e+06 202848 554710. 1919.41 0.92 0.094471 0.0831992 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0217864 0.0193194 105 81 0 0 84 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.58 vpr 64.79 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33896 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 26.0 MiB 0.25 642 11432 4032 4649 2751 64.8 MiB 0.08 0.00 3.56921 -118.924 -3.56921 3.56921 0.85 0.000464027 0.000421502 0.0329589 0.0300073 36 2032 39 6.65987e+06 202848 612192. 2118.31 2.47 0.152512 0.133216 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.30 0.06 0.14 -1 -1 0.30 0.0198307 0.0175245 121 31 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.14 vpr 64.76 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33824 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 26.0 MiB 0.25 784 11571 3060 7609 902 64.8 MiB 0.10 0.00 3.4841 -113.76 -3.4841 3.4841 0.89 0.000470619 0.000428305 0.0346616 0.0315911 32 1689 20 6.65987e+06 215526 554710. 1919.41 0.95 0.0933303 0.0823778 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0241364 0.0213694 110 58 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.15 vpr 64.80 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33864 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 26.2 MiB 0.25 841 11223 2602 8034 587 64.8 MiB 0.09 0.00 3.27957 -108.894 -3.27957 3.27957 0.88 0.000460852 0.000417764 0.0280872 0.0255918 30 1969 21 6.65987e+06 367662 526063. 1820.29 0.97 0.0890713 0.0781182 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0196384 0.0174056 114 57 25 25 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.24 vpr 65.20 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33864 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 26.8 MiB 0.38 1002 18711 5900 10256 2555 65.2 MiB 0.15 0.00 3.50686 -122.446 -3.50686 3.50686 0.84 0.000543729 0.000485713 0.0477187 0.0433571 32 2409 24 6.65987e+06 405696 554710. 1919.41 0.96 0.118173 0.104654 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.28 0.08 0.12 -1 -1 0.28 0.0274547 0.0243999 143 55 64 32 57 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.28 vpr 64.72 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33864 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 26.5 MiB 0.25 942 7973 1567 6126 280 64.7 MiB 0.08 0.00 4.02327 -135.611 -4.02327 4.02327 0.88 0.000571111 0.000516715 0.021992 0.0200207 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.05 0.0978745 0.0856866 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.30 0.09 0.12 -1 -1 0.30 0.0279106 0.02466 156 60 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.93 vpr 64.52 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34064 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 26.0 MiB 0.16 686 7177 1709 4538 930 64.5 MiB 0.06 0.00 3.15358 -93.6229 -3.15358 3.15358 0.87 0.000418163 0.000380275 0.0198469 0.0181683 28 1802 20 6.65987e+06 228204 500653. 1732.36 0.92 0.0715002 0.062852 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0205766 0.0181517 107 21 58 29 24 24 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.31 vpr 65.40 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34000 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66972 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 26.8 MiB 0.25 1074 13992 4161 7846 1985 65.4 MiB 0.13 0.00 3.5141 -125.301 -3.5141 3.5141 0.88 0.000517492 0.000469245 0.0457378 0.0415449 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.02 0.118918 0.105005 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0274903 0.0244864 146 60 64 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 7.90 vpr 65.20 MiB 0.02 7376 -1 -1 1 0.03 -1 -1 33840 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 26.7 MiB 0.37 934 18323 6450 8556 3317 65.2 MiB 0.13 0.00 3.6343 -123.732 -3.6343 3.6343 0.89 0.00054325 0.000495451 0.0466538 0.042526 30 2475 27 6.65987e+06 431052 526063. 1820.29 4.53 0.201831 0.176746 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0225048 0.0200104 142 54 64 32 56 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.05 vpr 64.97 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33696 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 26.3 MiB 0.21 832 15430 4777 8349 2304 65.0 MiB 0.12 0.00 2.83964 -101.748 -2.83964 2.83964 0.88 0.000497381 0.00045307 0.0373171 0.0339677 30 1919 16 6.65987e+06 380340 526063. 1820.29 0.91 0.0946678 0.0835342 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0197055 0.0175277 118 62 29 29 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.72 vpr 63.98 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33808 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65516 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 25.5 MiB 0.11 661 10835 3152 6204 1479 64.0 MiB 0.07 0.00 2.60038 -85.2282 -2.60038 2.60038 0.85 0.000359502 0.000327344 0.0250303 0.0227697 28 1412 25 6.65987e+06 190170 500653. 1732.36 0.88 0.0730392 0.0638841 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.25 0.04 0.11 -1 -1 0.25 0.0156192 0.0139134 85 29 24 24 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.18 vpr 64.79 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34052 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 26.0 MiB 0.24 855 13768 4604 7573 1591 64.8 MiB 0.11 0.00 3.94338 -122.155 -3.94338 3.94338 0.88 0.000465793 0.000426013 0.0413468 0.0377868 32 1948 20 6.65987e+06 202848 554710. 1919.41 0.93 0.102299 0.0903874 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.020609 0.0183677 113 55 31 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.22 vpr 65.21 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33672 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 26.4 MiB 0.19 1021 12248 3399 7922 927 65.2 MiB 0.11 0.00 3.9823 -134.861 -3.9823 3.9823 0.88 0.000533884 0.000486922 0.031666 0.0288795 26 2573 27 6.65987e+06 431052 477104. 1650.88 1.09 0.107172 0.0943872 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0264323 0.0233854 145 31 91 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.31 vpr 64.85 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 34116 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 26.5 MiB 0.33 1084 15644 4587 8678 2379 64.9 MiB 0.14 0.00 3.46744 -121.209 -3.46744 3.46744 0.84 0.000564945 0.000514413 0.0424707 0.0387403 32 2893 24 6.65987e+06 456408 554710. 1919.41 0.98 0.119786 0.105778 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.28 0.08 0.12 -1 -1 0.28 0.0296017 0.0261836 149 108 0 0 125 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.58 vpr 63.83 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 33868 -1 -1 17 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65364 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 25.4 MiB 0.15 410 10345 3142 6004 1199 63.8 MiB 0.05 0.00 2.61938 -68.655 -2.61938 2.61938 0.83 0.000306216 0.000277383 0.0220786 0.0200961 30 1108 22 6.65987e+06 215526 526063. 1820.29 0.81 0.059403 0.0520841 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.27 0.03 0.11 -1 -1 0.27 0.0127034 0.0112525 77 21 26 26 22 22 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.09 vpr 65.10 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34092 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 26.3 MiB 0.14 1123 11064 3077 6737 1250 65.1 MiB 0.11 0.00 4.10424 -135.549 -4.10424 4.10424 0.80 0.00049869 0.000453148 0.0331965 0.0303391 32 2636 25 6.65987e+06 253560 554710. 1919.41 1.05 0.10312 0.0910785 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0236574 0.0210853 137 -1 122 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.82 vpr 64.16 MiB 0.02 6748 -1 -1 1 0.03 -1 -1 33800 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65704 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 25.7 MiB 0.04 594 8553 1943 6358 252 64.2 MiB 0.06 0.00 2.22607 -81.0919 -2.22607 2.22607 0.89 0.000338784 0.000309379 0.0193278 0.0176982 28 1546 23 6.65987e+06 164814 500653. 1732.36 0.96 0.0636927 0.0560612 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.26 0.03 0.12 -1 -1 0.26 0.0120007 0.0107879 81 -1 53 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.13 vpr 65.19 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 34220 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 26.6 MiB 0.06 1112 19189 6002 11213 1974 65.2 MiB 0.16 0.00 4.06247 -140.472 -4.06247 4.06247 0.88 0.00055128 0.000509198 0.0489876 0.044658 32 2640 23 6.65987e+06 418374 554710. 1919.41 1.04 0.118453 0.104871 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0265307 0.0235236 151 21 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.17 vpr 65.00 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33580 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 26.4 MiB 0.14 1134 16059 4004 10217 1838 65.0 MiB 0.15 0.00 3.38184 -119.391 -3.38184 3.38184 0.90 0.000493854 0.000449001 0.0383404 0.0349651 30 2437 23 6.65987e+06 443730 526063. 1820.29 1.00 0.104537 0.0923317 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.29 0.06 0.13 -1 -1 0.29 0.0215816 0.019134 150 -1 124 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 8.37 vpr 65.11 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34008 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 26.9 MiB 0.13 1120 14463 4038 8924 1501 65.1 MiB 0.13 0.00 3.91784 -136.256 -3.91784 3.91784 0.90 0.000581637 0.000535203 0.0379912 0.0346051 28 2877 24 6.65987e+06 443730 500653. 1732.36 5.22 0.230311 0.200755 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.27 0.09 0.12 -1 -1 0.27 0.0295348 0.0260678 153 54 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.84 vpr 64.54 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33936 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 26.0 MiB 0.05 736 8191 2107 5347 737 64.5 MiB 0.07 0.00 2.8895 -100.047 -2.8895 2.8895 0.88 0.000444333 0.000404636 0.0238065 0.0217518 28 1959 23 6.65987e+06 190170 500653. 1732.36 0.92 0.0815292 0.0715916 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0194196 0.0172642 106 31 54 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.98 vpr 64.48 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33852 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 26.1 MiB 0.11 832 12156 3666 7026 1464 64.5 MiB 0.09 0.00 3.4951 -115.55 -3.4951 3.4951 0.90 0.00045056 0.000400588 0.0330611 0.0302218 32 1928 21 6.65987e+06 240882 554710. 1919.41 0.94 0.0893754 0.07902 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0205213 0.0181961 115 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.92 vpr 64.39 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 33900 -1 -1 20 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65940 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 25.8 MiB 0.13 590 7820 1903 5456 461 64.4 MiB 0.07 0.00 3.4309 -99.7277 -3.4309 3.4309 0.85 0.000404547 0.000369811 0.020444 0.0187424 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.02 0.0893711 0.0780792 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.28 0.06 0.12 -1 -1 0.28 0.0194568 0.0171747 107 27 56 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.51 vpr 64.96 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 34076 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66520 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 26.4 MiB 0.11 686 12008 2561 8162 1285 65.0 MiB 0.08 0.00 3.4859 -118.026 -3.4859 3.4859 0.88 0.000445902 0.000400362 0.0303315 0.0276442 32 2225 24 6.65987e+06 228204 554710. 1919.41 1.48 0.11232 0.0984973 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0222843 0.0196955 125 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.48 vpr 64.71 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 34104 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 26.3 MiB 0.07 778 11809 2809 7761 1239 64.7 MiB 0.10 0.00 3.29178 -109.233 -3.29178 3.29178 0.87 0.000451804 0.000411524 0.0273228 0.0249191 26 2453 37 6.65987e+06 393018 477104. 1650.88 1.58 0.0981991 0.0862565 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.24 0.07 0.10 -1 -1 0.24 0.0198907 0.0175572 119 26 61 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.03 vpr 64.55 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33448 -1 -1 30 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 25.9 MiB 0.23 717 8047 1725 5786 536 64.5 MiB 0.07 0.00 2.76744 -86.2128 -2.76744 2.76744 0.87 0.000456608 0.000415684 0.0201553 0.0183813 32 1839 18 6.65987e+06 380340 554710. 1919.41 0.92 0.0749066 0.0655956 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0196119 0.0173696 109 55 29 29 57 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 10.94 vpr 64.95 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 33860 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 26.8 MiB 0.30 1246 13117 3185 8526 1406 65.0 MiB 0.14 0.00 4.16036 -141.523 -4.16036 4.16036 0.88 0.000612426 0.000554793 0.0346251 0.0315008 26 4082 47 6.65987e+06 494442 477104. 1650.88 7.67 0.231269 0.202859 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.25 0.11 0.10 -1 -1 0.25 0.0279417 0.0249452 179 26 128 32 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.19 vpr 65.12 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33860 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 26.9 MiB 0.26 1041 9447 2232 6542 673 65.1 MiB 0.09 0.00 3.5061 -122.514 -3.5061 3.5061 0.87 0.000549694 0.000498454 0.025819 0.0234628 32 2399 23 6.65987e+06 443730 554710. 1919.41 0.98 0.0989469 0.0867638 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0251566 0.0224503 152 62 62 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.78 vpr 64.98 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33868 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 26.3 MiB 0.35 709 5599 957 4403 239 65.0 MiB 0.05 0.00 3.18838 -103.883 -3.18838 3.18838 0.87 0.000477781 0.000435994 0.0154937 0.0141806 26 2166 21 6.65987e+06 354984 477104. 1650.88 1.61 0.0809808 0.0706156 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0229494 0.0202201 113 77 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.25 vpr 64.81 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33824 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 26.1 MiB 0.26 1062 14541 4862 7202 2477 64.8 MiB 0.13 0.00 3.4921 -118.867 -3.4921 3.4921 0.88 0.0005509 0.000500961 0.045533 0.0415386 32 2506 18 6.65987e+06 266238 554710. 1919.41 0.97 0.111069 0.0982598 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0274361 0.0242981 148 59 60 30 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.29 vpr 65.07 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 33872 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 26.4 MiB 0.34 1075 7953 1851 5455 647 65.1 MiB 0.09 0.00 4.84238 -140.996 -4.84238 4.84238 0.89 0.000628029 0.00057532 0.0293773 0.0268181 30 2507 19 6.65987e+06 266238 526063. 1820.29 1.00 0.105714 0.093081 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0250756 0.0223536 149 111 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.22 vpr 64.89 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34032 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 26.4 MiB 0.43 977 8868 2457 6032 379 64.9 MiB 0.09 0.00 4.78027 -132.334 -4.78027 4.78027 0.84 0.000547421 0.000502023 0.0299308 0.0274539 30 2304 21 6.65987e+06 266238 526063. 1820.29 0.92 0.100743 0.0888803 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.27 0.05 0.11 -1 -1 0.27 0.0221218 0.0198382 143 86 31 31 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 7.34 vpr 64.83 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33684 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 26.7 MiB 0.25 1043 11922 3052 7896 974 64.8 MiB 0.11 0.00 3.40784 -114.93 -3.40784 3.40784 0.88 0.000544267 0.000493663 0.032138 0.0292317 26 2879 21 6.65987e+06 418374 477104. 1650.88 4.13 0.193794 0.168383 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.026466 0.0234298 146 58 60 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.03 vpr 64.63 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 34280 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1091 9903 2241 6952 710 64.6 MiB 0.09 0.00 3.91784 -134.792 -3.91784 3.91784 0.83 0.000515177 0.00046869 0.0265674 0.0241841 30 2568 27 6.65987e+06 443730 526063. 1820.29 1.06 0.103731 0.09101 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.30 0.07 0.13 -1 -1 0.30 0.0272071 0.0241557 154 42 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.59 vpr 65.56 MiB 0.02 7316 -1 -1 1 0.03 -1 -1 34104 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 27.3 MiB 0.27 1177 18648 4595 11838 2215 65.6 MiB 0.19 0.00 4.0593 -137.323 -4.0593 4.0593 0.89 0.000673718 0.000613976 0.0528425 0.0479916 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.21 0.141176 0.125105 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.28 0.08 0.13 -1 -1 0.28 0.0320533 0.0285318 184 91 62 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.94 vpr 64.25 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34008 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65788 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 25.9 MiB 0.11 685 11806 2914 7153 1739 64.2 MiB 0.09 0.00 3.55518 -111.493 -3.55518 3.55518 0.87 0.000411399 0.000372432 0.0311167 0.028422 32 2030 23 6.65987e+06 228204 554710. 1919.41 0.95 0.0887394 0.078136 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0201669 0.0178548 116 24 62 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.60 vpr 64.71 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33836 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 26.4 MiB 0.29 976 9675 2155 7053 467 64.7 MiB 0.09 0.00 4.0281 -131.561 -4.0281 4.0281 0.84 0.000532724 0.000479313 0.0253619 0.0231454 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.43 0.0993091 0.0869833 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0266525 0.0235068 150 59 62 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.16 vpr 65.32 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 34148 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 26.7 MiB 0.14 1040 11641 3109 7665 867 65.3 MiB 0.11 0.00 3.62624 -117.445 -3.62624 3.62624 0.88 0.000548808 0.0005008 0.031242 0.0284851 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.08 0.1039 0.0913284 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0234371 0.0208173 148 54 62 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.43 vpr 64.90 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33784 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 26.2 MiB 0.16 853 8685 1897 5601 1187 64.9 MiB 0.08 0.00 4.14936 -138.467 -4.14936 4.14936 0.88 0.000516109 0.000471296 0.0266083 0.0243332 32 3554 31 6.65987e+06 253560 554710. 1919.41 1.30 0.103047 0.0908477 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.29 0.10 0.13 -1 -1 0.29 0.0276086 0.0244338 150 -1 128 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.37 vpr 65.36 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33696 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66928 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 26.7 MiB 0.35 1097 11798 3144 7589 1065 65.4 MiB 0.12 0.00 3.29555 -116.715 -3.29555 3.29555 0.89 0.000581428 0.000530014 0.0327213 0.0298252 32 2610 28 6.65987e+06 431052 554710. 1919.41 1.00 0.110635 0.0971188 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0311909 0.0274101 145 81 25 25 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.32 vpr 65.03 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34132 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 26.8 MiB 0.33 1042 7623 1446 5778 399 65.0 MiB 0.09 0.00 3.5841 -121.365 -3.5841 3.5841 0.89 0.000577201 0.000525638 0.0215455 0.0196769 32 2739 23 6.65987e+06 443730 554710. 1919.41 1.02 0.0953511 0.0837949 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0248796 0.0221438 146 58 64 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.32 vpr 64.89 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33616 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 26.6 MiB 0.24 1118 19136 5296 11671 2169 64.9 MiB 0.17 0.00 3.42984 -118.83 -3.42984 3.42984 0.89 0.000561272 0.00051049 0.0494733 0.0450036 32 2579 24 6.65987e+06 469086 554710. 1919.41 1.01 0.124025 0.109488 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.026554 0.0235623 155 61 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.98 vpr 64.65 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 33876 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66200 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 26.4 MiB 0.06 1049 17883 5721 9099 3063 64.6 MiB 0.15 0.00 4.02327 -139.097 -4.02327 4.02327 0.84 0.000532207 0.000486264 0.0440044 0.0401855 32 2663 21 6.65987e+06 443730 554710. 1919.41 1.01 0.1129 0.100154 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.29 0.09 0.12 -1 -1 0.29 0.0275615 0.0244318 150 21 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.23 vpr 64.55 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 34088 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 26.3 MiB 0.15 1032 17491 4961 10150 2380 64.5 MiB 0.15 0.00 3.95704 -138.916 -3.95704 3.95704 0.88 0.000560689 0.000510792 0.0445769 0.040584 32 2565 23 6.65987e+06 469086 554710. 1919.41 1.01 0.117694 0.103807 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0276876 0.024457 153 50 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.39 vpr 64.87 MiB 0.02 7444 -1 -1 1 0.03 -1 -1 34152 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 26.5 MiB 0.37 1081 15859 4297 9232 2330 64.9 MiB 0.14 0.00 4.24338 -127.817 -4.24338 4.24338 0.90 0.000591524 0.000537706 0.0450794 0.0409058 28 2788 21 6.65987e+06 431052 500653. 1732.36 1.04 0.120302 0.105891 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.025554 0.0226747 145 110 0 0 122 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.24 vpr 65.15 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34088 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 26.9 MiB 0.24 1088 15822 4733 9518 1571 65.2 MiB 0.14 0.00 4.01118 -127.976 -4.01118 4.01118 0.88 0.000593366 0.000538651 0.0509087 0.0461673 32 2771 23 6.65987e+06 253560 554710. 1919.41 1.01 0.12284 0.108207 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.30 0.09 0.12 -1 -1 0.30 0.0282338 0.024838 149 86 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.85 vpr 64.55 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 34112 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 26.3 MiB 0.05 798 8401 2034 5819 548 64.6 MiB 0.08 0.00 3.27158 -111.236 -3.27158 3.27158 0.87 0.000467339 0.000420479 0.0200521 0.0182835 30 1935 19 6.65987e+06 380340 526063. 1820.29 0.92 0.0758046 0.0665708 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.021044 0.0185832 124 20 63 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.20 vpr 65.07 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33772 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 26.4 MiB 0.29 912 11830 3154 7792 884 65.1 MiB 0.10 0.00 3.41618 -118.934 -3.41618 3.41618 0.87 0.000492534 0.000448142 0.0359528 0.0328077 32 2244 21 6.65987e+06 228204 554710. 1919.41 0.97 0.0996992 0.0878527 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0234526 0.0207256 121 91 0 0 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.86 vpr 65.27 MiB 0.02 7280 -1 -1 1 0.04 -1 -1 34060 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 27.0 MiB 0.15 1362 14988 3862 9734 1392 65.3 MiB 0.14 0.00 4.6627 -159.741 -4.6627 4.6627 0.85 0.000662423 0.000600995 0.0403652 0.0364492 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.67 0.155569 0.135842 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.29 0.10 0.14 -1 -1 0.29 0.0322899 0.0286439 187 53 96 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.31 vpr 64.98 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34164 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 26.5 MiB 0.23 954 14567 4735 7432 2400 65.0 MiB 0.13 0.00 3.51422 -121.562 -3.51422 3.51422 0.88 0.000544227 0.000496895 0.0390583 0.0357182 32 2533 23 6.65987e+06 393018 554710. 1919.41 1.02 0.111283 0.0985793 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0263857 0.0235214 146 31 92 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.06 vpr 64.36 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 33460 -1 -1 30 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 26.0 MiB 0.11 839 17066 5534 9253 2279 64.4 MiB 0.13 0.00 3.49012 -114.14 -3.49012 3.49012 0.90 0.000447576 0.000408656 0.0392472 0.0357745 32 1859 23 6.65987e+06 380340 554710. 1919.41 0.95 0.0969037 0.0856026 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0223304 0.0196687 115 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.84 vpr 65.21 MiB 0.02 7620 -1 -1 1 0.04 -1 -1 34340 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 26.9 MiB 0.59 1333 18829 5161 11634 2034 65.2 MiB 0.18 0.00 4.64147 -157.361 -4.64147 4.64147 0.90 0.000658573 0.000595831 0.0534781 0.0484279 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.10 0.143297 0.126513 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0321997 0.028649 186 109 32 32 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.04 vpr 64.93 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 34168 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 26.6 MiB 0.24 1044 16340 4500 10034 1806 64.9 MiB 0.13 0.00 4.15932 -143.209 -4.15932 4.15932 0.85 0.000518194 0.000473959 0.0394936 0.0360961 28 2433 22 6.65987e+06 456408 500653. 1732.36 0.97 0.111669 0.0990902 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.020922 0.018715 151 31 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.13 vpr 64.96 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33904 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 26.3 MiB 0.05 722 13703 3609 8489 1605 65.0 MiB 0.11 0.00 3.4859 -117.474 -3.4859 3.4859 0.90 0.000443866 0.000404162 0.0303527 0.0276464 28 2223 23 6.65987e+06 393018 500653. 1732.36 1.12 0.0888959 0.0783375 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0209464 0.0185828 123 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.31 vpr 65.16 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34416 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 26.9 MiB 0.17 1337 12702 3419 8223 1060 65.2 MiB 0.13 0.00 4.90437 -166.477 -4.90437 4.90437 0.91 0.000615913 0.000560341 0.0349765 0.0318812 30 3011 23 6.65987e+06 519798 526063. 1820.29 1.08 0.117903 0.104041 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0290076 0.0258243 188 26 128 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.07 vpr 64.36 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 33884 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 26.0 MiB 0.13 852 11260 3935 5447 1878 64.4 MiB 0.08 0.00 3.4749 -119.679 -3.4749 3.4749 0.87 0.000440636 0.000400229 0.0293134 0.0266826 32 2124 48 6.65987e+06 202848 554710. 1919.41 1.08 0.0991691 0.086597 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0191235 0.0169423 121 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.00 vpr 64.21 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 33784 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65752 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 25.8 MiB 0.24 707 8073 1842 5622 609 64.2 MiB 0.07 0.00 3.47387 -110.471 -3.47387 3.47387 0.87 0.000502564 0.000464645 0.019049 0.0173971 28 1935 20 6.65987e+06 393018 500653. 1732.36 0.91 0.0737944 0.0647976 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0211571 0.0186949 113 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.21 vpr 65.07 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 34156 -1 -1 33 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 26.6 MiB 0.32 964 15856 4550 8712 2594 65.1 MiB 0.14 0.00 3.50895 -109.722 -3.50895 3.50895 0.88 0.000539059 0.000490317 0.0426645 0.0388025 30 2020 23 6.65987e+06 418374 526063. 1820.29 0.93 0.112193 0.0989375 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0231439 0.0205447 133 81 29 29 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.13 vpr 65.26 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34248 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66828 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 26.8 MiB 0.12 1002 7770 1874 5369 527 65.3 MiB 0.08 0.00 4.0593 -140.547 -4.0593 4.0593 0.88 0.000544709 0.000495546 0.0267487 0.0244975 32 2537 20 6.65987e+06 253560 554710. 1919.41 1.03 0.100533 0.0886473 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0291383 0.0259642 151 53 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.58 vpr 64.84 MiB 0.03 7364 -1 -1 1 0.03 -1 -1 34140 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 26.6 MiB 0.44 1039 19223 6359 10018 2846 64.8 MiB 0.16 0.00 4.06007 -140.169 -4.06007 4.06007 0.84 0.000564134 0.000511064 0.0513661 0.046578 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.13 0.128877 0.114215 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0269675 0.0239393 152 55 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.16 vpr 65.07 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34212 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 26.4 MiB 0.24 697 8614 1900 5774 940 65.1 MiB 0.08 0.00 3.41884 -114.043 -3.41884 3.41884 0.88 0.000500856 0.000455661 0.0226073 0.0206798 32 2062 22 6.65987e+06 380340 554710. 1919.41 0.97 0.0848176 0.0745444 22834 132086 -1 1629 21 1319 2115 153578 35885 2.86171 2.86171 -112.586 -2.86171 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0227654 0.0201646 120 55 32 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.03 vpr 64.62 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 34048 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 25.8 MiB 0.29 800 12464 4465 5577 2422 64.6 MiB 0.10 0.00 3.46898 -107.312 -3.46898 3.46898 0.85 0.000474946 0.000434008 0.0368083 0.0336643 32 1982 23 6.65987e+06 215526 554710. 1919.41 0.92 0.0991858 0.0876672 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.0236068 0.0208179 109 82 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.77 vpr 65.23 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34148 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 26.7 MiB 0.22 996 12623 3384 8308 931 65.2 MiB 0.11 0.00 3.33164 -109.888 -3.33164 3.33164 0.92 0.000557125 0.000511982 0.0338597 0.0307985 26 2507 31 6.65987e+06 418374 477104. 1650.88 1.61 0.116574 0.102632 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.023941 0.0212128 137 52 60 30 57 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.07 vpr 65.01 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33748 -1 -1 31 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 26.3 MiB 0.10 995 16207 5283 8775 2149 65.0 MiB 0.12 0.00 4.24344 -123.397 -4.24344 4.24344 0.92 0.000469678 0.000428612 0.0360234 0.0328971 28 2478 21 6.65987e+06 393018 500653. 1732.36 0.97 0.098542 0.0869853 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0236643 0.0210004 133 20 84 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.10 vpr 64.86 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 33860 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 26.0 MiB 0.33 727 13152 3808 7208 2136 64.9 MiB 0.10 0.00 3.5343 -112.204 -3.5343 3.5343 0.87 0.000458337 0.000407942 0.0366513 0.0332829 30 1865 21 6.65987e+06 228204 526063. 1820.29 0.92 0.0937449 0.082433 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0187399 0.0166137 114 58 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.08 vpr 65.00 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33600 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 26.4 MiB 0.30 910 8164 2057 5403 704 65.0 MiB 0.08 0.00 3.44398 -109.924 -3.44398 3.44398 0.87 0.000487259 0.000444188 0.0257227 0.0234813 30 1920 20 6.65987e+06 202848 526063. 1820.29 0.91 0.0872065 0.0765313 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0215648 0.0191327 113 88 0 0 91 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.47 vpr 64.94 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34020 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1101 12023 3143 7728 1152 64.9 MiB 0.11 0.00 4.17558 -139.576 -4.17558 4.17558 0.88 0.000513629 0.000469795 0.0299357 0.0273823 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.42 0.104167 0.0926762 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0232075 0.0206276 150 -1 124 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 6.39 vpr 65.13 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 34068 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 26.8 MiB 0.25 1037 13598 4125 8601 872 65.1 MiB 0.13 0.00 4.1263 -141.609 -4.1263 4.1263 0.88 0.000517628 0.000474012 0.0372896 0.03403 28 2566 22 6.65987e+06 431052 500653. 1732.36 3.11 0.202192 0.176164 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0274398 0.0243523 153 57 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.68 vpr 64.91 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33932 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 26.6 MiB 0.30 1033 10448 2380 7653 415 64.9 MiB 0.09 0.00 4.16458 -142.258 -4.16458 4.16458 0.82 0.000486106 0.000444324 0.0269813 0.0245345 28 3079 34 6.65987e+06 431052 500653. 1732.36 1.56 0.108535 0.0952544 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0242863 0.0215637 151 62 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.03 vpr 65.29 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34064 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66856 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 26.6 MiB 0.24 982 9031 1878 6401 752 65.3 MiB 0.09 0.00 3.86706 -126.941 -3.86706 3.86706 0.84 0.000535357 0.000487599 0.0238339 0.0217296 30 2443 22 6.65987e+06 469086 526063. 1820.29 0.97 0.0939187 0.0823576 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.27 0.06 0.11 -1 -1 0.27 0.0276458 0.0245605 148 62 60 30 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 6.25 vpr 64.31 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33720 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 26.0 MiB 0.20 656 10400 2388 7389 623 64.3 MiB 0.09 0.00 3.50927 -110.79 -3.50927 3.50927 0.87 0.000444248 0.00040537 0.0287471 0.0262948 28 2173 45 6.65987e+06 228204 500653. 1732.36 3.20 0.156059 0.135587 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0192551 0.0170952 112 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.26 vpr 65.12 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34092 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 26.4 MiB 0.26 986 11613 3437 7269 907 65.1 MiB 0.12 0.00 4.19776 -134.76 -4.19776 4.19776 0.88 0.000541575 0.000493167 0.0373483 0.0341301 32 2227 20 6.65987e+06 278916 554710. 1919.41 0.98 0.103814 0.0915751 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0250776 0.0221838 145 58 60 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.41 vpr 65.03 MiB 0.02 7512 -1 -1 1 0.04 -1 -1 33904 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 26.9 MiB 0.29 1052 13117 2855 8842 1420 65.0 MiB 0.11 0.00 3.91498 -132.986 -3.91498 3.91498 0.89 0.000624337 0.000569237 0.0359759 0.0327173 32 2892 25 6.65987e+06 494442 554710. 1919.41 1.06 0.117677 0.103377 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.29 0.10 0.13 -1 -1 0.29 0.0319297 0.0280472 154 106 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 6.25 vpr 65.15 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34064 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 26.9 MiB 0.21 1048 9679 2436 6757 486 65.2 MiB 0.10 0.00 3.91106 -131.073 -3.91106 3.91106 0.89 0.000579007 0.000527316 0.0294248 0.0268556 28 2624 22 6.65987e+06 393018 500653. 1732.36 3.11 0.186778 0.162402 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0272821 0.024228 146 79 31 31 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.08 vpr 65.29 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33820 -1 -1 30 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 26.7 MiB 0.31 967 14375 3613 8859 1903 65.3 MiB 0.12 0.00 3.7785 -114.4 -3.7785 3.7785 0.86 0.000486654 0.000442321 0.0390296 0.035462 30 2034 21 6.65987e+06 380340 526063. 1820.29 0.90 0.105942 0.0930645 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0225573 0.0200517 136 83 26 26 90 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.28 vpr 64.86 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34064 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 26.6 MiB 0.23 1103 13477 4009 7448 2020 64.9 MiB 0.13 0.00 4.11944 -143.283 -4.11944 4.11944 0.87 0.000539519 0.000491501 0.0427129 0.0389806 32 2896 23 6.65987e+06 266238 554710. 1919.41 1.05 0.115519 0.101951 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0263393 0.0233643 154 58 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.14 vpr 64.84 MiB 0.02 7316 -1 -1 1 0.03 -1 -1 33876 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 26.4 MiB 0.21 870 10463 2796 6767 900 64.8 MiB 0.10 0.00 3.39684 -102.663 -3.39684 3.39684 0.88 0.000535484 0.000488055 0.0285244 0.0260325 32 2139 21 6.65987e+06 431052 554710. 1919.41 0.97 0.0968689 0.0852101 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0246689 0.0219123 134 81 26 26 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.84 vpr 64.57 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33952 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66116 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 26.2 MiB 0.09 838 13496 3888 8529 1079 64.6 MiB 0.10 0.00 3.5031 -123.339 -3.5031 3.5031 0.84 0.000427918 0.000391274 0.0361308 0.03313 32 2175 23 6.65987e+06 202848 554710. 1919.41 0.94 0.0909631 0.0806752 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.0207549 0.0184104 116 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.36 vpr 64.84 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34156 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 26.7 MiB 0.34 1015 16525 5345 8784 2396 64.8 MiB 0.15 0.00 4.18856 -142.192 -4.18856 4.18856 0.87 0.000568547 0.000519358 0.0456641 0.041504 32 2598 23 6.65987e+06 418374 554710. 1919.41 1.03 0.119681 0.105605 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0281937 0.0249127 150 62 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.33 vpr 64.91 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33956 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 26.6 MiB 0.27 1026 16081 4881 8736 2464 64.9 MiB 0.15 0.00 4.23393 -146.239 -4.23393 4.23393 0.87 0.000548324 0.000502959 0.0511011 0.0467036 32 2633 23 6.65987e+06 266238 554710. 1919.41 1.02 0.124124 0.109966 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0275327 0.0243505 157 62 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.82 vpr 64.80 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 33704 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 26.0 MiB 0.23 688 16683 5557 7719 3407 64.8 MiB 0.11 0.00 3.44878 -105.048 -3.44878 3.44878 0.89 0.000464253 0.000422386 0.0383314 0.0348742 30 2275 33 6.65987e+06 367662 526063. 1820.29 1.66 0.110828 0.0977998 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0221738 0.0195566 111 47 32 32 54 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.01 vpr 64.35 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33968 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65892 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 25.8 MiB 0.11 746 13556 4162 7429 1965 64.3 MiB 0.11 0.00 3.4529 -114.38 -3.4529 3.4529 0.89 0.000431257 0.000397029 0.0356867 0.0326333 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.95 0.0911015 0.0805612 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0187805 0.0167382 118 -1 93 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.12 vpr 64.99 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33728 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 26.3 MiB 0.30 900 5133 854 4121 158 65.0 MiB 0.05 0.00 4.0123 -128.007 -4.0123 4.0123 0.87 0.000570665 0.000518203 0.0144125 0.0131625 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.96 0.0800249 0.0697902 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0234856 0.0207749 138 56 60 32 58 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.30 vpr 64.84 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33972 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 26.6 MiB 0.26 879 9892 2434 7009 449 64.8 MiB 0.10 0.00 4.11224 -123.302 -4.11224 4.11224 0.89 0.000533259 0.000477477 0.0286804 0.0261274 28 2733 50 6.65987e+06 380340 500653. 1732.36 2.06 0.132099 0.115625 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0269887 0.0238486 134 81 28 28 88 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 6.54 vpr 65.06 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33964 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 26.9 MiB 0.06 1224 16515 4921 9863 1731 65.1 MiB 0.16 0.00 4.82096 -159.28 -4.82096 4.82096 0.89 0.000598014 0.000545302 0.0453137 0.0414304 34 3026 21 6.65987e+06 443730 585099. 2024.56 3.39 0.207111 0.1811 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.29 0.08 0.13 -1 -1 0.29 0.0281019 0.0250348 177 -1 156 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.22 vpr 65.27 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 34212 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66832 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 26.5 MiB 0.29 1012 13726 3606 8436 1684 65.3 MiB 0.12 0.00 3.638 -113.448 -3.638 3.638 0.87 0.000509264 0.000460572 0.0363071 0.0331041 32 2171 21 6.65987e+06 405696 554710. 1919.41 0.95 0.101763 0.0895315 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0235329 0.0208375 136 47 60 30 56 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.96 vpr 64.58 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 34064 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66128 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 26.1 MiB 0.11 768 12754 4322 6521 1911 64.6 MiB 0.09 0.00 3.3979 -99.6122 -3.3979 3.3979 0.89 0.000398853 0.000362805 0.0329061 0.0300883 32 1581 21 6.65987e+06 253560 554710. 1919.41 0.93 0.0849829 0.0752088 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.020927 0.0184713 107 26 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.24 vpr 65.21 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 34052 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 26.9 MiB 0.20 1366 15232 4128 9656 1448 65.2 MiB 0.15 0.00 4.15924 -136.806 -4.15924 4.15924 0.84 0.000676207 0.000614693 0.0419893 0.0382216 32 3584 25 6.65987e+06 507120 554710. 1919.41 1.07 0.13295 0.117637 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.28 0.11 0.12 -1 -1 0.28 0.0352007 0.0313298 184 85 62 31 95 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.23 vpr 65.38 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34136 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 26.7 MiB 0.34 999 12894 3350 8149 1395 65.4 MiB 0.11 0.00 4.3007 -134.868 -4.3007 4.3007 0.85 0.000482011 0.00043886 0.0417113 0.0379988 32 2741 23 6.65987e+06 266238 554710. 1919.41 0.99 0.116086 0.102327 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.28 0.08 0.12 -1 -1 0.28 0.0287059 0.0253708 144 105 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.11 vpr 64.62 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33796 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 25.8 MiB 0.32 739 9540 2469 6056 1015 64.6 MiB 0.08 0.00 3.43298 -108.977 -3.43298 3.43298 0.88 0.000479176 0.000436226 0.0293261 0.0268039 28 1956 23 6.65987e+06 202848 500653. 1732.36 0.92 0.0925266 0.0813549 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0243302 0.0213915 109 86 0 0 89 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.06 vpr 64.82 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33988 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 26.3 MiB 0.11 1126 15645 4217 9584 1844 64.8 MiB 0.14 0.00 4.2677 -137.429 -4.2677 4.2677 0.88 0.00051992 0.000463862 0.0400512 0.0364346 28 2607 21 6.65987e+06 405696 500653. 1732.36 1.00 0.108445 0.0958258 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0229474 0.0204705 146 31 90 30 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.12 vpr 65.26 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34256 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66828 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 27.1 MiB 0.15 1167 13551 3218 9177 1156 65.3 MiB 0.13 0.00 4.22766 -133.836 -4.22766 4.22766 0.87 0.000554449 0.000502252 0.0367963 0.0333767 32 2713 24 6.65987e+06 456408 554710. 1919.41 0.99 0.112951 0.0992153 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0275697 0.0245218 171 50 87 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.66 vpr 65.16 MiB 0.02 7460 -1 -1 1 0.03 -1 -1 33960 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 26.6 MiB 0.12 1070 11111 2802 7426 883 65.2 MiB 0.10 0.00 3.62941 -110.797 -3.62941 3.62941 0.90 0.000521269 0.000471369 0.0295748 0.0269917 26 2917 46 6.65987e+06 418374 477104. 1650.88 1.58 0.124171 0.109125 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0233806 0.0207405 134 50 58 30 58 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.26 vpr 64.75 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33920 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 26.4 MiB 0.25 1074 12606 3053 8336 1217 64.7 MiB 0.12 0.00 4.0783 -140.694 -4.0783 4.0783 0.89 0.00056913 0.000517819 0.0313786 0.0285518 30 2464 23 6.65987e+06 532476 526063. 1820.29 1.04 0.106612 0.0938609 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0279665 0.024707 157 61 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.24 vpr 65.03 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 34124 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 26.8 MiB 0.25 985 6766 1235 5165 366 65.0 MiB 0.07 0.00 3.41884 -116.445 -3.41884 3.41884 0.89 0.00058348 0.00051771 0.0192749 0.0176027 28 2716 20 6.65987e+06 481764 500653. 1732.36 1.03 0.0925733 0.0811221 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0301401 0.0266402 155 61 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.92 vpr 64.61 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33948 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 26.1 MiB 0.14 502 12791 3342 7797 1652 64.6 MiB 0.08 0.00 3.7595 -104.343 -3.7595 3.7595 0.87 0.000418701 0.000379331 0.0353557 0.0322501 32 1548 18 6.65987e+06 202848 554710. 1919.41 0.91 0.0877933 0.0775079 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0195138 0.0172563 93 28 58 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.23 vpr 64.93 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 34164 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 26.1 MiB 0.32 872 14431 4553 8297 1581 64.9 MiB 0.11 0.00 3.69338 -109.525 -3.69338 3.69338 0.89 0.000466859 0.000424262 0.0417834 0.0382021 32 1973 19 6.65987e+06 215526 554710. 1919.41 0.95 0.10132 0.0897006 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0219085 0.0194427 111 79 0 0 82 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.30 vpr 64.88 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 33944 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 26.5 MiB 0.14 973 15876 4279 9893 1704 64.9 MiB 0.15 0.00 4.55701 -136.44 -4.55701 4.55701 0.88 0.0005358 0.000484231 0.0384261 0.0350489 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.14 0.115327 0.101665 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0257638 0.0228611 150 29 93 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.64 vpr 64.52 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33960 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66068 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 25.9 MiB 0.29 621 11063 2736 7707 620 64.5 MiB 0.09 0.00 3.58224 -95.8028 -3.58224 3.58224 0.90 0.000440358 0.00040166 0.0252749 0.0230014 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.47 0.093494 0.0819749 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.24 0.05 0.11 -1 -1 0.24 0.0182458 0.0161422 108 48 29 29 52 26 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 6.11 vpr 65.03 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33912 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 26.2 MiB 0.20 823 7992 1920 5681 391 65.0 MiB 0.08 0.00 3.5141 -118.56 -3.5141 3.5141 0.85 0.000458156 0.000418909 0.0238479 0.0218877 34 2038 19 6.65987e+06 202848 585099. 2024.56 3.09 0.142892 0.124124 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.30 0.06 0.13 -1 -1 0.30 0.0212169 0.0188942 119 31 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.22 vpr 65.26 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33676 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 26.7 MiB 0.24 1001 11955 3102 7859 994 65.3 MiB 0.11 0.00 3.4951 -117.77 -3.4951 3.4951 0.89 0.000542204 0.000495358 0.0316611 0.0288193 26 2363 24 6.65987e+06 456408 477104. 1650.88 1.02 0.104916 0.0923445 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0252374 0.0224396 142 60 58 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.19 vpr 64.98 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 33688 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 26.2 MiB 0.32 876 12923 4161 7145 1617 65.0 MiB 0.10 0.00 3.11304 -101.32 -3.11304 3.11304 0.88 0.000445552 0.000405285 0.0367082 0.033566 32 1966 17 6.65987e+06 202848 554710. 1919.41 0.93 0.0909034 0.0805513 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0191822 0.0170602 105 49 31 31 53 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.21 vpr 64.89 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 33684 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 26.2 MiB 0.23 929 17616 5738 7949 3929 64.9 MiB 0.11 0.00 3.3979 -111.1 -3.3979 3.3979 0.87 0.000487398 0.000440421 0.0428669 0.0388773 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.02 0.156276 0.136924 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.31 0.07 0.13 -1 -1 0.31 0.0245836 0.0217876 136 56 52 26 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.68 vpr 65.01 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 34100 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 26.7 MiB 0.73 965 17427 4981 9867 2579 65.0 MiB 0.15 0.00 3.7445 -120.758 -3.7445 3.7445 0.88 0.000556009 0.000503813 0.0462224 0.0420219 28 2286 21 6.65987e+06 456408 500653. 1732.36 0.98 0.117873 0.103975 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0260179 0.0231191 148 88 31 31 92 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.10 vpr 64.71 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 34016 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 26.1 MiB 0.16 861 11652 3522 6006 2124 64.7 MiB 0.10 0.00 2.81844 -100.349 -2.81844 2.81844 0.88 0.000472275 0.000429846 0.0335612 0.0306844 32 2079 23 6.65987e+06 228204 554710. 1919.41 0.98 0.099114 0.0874367 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0229319 0.0203406 115 54 32 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.47 vpr 65.09 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33724 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 26.4 MiB 0.30 667 7380 1595 4913 872 65.1 MiB 0.06 0.00 3.38184 -112.707 -3.38184 3.38184 0.87 0.000476022 0.000433484 0.0218597 0.0199986 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.29 0.100723 0.0879562 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0225106 0.0199373 121 60 32 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.16 vpr 64.81 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34376 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 26.5 MiB 0.14 1042 12164 2979 8000 1185 64.8 MiB 0.11 0.00 4.02524 -139.262 -4.02524 4.02524 0.89 0.000529013 0.000480814 0.03242 0.0294746 28 2653 23 6.65987e+06 456408 500653. 1732.36 1.05 0.106951 0.0941624 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.25 0.07 0.12 -1 -1 0.25 0.0249988 0.0221751 154 49 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.22 vpr 65.07 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34108 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66628 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 26.2 MiB 0.24 968 17313 5602 9212 2499 65.1 MiB 0.14 0.00 3.57304 -105.57 -3.57304 3.57304 0.89 0.000522073 0.000477524 0.0459222 0.0419222 32 2179 18 6.65987e+06 405696 554710. 1919.41 0.95 0.110055 0.0975661 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0255367 0.0226335 133 54 56 29 58 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.39 vpr 64.95 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 34132 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 26.5 MiB 0.35 1004 11616 2968 7911 737 64.9 MiB 0.12 0.00 3.97241 -135.454 -3.97241 3.97241 0.88 0.00060957 0.000556209 0.0343117 0.0311435 32 2756 22 6.65987e+06 469086 554710. 1919.41 1.02 0.111815 0.0981185 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0297886 0.0262524 156 117 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.76 vpr 64.36 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33952 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 25.9 MiB 0.11 715 5825 1215 4401 209 64.4 MiB 0.05 0.00 2.9397 -97.4988 -2.9397 2.9397 0.86 0.000397299 0.000359682 0.0149849 0.0136903 30 1705 18 6.65987e+06 202848 526063. 1820.29 0.88 0.0627888 0.054975 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.29 0.04 0.11 -1 -1 0.29 0.01798 0.0159218 105 -1 85 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.19 vpr 65.20 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34064 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 26.6 MiB 0.18 948 20077 6167 11074 2836 65.2 MiB 0.17 0.00 4.10497 -133.778 -4.10497 4.10497 0.88 0.000564107 0.00051387 0.0546856 0.0497235 32 2340 22 6.65987e+06 418374 554710. 1919.41 0.98 0.128905 0.114176 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0258322 0.0229918 142 89 28 28 92 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 6.25 vpr 64.64 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 33876 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 26.0 MiB 0.21 805 9196 3450 4876 870 64.6 MiB 0.08 0.00 3.54047 -120.422 -3.54047 3.54047 0.84 0.000501502 0.000457225 0.0297691 0.0272754 30 2070 21 6.65987e+06 202848 526063. 1820.29 3.24 0.183366 0.160277 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0216193 0.0192711 115 93 0 0 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.29 vpr 64.92 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33968 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 26.6 MiB 0.27 1002 18111 5520 9663 2928 64.9 MiB 0.15 0.00 3.45184 -118.995 -3.45184 3.45184 0.88 0.00055781 0.000508287 0.0475934 0.043435 32 2572 22 6.65987e+06 443730 554710. 1919.41 0.99 0.120064 0.106289 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0278628 0.0245935 149 59 61 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 6.37 vpr 65.32 MiB 0.02 7420 -1 -1 1 0.04 -1 -1 34476 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66892 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 27.0 MiB 0.37 1201 15034 3694 9653 1687 65.3 MiB 0.14 0.00 4.6905 -158.567 -4.6905 4.6905 0.88 0.000630904 0.000572145 0.0409455 0.037272 26 3501 45 6.65987e+06 545154 477104. 1650.88 2.97 0.155913 0.137222 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.25 0.12 0.11 -1 -1 0.25 0.0371949 0.0327791 186 81 64 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.18 vpr 63.88 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33548 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65412 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 25.3 MiB 0.21 532 10509 2640 7460 409 63.9 MiB 0.07 0.00 2.61752 -80.0454 -2.61752 2.61752 0.90 0.000372975 0.000340107 0.0257472 0.0234591 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.14 0.0772449 0.0679482 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.25 0.04 0.11 -1 -1 0.25 0.016381 0.0144022 83 51 0 0 53 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.85 vpr 64.38 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33968 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 25.8 MiB 0.10 758 10536 3415 5493 1628 64.4 MiB 0.08 0.00 3.52904 -110.224 -3.52904 3.52904 0.87 0.000447944 0.000404863 0.0281568 0.0256045 32 1744 20 6.65987e+06 202848 554710. 1919.41 0.91 0.0805729 0.070703 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0184878 0.0163813 96 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.06 vpr 64.99 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 33448 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 26.4 MiB 0.11 856 9872 2316 7018 538 65.0 MiB 0.09 0.00 3.4859 -122.574 -3.4859 3.4859 0.88 0.000469673 0.000429067 0.0278593 0.0254925 32 2373 21 6.65987e+06 228204 554710. 1919.41 1.00 0.0881872 0.0778346 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0219702 0.0194578 126 31 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.59 vpr 64.11 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33804 -1 -1 34 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65648 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 25.6 MiB 0.06 696 13351 3608 8032 1711 64.1 MiB 0.09 0.00 3.32684 -88.9535 -3.32684 3.32684 0.84 0.00038623 0.000353682 0.0261772 0.0239268 26 1641 17 6.65987e+06 431052 477104. 1650.88 0.82 0.0719137 0.0634419 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.24 0.05 0.10 -1 -1 0.24 0.0167614 0.0147693 103 19 50 25 25 25 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.41 vpr 65.32 MiB 0.02 7472 -1 -1 1 0.03 -1 -1 33952 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 26.7 MiB 0.27 877 14541 4608 7775 2158 65.3 MiB 0.14 0.00 4.02035 -125.217 -4.02035 4.02035 0.89 0.000591617 0.000533456 0.0498703 0.0454795 32 2783 25 6.65987e+06 253560 554710. 1919.41 1.08 0.130552 0.115359 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0293083 0.0259893 147 84 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.28 vpr 64.92 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33924 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 26.6 MiB 0.21 938 18660 5414 10450 2796 64.9 MiB 0.16 0.00 3.4903 -116.326 -3.4903 3.4903 0.88 0.000574684 0.000525267 0.048975 0.0446382 32 2461 21 6.65987e+06 469086 554710. 1919.41 1.00 0.121517 0.107501 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0281204 0.0249088 146 88 29 29 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 10.30 vpr 66.04 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34312 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67620 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 27.4 MiB 0.97 758 13949 4789 6835 2325 66.0 MiB 0.10 0.00 3.74419 -135.496 -3.74419 3.74419 0.91 0.000584541 0.000534914 0.0445963 0.0406494 58 1960 26 6.95648e+06 361892 997811. 3452.63 5.92 0.235194 0.204386 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.47 0.07 0.26 -1 -1 0.47 0.0269961 0.0239628 84 80 32 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 21.12 vpr 65.87 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 33968 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67448 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 27.2 MiB 2.14 807 12716 4975 6082 1659 65.9 MiB 0.10 0.00 3.9478 -130.518 -3.9478 3.9478 0.92 0.000559529 0.000508702 0.046635 0.0424514 48 2407 29 6.95648e+06 202660 865456. 2994.66 15.73 0.348173 0.304141 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.38 0.10 0.19 -1 -1 0.38 0.0286205 0.0251841 76 78 30 30 89 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.19 vpr 65.82 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34052 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67400 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 27.2 MiB 0.78 1022 7103 1835 4569 699 65.8 MiB 0.06 0.00 3.60914 -132.635 -3.60914 3.60914 0.90 0.000518919 0.000473106 0.0233492 0.021314 44 2666 29 6.95648e+06 275038 787024. 2723.27 4.26 0.201086 0.173779 27778 195446 -1 2250 23 1533 2295 200856 39573 3.61236 3.61236 -138.488 -3.61236 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.026381 0.0232987 77 50 54 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 8.64 vpr 65.63 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33720 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67208 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 27.3 MiB 0.42 752 10672 3799 5216 1657 65.6 MiB 0.08 0.00 4.001 -128.21 -4.001 4.001 0.89 0.000477968 0.0004357 0.0346497 0.0316989 44 2696 27 6.95648e+06 231611 787024. 2723.27 5.04 0.221224 0.192227 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0271355 0.0240344 75 25 87 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 21.46 vpr 65.56 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 33768 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 27.1 MiB 0.61 716 9857 3295 4764 1798 65.6 MiB 0.08 0.00 3.66789 -133.791 -3.66789 3.66789 0.89 0.000544497 0.000495476 0.0354193 0.0322851 56 2163 40 6.95648e+06 188184 973134. 3367.25 17.57 0.295717 0.256969 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.44 0.09 0.25 -1 -1 0.44 0.0278353 0.0247025 78 31 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 9.03 vpr 65.75 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33872 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 27.0 MiB 0.38 727 15003 5272 7155 2576 65.8 MiB 0.09 0.00 3.0985 -114.166 -3.0985 3.0985 0.89 0.000509985 0.000458609 0.0399456 0.0361337 50 2136 19 6.95648e+06 419795 902133. 3121.57 5.46 0.247252 0.213744 28642 213929 -1 1754 22 1586 2186 206551 45703 3.30627 3.30627 -120.736 -3.30627 0 0 1.08113e+06 3740.92 0.41 0.08 0.19 -1 -1 0.41 0.0266962 0.0235986 89 61 63 32 63 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 9.55 vpr 65.00 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33892 -1 -1 14 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 26.6 MiB 4.09 451 8433 2993 4087 1353 65.0 MiB 0.06 0.00 3.26916 -93.4177 -3.26916 3.26916 0.86 0.000411466 0.00037661 0.0241101 0.022092 40 1397 46 6.95648e+06 202660 706193. 2443.58 2.57 0.131066 0.114414 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.34 0.05 0.16 -1 -1 0.34 0.0183523 0.0162807 54 26 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 6.06 vpr 65.24 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33948 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 26.9 MiB 0.59 722 11088 4563 6076 449 65.2 MiB 0.08 0.00 3.0394 -105.493 -3.0394 3.0394 0.90 0.000464625 0.000424445 0.0330046 0.030192 46 2382 26 6.95648e+06 246087 828058. 2865.25 2.33 0.13135 0.114916 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0249209 0.0220339 77 -1 115 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 6.86 vpr 65.50 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33732 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67072 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 26.8 MiB 1.65 523 9994 2759 5612 1623 65.5 MiB 0.07 0.00 3.10275 -98.727 -3.10275 3.10275 0.87 0.000386454 0.000353364 0.0298542 0.0272654 44 1758 37 6.95648e+06 159232 787024. 2723.27 2.16 0.120912 0.105389 27778 195446 -1 1221 28 1030 1579 151807 48946 2.99482 2.99482 -105.632 -2.99482 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0260563 0.0228578 57 81 0 0 84 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.95 vpr 65.43 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33932 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 27.0 MiB 0.85 638 10614 4216 4843 1555 65.4 MiB 0.08 0.00 2.95005 -114.898 -2.95005 2.95005 0.92 0.000456733 0.000407518 0.0333673 0.0304048 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.99 0.158507 0.139408 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0223829 0.0198667 62 31 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.99 vpr 65.43 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33620 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 26.7 MiB 1.81 651 11079 4648 6085 346 65.4 MiB 0.08 0.00 3.1095 -111.937 -3.1095 3.1095 0.92 0.000457351 0.000415834 0.0358169 0.0326726 38 1744 25 6.95648e+06 173708 678818. 2348.85 2.10 0.138813 0.121457 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0214555 0.018994 60 58 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 13.93 vpr 65.71 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 33664 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67292 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 27.0 MiB 0.84 540 10476 4331 5741 404 65.7 MiB 0.07 0.00 2.9793 -106.716 -2.9793 2.9793 0.90 0.00046513 0.000417548 0.0335598 0.0306913 50 1707 47 6.95648e+06 173708 902133. 3121.57 9.92 0.276265 0.240381 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.41 0.06 0.21 -1 -1 0.41 0.0211934 0.0188764 60 57 25 25 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.40 vpr 65.77 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 34000 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 27.1 MiB 1.22 751 11803 3277 6504 2022 65.8 MiB 0.09 0.00 3.1024 -116.565 -3.1024 3.1024 0.90 0.000493826 0.000449303 0.035793 0.0325782 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.05 0.152923 0.13386 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.39 0.07 0.18 -1 -1 0.39 0.0242422 0.0215167 79 55 64 32 57 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 18.52 vpr 65.95 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33824 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67532 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 27.1 MiB 0.89 832 16371 6652 7990 1729 65.9 MiB 0.12 0.00 3.72719 -138.885 -3.72719 3.72719 0.91 0.000576585 0.000524705 0.0481929 0.0438677 40 2769 48 6.95648e+06 376368 706193. 2443.58 14.43 0.324626 0.281092 26914 176310 -1 2281 20 2007 2799 309109 71324 4.39516 4.39516 -161.353 -4.39516 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0258148 0.0229275 87 60 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 9.19 vpr 65.12 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 34028 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 26.7 MiB 1.22 465 11234 4544 5569 1121 65.1 MiB 0.07 0.00 3.14676 -95.8879 -3.14676 3.14676 0.90 0.000411217 0.00037327 0.0317537 0.0290405 46 1613 28 6.95648e+06 188184 828058. 2865.25 4.86 0.180072 0.155365 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.37 0.06 0.20 -1 -1 0.37 0.0233562 0.0205224 58 21 58 29 24 24 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 7.27 vpr 65.74 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33844 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 27.2 MiB 1.72 807 11813 5009 6533 271 65.7 MiB 0.10 0.00 3.1505 -120.688 -3.1505 3.1505 0.89 0.000548574 0.000499238 0.0433984 0.0396765 46 2437 23 6.95648e+06 188184 828058. 2865.25 2.36 0.163744 0.14349 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.38 0.09 0.19 -1 -1 0.38 0.0298045 0.0263129 77 60 64 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 7.17 vpr 65.91 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33904 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67496 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 27.2 MiB 1.38 707 11064 3419 5711 1934 65.9 MiB 0.08 0.00 3.0804 -113.837 -3.0804 3.0804 0.92 0.000560872 0.000507975 0.0360678 0.0328785 46 2393 47 6.95648e+06 289514 828058. 2865.25 2.62 0.169464 0.148198 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.37 0.06 0.18 -1 -1 0.37 0.0240038 0.0212719 78 54 64 32 56 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 8.82 vpr 65.77 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33400 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 27.0 MiB 0.72 574 10698 2981 5511 2206 65.8 MiB 0.06 0.00 2.43656 -93.1005 -2.43656 2.43656 0.84 0.000491165 0.000445172 0.0283118 0.0258348 48 1509 24 6.95648e+06 289514 865456. 2994.66 5.07 0.217842 0.187044 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.41 0.06 0.19 -1 -1 0.41 0.0228825 0.0202074 67 62 29 29 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.26 vpr 64.55 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33612 -1 -1 10 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 26.2 MiB 0.39 450 11098 4789 5936 373 64.5 MiB 0.06 0.00 2.21746 -80.6728 -2.21746 2.21746 0.90 0.000365294 0.000332694 0.0272708 0.024913 36 1377 32 6.95648e+06 144757 648988. 2245.63 1.90 0.110662 0.096407 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0171236 0.0146784 45 29 24 24 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.79 vpr 65.43 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 34208 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 26.6 MiB 1.22 525 9374 3845 5090 439 65.4 MiB 0.07 0.00 3.8254 -127.041 -3.8254 3.8254 0.90 0.000474589 0.000432731 0.0311776 0.0283978 46 1860 48 6.95648e+06 159232 828058. 2865.25 3.45 0.168862 0.148138 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0263017 0.0231675 61 55 31 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 7.28 vpr 65.98 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33728 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67564 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 27.3 MiB 0.46 664 13663 4054 7770 1839 66.0 MiB 0.10 0.00 3.70954 -128.174 -3.70954 3.70954 0.89 0.000509588 0.00046439 0.0411696 0.037572 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.64 0.16639 0.145478 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.38 0.07 0.19 -1 -1 0.38 0.0250721 0.0222986 81 31 91 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 9.49 vpr 66.22 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34216 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67808 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 27.5 MiB 1.10 791 14779 5223 7361 2195 66.2 MiB 0.11 0.00 3.66119 -126.81 -3.66119 3.66119 0.88 0.00052411 0.000474755 0.043879 0.0397075 48 2442 23 6.95648e+06 390843 865456. 2994.66 5.18 0.232958 0.20229 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.41 0.09 0.19 -1 -1 0.41 0.0307956 0.0272374 85 108 0 0 125 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.13 vpr 64.66 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 33968 -1 -1 13 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 26.4 MiB 1.07 348 7809 2770 3912 1127 64.7 MiB 0.04 0.00 2.19726 -66.8557 -2.19726 2.19726 0.90 0.000305175 0.000278749 0.0180493 0.0165368 46 937 48 6.95648e+06 188184 828058. 2865.25 2.07 0.0972481 0.0841855 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.38 0.03 0.20 -1 -1 0.38 0.0123581 0.010992 44 21 26 26 22 22 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.46 vpr 65.54 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33636 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 27.2 MiB 0.96 737 10316 4241 5568 507 65.5 MiB 0.08 0.00 4.02534 -135.509 -4.02534 4.02534 0.91 0.000501366 0.00044425 0.0345184 0.0315378 48 2419 30 6.95648e+06 173708 865456. 2994.66 2.97 0.151051 0.133163 28354 207349 -1 1970 49 3641 5913 1247564 597467 4.02741 4.02741 -146.507 -4.02741 0 0 1.05005e+06 3633.38 0.42 0.38 0.20 -1 -1 0.42 0.049863 0.0438618 74 -1 122 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.02 vpr 64.87 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 34008 -1 -1 8 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 26.6 MiB 0.33 731 9906 3689 5081 1136 64.9 MiB 0.06 0.00 2.15326 -87.6492 -2.15326 2.15326 0.91 0.000329727 0.000300149 0.0239509 0.0218814 34 1791 46 6.95648e+06 115805 618332. 2139.56 1.75 0.099981 0.0872108 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.31 0.04 0.15 -1 -1 0.31 0.0130759 0.0117239 44 -1 53 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 18.56 vpr 65.49 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 34120 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67060 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 27.0 MiB 0.55 827 16371 5667 8716 1988 65.5 MiB 0.12 0.00 3.67409 -135.23 -3.67409 3.67409 0.91 0.000521718 0.00047175 0.0459531 0.0417053 40 2687 28 6.95648e+06 376368 706193. 2443.58 14.75 0.32019 0.280959 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.34 0.17 0.16 -1 -1 0.34 0.0340929 0.0301942 85 21 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 15.26 vpr 65.89 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 34124 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67468 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 27.3 MiB 0.29 985 13754 4254 7657 1843 65.9 MiB 0.10 0.00 3.0955 -119.852 -3.0955 3.0955 0.90 0.000509548 0.000463498 0.0362031 0.033036 36 2880 44 6.95648e+06 405319 648988. 2245.63 11.86 0.254116 0.220685 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0224759 0.0200037 87 -1 124 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.93 vpr 66.02 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33956 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67604 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 27.2 MiB 0.39 789 18308 6099 10070 2139 66.0 MiB 0.14 0.00 3.69663 -134.61 -3.69663 3.69663 0.90 0.000583106 0.000531613 0.0531056 0.0482124 46 2780 28 6.95648e+06 405319 828058. 2865.25 5.26 0.24746 0.21522 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.027531 0.0244188 87 54 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 7.39 vpr 65.34 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33984 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 26.9 MiB 0.95 541 9374 3087 4731 1556 65.3 MiB 0.07 0.00 2.8982 -102.358 -2.8982 2.8982 0.89 0.000424891 0.000387469 0.028255 0.0258197 38 2009 38 6.95648e+06 144757 678818. 2348.85 3.42 0.136821 0.119092 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0221318 0.0195456 57 31 54 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.71 vpr 65.20 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33824 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 26.7 MiB 0.62 571 8444 3466 4635 343 65.2 MiB 0.06 0.00 3.1175 -112.058 -3.1175 3.1175 0.91 0.000432041 0.000394621 0.0257814 0.0236112 40 1947 30 6.95648e+06 173708 706193. 2443.58 2.03 0.11968 0.104135 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.0213903 0.0189009 60 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 6.29 vpr 65.18 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 33900 -1 -1 13 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 26.7 MiB 0.67 505 10257 3681 4972 1604 65.2 MiB 0.07 0.00 3.0435 -97.9378 -3.0435 3.0435 0.91 0.000419674 0.000384423 0.0306916 0.0280794 44 1727 27 6.95648e+06 188184 787024. 2723.27 2.50 0.131847 0.115717 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0184678 0.0164154 61 27 56 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.97 vpr 65.35 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33884 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 26.9 MiB 0.22 703 9374 3895 5319 160 65.4 MiB 0.07 0.00 2.93285 -116.414 -2.93285 2.93285 0.92 0.000428766 0.000388528 0.0287803 0.0263198 44 2101 25 6.95648e+06 144757 787024. 2723.27 2.58 0.138959 0.122236 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.023199 0.0205384 64 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 15.11 vpr 65.38 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 34028 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66944 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 26.8 MiB 0.24 623 13443 5605 7395 443 65.4 MiB 0.08 0.00 3.0955 -111.973 -3.0955 3.0955 0.90 0.00040441 0.000368209 0.032688 0.0298679 44 2077 38 6.95648e+06 303989 787024. 2723.27 11.78 0.246961 0.213535 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.36 0.06 0.17 -1 -1 0.36 0.020622 0.018166 68 26 61 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 6.35 vpr 65.55 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33928 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 27.0 MiB 0.83 508 10219 3550 4648 2021 65.6 MiB 0.07 0.00 2.43392 -85.0275 -2.43392 2.43392 0.91 0.000438909 0.000399514 0.0288048 0.0263274 46 1411 35 6.95648e+06 260562 828058. 2865.25 2.39 0.134937 0.117545 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0216472 0.0191201 64 55 29 29 57 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 9.48 vpr 66.20 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34040 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67784 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 27.6 MiB 0.73 944 14375 4687 7097 2591 66.2 MiB 0.11 0.00 3.95585 -140.771 -3.95585 3.95585 0.92 0.000613013 0.000557473 0.0440354 0.0401368 54 2725 29 6.95648e+06 405319 949917. 3286.91 5.39 0.27176 0.237311 29506 232905 -1 2082 21 1977 3135 234047 51401 4.37502 4.37502 -152.214 -4.37502 0 0 1.17392e+06 4061.99 0.45 0.09 0.23 -1 -1 0.45 0.0293175 0.0260599 100 26 128 32 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 7.17 vpr 65.91 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34048 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67492 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 27.2 MiB 0.89 786 12739 3070 7853 1816 65.9 MiB 0.10 0.00 3.0804 -115.407 -3.0804 3.0804 0.90 0.000569016 0.000519496 0.0372647 0.0340382 40 2423 28 6.95648e+06 390843 706193. 2443.58 3.08 0.16557 0.144726 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.35 0.13 0.17 -1 -1 0.35 0.0330829 0.0291177 87 62 62 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.83 vpr 65.86 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 34044 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 27.1 MiB 1.06 525 12362 5188 6715 459 65.9 MiB 0.09 0.00 3.26916 -109.722 -3.26916 3.26916 0.92 0.000487592 0.000443293 0.0392192 0.0358099 50 1653 27 6.95648e+06 217135 902133. 3121.57 4.52 0.197495 0.171185 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.45 0.05 0.21 -1 -1 0.45 0.019249 0.0172344 62 77 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 6.60 vpr 65.51 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34024 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 26.8 MiB 0.63 965 12791 5492 6957 342 65.5 MiB 0.10 0.00 3.0625 -116.847 -3.0625 3.0625 0.92 0.000544348 0.000495265 0.04559 0.0415886 38 2599 23 6.95648e+06 202660 678818. 2348.85 2.79 0.178933 0.157708 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.025061 0.0223125 79 59 60 30 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 8.60 vpr 66.01 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 34120 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 27.3 MiB 1.95 778 10998 4559 6059 380 66.0 MiB 0.09 0.00 4.63397 -149.774 -4.63397 4.63397 0.90 0.000610539 0.000551757 0.0413361 0.0375655 44 2926 36 6.95648e+06 202660 787024. 2723.27 3.47 0.192746 0.168618 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0302801 0.026833 78 111 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 10.08 vpr 65.93 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33860 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67508 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 27.1 MiB 1.64 775 10476 3672 5136 1668 65.9 MiB 0.09 0.00 4.49354 -135.009 -4.49354 4.49354 0.91 0.000545283 0.000496945 0.0387172 0.0353793 44 2669 43 6.95648e+06 188184 787024. 2723.27 5.24 0.267238 0.231643 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0310729 0.0274036 76 86 31 31 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 15.81 vpr 65.83 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33664 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67408 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 27.2 MiB 0.79 864 15493 5631 7761 2101 65.8 MiB 0.11 0.00 3.1285 -114.829 -3.1285 3.1285 0.91 0.000534837 0.000486926 0.0461548 0.0421505 38 2848 26 6.95648e+06 361892 678818. 2348.85 11.76 0.293273 0.257529 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0266246 0.0236271 85 58 60 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 6.28 vpr 66.11 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 33964 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67696 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 27.3 MiB 0.52 956 10743 3793 5013 1937 66.1 MiB 0.09 0.00 3.77119 -139.239 -3.77119 3.77119 0.90 0.000543089 0.000494573 0.031759 0.0289594 44 2711 27 6.95648e+06 376368 787024. 2723.27 2.56 0.140296 0.122544 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0286522 0.0252944 86 42 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 9.01 vpr 65.84 MiB 0.02 7484 -1 -1 1 0.04 -1 -1 33936 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67420 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 27.5 MiB 0.96 1078 14999 4071 8495 2433 65.8 MiB 0.12 0.00 3.84845 -142.865 -3.84845 3.84845 0.92 0.000665522 0.000605577 0.0482029 0.0437718 44 2899 21 6.95648e+06 448746 787024. 2723.27 4.72 0.283066 0.247148 27778 195446 -1 2379 24 2205 3293 259534 52402 4.12562 4.12562 -153.524 -4.12562 0 0 997811. 3452.63 0.40 0.10 0.18 -1 -1 0.40 0.0353271 0.031296 104 91 62 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 7.23 vpr 65.44 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33736 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 26.9 MiB 0.62 721 10304 4339 5695 270 65.4 MiB 0.07 0.00 3.34916 -121.065 -3.34916 3.34916 0.91 0.00043704 0.000398558 0.0317128 0.0289574 36 2215 27 6.95648e+06 159232 648988. 2245.63 3.58 0.13579 0.118727 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0212741 0.0188696 62 24 62 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 9.13 vpr 66.04 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33876 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67624 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 27.3 MiB 0.60 784 13959 3819 8017 2123 66.0 MiB 0.11 0.00 4.0519 -136.516 -4.0519 4.0519 0.92 0.000533282 0.000484586 0.0401118 0.0365181 48 2294 26 6.95648e+06 390843 865456. 2994.66 5.26 0.227918 0.198122 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.41 0.08 0.19 -1 -1 0.41 0.0253026 0.0224585 86 59 62 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 7.29 vpr 65.95 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33728 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67536 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 27.2 MiB 0.76 863 13557 4887 6407 2263 66.0 MiB 0.09 0.00 3.29596 -116.543 -3.29596 3.29596 0.90 0.000580312 0.000511391 0.0381388 0.0346185 50 2481 26 6.95648e+06 376368 902133. 3121.57 3.18 0.167096 0.146357 28642 213929 -1 1941 42 2097 3578 542152 243437 3.19817 3.19817 -117.898 -3.19817 0 0 1.08113e+06 3740.92 0.42 0.20 0.20 -1 -1 0.42 0.0440818 0.0383743 85 54 62 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.87 vpr 65.66 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33540 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67236 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 27.0 MiB 0.89 760 7738 3134 4374 230 65.7 MiB 0.07 0.00 3.65689 -135.736 -3.65689 3.65689 0.92 0.000511726 0.000465628 0.0270091 0.0247276 44 3266 47 6.95648e+06 188184 787024. 2723.27 4.71 0.170661 0.150678 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.39 0.11 0.19 -1 -1 0.39 0.027532 0.0245085 78 -1 128 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.52 vpr 65.90 MiB 0.03 7224 -1 -1 1 0.03 -1 -1 33892 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67484 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 27.2 MiB 1.52 808 11991 3810 6067 2114 65.9 MiB 0.09 0.00 3.1768 -117.392 -3.1768 3.1768 0.91 0.000560271 0.000509384 0.0380928 0.0347721 46 2159 29 6.95648e+06 332941 828058. 2865.25 2.76 0.174343 0.152734 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.39 0.06 0.20 -1 -1 0.39 0.0258242 0.0229088 81 81 25 25 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 6.43 vpr 65.76 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33840 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 27.3 MiB 0.81 845 12926 3665 7173 2088 65.8 MiB 0.10 0.00 3.1214 -116.244 -3.1214 3.1214 0.92 0.000517422 0.000464094 0.0365844 0.0332968 46 2291 24 6.95648e+06 405319 828058. 2865.25 2.37 0.16769 0.147224 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.40 0.07 0.19 -1 -1 0.40 0.0284109 0.0251579 85 58 64 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 8.80 vpr 65.91 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 33848 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 27.1 MiB 0.50 803 14996 4547 7782 2667 65.9 MiB 0.11 0.00 3.09676 -115.471 -3.09676 3.09676 0.91 0.000525537 0.00047721 0.0427677 0.0388658 46 2386 25 6.95648e+06 405319 828058. 2865.25 5.07 0.226066 0.196622 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.37 0.07 0.20 -1 -1 0.37 0.0264881 0.0234861 88 61 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 6.81 vpr 65.78 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34036 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 27.2 MiB 0.60 938 15617 5888 7604 2125 65.8 MiB 0.12 0.00 3.66789 -137.042 -3.66789 3.66789 0.89 0.000512825 0.000465045 0.0425614 0.0388075 44 2729 48 6.95648e+06 405319 787024. 2723.27 2.99 0.159347 0.139735 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0272696 0.0241321 85 21 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 14.67 vpr 66.24 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34276 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67832 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 27.5 MiB 0.90 799 12448 3955 5788 2705 66.2 MiB 0.08 0.00 3.78219 -138.337 -3.78219 3.78219 0.91 0.000575782 0.000523467 0.0338859 0.0308759 44 2633 42 6.95648e+06 434271 787024. 2723.27 10.52 0.271779 0.23577 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0280807 0.0249232 88 50 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 9.78 vpr 65.88 MiB 0.02 7572 -1 -1 1 0.03 -1 -1 34088 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67464 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 27.2 MiB 1.27 822 11983 4768 6508 707 65.9 MiB 0.10 0.00 4.19045 -134.89 -4.19045 4.19045 0.93 0.000602648 0.000541001 0.0397464 0.0362306 48 2637 22 6.95648e+06 361892 865456. 2994.66 5.21 0.242071 0.20971 28354 207349 -1 2137 24 1540 2402 225363 46826 4.04142 4.04142 -139.672 -4.04142 0 0 1.05005e+06 3633.38 0.39 0.08 0.20 -1 -1 0.39 0.0307982 0.0271415 84 110 0 0 122 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 7.42 vpr 66.19 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 34104 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67776 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 27.4 MiB 1.07 840 10346 3694 5398 1254 66.2 MiB 0.09 0.00 3.7688 -130.649 -3.7688 3.7688 0.90 0.00048487 0.000441477 0.0399701 0.0362563 40 2535 24 6.95648e+06 188184 706193. 2443.58 3.18 0.176627 0.154558 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0304679 0.0270867 78 86 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 9.38 vpr 65.16 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 34224 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 26.7 MiB 0.16 594 10647 4341 5910 396 65.2 MiB 0.07 0.00 3.12656 -113.614 -3.12656 3.12656 0.90 0.000403088 0.000367128 0.0266898 0.0242127 56 1741 22 6.95648e+06 332941 973134. 3367.25 6.01 0.199056 0.172763 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.46 0.06 0.23 -1 -1 0.46 0.0202348 0.0179507 71 20 63 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 9.61 vpr 65.77 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33520 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 27.0 MiB 1.00 610 8444 3495 4676 273 65.8 MiB 0.06 0.00 3.0405 -112.422 -3.0405 3.0405 0.94 0.000517793 0.000471539 0.0301635 0.027555 52 1849 26 6.95648e+06 144757 926341. 3205.33 5.35 0.199004 0.172338 29218 227130 -1 1370 23 1369 2031 153581 37136 3.03252 3.03252 -119.471 -3.03252 0 0 1.14541e+06 3963.36 0.44 0.07 0.22 -1 -1 0.44 0.0254903 0.0225269 63 91 0 0 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.66 vpr 65.86 MiB 0.02 7512 -1 -1 1 0.03 -1 -1 34196 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 27.5 MiB 0.55 1000 14152 3772 8188 2192 65.9 MiB 0.12 0.00 4.46224 -157.711 -4.46224 4.46224 0.89 0.000638678 0.000579193 0.0461698 0.0420225 54 3033 30 6.95648e+06 434271 949917. 3286.91 5.74 0.246065 0.21388 29506 232905 -1 2329 24 2607 4128 362524 74061 4.97191 4.97191 -169.58 -4.97191 0 0 1.17392e+06 4061.99 0.43 0.11 0.23 -1 -1 0.43 0.0343133 0.0304132 103 53 96 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 6.76 vpr 65.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34084 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67340 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 27.1 MiB 0.87 717 11983 4638 6220 1125 65.8 MiB 0.08 0.00 3.1457 -117.079 -3.1457 3.1457 0.89 0.000516198 0.000469238 0.0346455 0.0316602 46 2078 38 6.95648e+06 347416 828058. 2865.25 2.73 0.165004 0.144081 28066 200906 -1 1635 20 1426 1856 150168 34567 3.22337 3.22337 -123.095 -3.22337 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0241405 0.0214218 83 31 92 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 7.09 vpr 65.13 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33564 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 26.6 MiB 0.34 571 10581 4367 5776 438 65.1 MiB 0.07 0.00 3.0735 -108.432 -3.0735 3.0735 0.90 0.000456591 0.000423678 0.0280688 0.025651 38 2214 32 6.95648e+06 275038 678818. 2348.85 3.68 0.135906 0.118475 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.020706 0.0184091 65 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 8.55 vpr 66.14 MiB 0.02 7572 -1 -1 1 0.04 -1 -1 34584 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67724 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 27.7 MiB 1.71 1126 15215 3732 10105 1378 66.1 MiB 0.13 0.00 4.49524 -160.999 -4.49524 4.49524 0.93 0.000633096 0.000572456 0.0507071 0.0460644 64 2603 22 6.95648e+06 448746 1.08113e+06 3740.92 3.25 0.212316 0.187141 31522 276338 -1 2323 24 2383 3561 336579 68033 4.75731 4.75731 -169.715 -4.75731 0 0 1.36325e+06 4717.13 0.54 0.11 0.28 -1 -1 0.54 0.0371427 0.032978 103 109 32 32 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 9.30 vpr 65.71 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33816 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67284 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 27.0 MiB 1.02 804 14375 4842 7223 2310 65.7 MiB 0.10 0.00 3.73321 -136.441 -3.73321 3.73321 0.90 0.000521656 0.000472843 0.0396019 0.0359481 40 2325 28 6.95648e+06 405319 706193. 2443.58 5.13 0.241091 0.210151 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.35 0.09 0.18 -1 -1 0.35 0.025699 0.0227558 86 31 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.92 vpr 65.39 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 33760 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 26.9 MiB 0.29 740 12763 4452 6451 1860 65.4 MiB 0.09 0.00 3.05815 -117.559 -3.05815 3.05815 0.87 0.000426925 0.000392453 0.0302885 0.0276811 44 2104 25 6.95648e+06 347416 787024. 2723.27 2.52 0.128204 0.112258 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.37 0.06 0.20 -1 -1 0.37 0.0208123 0.0184328 70 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 8.33 vpr 65.81 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34424 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67392 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 27.5 MiB 0.43 924 14567 5045 6877 2645 65.8 MiB 0.11 0.00 4.52824 -159.979 -4.52824 4.52824 0.88 0.000624456 0.000563258 0.0421571 0.0381541 54 3003 36 6.95648e+06 448746 949917. 3286.91 4.59 0.20322 0.178903 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.45 0.11 0.22 -1 -1 0.45 0.0312074 0.0277271 105 26 128 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 8.07 vpr 65.19 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 33852 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 26.7 MiB 0.35 618 10614 4475 5915 224 65.2 MiB 0.07 0.00 2.92185 -113.699 -2.92185 2.92185 0.83 0.000434084 0.000396106 0.0297658 0.0271878 46 1828 25 6.95648e+06 144757 828058. 2865.25 4.72 0.180029 0.155477 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0220206 0.019484 62 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 9.19 vpr 65.41 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 33832 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 26.9 MiB 0.77 601 10163 2708 5873 1582 65.4 MiB 0.07 0.00 3.10776 -107.419 -3.10776 3.10776 0.92 0.00043964 0.000399533 0.0274357 0.0250394 52 1508 25 6.95648e+06 303989 926341. 3205.33 5.20 0.168908 0.146337 29218 227130 -1 1108 22 1138 1745 119544 29707 3.03987 3.03987 -107.252 -3.03987 0 0 1.14541e+06 3963.36 0.44 0.06 0.23 -1 -1 0.44 0.0215377 0.0190591 65 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 8.28 vpr 65.89 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34040 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 27.2 MiB 1.33 705 12856 4698 6070 2088 65.9 MiB 0.10 0.00 3.39446 -107.671 -3.39446 3.39446 0.91 0.000533072 0.000485492 0.0436384 0.0399188 48 2602 41 6.95648e+06 289514 865456. 2994.66 3.70 0.186486 0.163689 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.41 0.08 0.20 -1 -1 0.41 0.0257027 0.022882 77 81 29 29 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 8.35 vpr 65.75 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 34180 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67324 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 27.1 MiB 0.88 807 13117 5264 6347 1506 65.7 MiB 0.11 0.00 3.65689 -136.729 -3.65689 3.65689 0.90 0.000564913 0.000515801 0.0486175 0.0443453 46 2061 24 6.95648e+06 188184 828058. 2865.25 4.24 0.226669 0.197322 28066 200906 -1 1777 22 2020 2624 211029 44669 3.92996 3.92996 -145.52 -3.92996 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0281616 0.0250326 78 53 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 9.83 vpr 66.12 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34332 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67704 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 27.4 MiB 1.39 890 14345 5510 6931 1904 66.1 MiB 0.09 0.00 3.74419 -138.408 -3.74419 3.74419 0.87 0.000461734 0.000421606 0.038362 0.0350269 48 2618 24 6.95648e+06 361892 865456. 2994.66 5.21 0.214389 0.18585 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.42 0.12 0.20 -1 -1 0.42 0.030573 0.0271026 85 55 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 6.58 vpr 65.32 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 34032 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 26.5 MiB 0.96 685 10813 4185 5763 865 65.3 MiB 0.07 0.00 3.05815 -117.015 -3.05815 3.05815 0.88 0.000443559 0.000401408 0.0284683 0.0258946 44 2023 47 6.95648e+06 347416 787024. 2723.27 2.56 0.155151 0.135086 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.38 0.07 0.17 -1 -1 0.38 0.0220236 0.0193976 69 55 32 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 8.79 vpr 65.57 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33800 -1 -1 10 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67140 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 27.1 MiB 1.47 684 10105 3894 4557 1654 65.6 MiB 0.08 0.00 3.30215 -110.841 -3.30215 3.30215 0.89 0.000475512 0.000433956 0.0339065 0.0309594 36 2232 46 6.95648e+06 144757 648988. 2245.63 4.32 0.210904 0.182095 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0228733 0.0201712 59 82 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 8.34 vpr 66.01 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34092 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 27.3 MiB 0.94 949 12711 4087 6844 1780 66.0 MiB 0.10 0.00 3.1285 -115.995 -3.1285 3.1285 0.91 0.000537114 0.000490432 0.0397916 0.0363629 44 2370 24 6.95648e+06 318465 787024. 2723.27 4.18 0.210051 0.182623 27778 195446 -1 1999 23 1494 2185 169757 35128 3.08567 3.08567 -121.174 -3.08567 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0269363 0.0237874 79 52 60 30 57 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 9.42 vpr 65.64 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 33928 -1 -1 16 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 27.0 MiB 0.93 684 10156 4202 5354 600 65.6 MiB 0.08 0.00 4.24545 -126.653 -4.24545 4.24545 0.91 0.000470865 0.000427504 0.0331649 0.030288 38 2620 28 6.95648e+06 231611 678818. 2348.85 5.39 0.146578 0.128069 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.33 0.08 0.17 -1 -1 0.33 0.0246175 0.0217558 74 20 84 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 11.29 vpr 65.37 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34032 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 26.9 MiB 0.75 607 9374 3879 5147 348 65.4 MiB 0.07 0.00 3.0545 -108.859 -3.0545 3.0545 0.85 0.00047173 0.000429385 0.0306456 0.0279424 38 1982 33 6.95648e+06 173708 678818. 2348.85 7.63 0.221017 0.191136 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.32 0.06 0.16 -1 -1 0.32 0.0235717 0.0207483 61 58 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 7.78 vpr 65.69 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33396 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67268 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 26.9 MiB 1.19 777 7669 3175 4304 190 65.7 MiB 0.06 0.00 3.0765 -113.072 -3.0765 3.0765 0.89 0.000505034 0.000459906 0.0261993 0.0239037 36 2390 29 6.95648e+06 144757 648988. 2245.63 3.56 0.14488 0.126199 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0256232 0.0226423 60 88 0 0 91 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 9.24 vpr 65.28 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33904 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 26.9 MiB 0.15 795 9448 3333 4743 1372 65.3 MiB 0.07 0.00 3.89245 -136.332 -3.89245 3.89245 0.92 0.000517763 0.000473523 0.027133 0.0248647 56 2239 22 6.95648e+06 361892 973134. 3367.25 5.76 0.209784 0.182568 29794 239141 -1 1953 18 1692 2646 265016 56826 4.16042 4.16042 -145.303 -4.16042 0 0 1.19926e+06 4149.71 0.45 0.08 0.24 -1 -1 0.45 0.0223973 0.0200428 86 -1 124 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 7.11 vpr 65.78 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34228 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 27.0 MiB 1.13 926 10495 2590 6894 1011 65.8 MiB 0.09 0.00 3.78219 -140.482 -3.78219 3.78219 0.85 0.000506691 0.000462463 0.0300546 0.0273741 44 2797 31 6.95648e+06 390843 787024. 2723.27 2.87 0.141085 0.123981 27778 195446 -1 2243 24 2072 3440 271776 53627 4.11966 4.11966 -151.056 -4.11966 0 0 997811. 3452.63 0.37 0.09 0.20 -1 -1 0.37 0.0296215 0.0259668 86 57 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 25.35 vpr 66.04 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33732 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67620 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 27.3 MiB 1.38 831 9336 3198 4890 1248 66.0 MiB 0.08 0.00 3.70819 -135.715 -3.70819 3.70819 0.91 0.000563543 0.000512715 0.0298531 0.0272422 46 2950 33 6.95648e+06 376368 828058. 2865.25 20.74 0.333645 0.290057 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.38 0.09 0.20 -1 -1 0.38 0.0291916 0.0258125 85 62 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.18 vpr 66.14 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33784 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67732 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 27.4 MiB 0.89 822 13351 4683 6743 1925 66.1 MiB 0.10 0.00 3.75544 -130.593 -3.75544 3.75544 0.89 0.000535765 0.000485647 0.0371459 0.0337027 48 3144 32 6.95648e+06 390843 865456. 2994.66 3.11 0.174629 0.152753 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.40 0.10 0.19 -1 -1 0.40 0.0267481 0.0235854 86 62 60 30 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 8.20 vpr 65.21 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33584 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 26.7 MiB 0.69 551 9064 3696 4990 378 65.2 MiB 0.06 0.00 3.29416 -111.889 -3.29416 3.29416 0.90 0.000438074 0.000400146 0.0276053 0.0252491 40 2106 28 6.95648e+06 173708 706193. 2443.58 4.47 0.18383 0.158883 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0208647 0.0184821 62 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 7.83 vpr 65.86 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 34000 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67440 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 27.2 MiB 0.74 751 12465 5336 6622 507 65.9 MiB 0.10 0.00 4.015 -133.992 -4.015 4.015 0.92 0.000569472 0.000517218 0.0444166 0.0405113 40 2442 42 6.95648e+06 217135 706193. 2443.58 3.90 0.187169 0.163958 26914 176310 -1 2067 34 2814 3819 356731 77169 4.26826 4.26826 -149.469 -4.26826 0 0 926341. 3205.33 0.34 0.11 0.17 -1 -1 0.34 0.0348429 0.0305626 78 58 60 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.99 vpr 66.09 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33852 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67680 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 27.4 MiB 1.34 807 14351 4061 7900 2390 66.1 MiB 0.11 0.00 3.71619 -135.355 -3.71619 3.71619 0.90 0.00058542 0.000531533 0.0431082 0.0391657 46 2908 40 6.95648e+06 448746 828058. 2865.25 4.39 0.200666 0.175619 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.38 0.09 0.19 -1 -1 0.38 0.0307631 0.0272263 88 106 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.13 vpr 65.91 MiB 0.02 7552 -1 -1 1 0.03 -1 -1 34044 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67492 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 27.2 MiB 0.96 718 14035 5965 7479 591 65.9 MiB 0.10 0.00 3.9948 -135.983 -3.9948 3.9948 0.89 0.000533872 0.000485326 0.0432325 0.0392447 46 2454 32 6.95648e+06 318465 828058. 2865.25 3.01 0.165993 0.145738 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0257779 0.0229884 81 79 31 31 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 9.84 vpr 66.02 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33852 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67604 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 27.3 MiB 1.57 700 13668 5834 7221 613 66.0 MiB 0.10 0.00 3.27591 -109.838 -3.27591 3.27591 0.86 0.000561295 0.000510662 0.0456415 0.04162 46 2600 45 6.95648e+06 260562 828058. 2865.25 5.23 0.251233 0.218303 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.36 0.08 0.18 -1 -1 0.36 0.0268893 0.0237616 75 83 26 26 90 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 8.20 vpr 66.02 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 34156 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67608 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 27.3 MiB 1.40 782 12628 3922 6830 1876 66.0 MiB 0.10 0.00 3.65989 -133.508 -3.65989 3.65989 0.86 0.000536422 0.000487727 0.0455044 0.0414291 48 2610 29 6.95648e+06 188184 865456. 2994.66 3.61 0.182187 0.160365 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.38 0.14 0.20 -1 -1 0.38 0.034457 0.0303483 81 58 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.69 vpr 65.59 MiB 0.02 7504 -1 -1 1 0.03 -1 -1 33888 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67160 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 27.1 MiB 1.06 662 10163 3749 4795 1619 65.6 MiB 0.07 0.00 3.14182 -102.393 -3.14182 3.14182 0.91 0.00051434 0.000465388 0.0325584 0.0296514 48 1906 29 6.95648e+06 318465 865456. 2994.66 2.43 0.135297 0.118025 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.40 0.09 0.21 -1 -1 0.40 0.0255453 0.0225665 77 81 26 26 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 10.03 vpr 65.24 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 34008 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 26.8 MiB 0.95 574 9219 3815 5040 364 65.2 MiB 0.06 0.00 2.94595 -112.182 -2.94595 2.94595 0.87 0.000416525 0.000379804 0.0276819 0.0253454 62 1582 28 6.95648e+06 144757 1.05005e+06 3633.38 5.91 0.166856 0.144657 30946 263737 -1 1177 19 1240 1905 137799 33305 3.13582 3.13582 -113.41 -3.13582 0 0 1.30136e+06 4502.97 0.47 0.06 0.26 -1 -1 0.47 0.0194258 0.0173659 61 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 12.28 vpr 65.94 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 33680 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67520 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 27.2 MiB 3.03 749 15688 6578 8529 581 65.9 MiB 0.11 0.00 3.77419 -136.605 -3.77419 3.77419 0.89 0.000520483 0.000471377 0.0457634 0.0415439 54 2315 29 6.95648e+06 347416 949917. 3286.91 5.97 0.245372 0.213558 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.43 0.08 0.23 -1 -1 0.43 0.0281393 0.0249365 84 62 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 6.21 vpr 65.82 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 34044 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67404 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 27.2 MiB 0.54 800 13117 5732 6986 399 65.8 MiB 0.10 0.00 3.79019 -142.199 -3.79019 3.79019 0.93 0.000548635 0.000498101 0.0475931 0.0433458 44 2724 46 6.95648e+06 188184 787024. 2723.27 2.41 0.185786 0.162982 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0276608 0.024601 81 62 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 6.56 vpr 65.75 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 34048 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 27.0 MiB 1.07 575 11609 4562 5941 1106 65.8 MiB 0.08 0.00 3.25495 -109.238 -3.25495 3.25495 0.87 0.000432946 0.000394361 0.034492 0.0315175 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.51 0.147357 0.128916 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.34 0.06 0.16 -1 -1 0.34 0.0211686 0.0187164 60 47 32 32 54 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.85 vpr 65.41 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 34136 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 26.9 MiB 0.28 835 9529 3959 5371 199 65.4 MiB 0.06 0.00 3.0815 -119.168 -3.0815 3.0815 0.92 0.000408073 0.00037045 0.0277687 0.0253629 38 2078 34 6.95648e+06 159232 678818. 2348.85 4.52 0.18282 0.158608 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0194149 0.0171186 63 -1 93 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 8.03 vpr 66.04 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 33928 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67620 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 27.3 MiB 1.21 782 14483 5692 6794 1997 66.0 MiB 0.11 0.00 3.70334 -129.205 -3.70334 3.70334 0.91 0.000538463 0.00048846 0.046828 0.04274 38 2558 24 6.95648e+06 275038 678818. 2348.85 3.69 0.171736 0.150844 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0235529 0.0209993 78 56 60 32 58 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 23.96 vpr 66.09 MiB 0.02 7484 -1 -1 1 0.03 -1 -1 34024 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67676 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 27.4 MiB 0.80 793 11474 4768 6294 412 66.1 MiB 0.08 0.00 3.90986 -132.869 -3.90986 3.90986 0.85 0.000452567 0.000411912 0.0347843 0.0317596 40 2890 43 6.95648e+06 260562 706193. 2443.58 20.07 0.3337 0.29048 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0275085 0.0242715 78 81 28 28 88 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 6.71 vpr 65.91 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33904 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 27.4 MiB 0.44 1152 4375 861 3334 180 65.9 MiB 0.05 0.00 4.48239 -161.071 -4.48239 4.48239 0.91 0.000586715 0.000536899 0.0154798 0.014253 46 3119 32 6.95648e+06 390843 828058. 2865.25 3.03 0.135427 0.118862 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.39 0.10 0.20 -1 -1 0.39 0.0283922 0.0254309 100 -1 156 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 9.40 vpr 65.63 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 34156 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67208 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 27.0 MiB 1.01 698 14528 6104 7488 936 65.6 MiB 0.11 0.00 3.34296 -113.702 -3.34296 3.34296 0.92 0.000539079 0.000491728 0.0466676 0.0426181 44 2314 27 6.95648e+06 260562 787024. 2723.27 5.16 0.225607 0.197219 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0276134 0.0242408 77 47 60 30 56 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 5.35 vpr 65.25 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33928 -1 -1 15 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 26.9 MiB 0.63 465 10459 4157 5359 943 65.3 MiB 0.06 0.00 3.15776 -95.8334 -3.15776 3.15776 0.90 0.000379318 0.000345609 0.0284738 0.0260376 38 1652 25 6.95648e+06 217135 678818. 2348.85 1.71 0.103685 0.0907459 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.34 0.04 0.16 -1 -1 0.34 0.017428 0.0155164 57 26 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 8.93 vpr 65.91 MiB 0.02 7304 -1 -1 1 0.04 -1 -1 34100 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 27.5 MiB 0.68 956 13513 4288 6425 2800 65.9 MiB 0.11 0.00 4.037 -139.704 -4.037 4.037 0.92 0.000646229 0.00057835 0.0439797 0.0400169 54 3228 47 6.95648e+06 434271 949917. 3286.91 4.83 0.273997 0.240737 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.45 0.11 0.23 -1 -1 0.45 0.0340852 0.0302054 103 85 62 31 95 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 9.74 vpr 66.23 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 34220 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67816 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 27.4 MiB 3.82 899 8716 2535 4990 1191 66.2 MiB 0.07 0.00 4.57784 -152.287 -4.57784 4.57784 0.88 0.000540779 0.000489846 0.0330197 0.0300433 40 2620 26 6.95648e+06 202660 706193. 2443.58 2.86 0.175389 0.153842 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0265506 0.0235031 79 105 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 16.34 vpr 65.32 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33744 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 26.6 MiB 2.89 500 11389 4353 5738 1298 65.3 MiB 0.08 0.00 3.0346 -106.135 -3.0346 3.0346 0.90 0.000480843 0.000437717 0.0378722 0.0345436 42 2142 50 6.95648e+06 144757 744469. 2576.02 10.38 0.283558 0.244452 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.36 0.06 0.18 -1 -1 0.36 0.0233288 0.0205887 58 86 0 0 89 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.97 vpr 65.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33800 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 27.1 MiB 0.43 819 12938 5293 7361 284 65.8 MiB 0.10 0.00 4.12326 -140.658 -4.12326 4.12326 0.92 0.000512075 0.000463967 0.0382315 0.0348358 46 2429 24 6.95648e+06 318465 828058. 2865.25 2.29 0.136978 0.120598 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0262903 0.0233031 83 31 90 30 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.38 vpr 66.39 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34364 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67988 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 27.7 MiB 0.86 852 12560 4728 5964 1868 66.4 MiB 0.10 0.00 4.1192 -140.393 -4.1192 4.1192 0.89 0.000583758 0.000530644 0.0417536 0.0380605 44 3193 49 6.95648e+06 332941 787024. 2723.27 2.33 0.171258 0.150148 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.37 0.08 0.20 -1 -1 0.37 0.0293587 0.0260121 95 50 87 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 9.56 vpr 65.84 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 33708 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67424 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 27.2 MiB 1.01 739 10762 4429 5782 551 65.8 MiB 0.08 0.00 3.27396 -108.751 -3.27396 3.27396 0.93 0.000530881 0.000484309 0.0349047 0.0319111 50 2308 30 6.95648e+06 289514 902133. 3121.57 5.28 0.209081 0.181506 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.41 0.08 0.21 -1 -1 0.41 0.0258978 0.0229216 78 50 58 30 58 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 6.45 vpr 65.85 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33824 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67428 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 27.1 MiB 0.44 907 15848 6161 8045 1642 65.8 MiB 0.10 0.00 3.79319 -139.401 -3.79319 3.79319 0.89 0.000524699 0.000478385 0.0402658 0.0364851 48 2368 36 6.95648e+06 492173 865456. 2994.66 2.79 0.164866 0.144315 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.41 0.11 0.19 -1 -1 0.41 0.0274894 0.0243521 91 61 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 6.40 vpr 65.82 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33860 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67400 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 27.1 MiB 0.47 794 15215 5485 7366 2364 65.8 MiB 0.11 0.00 3.05335 -116.88 -3.05335 3.05335 0.92 0.000581254 0.000527824 0.0426405 0.0386544 38 2664 32 6.95648e+06 448746 678818. 2348.85 2.74 0.169906 0.149265 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0283989 0.0250762 90 61 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 8.84 vpr 65.06 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33948 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 26.6 MiB 4.19 577 8599 3570 4706 323 65.1 MiB 0.06 0.00 3.17976 -103.796 -3.17976 3.17976 0.92 0.000450083 0.000410682 0.0261351 0.023895 34 1710 33 6.95648e+06 188184 618332. 2139.56 1.64 0.124607 0.108175 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0200694 0.0178012 56 28 58 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 6.36 vpr 65.46 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33892 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67036 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 26.7 MiB 0.83 584 9839 4132 5456 251 65.5 MiB 0.07 0.00 2.9814 -102.92 -2.9814 2.9814 0.91 0.000465134 0.000423182 0.0326453 0.0298454 42 1955 38 6.95648e+06 144757 744469. 2576.02 2.45 0.152744 0.134231 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.37 0.06 0.18 -1 -1 0.37 0.0203726 0.0180729 58 79 0 0 82 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 6.63 vpr 65.84 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 34100 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67420 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 27.1 MiB 0.41 743 12331 4128 5906 2297 65.8 MiB 0.08 0.00 4.24545 -140.476 -4.24545 4.24545 0.90 0.000513457 0.000466217 0.0343573 0.0312808 52 2318 48 6.95648e+06 405319 926341. 3205.33 2.95 0.165442 0.144353 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.43 0.08 0.23 -1 -1 0.43 0.023699 0.0209761 86 29 93 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.93 vpr 65.18 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 34052 -1 -1 14 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 26.7 MiB 1.11 494 12399 5297 6440 662 65.2 MiB 0.08 0.00 3.26295 -100.502 -3.26295 3.26295 0.89 0.000387313 0.000350149 0.0343376 0.0312344 40 2019 35 6.95648e+06 202660 706193. 2443.58 2.82 0.142509 0.12402 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.35 0.06 0.16 -1 -1 0.35 0.0203846 0.0179796 59 48 29 29 52 26 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 13.23 vpr 65.52 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 33716 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 27.1 MiB 1.10 698 10149 3910 5225 1014 65.5 MiB 0.07 0.00 3.05815 -118.306 -3.05815 3.05815 0.89 0.00045565 0.000416071 0.0322223 0.0294878 38 2191 39 6.95648e+06 144757 678818. 2348.85 9.09 0.232737 0.201727 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.021806 0.0192893 61 31 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 8.39 vpr 65.82 MiB 0.02 7444 -1 -1 1 0.03 -1 -1 33656 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67396 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 27.3 MiB 0.97 717 11607 3761 5813 2033 65.8 MiB 0.09 0.00 3.1175 -113.433 -3.1175 3.1175 0.93 0.000528658 0.000483963 0.0360728 0.0328563 44 1996 23 6.95648e+06 347416 787024. 2723.27 4.19 0.213348 0.185322 27778 195446 -1 1542 18 1591 2057 137516 32127 3.20637 3.20637 -119.126 -3.20637 0 0 997811. 3452.63 0.40 0.06 0.18 -1 -1 0.40 0.023726 0.0211323 82 60 58 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.26 vpr 65.28 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 33672 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 26.8 MiB 2.19 682 10459 3058 6921 480 65.3 MiB 0.07 0.00 3.13575 -104.344 -3.13575 3.13575 0.86 0.000403524 0.000369447 0.0284375 0.026052 36 1970 40 6.95648e+06 159232 648988. 2245.63 3.13 0.15396 0.135078 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0230432 0.0203737 57 49 31 31 53 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.78 vpr 65.75 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34100 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 27.1 MiB 1.47 710 12323 5117 6727 479 65.8 MiB 0.09 0.00 3.0155 -107.222 -3.0155 3.0155 0.89 0.000510379 0.000464785 0.0381378 0.034787 48 2125 29 6.95648e+06 275038 865456. 2994.66 2.12 0.137171 0.120175 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.39 0.07 0.21 -1 -1 0.39 0.0253124 0.0224915 76 56 52 26 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 7.00 vpr 65.77 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34108 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 27.1 MiB 1.24 717 15298 5325 7460 2513 65.8 MiB 0.11 0.00 3.41641 -118.296 -3.41641 3.41641 0.88 0.000533943 0.000482293 0.0450901 0.0408556 44 2443 41 6.95648e+06 361892 787024. 2723.27 2.65 0.188569 0.164492 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0259626 0.0229348 85 88 31 31 92 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 6.03 vpr 65.47 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33664 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 27.0 MiB 0.80 564 10149 3066 5426 1657 65.5 MiB 0.08 0.00 2.9023 -103.177 -2.9023 2.9023 0.89 0.00046514 0.000424183 0.032751 0.029938 44 2002 28 6.95648e+06 144757 787024. 2723.27 2.13 0.136701 0.119077 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0234856 0.0207132 61 54 32 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 9.58 vpr 65.53 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33616 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67100 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 27.0 MiB 0.88 611 8289 3413 4626 250 65.5 MiB 0.06 0.00 3.0515 -113.367 -3.0515 3.0515 0.89 0.000474648 0.00042961 0.0279468 0.0253964 52 1978 31 6.95648e+06 144757 926341. 3205.33 5.54 0.202189 0.174969 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.45 0.06 0.22 -1 -1 0.45 0.0238554 0.0211873 63 60 32 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.51 vpr 66.07 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 34424 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67660 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 27.3 MiB 0.82 951 8283 1857 5834 592 66.1 MiB 0.07 0.00 3.78219 -143.123 -3.78219 3.78219 0.84 0.000484235 0.000441693 0.022873 0.0208975 40 2477 25 6.95648e+06 419795 706193. 2443.58 3.60 0.147983 0.128766 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.34 0.13 0.18 -1 -1 0.34 0.033115 0.0292179 88 49 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.23 vpr 65.90 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 33896 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67484 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 27.2 MiB 0.93 739 8336 2662 4258 1416 65.9 MiB 0.07 0.00 3.1065 -104.923 -3.1065 3.1065 0.86 0.000501033 0.000457508 0.0273467 0.025065 38 2387 48 6.95648e+06 275038 678818. 2348.85 4.34 0.166932 0.145651 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.023609 0.0209644 77 54 56 29 58 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 25.94 vpr 66.22 MiB 0.02 7396 -1 -1 1 0.03 -1 -1 34308 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67808 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 27.6 MiB 1.41 819 16473 6066 7302 3105 66.2 MiB 0.12 0.00 3.81039 -138.347 -3.81039 3.81039 0.90 0.000610592 0.000553566 0.0514538 0.0467839 48 2605 47 6.95648e+06 419795 865456. 2994.66 21.20 0.413656 0.359938 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.40 0.13 0.20 -1 -1 0.40 0.036567 0.0321632 89 117 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.90 vpr 65.24 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33880 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 26.9 MiB 1.47 588 9529 3953 5280 296 65.2 MiB 0.06 0.00 3.02776 -101.68 -3.02776 3.02776 0.88 0.000374522 0.000339407 0.025593 0.0232647 38 2072 26 6.95648e+06 159232 678818. 2348.85 2.50 0.116585 0.101647 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.34 0.06 0.15 -1 -1 0.34 0.0193869 0.0170698 58 -1 85 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 7.11 vpr 65.64 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 34112 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 26.9 MiB 0.97 751 13335 4844 6817 1674 65.6 MiB 0.10 0.00 3.74945 -128.098 -3.74945 3.74945 0.88 0.000559463 0.0005098 0.0415669 0.0378551 50 2285 32 6.95648e+06 332941 902133. 3121.57 2.94 0.166518 0.145661 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.40 0.07 0.21 -1 -1 0.40 0.0270732 0.0239179 81 89 28 28 92 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.43 vpr 65.55 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33684 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 26.8 MiB 3.24 613 11854 5235 6332 287 65.6 MiB 0.09 0.00 2.96105 -113.67 -2.96105 2.96105 0.89 0.000494109 0.000449631 0.0408603 0.0372653 40 2066 46 6.95648e+06 144757 706193. 2443.58 3.10 0.174563 0.152207 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0270762 0.0238231 61 93 0 0 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 6.25 vpr 66.07 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33996 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67656 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 27.3 MiB 0.92 784 11983 4223 5778 1982 66.1 MiB 0.09 0.00 3.13882 -116.487 -3.13882 3.13882 0.86 0.000572881 0.000517925 0.0353133 0.0321784 48 2212 28 6.95648e+06 347416 865456. 2994.66 2.22 0.156318 0.136003 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.39 0.07 0.21 -1 -1 0.39 0.0270976 0.0239742 84 59 61 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 9.42 vpr 65.70 MiB 0.02 7404 -1 -1 1 0.04 -1 -1 34520 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67272 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 27.3 MiB 1.10 961 18301 6218 9454 2629 65.7 MiB 0.14 0.00 4.52824 -160.34 -4.52824 4.52824 0.87 0.000660928 0.000598541 0.0579874 0.052515 46 3150 41 6.95648e+06 477698 828058. 2865.25 5.12 0.222651 0.194996 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.36 0.09 0.20 -1 -1 0.36 0.0291546 0.025932 104 81 64 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.66 vpr 64.69 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 33740 -1 -1 10 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 26.3 MiB 0.45 395 8267 2975 4043 1249 64.7 MiB 0.05 0.00 2.20646 -76.6701 -2.20646 2.20646 0.88 0.000330688 0.000298623 0.0213395 0.0194023 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.31 0.115361 0.0998592 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.34 0.04 0.15 -1 -1 0.34 0.0172341 0.0151768 45 51 0 0 53 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 7.09 vpr 65.25 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 34072 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 26.8 MiB 2.07 505 9994 3801 4923 1270 65.2 MiB 0.07 0.00 3.20866 -106.336 -3.20866 3.20866 0.90 0.000443265 0.000404986 0.0304067 0.0278197 40 1597 24 6.95648e+06 173708 706193. 2443.58 1.95 0.128122 0.112084 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0233233 0.0205906 58 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 8.92 vpr 65.45 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33736 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 26.7 MiB 0.23 594 9219 3126 4706 1387 65.4 MiB 0.07 0.00 2.93285 -111.664 -2.93285 2.93285 0.93 0.000450823 0.000408234 0.0297625 0.0270856 52 1888 25 6.95648e+06 144757 926341. 3205.33 5.45 0.204615 0.177398 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.41 0.07 0.21 -1 -1 0.41 0.0238385 0.0210558 65 31 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 7.91 vpr 65.24 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34076 -1 -1 15 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 26.9 MiB 0.59 415 9310 3976 4598 736 65.2 MiB 0.06 0.00 3.24096 -89.6096 -3.24096 3.24096 0.87 0.000363094 0.000331781 0.0245604 0.0224732 44 1557 47 6.95648e+06 217135 787024. 2723.27 4.29 0.150805 0.12998 27778 195446 -1 1133 20 982 1289 91904 23042 2.85042 2.85042 -92.9397 -2.85042 0 0 997811. 3452.63 0.37 0.05 0.18 -1 -1 0.37 0.0176844 0.0156998 56 19 50 25 25 25 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 27.84 vpr 66.01 MiB 0.02 7496 -1 -1 1 0.03 -1 -1 34100 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 27.4 MiB 1.16 849 10835 4559 6029 247 66.0 MiB 0.09 0.00 3.79924 -134.385 -3.79924 3.79924 0.90 0.000542539 0.000497647 0.0416792 0.0379437 44 3443 36 6.95648e+06 188184 787024. 2723.27 23.45 0.320045 0.278572 27778 195446 -1 2587 23 2101 3728 353454 70858 4.30096 4.30096 -155.876 -4.30096 0 0 997811. 3452.63 0.38 0.11 0.19 -1 -1 0.38 0.0311301 0.0277002 77 84 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.74 vpr 66.17 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 33876 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67756 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 27.4 MiB 0.84 742 12512 4241 5927 2344 66.2 MiB 0.09 0.00 3.1116 -112.527 -3.1116 3.1116 0.90 0.000570731 0.000504894 0.0366233 0.0333379 40 2297 45 6.95648e+06 419795 706193. 2443.58 2.79 0.181416 0.15821 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.33 0.10 0.18 -1 -1 0.33 0.0326617 0.0285848 87 88 29 29 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 10.00 vpr 65.68 MiB 0.04 7312 -1 -1 1 0.03 -1 -1 34148 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 27.3 MiB 0.79 1062 15584 5717 7278 2589 65.7 MiB 0.12 0.00 4.46104 -158.567 -4.46104 4.46104 0.90 0.000567576 0.000519969 0.0506889 0.0461976 50 2979 31 6.99608e+06 323745 902133. 3121.57 5.92 0.294784 0.2556 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.40 0.08 0.21 -1 -1 0.40 0.0267428 0.0238078 130 80 32 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 8.33 vpr 66.09 MiB 0.02 7492 -1 -1 1 0.03 -1 -1 34072 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67680 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 27.5 MiB 1.55 1018 13610 5732 7207 671 66.1 MiB 0.11 0.00 4.50158 -148.332 -4.50158 4.50158 0.90 0.000557011 0.000505144 0.0440341 0.0400547 54 3118 36 6.99608e+06 294314 949917. 3286.91 3.43 0.197314 0.1722 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.45 0.09 0.24 -1 -1 0.45 0.0262708 0.0233486 117 78 30 30 89 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 9.19 vpr 65.64 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34160 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 27.0 MiB 1.01 1040 13610 5701 7488 421 65.6 MiB 0.11 0.00 3.59279 -128.627 -3.59279 3.59279 0.92 0.000529681 0.000482044 0.0433693 0.039509 46 2926 28 6.99608e+06 264882 828058. 2865.25 4.94 0.217137 0.188998 28066 200906 -1 2312 22 1747 2063 162737 34627 4.13566 4.13566 -142.913 -4.13566 0 0 1.01997e+06 3529.29 0.40 0.07 0.19 -1 -1 0.40 0.0275084 0.0243688 106 50 54 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 7.24 vpr 65.26 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33972 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 26.9 MiB 0.75 806 14444 6101 7602 741 65.3 MiB 0.11 0.00 3.79615 -125.537 -3.79615 3.79615 0.91 0.000506044 0.000457734 0.044845 0.0409016 40 2767 26 6.99608e+06 264882 706193. 2443.58 3.31 0.159768 0.140076 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0254272 0.0225477 89 25 87 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 7.15 vpr 65.74 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33960 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67316 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 27.0 MiB 0.48 871 12416 4669 6393 1354 65.7 MiB 0.10 0.00 4.27644 -154.345 -4.27644 4.27644 0.92 0.000549162 0.000503727 0.041689 0.0380333 56 2565 50 6.99608e+06 220735 973134. 3367.25 3.29 0.196432 0.172429 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.46 0.10 0.24 -1 -1 0.46 0.0296215 0.0262323 93 31 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 9.49 vpr 65.93 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33832 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67516 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 27.4 MiB 0.51 1298 16069 5589 8587 1893 65.9 MiB 0.13 0.00 3.60699 -134.626 -3.60699 3.60699 0.90 0.000541988 0.00049233 0.0441256 0.0401478 48 3162 26 6.99608e+06 441471 865456. 2994.66 5.73 0.25169 0.218241 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.39 0.10 0.20 -1 -1 0.39 0.0269797 0.023876 117 61 63 32 63 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 6.82 vpr 64.66 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 34132 -1 -1 15 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 26.2 MiB 1.52 620 8289 3348 4414 527 64.7 MiB 0.06 0.00 3.30124 -103.988 -3.30124 3.30124 0.91 0.000406595 0.000370306 0.0241689 0.0221228 44 2016 40 6.99608e+06 220735 787024. 2723.27 2.17 0.105412 0.0920268 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0203505 0.0179759 68 26 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 15.41 vpr 65.00 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33892 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 26.6 MiB 0.52 708 9368 3795 5080 493 65.0 MiB 0.06 0.00 2.88485 -101.173 -2.88485 2.88485 0.89 0.000431999 0.000393295 0.026965 0.0245818 46 2433 35 6.99608e+06 250167 828058. 2865.25 11.78 0.25146 0.217868 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.39 0.12 0.18 -1 -1 0.39 0.0275861 0.0242102 77 -1 115 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 21.42 vpr 65.68 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 33552 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 27.0 MiB 3.40 865 11366 4429 5807 1130 65.7 MiB 0.08 0.00 3.3156 -116.953 -3.3156 3.3156 0.89 0.000464768 0.000423631 0.0344787 0.0315063 44 2856 40 6.99608e+06 220735 787024. 2723.27 14.89 0.267564 0.230877 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0239804 0.0211714 96 81 0 0 84 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 6.43 vpr 65.21 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33948 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 26.7 MiB 0.82 668 10346 4043 5155 1148 65.2 MiB 0.08 0.00 3.58059 -133.895 -3.58059 3.58059 0.92 0.000443735 0.000404999 0.0314917 0.0287284 46 2113 26 6.99608e+06 191304 828058. 2865.25 2.42 0.144448 0.126826 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.40 0.07 0.19 -1 -1 0.40 0.0238187 0.0210964 79 31 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 16.45 vpr 65.18 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33704 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 26.9 MiB 2.61 858 10835 4264 5113 1458 65.2 MiB 0.08 0.00 3.85932 -133.017 -3.85932 3.85932 0.87 0.000487865 0.000441523 0.0338214 0.030905 38 2753 35 6.99608e+06 220735 678818. 2348.85 10.88 0.226346 0.196129 26626 170182 -1 2153 22 1904 2554 252247 54303 3.751 3.751 -138.14 -3.751 0 0 902133. 3121.57 0.31 0.08 0.16 -1 -1 0.31 0.0222761 0.0196816 88 58 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.03 vpr 65.51 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34080 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 26.9 MiB 0.90 1078 12030 4277 6214 1539 65.5 MiB 0.09 0.00 3.0712 -121.401 -3.0712 3.0712 0.89 0.000461416 0.000419477 0.0360825 0.032963 38 2768 42 6.99608e+06 206020 678818. 2348.85 4.07 0.156639 0.136689 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0247377 0.0218537 91 57 25 25 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 7.32 vpr 65.39 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 34020 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 26.8 MiB 1.05 883 7132 1837 4428 867 65.4 MiB 0.07 0.00 3.50359 -126.552 -3.50359 3.50359 0.92 0.000548481 0.000499571 0.025239 0.023058 50 2388 31 6.99608e+06 235451 902133. 3121.57 3.02 0.16621 0.145939 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.42 0.08 0.20 -1 -1 0.42 0.0287429 0.0254321 101 55 64 32 57 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 10.09 vpr 65.82 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33752 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67400 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 27.3 MiB 0.96 1134 14123 4441 7724 1958 65.8 MiB 0.11 0.00 4.28564 -153.93 -4.28564 4.28564 0.91 0.000553549 0.000503548 0.0477366 0.0436265 48 3127 38 6.99608e+06 279598 865456. 2994.66 5.82 0.278105 0.243055 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.40 0.10 0.21 -1 -1 0.40 0.031427 0.0278786 112 60 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 16.30 vpr 64.88 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 34116 -1 -1 14 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 26.5 MiB 2.56 572 11293 4723 5996 574 64.9 MiB 0.07 0.00 2.92195 -96.6009 -2.92195 2.92195 0.92 0.000401436 0.000365481 0.031218 0.0285133 40 1775 30 6.99608e+06 206020 706193. 2443.58 10.67 0.26329 0.229838 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.0198326 0.0175884 67 21 58 29 24 24 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 11.04 vpr 65.74 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34048 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 26.9 MiB 2.18 1040 13324 4763 6768 1793 65.7 MiB 0.11 0.00 3.68279 -132.173 -3.68279 3.68279 0.90 0.000557711 0.000509716 0.0456413 0.0416511 50 2876 28 6.99608e+06 235451 902133. 3121.57 5.60 0.253441 0.220312 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.40 0.10 0.21 -1 -1 0.40 0.0291649 0.0257349 106 60 64 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 8.28 vpr 65.62 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 33936 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67200 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 27.0 MiB 1.34 1122 6731 1649 4394 688 65.6 MiB 0.06 0.00 3.32994 -131.897 -3.32994 3.32994 0.88 0.000590561 0.000544193 0.0236637 0.0216858 38 3062 22 6.99608e+06 250167 678818. 2348.85 3.93 0.157255 0.138784 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.33 0.08 0.15 -1 -1 0.33 0.0254171 0.022646 99 54 64 32 56 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 18.69 vpr 65.56 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33480 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 26.9 MiB 0.82 871 13856 5887 7726 243 65.6 MiB 0.11 0.00 3.39034 -128.572 -3.39034 3.39034 0.92 0.000494069 0.0004509 0.0433068 0.0395562 44 3195 31 6.99608e+06 206020 787024. 2723.27 14.65 0.268282 0.233092 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0219601 0.0195083 91 62 29 29 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.75 vpr 64.57 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33524 -1 -1 11 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66120 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 26.1 MiB 2.75 536 9041 3932 4796 313 64.6 MiB 0.05 0.00 2.34646 -88.6787 -2.34646 2.34646 0.90 0.000354287 0.00032528 0.0227434 0.0207944 36 1652 38 6.99608e+06 161872 648988. 2245.63 2.07 0.108982 0.0945165 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.31 0.04 0.15 -1 -1 0.31 0.0162513 0.0143535 56 29 24 24 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 15.07 vpr 65.65 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 34136 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 27.1 MiB 2.30 1018 11532 3380 6660 1492 65.7 MiB 0.08 0.00 3.58639 -133.629 -3.58639 3.58639 0.89 0.000442336 0.000406178 0.0339387 0.0308968 40 2527 22 6.99608e+06 220735 706193. 2443.58 9.74 0.252468 0.218894 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0218821 0.0193627 91 55 31 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.93 vpr 65.86 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 33708 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67440 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 27.2 MiB 0.46 1089 12759 4547 6573 1639 65.9 MiB 0.08 0.00 4.04748 -146.851 -4.04748 4.04748 0.89 0.000445521 0.000406179 0.0342431 0.03127 46 2738 33 6.99608e+06 338461 828058. 2865.25 2.34 0.149109 0.130343 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.36 0.07 0.19 -1 -1 0.36 0.0239892 0.0213199 97 31 91 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 7.42 vpr 65.86 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33876 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 27.6 MiB 1.33 1280 15206 4884 7262 3060 65.9 MiB 0.12 0.00 4.01908 -141.768 -4.01908 4.01908 0.90 0.000596134 0.000539368 0.0519353 0.0471429 46 3184 26 6.99608e+06 323745 828058. 2865.25 2.90 0.203544 0.179412 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.39 0.08 0.19 -1 -1 0.39 0.030238 0.0268509 138 108 0 0 125 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.85 vpr 64.87 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 34176 -1 -1 15 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 26.5 MiB 0.84 401 7217 2934 3827 456 64.9 MiB 0.04 0.00 2.7074 -79.2163 -2.7074 2.7074 0.88 0.000306059 0.000277963 0.0163875 0.0149713 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.17 0.0831545 0.0724702 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.32 0.04 0.14 -1 -1 0.32 0.0126379 0.0111867 52 21 26 26 22 22 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 9.94 vpr 65.17 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33788 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 26.6 MiB 0.95 698 9036 3669 4978 389 65.2 MiB 0.07 0.00 3.97238 -133.231 -3.97238 3.97238 0.89 0.000506057 0.000464574 0.0299262 0.0273504 62 1908 21 6.99608e+06 176588 1.05005e+06 3633.38 5.68 0.202462 0.175053 30946 263737 -1 1546 22 1313 2069 150685 35340 3.89902 3.89902 -133.735 -3.89902 0 0 1.30136e+06 4502.97 0.48 0.07 0.27 -1 -1 0.48 0.0241355 0.0213648 75 -1 122 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.83 vpr 64.66 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33972 -1 -1 8 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 26.4 MiB 0.30 736 9906 3603 5031 1272 64.7 MiB 0.06 0.00 2.06111 -84.6894 -2.06111 2.06111 0.90 0.000327207 0.00029752 0.023387 0.0213314 34 1682 40 6.99608e+06 117725 618332. 2139.56 1.65 0.100975 0.0877673 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.29 0.05 0.13 -1 -1 0.29 0.01587 0.0139911 44 -1 53 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 7.25 vpr 65.91 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34176 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 27.2 MiB 1.32 836 12681 5269 6945 467 65.9 MiB 0.09 0.00 3.87925 -141.78 -3.87925 3.87925 0.89 0.00049879 0.000455441 0.0390253 0.035519 44 3391 42 6.99608e+06 250167 787024. 2723.27 2.83 0.177251 0.155176 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.38 0.09 0.18 -1 -1 0.38 0.0265962 0.0235587 95 21 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.95 vpr 65.33 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34064 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66896 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 26.7 MiB 0.27 1064 14375 4737 7721 1917 65.3 MiB 0.10 0.00 2.93295 -116.62 -2.93295 2.93295 0.90 0.000514271 0.00047028 0.0368601 0.0336254 40 2476 21 6.99608e+06 412039 706193. 2443.58 4.57 0.211938 0.183998 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.34 0.07 0.17 -1 -1 0.34 0.022993 0.0203487 87 -1 124 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 9.61 vpr 66.05 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34116 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67636 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 27.5 MiB 0.84 1077 13105 3562 8179 1364 66.1 MiB 0.11 0.00 3.82425 -139.818 -3.82425 3.82425 0.89 0.000561171 0.000508344 0.0418683 0.0382113 46 3235 48 6.99608e+06 309029 828058. 2865.25 5.52 0.25724 0.222994 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.40 0.08 0.20 -1 -1 0.40 0.026394 0.0233549 115 54 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.37 vpr 65.10 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 33772 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 26.6 MiB 1.17 701 9397 3869 5271 257 65.1 MiB 0.07 0.00 2.9841 -107.493 -2.9841 2.9841 0.86 0.000419863 0.000382709 0.0278376 0.0253656 40 2056 26 6.99608e+06 161872 706193. 2443.58 4.23 0.169448 0.146612 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.34 0.07 0.18 -1 -1 0.34 0.021091 0.0186306 72 31 54 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 16.10 vpr 65.16 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 33896 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 26.6 MiB 9.01 650 7975 2399 4401 1175 65.2 MiB 0.06 0.00 3.55679 -118.022 -3.55679 3.55679 0.91 0.000443404 0.000404042 0.0247385 0.0226127 46 2056 46 6.99608e+06 191304 828058. 2865.25 3.94 0.145161 0.126432 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0220169 0.0195151 73 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.78 vpr 64.81 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33848 -1 -1 15 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 26.3 MiB 1.26 739 7975 3247 4371 357 64.8 MiB 0.06 0.00 3.69125 -116.127 -3.69125 3.69125 0.86 0.000396404 0.000361313 0.0222771 0.0203386 38 2264 33 6.99608e+06 220735 678818. 2348.85 2.62 0.126543 0.110615 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0195225 0.0172935 72 27 56 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.75 vpr 65.00 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33868 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 26.6 MiB 0.18 696 7204 2957 4121 126 65.0 MiB 0.05 0.00 2.86245 -113.51 -2.86245 2.86245 0.89 0.000386249 0.00034849 0.0212019 0.0192844 42 2358 35 6.99608e+06 147157 744469. 2576.02 4.57 0.164781 0.141957 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.37 0.06 0.17 -1 -1 0.37 0.0191664 0.0170059 64 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 6.88 vpr 65.35 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33756 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 26.8 MiB 0.78 709 9540 3934 5278 328 65.4 MiB 0.07 0.00 2.94395 -107.519 -2.94395 2.94395 0.91 0.000455738 0.000416293 0.0283623 0.0259205 46 2091 24 6.99608e+06 220735 828058. 2865.25 2.98 0.135308 0.118745 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0208708 0.0185321 77 26 61 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 10.74 vpr 65.38 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33992 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 26.7 MiB 3.47 930 10835 4554 5858 423 65.4 MiB 0.08 0.00 2.88685 -103.645 -2.88685 2.88685 0.92 0.000412381 0.000376061 0.0316247 0.0288521 36 2556 47 6.99608e+06 235451 648988. 2245.63 4.23 0.166086 0.146233 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0202622 0.0179206 86 55 29 29 57 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 9.86 vpr 66.10 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 33908 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67688 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 27.6 MiB 1.13 1138 15273 6065 7495 1713 66.1 MiB 0.13 0.00 3.90815 -143.373 -3.90815 3.90815 0.91 0.000573733 0.000520773 0.0522739 0.0475658 46 3798 44 6.99608e+06 294314 828058. 2865.25 5.44 0.229631 0.203224 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0302255 0.0268695 106 26 128 32 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 7.29 vpr 65.74 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33776 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 27.3 MiB 1.19 999 10762 3395 5388 1979 65.7 MiB 0.08 0.00 4.20458 -152.083 -4.20458 4.20458 0.90 0.000476551 0.000433375 0.0350554 0.0318811 64 2302 23 6.99608e+06 264882 1.08113e+06 3740.92 2.77 0.158214 0.138172 31522 276338 -1 1920 22 1973 2633 212687 48768 3.98155 3.98155 -144.262 -3.98155 0 0 1.36325e+06 4717.13 0.51 0.08 0.27 -1 -1 0.51 0.0269473 0.0238935 110 62 62 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 6.88 vpr 65.78 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34336 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 27.2 MiB 0.92 1070 8867 2185 5933 749 65.8 MiB 0.07 0.00 3.49385 -125.494 -3.49385 3.49385 0.91 0.000486957 0.000445449 0.0283771 0.0259422 38 2592 37 6.99608e+06 235451 678818. 2348.85 2.90 0.152811 0.133665 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0241359 0.0213708 99 77 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 15.95 vpr 65.80 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33788 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 27.1 MiB 0.92 1182 9006 2249 6265 492 65.8 MiB 0.08 0.00 3.66135 -134.693 -3.66135 3.66135 0.91 0.000561006 0.000512033 0.0342546 0.0287176 40 2955 30 6.99608e+06 264882 706193. 2443.58 11.89 0.282875 0.243048 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0251166 0.0223281 105 59 60 30 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.27 vpr 65.84 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33792 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67420 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 27.6 MiB 1.18 1281 17663 7641 9474 548 65.8 MiB 0.14 0.00 4.62587 -160.146 -4.62587 4.62587 0.91 0.000611701 0.000550167 0.0593909 0.0539784 48 3305 25 6.99608e+06 338461 865456. 2994.66 2.72 0.207112 0.182623 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.41 0.12 0.20 -1 -1 0.41 0.0316314 0.0279985 138 111 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 21.68 vpr 65.79 MiB 0.02 7504 -1 -1 1 0.03 -1 -1 33836 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67372 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 27.3 MiB 3.59 1159 10762 4075 5172 1515 65.8 MiB 0.10 0.00 4.92973 -159.817 -4.92973 4.92973 0.89 0.000556598 0.000506116 0.0364979 0.0333387 44 3431 27 6.99608e+06 279598 787024. 2723.27 14.91 0.281477 0.243443 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.37 0.09 0.19 -1 -1 0.37 0.0294294 0.0261988 117 86 31 31 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 8.41 vpr 66.01 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 33844 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 27.2 MiB 2.66 1059 13763 5785 7510 468 66.0 MiB 0.11 0.00 3.58185 -130.714 -3.58185 3.58185 0.92 0.000542047 0.000491382 0.045013 0.041087 46 2920 39 6.99608e+06 294314 828058. 2865.25 2.48 0.161311 0.1423 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0272259 0.0241876 107 58 60 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 22.81 vpr 66.00 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34312 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67580 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 27.2 MiB 0.93 1271 6556 1686 3783 1087 66.0 MiB 0.06 0.00 3.81927 -146.587 -3.81927 3.81927 0.92 0.000541762 0.000493067 0.0235816 0.0215652 40 3290 49 6.99608e+06 250167 706193. 2443.58 18.73 0.322134 0.280771 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.33 0.14 0.16 -1 -1 0.33 0.0318931 0.0281764 110 42 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.77 vpr 65.96 MiB 0.02 7484 -1 -1 1 0.04 -1 -1 33844 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67540 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 27.6 MiB 2.31 1530 16529 5778 8459 2292 66.0 MiB 0.14 0.00 4.81093 -174.639 -4.81093 4.81093 0.90 0.000601178 0.000544089 0.0566811 0.0513544 46 4411 29 6.99608e+06 323745 828058. 2865.25 4.08 0.219956 0.193522 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.38 0.13 0.18 -1 -1 0.38 0.0344467 0.030479 139 91 62 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 8.02 vpr 65.00 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 33692 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 26.5 MiB 0.93 802 9996 3771 4383 1842 65.0 MiB 0.07 0.00 3.1395 -118.304 -3.1395 3.1395 0.91 0.000450362 0.000410703 0.030501 0.0278742 44 2051 29 6.99608e+06 191304 787024. 2723.27 3.99 0.173511 0.150446 27778 195446 -1 1628 20 1398 1706 120876 25222 3.03987 3.03987 -121.096 -3.03987 0 0 997811. 3452.63 0.37 0.05 0.19 -1 -1 0.37 0.0209029 0.0185957 75 24 62 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 26.92 vpr 65.76 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33900 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67340 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 26.9 MiB 0.76 1237 14606 4845 8003 1758 65.8 MiB 0.12 0.00 4.54014 -162.571 -4.54014 4.54014 0.89 0.000524808 0.000477975 0.0476648 0.0434727 44 3549 35 6.99608e+06 264882 787024. 2723.27 22.95 0.295915 0.256354 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0277241 0.0244939 106 59 62 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.09 vpr 65.89 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 33792 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67472 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 27.1 MiB 1.23 1279 13077 3808 7089 2180 65.9 MiB 0.11 0.00 3.54953 -133.609 -3.54953 3.54953 0.91 0.00055123 0.000502629 0.0430906 0.0393456 46 3226 21 6.99608e+06 294314 828058. 2865.25 4.65 0.219198 0.190918 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.37 0.07 0.20 -1 -1 0.37 0.0257777 0.0228591 108 54 62 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 8.99 vpr 65.07 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 33576 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 26.5 MiB 0.90 797 9368 3826 5299 243 65.1 MiB 0.08 0.00 3.54729 -133.832 -3.54729 3.54729 0.92 0.000525447 0.0004676 0.0323398 0.0295121 46 2734 24 6.99608e+06 191304 828058. 2865.25 4.88 0.211791 0.184744 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0246445 0.0218504 77 -1 128 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 7.40 vpr 65.80 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33968 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67384 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 27.2 MiB 1.54 1139 10883 2905 7208 770 65.8 MiB 0.09 0.00 3.32994 -127.882 -3.32994 3.32994 0.88 0.000564099 0.000513253 0.0366936 0.0334619 46 3143 36 6.99608e+06 279598 828058. 2865.25 2.69 0.17228 0.150153 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0273369 0.0242001 120 81 25 25 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.06 vpr 65.93 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33444 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67512 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 27.1 MiB 1.05 1139 12528 3436 7246 1846 65.9 MiB 0.10 0.00 3.59669 -136.453 -3.59669 3.59669 0.92 0.000557742 0.000508037 0.0412132 0.0376094 40 3651 35 6.99608e+06 294314 706193. 2443.58 4.79 0.197805 0.174363 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.36 0.11 0.17 -1 -1 0.36 0.0278941 0.0247295 106 58 64 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 7.22 vpr 66.02 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 33960 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67608 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 27.5 MiB 0.80 1314 14431 4781 7561 2089 66.0 MiB 0.12 0.00 3.61639 -141.899 -3.61639 3.61639 0.92 0.000538715 0.000492479 0.0475546 0.0432534 40 3393 43 6.99608e+06 250167 706193. 2443.58 3.22 0.194713 0.170695 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.35 0.09 0.16 -1 -1 0.35 0.0290337 0.0257362 108 61 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 8.31 vpr 65.58 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33788 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67156 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 26.9 MiB 1.05 813 11432 3614 6147 1671 65.6 MiB 0.09 0.00 3.93015 -141.517 -3.93015 3.93015 0.89 0.000542201 0.000494914 0.0362877 0.0331582 48 3063 38 6.99608e+06 235451 865456. 2994.66 4.03 0.174272 0.15273 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.40 0.11 0.20 -1 -1 0.40 0.0276129 0.0243771 94 21 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.69 vpr 65.77 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 34060 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 27.1 MiB 0.99 930 14500 5516 6956 2028 65.8 MiB 0.12 0.00 3.81585 -138.808 -3.81585 3.81585 0.92 0.00057935 0.00052777 0.0487357 0.0444538 48 2890 25 6.99608e+06 264882 865456. 2994.66 4.44 0.239101 0.208307 28354 207349 -1 2363 24 2399 2877 266284 57481 4.45202 4.45202 -164.609 -4.45202 0 0 1.05005e+06 3633.38 0.39 0.09 0.20 -1 -1 0.39 0.0288067 0.0254317 110 50 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 10.62 vpr 65.71 MiB 0.02 7552 -1 -1 1 0.03 -1 -1 34116 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67288 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 27.5 MiB 1.70 1399 14035 5589 6713 1733 65.7 MiB 0.12 0.00 3.97768 -141.845 -3.97768 3.97768 0.90 0.000586085 0.000532121 0.0479505 0.0435424 44 3778 32 6.99608e+06 323745 787024. 2723.27 5.69 0.278607 0.241542 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0270243 0.0240384 132 110 0 0 122 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 9.18 vpr 65.66 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 34108 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67236 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 27.2 MiB 1.01 1318 15273 5215 8174 1884 65.7 MiB 0.12 0.00 3.73195 -141.182 -3.73195 3.73195 0.91 0.000583123 0.000528464 0.0518841 0.0470735 40 3892 28 6.99608e+06 294314 706193. 2443.58 4.92 0.207409 0.182923 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.36 0.17 0.17 -1 -1 0.36 0.0393706 0.0346794 126 86 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 16.88 vpr 65.38 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34224 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66948 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 26.9 MiB 0.57 921 12528 4814 6023 1691 65.4 MiB 0.09 0.00 2.98795 -120.412 -2.98795 2.98795 0.87 0.000411594 0.000376424 0.0361752 0.0330881 46 2359 25 6.99608e+06 206020 828058. 2865.25 13.25 0.252567 0.219107 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.37 0.07 0.19 -1 -1 0.37 0.0227933 0.0201455 80 20 63 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 7.59 vpr 65.75 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33728 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 27.0 MiB 1.01 1095 11776 4100 5415 2261 65.8 MiB 0.09 0.00 3.80663 -140.003 -3.80663 3.80663 0.91 0.000506417 0.00046179 0.0377242 0.0344317 46 2887 24 6.99608e+06 235451 828058. 2865.25 3.36 0.157331 0.13808 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0242763 0.0215096 108 91 0 0 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 10.46 vpr 66.06 MiB 0.02 7520 -1 -1 1 0.04 -1 -1 34008 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67644 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 27.8 MiB 0.92 1231 15273 6501 8321 451 66.1 MiB 0.13 0.00 4.57343 -162.846 -4.57343 4.57343 0.90 0.000671378 0.000610409 0.0536267 0.0487226 54 3744 47 6.99608e+06 294314 949917. 3286.91 6.16 0.314054 0.27321 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.44 0.13 0.22 -1 -1 0.44 0.0350263 0.0310421 126 53 96 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 15.60 vpr 65.56 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33732 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 26.9 MiB 0.72 1100 10916 2969 6188 1759 65.6 MiB 0.09 0.00 3.58059 -138.842 -3.58059 3.58059 0.89 0.000505461 0.00045776 0.0353377 0.0323044 40 2715 36 6.99608e+06 235451 706193. 2443.58 11.78 0.278987 0.2417 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.34 0.08 0.17 -1 -1 0.34 0.0266428 0.0235719 93 31 92 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 13.88 vpr 65.33 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33804 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 26.8 MiB 0.72 716 11804 3687 5992 2125 65.3 MiB 0.07 0.00 3.75245 -123.293 -3.75245 3.75245 0.85 0.000382906 0.000348617 0.0279478 0.0255357 40 2192 44 6.99608e+06 353176 706193. 2443.58 10.12 0.249694 0.217378 26914 176310 -1 1852 25 1742 2609 294037 64139 3.89906 3.89906 -135.525 -3.89906 0 0 926341. 3205.33 0.36 0.09 0.17 -1 -1 0.36 0.0239272 0.0210767 80 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 10.57 vpr 66.20 MiB 0.02 7548 -1 -1 1 0.04 -1 -1 34580 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67792 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 27.8 MiB 0.98 1504 15883 5797 7858 2228 66.2 MiB 0.14 0.00 5.34997 -188.353 -5.34997 5.34997 0.91 0.00067742 0.000612589 0.056892 0.0516149 56 3670 24 6.99608e+06 353176 973134. 3367.25 6.11 0.301209 0.262798 29794 239141 -1 3017 22 3279 4088 391656 83242 5.57659 5.57659 -197.891 -5.57659 0 0 1.19926e+06 4149.71 0.45 0.12 0.25 -1 -1 0.45 0.0353323 0.0316701 159 109 32 32 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 8.60 vpr 65.76 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33752 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 27.0 MiB 0.80 938 15044 6550 8115 379 65.8 MiB 0.12 0.00 4.27644 -157.663 -4.27644 4.27644 0.89 0.00053919 0.000488834 0.0498438 0.0453729 48 2674 27 6.99608e+06 235451 865456. 2994.66 4.59 0.231104 0.201368 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.38 0.08 0.19 -1 -1 0.38 0.0243566 0.021579 92 31 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 8.46 vpr 65.18 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33976 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 26.7 MiB 0.25 660 12763 5275 7138 350 65.2 MiB 0.08 0.00 2.98775 -114.509 -2.98775 2.98775 0.87 0.000438962 0.000400008 0.030829 0.0281603 46 2129 35 6.99608e+06 353176 828058. 2865.25 5.17 0.193876 0.168919 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.37 0.07 0.19 -1 -1 0.37 0.0223127 0.0197067 70 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 7.40 vpr 66.14 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34156 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67724 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 27.3 MiB 0.82 1143 13432 5563 7207 662 66.1 MiB 0.12 0.00 4.46895 -161.038 -4.46895 4.46895 0.89 0.000586402 0.000532756 0.0487365 0.0444618 46 4011 41 6.99608e+06 264882 828058. 2865.25 3.27 0.193846 0.170278 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.39 0.11 0.20 -1 -1 0.39 0.0307729 0.027391 112 26 128 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.49 vpr 65.25 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 33668 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 26.8 MiB 0.28 625 10614 4416 5947 251 65.3 MiB 0.07 0.00 2.85145 -111.794 -2.85145 2.85145 0.86 0.000404573 0.000368881 0.0287062 0.0262508 40 2195 42 6.99608e+06 147157 706193. 2443.58 2.26 0.125129 0.109791 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.34 0.08 0.18 -1 -1 0.34 0.0220873 0.0195382 62 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 6.28 vpr 65.12 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 33756 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 26.6 MiB 0.86 755 9857 4076 5498 283 65.1 MiB 0.07 0.00 3.30794 -118.735 -3.30794 3.30794 0.91 0.000394141 0.00035921 0.0285627 0.0260726 44 2377 21 6.99608e+06 220735 787024. 2723.27 2.29 0.126438 0.110481 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0215636 0.0190448 74 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.89 vpr 66.00 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 34040 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67584 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 27.5 MiB 2.00 1003 15481 6003 6865 2613 66.0 MiB 0.12 0.00 3.85703 -126.704 -3.85703 3.85703 0.89 0.000516967 0.000469628 0.0490691 0.0447766 46 3294 37 6.99608e+06 294314 828058. 2865.25 3.69 0.18351 0.160818 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0276188 0.0244365 113 81 29 29 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 7.06 vpr 66.05 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 34400 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67636 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 27.1 MiB 1.06 1068 14144 5407 6800 1937 66.1 MiB 0.11 0.00 4.29664 -157.784 -4.29664 4.29664 0.92 0.000547393 0.000498078 0.0471392 0.0429414 44 3303 30 6.99608e+06 264882 787024. 2723.27 2.78 0.184794 0.16253 27778 195446 -1 2309 23 2566 3447 284686 60687 4.63711 4.63711 -168.166 -4.63711 0 0 997811. 3452.63 0.37 0.09 0.17 -1 -1 0.37 0.0286799 0.0255035 109 53 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 9.53 vpr 65.96 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 34056 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67548 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 27.5 MiB 1.12 1151 6846 1472 4993 381 66.0 MiB 0.07 0.00 4.30354 -157.84 -4.30354 4.30354 0.92 0.000539001 0.000489876 0.0243534 0.0222989 44 3666 26 6.99608e+06 264882 787024. 2723.27 5.24 0.239205 0.208146 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.36 0.10 0.17 -1 -1 0.36 0.0276452 0.024606 110 55 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 6.46 vpr 65.18 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 33940 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 26.8 MiB 0.76 792 12585 5306 6906 373 65.2 MiB 0.09 0.00 3.44424 -128.433 -3.44424 3.44424 0.87 0.000480973 0.000438082 0.0380245 0.034736 46 2594 31 6.99608e+06 220735 828058. 2865.25 2.63 0.135047 0.118917 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.37 0.08 0.18 -1 -1 0.37 0.0248164 0.021957 92 55 32 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 8.90 vpr 65.48 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33812 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67056 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 27.0 MiB 2.83 885 11260 4668 6241 351 65.5 MiB 0.08 0.00 3.46644 -123.995 -3.46644 3.46644 0.91 0.00045578 0.0004165 0.0343635 0.0313138 44 3163 36 6.99608e+06 250167 787024. 2723.27 2.86 0.157538 0.137248 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0235554 0.0209531 102 82 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 21.78 vpr 65.73 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33972 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 27.0 MiB 1.35 904 12506 5230 6653 623 65.7 MiB 0.10 0.00 3.42074 -117.96 -3.42074 3.42074 0.90 0.000531833 0.000482813 0.0398565 0.0363883 44 3198 37 6.99608e+06 279598 787024. 2723.27 17.24 0.290176 0.251631 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0259755 0.0229896 101 52 60 30 57 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.67 vpr 65.10 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 34064 -1 -1 18 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 26.7 MiB 0.74 824 9872 4064 5274 534 65.1 MiB 0.08 0.00 3.73195 -121.956 -3.73195 3.73195 0.89 0.000476583 0.000436043 0.0303971 0.0277895 44 2539 27 6.99608e+06 264882 787024. 2723.27 4.81 0.210132 0.181897 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.0244259 0.0215498 87 20 84 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 8.53 vpr 65.72 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 34156 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67300 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 27.1 MiB 2.09 814 10672 3702 5165 1805 65.7 MiB 0.08 0.00 4.51934 -148.35 -4.51934 4.51934 0.92 0.000471897 0.00043002 0.0328837 0.0300086 44 2874 44 6.99608e+06 220735 787024. 2723.27 3.25 0.166856 0.146519 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0231474 0.020572 88 58 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 11.81 vpr 65.70 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33704 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 27.2 MiB 3.30 1000 12585 4720 5647 2218 65.7 MiB 0.10 0.00 3.77345 -134.122 -3.77345 3.77345 0.90 0.000523128 0.000478546 0.0401827 0.0366669 46 3110 45 6.99608e+06 220735 828058. 2865.25 5.32 0.21598 0.187742 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0248371 0.0219502 104 88 0 0 91 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 8.03 vpr 65.47 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33968 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 26.9 MiB 0.14 808 15688 5217 8110 2361 65.5 MiB 0.12 0.00 3.76925 -134.079 -3.76925 3.76925 0.91 0.000485912 0.000447834 0.042421 0.0387347 46 3039 46 6.99608e+06 367892 828058. 2865.25 4.65 0.192949 0.169878 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.40 0.09 0.19 -1 -1 0.40 0.0248077 0.0219702 86 -1 124 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 6.95 vpr 65.97 MiB 0.02 7432 -1 -1 1 0.03 -1 -1 34212 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67552 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 27.5 MiB 0.79 1209 11281 3120 7720 441 66.0 MiB 0.10 0.00 4.19534 -154.628 -4.19534 4.19534 0.89 0.000542502 0.000497779 0.0384988 0.0351681 44 3513 23 6.99608e+06 250167 787024. 2723.27 2.96 0.154568 0.135626 27778 195446 -1 2754 24 2419 3189 274672 55034 4.82351 4.82351 -173.98 -4.82351 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.029386 0.0260125 110 57 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 7.30 vpr 65.82 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 34012 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67396 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 27.3 MiB 0.71 1142 12364 5175 6807 382 65.8 MiB 0.10 0.00 5.12678 -171.348 -5.12678 5.12678 0.90 0.000552903 0.000504018 0.0417509 0.0381272 54 3283 29 6.99608e+06 264882 949917. 3286.91 3.29 0.173811 0.152371 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.44 0.09 0.24 -1 -1 0.44 0.0262115 0.0233545 108 62 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 27.26 vpr 65.92 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34012 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67500 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 27.1 MiB 0.68 1089 13788 4649 7550 1589 65.9 MiB 0.12 0.00 4.15408 -148.064 -4.15408 4.15408 0.89 0.00050811 0.00046331 0.0455063 0.0414409 44 3953 47 6.99608e+06 264882 787024. 2723.27 23.40 0.334955 0.29104 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.39 0.09 0.18 -1 -1 0.39 0.0264533 0.023413 107 62 60 30 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 6.83 vpr 65.28 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33604 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 26.8 MiB 0.90 692 12241 5462 6300 479 65.3 MiB 0.08 0.00 3.58339 -124.571 -3.58339 3.58339 0.90 0.000453889 0.00041288 0.0347155 0.0316418 48 2391 37 6.99608e+06 191304 865456. 2994.66 2.74 0.145846 0.127625 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.39 0.07 0.20 -1 -1 0.39 0.0198045 0.0175575 76 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 9.70 vpr 65.98 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34108 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67568 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 27.2 MiB 2.68 1070 13152 5486 7187 479 66.0 MiB 0.11 0.00 4.68713 -157.481 -4.68713 4.68713 0.92 0.000528531 0.000480728 0.0440928 0.040235 46 3476 35 6.99608e+06 264882 828058. 2865.25 3.73 0.194454 0.172043 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0265934 0.0237148 105 58 60 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 7.43 vpr 65.90 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 34264 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67480 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 27.6 MiB 0.88 1372 11615 4190 5568 1857 65.9 MiB 0.10 0.00 4.17744 -155.5 -4.17744 4.17744 0.90 0.000577081 0.000526513 0.0394415 0.0359716 46 3391 25 6.99608e+06 323745 828058. 2865.25 3.32 0.175675 0.153427 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0307258 0.0271856 139 106 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 11.01 vpr 65.70 MiB 0.02 7432 -1 -1 1 0.03 -1 -1 34036 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 27.3 MiB 1.68 1101 12733 5285 6817 631 65.7 MiB 0.10 0.00 4.35899 -150.667 -4.35899 4.35899 0.89 0.000566976 0.00051643 0.0420504 0.0383469 54 2946 36 6.99608e+06 323745 949917. 3286.91 6.04 0.269216 0.233119 29506 232905 -1 2087 21 2106 2410 180381 43349 4.43961 4.43961 -155.342 -4.43961 0 0 1.17392e+06 4061.99 0.42 0.07 0.24 -1 -1 0.42 0.026752 0.0237756 125 79 31 31 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 10.29 vpr 65.54 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 33832 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 27.0 MiB 3.15 1072 15456 6595 7994 867 65.5 MiB 0.12 0.00 4.1343 -135.415 -4.1343 4.1343 0.92 0.000551695 0.000501962 0.0488812 0.0444861 48 3698 50 6.99608e+06 323745 865456. 2994.66 3.81 0.21101 0.186105 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.41 0.12 0.20 -1 -1 0.41 0.0290891 0.0257874 114 83 26 26 90 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 10.31 vpr 65.84 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33964 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67416 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 27.4 MiB 1.05 1174 14500 5592 7226 1682 65.8 MiB 0.12 0.00 4.33244 -160.384 -4.33244 4.33244 0.92 0.000558247 0.000508257 0.0493122 0.0450118 52 3431 27 6.99608e+06 264882 926341. 3205.33 5.88 0.280663 0.244636 29218 227130 -1 2854 23 2777 3848 399366 78126 5.03681 5.03681 -182.418 -5.03681 0 0 1.14541e+06 3963.36 0.44 0.11 0.23 -1 -1 0.44 0.0292018 0.0259116 110 58 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 21.03 vpr 65.74 MiB 0.02 7492 -1 -1 1 0.03 -1 -1 33712 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 27.2 MiB 2.00 1070 11106 4662 5983 461 65.7 MiB 0.09 0.00 3.53179 -119.754 -3.53179 3.53179 0.92 0.000514206 0.000467906 0.0370254 0.0337799 38 3405 45 6.99608e+06 294314 678818. 2348.85 15.88 0.315966 0.27575 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.34 0.10 0.16 -1 -1 0.34 0.0282002 0.0249231 112 81 26 26 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 6.24 vpr 64.80 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 33784 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 26.4 MiB 0.74 592 9684 3186 4658 1840 64.8 MiB 0.07 0.00 2.86245 -110.719 -2.86245 2.86245 0.89 0.000430807 0.000391653 0.0294891 0.0268464 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.52 0.142608 0.124035 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.34 0.07 0.16 -1 -1 0.34 0.0207819 0.0183218 62 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 6.93 vpr 65.63 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33924 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 27.1 MiB 0.75 999 9872 3990 5501 381 65.6 MiB 0.08 0.00 4.9054 -173.166 -4.9054 4.9054 0.91 0.000571765 0.000509958 0.0338973 0.030948 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 2.79 0.166202 0.145977 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.50 0.09 0.26 -1 -1 0.50 0.0306709 0.0272672 110 62 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 7.22 vpr 65.43 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33936 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 26.9 MiB 0.92 1203 7431 1958 4126 1347 65.4 MiB 0.07 0.00 4.63877 -167.295 -4.63877 4.63877 0.90 0.000566801 0.000515912 0.0269636 0.024669 44 3706 30 6.99608e+06 250167 787024. 2723.27 3.08 0.165826 0.145493 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.38 0.11 0.19 -1 -1 0.38 0.0300421 0.0267193 111 62 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 10.80 vpr 65.30 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33852 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 26.8 MiB 2.45 766 11324 4293 5664 1367 65.3 MiB 0.08 0.00 3.24452 -112.954 -3.24452 3.24452 0.90 0.000440973 0.000402298 0.0334213 0.0305045 52 2311 46 6.99608e+06 191304 926341. 3205.33 5.09 0.199404 0.17264 29218 227130 -1 1681 29 1656 1972 307039 128679 3.27646 3.27646 -116.799 -3.27646 0 0 1.14541e+06 3963.36 0.43 0.11 0.22 -1 -1 0.43 0.0272859 0.0240236 85 47 32 32 54 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 13.75 vpr 64.82 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 34000 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 26.4 MiB 0.23 592 7514 3020 4270 224 64.8 MiB 0.06 0.00 3.0031 -111.146 -3.0031 3.0031 0.89 0.000421914 0.000385142 0.0233461 0.0213746 44 2109 28 6.99608e+06 161872 787024. 2723.27 10.45 0.212876 0.184417 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0208086 0.0182673 63 -1 93 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 16.91 vpr 65.83 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33580 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67408 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 27.2 MiB 0.97 1014 12331 5131 6918 282 65.8 MiB 0.09 0.00 4.03648 -138.539 -4.03648 4.03648 0.90 0.000530019 0.000483756 0.0393761 0.0357509 40 2840 45 6.99608e+06 250167 706193. 2443.58 12.80 0.301401 0.261819 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.35 0.15 0.16 -1 -1 0.35 0.0342849 0.0300827 102 56 60 32 58 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 7.67 vpr 65.81 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33680 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 27.3 MiB 1.52 1077 13043 5447 7262 334 65.8 MiB 0.11 0.00 4.38874 -150.527 -4.38874 4.38874 0.87 0.00054338 0.000493466 0.0434383 0.0396576 48 2878 41 6.99608e+06 279598 865456. 2994.66 2.95 0.192073 0.169137 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.39 0.15 0.19 -1 -1 0.39 0.036185 0.0320275 115 81 28 28 88 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 9.07 vpr 65.68 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33748 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 27.0 MiB 0.37 981 8047 1739 5489 819 65.7 MiB 0.07 0.00 4.28063 -149.977 -4.28063 4.28063 0.88 0.000586435 0.000527878 0.0261154 0.023822 48 3128 28 6.99608e+06 397324 865456. 2994.66 5.56 0.228653 0.1985 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.42 0.10 0.20 -1 -1 0.42 0.0307481 0.0273493 100 -1 156 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 8.60 vpr 65.25 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 34184 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 26.6 MiB 1.03 884 14431 6074 7798 559 65.2 MiB 0.11 0.00 3.66815 -119.86 -3.66815 3.66815 0.91 0.000517609 0.000471056 0.0459424 0.0419511 40 3422 29 6.99608e+06 279598 706193. 2443.58 4.40 0.173477 0.152466 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0266837 0.0237382 101 47 60 30 56 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 9.01 vpr 64.85 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 34004 -1 -1 16 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 26.4 MiB 1.56 589 11925 5033 6263 629 64.8 MiB 0.08 0.00 3.68305 -110.555 -3.68305 3.68305 0.89 0.00039159 0.00035617 0.0321414 0.0293821 40 1692 28 6.99608e+06 235451 706193. 2443.58 4.41 0.166198 0.143933 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.35 0.05 0.17 -1 -1 0.35 0.0180118 0.0159704 67 26 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 10.16 vpr 66.18 MiB 0.02 7444 -1 -1 1 0.04 -1 -1 34120 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67764 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 27.9 MiB 0.98 1512 15151 5383 7381 2387 66.2 MiB 0.15 0.00 4.46404 -157.207 -4.46404 4.46404 0.90 0.000671143 0.000610581 0.056869 0.0517322 54 3932 27 6.99608e+06 309029 949917. 3286.91 5.74 0.294021 0.256776 29506 232905 -1 3228 23 2653 3708 434053 80854 4.60891 4.60891 -163.196 -4.60891 0 0 1.17392e+06 4061.99 0.44 0.12 0.23 -1 -1 0.44 0.0345948 0.0307875 141 85 62 31 95 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 21.43 vpr 65.83 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 34364 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67408 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 27.6 MiB 3.05 1389 9013 2681 4820 1512 65.8 MiB 0.08 0.00 4.97674 -167.764 -4.97674 4.97674 0.89 0.000589296 0.000537034 0.0314426 0.028702 42 3808 25 6.99608e+06 323745 744469. 2576.02 15.21 0.270807 0.233454 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.35 0.10 0.18 -1 -1 0.35 0.0296781 0.0263763 138 105 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 8.63 vpr 65.64 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33804 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 26.9 MiB 3.30 1031 11233 4729 6294 210 65.6 MiB 0.09 0.00 3.87693 -140.03 -3.87693 3.87693 0.86 0.000480869 0.000438957 0.0359115 0.0327453 46 3029 25 6.99608e+06 220735 828058. 2865.25 2.22 0.138572 0.122006 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0241401 0.0214656 102 86 0 0 89 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 9.30 vpr 65.75 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 34124 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 27.1 MiB 1.08 1034 14184 5996 7912 276 65.8 MiB 0.11 0.00 3.78975 -136.67 -3.78975 3.78975 0.89 0.000486966 0.000440653 0.043638 0.0396854 46 3037 39 6.99608e+06 235451 828058. 2865.25 5.07 0.226796 0.196978 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.39 0.08 0.18 -1 -1 0.39 0.0261244 0.023147 92 31 90 30 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 16.84 vpr 66.14 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 34328 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67732 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 27.6 MiB 1.62 1068 13943 4857 7191 1895 66.1 MiB 0.11 0.00 3.9689 -135.877 -3.9689 3.9689 0.85 0.00052402 0.00047846 0.0460794 0.0419891 38 3765 35 6.99608e+06 294314 678818. 2348.85 12.18 0.330563 0.28887 26626 170182 -1 2652 19 2280 3067 243980 51586 4.53931 4.53931 -159.576 -4.53931 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0275507 0.0245592 117 50 87 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 8.24 vpr 65.65 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 34148 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 27.0 MiB 1.23 1088 13788 5313 5928 2547 65.7 MiB 0.11 0.00 3.56069 -123.887 -3.56069 3.56069 0.91 0.000533889 0.000488932 0.0432862 0.0394952 36 3765 43 6.99608e+06 294314 648988. 2245.63 3.87 0.157322 0.137942 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.33 0.10 0.16 -1 -1 0.33 0.0267725 0.0237062 101 50 58 30 58 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.07 vpr 66.05 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34152 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67632 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 27.1 MiB 0.74 1034 13906 5203 6656 2047 66.0 MiB 0.12 0.00 4.17744 -150.809 -4.17744 4.17744 0.90 0.000545381 0.000496954 0.0480788 0.0438008 46 3490 34 6.99608e+06 250167 828058. 2865.25 3.10 0.170664 0.150062 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0264237 0.0235259 107 61 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 6.85 vpr 65.97 MiB 0.02 7424 -1 -1 1 0.03 -1 -1 33836 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67552 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 27.2 MiB 0.80 1295 11830 3708 6867 1255 66.0 MiB 0.10 0.00 3.61179 -138.351 -3.61179 3.61179 0.88 0.000558012 0.000508178 0.0395265 0.0361203 44 3300 26 6.99608e+06 264882 787024. 2723.27 2.90 0.179197 0.157978 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.37 0.09 0.18 -1 -1 0.37 0.0274689 0.0245003 108 61 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 8.35 vpr 65.34 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 33916 -1 -1 14 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66904 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 26.8 MiB 1.37 714 7817 3113 4376 328 65.3 MiB 0.06 0.00 3.29694 -113.946 -3.29694 3.29694 0.89 0.000420336 0.000383622 0.0228023 0.0208634 36 2003 34 6.99608e+06 206020 648988. 2245.63 4.01 0.165619 0.143038 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0201826 0.0178775 73 28 58 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 8.28 vpr 65.17 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33984 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 26.8 MiB 2.85 796 13192 4518 6301 2373 65.2 MiB 0.09 0.00 3.75163 -124.237 -3.75163 3.75163 0.89 0.00047636 0.000433132 0.0376071 0.0341118 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.31 0.132793 0.115979 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.40 0.08 0.19 -1 -1 0.40 0.0241853 0.0213518 91 79 0 0 82 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 17.18 vpr 65.65 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 33688 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 27.0 MiB 0.70 1104 8164 1792 5984 388 65.7 MiB 0.07 0.00 3.79614 -138.31 -3.79614 3.79614 0.92 0.000562287 0.000515576 0.0280644 0.0256598 38 3147 50 6.99608e+06 250167 678818. 2348.85 13.41 0.270941 0.23464 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.33 0.08 0.15 -1 -1 0.33 0.0252423 0.0223025 92 29 93 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 7.96 vpr 65.43 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33788 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 26.8 MiB 1.88 924 11813 4851 6237 725 65.4 MiB 0.08 0.00 3.23604 -112.025 -3.23604 3.23604 0.90 0.000441097 0.000401906 0.0337346 0.0308183 38 2436 26 6.99608e+06 235451 678818. 2348.85 3.02 0.13259 0.115757 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0212031 0.018691 81 48 29 29 52 26 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 6.54 vpr 65.28 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33696 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 26.8 MiB 0.80 800 12628 5339 6973 316 65.3 MiB 0.09 0.00 3.56959 -131.903 -3.56959 3.56959 0.89 0.00044999 0.000409323 0.0379195 0.0345763 44 2487 30 6.99608e+06 191304 787024. 2723.27 2.62 0.137641 0.121125 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.0196209 0.0175189 79 31 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 17.92 vpr 65.72 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33684 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67296 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 27.0 MiB 1.37 964 11296 3574 5293 2429 65.7 MiB 0.09 0.00 4.06828 -143.162 -4.06828 4.06828 0.89 0.000533734 0.000486932 0.0368985 0.0337134 40 3214 32 6.99608e+06 279598 706193. 2443.58 13.42 0.289775 0.250671 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0265691 0.0235694 105 60 58 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 9.01 vpr 65.13 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34112 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 26.5 MiB 2.76 694 11756 4613 5996 1147 65.1 MiB 0.08 0.00 3.23724 -109.795 -3.23724 3.23724 0.88 0.000432362 0.000393682 0.0355787 0.0325258 48 2270 42 6.99608e+06 191304 865456. 2994.66 3.17 0.156816 0.137666 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.39 0.06 0.19 -1 -1 0.39 0.0207282 0.0183914 81 49 31 31 53 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 7.79 vpr 65.89 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 34088 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 27.2 MiB 1.76 911 15034 6476 7971 587 65.9 MiB 0.11 0.00 3.61105 -126.923 -3.61105 3.61105 0.90 0.000492435 0.000447155 0.0461108 0.0418664 52 2649 36 6.99608e+06 264882 926341. 3205.33 2.78 0.167153 0.146724 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.44 0.08 0.21 -1 -1 0.44 0.0248187 0.021854 103 56 52 26 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 7.89 vpr 65.88 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 34236 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67464 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 27.5 MiB 0.91 1135 16081 6006 7648 2427 65.9 MiB 0.13 0.00 4.67827 -157.924 -4.67827 4.67827 0.92 0.000564731 0.000512334 0.0526284 0.0478914 44 3513 45 6.99608e+06 323745 787024. 2723.27 3.68 0.224344 0.198013 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.39 0.09 0.18 -1 -1 0.39 0.0262946 0.0234748 123 88 31 31 92 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 18.37 vpr 65.82 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 33776 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67404 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 27.2 MiB 2.87 1185 10050 2506 6241 1303 65.8 MiB 0.07 0.00 3.59004 -135.268 -3.59004 3.59004 0.92 0.000490321 0.000447425 0.0308558 0.0281868 38 3007 50 6.99608e+06 220735 678818. 2348.85 12.47 0.241743 0.209263 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.31 0.06 0.15 -1 -1 0.31 0.0197351 0.0175678 88 54 32 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 9.19 vpr 65.64 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 33716 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67220 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 26.9 MiB 0.87 844 13856 5698 7170 988 65.6 MiB 0.10 0.00 3.30794 -123.058 -3.30794 3.30794 0.90 0.000476342 0.000434387 0.0432915 0.0395323 46 2571 29 6.99608e+06 206020 828058. 2865.25 5.13 0.201161 0.175433 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0242335 0.0214462 91 60 32 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 9.17 vpr 66.12 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 34140 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67712 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 27.3 MiB 1.00 1239 11118 3579 5407 2132 66.1 MiB 0.09 0.00 3.81515 -143.501 -3.81515 3.81515 0.90 0.000543624 0.000494555 0.03625 0.0330261 46 2851 29 6.99608e+06 264882 828058. 2865.25 4.99 0.232673 0.201744 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0264249 0.0234221 110 49 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 17.82 vpr 65.66 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34092 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 26.9 MiB 1.80 913 9160 3758 4976 426 65.7 MiB 0.07 0.00 3.41124 -117.262 -3.41124 3.41124 0.89 0.000502256 0.000457878 0.0289042 0.0264421 38 3163 50 6.99608e+06 309029 678818. 2348.85 12.96 0.265886 0.229297 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0250339 0.0221555 101 54 56 29 58 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 9.43 vpr 65.88 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 34372 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67460 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 27.6 MiB 0.87 1399 13316 4006 7788 1522 65.9 MiB 0.12 0.00 4.54237 -164.626 -4.54237 4.54237 0.92 0.000614169 0.000556704 0.0465023 0.0423268 44 3699 26 6.99608e+06 323745 787024. 2723.27 5.23 0.263611 0.229401 27778 195446 -1 3075 19 2759 3301 260793 54943 5.01404 5.01404 -183.666 -5.01404 0 0 997811. 3452.63 0.40 0.09 0.18 -1 -1 0.40 0.0279763 0.0249355 140 117 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 14.37 vpr 64.94 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33976 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 26.4 MiB 1.13 486 10149 3821 5138 1190 64.9 MiB 0.07 0.00 2.81885 -95.7056 -2.81885 2.81885 0.91 0.000392233 0.000357777 0.0281173 0.0256926 44 2052 46 6.99608e+06 161872 787024. 2723.27 10.16 0.228814 0.197233 27778 195446 -1 1238 21 1095 1683 125081 30710 2.96677 2.96677 -105.273 -2.96677 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0193101 0.0170343 57 -1 85 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 19.13 vpr 66.14 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 34044 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67732 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 27.6 MiB 3.16 1299 14303 5218 6688 2397 66.1 MiB 0.12 0.00 4.76923 -166.635 -4.76923 4.76923 0.91 0.000569455 0.000509644 0.0484843 0.0442262 46 3535 24 6.99608e+06 279598 828058. 2865.25 12.72 0.312892 0.272412 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0263936 0.0234762 118 89 28 28 92 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 9.46 vpr 65.54 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33732 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67108 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 26.8 MiB 0.93 1244 15216 5143 8703 1370 65.5 MiB 0.12 0.00 4.66407 -173.875 -4.66407 4.66407 0.92 0.000505747 0.000460516 0.0483146 0.0440646 44 3377 41 6.99608e+06 235451 787024. 2723.27 5.28 0.260436 0.228418 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.39 0.10 0.18 -1 -1 0.39 0.0274511 0.024379 110 93 0 0 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 9.89 vpr 66.04 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34016 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67624 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 27.2 MiB 0.85 1129 13403 5326 6238 1839 66.0 MiB 0.11 0.00 3.33684 -128.417 -3.33684 3.33684 0.90 0.000540794 0.000492806 0.0437741 0.0398585 38 3758 46 6.99608e+06 279598 678818. 2348.85 5.81 0.196004 0.171649 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.34 0.17 0.16 -1 -1 0.34 0.0399673 0.0352549 106 59 61 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 7.56 vpr 65.95 MiB 0.02 7596 -1 -1 1 0.04 -1 -1 34532 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67536 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 27.7 MiB 0.83 1500 14261 4373 7976 1912 66.0 MiB 0.12 0.00 4.89654 -177.942 -4.89654 4.89654 0.89 0.000644108 0.000583671 0.051708 0.0470042 40 4008 30 6.99608e+06 323745 706193. 2443.58 3.50 0.205874 0.180536 26914 176310 -1 3530 20 2959 3413 351818 70177 5.7166 5.7166 -206.283 -5.7166 0 0 926341. 3205.33 0.34 0.10 0.18 -1 -1 0.34 0.0300896 0.0267894 140 81 64 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.51 vpr 65.12 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33664 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 26.8 MiB 2.49 577 8449 3482 4728 239 65.1 MiB 0.05 0.00 2.75275 -95.2487 -2.75275 2.75275 0.93 0.000356077 0.000323318 0.0216468 0.0197055 36 2266 49 6.99608e+06 191304 648988. 2245.63 1.99 0.111055 0.096516 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.34 0.05 0.15 -1 -1 0.34 0.0178081 0.0157134 65 51 0 0 53 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 8.81 vpr 64.99 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34092 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 26.5 MiB 3.47 870 9516 3877 5353 286 65.0 MiB 0.06 0.00 3.41559 -121.499 -3.41559 3.41559 0.90 0.00040412 0.000362637 0.0271285 0.024719 34 2262 25 6.99608e+06 206020 618332. 2139.56 2.36 0.130317 0.11379 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0182474 0.0162652 72 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 19.40 vpr 64.91 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 33756 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 26.4 MiB 0.20 764 10316 3722 4683 1911 64.9 MiB 0.08 0.00 3.37904 -128.379 -3.37904 3.37904 0.92 0.000467078 0.000424127 0.0319675 0.0290332 44 3301 35 6.99608e+06 176588 787024. 2723.27 16.03 0.268181 0.234364 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.38 0.09 0.18 -1 -1 0.38 0.0239384 0.0211835 80 31 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.97 vpr 65.20 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34076 -1 -1 18 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 26.8 MiB 0.81 497 10819 4307 4933 1579 65.2 MiB 0.07 0.00 3.31386 -89.9377 -3.31386 3.31386 0.90 0.000377005 0.00034572 0.0280224 0.0256282 38 1712 31 6.99608e+06 264882 678818. 2348.85 2.16 0.116451 0.101332 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0186351 0.0164306 68 19 50 25 25 25 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 8.11 vpr 65.64 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34236 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67220 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 27.3 MiB 0.96 1423 14358 4574 7658 2126 65.6 MiB 0.12 0.00 3.77875 -143.667 -3.77875 3.77875 0.93 0.000560787 0.000512298 0.0482774 0.043977 46 3969 25 6.99608e+06 294314 828058. 2865.25 3.84 0.202036 0.178776 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0290712 0.0257814 125 84 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 9.31 vpr 65.89 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 33680 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67468 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 27.3 MiB 0.98 1182 13663 4698 6384 2581 65.9 MiB 0.11 0.00 4.16978 -143.827 -4.16978 4.16978 0.91 0.000568374 0.000518829 0.0454386 0.0414853 46 3209 24 6.99608e+06 323745 828058. 2865.25 5.05 0.240628 0.210059 28066 200906 -1 2521 22 2567 3385 263451 56153 4.22545 4.22545 -148.772 -4.22545 0 0 1.01997e+06 3529.29 0.39 0.09 0.19 -1 -1 0.39 0.0288432 0.025647 121 88 29 29 93 31 -fixed_k6_frac_N8_22nm.xml mult_001.v common 9.37 vpr 65.30 MiB 0.02 7084 -1 -1 14 0.33 -1 -1 36424 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 26.8 MiB 2.58 1265 9263 2276 5364 1623 65.3 MiB 0.09 0.00 8.4853 -170.751 -8.4853 8.4853 0.89 0.000637376 0.000569651 0.0369857 0.0334637 44 3187 47 6.79088e+06 255968 787024. 2723.27 3.24 0.213196 0.186791 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.38 0.16 0.19 -1 -1 0.38 0.040808 0.0363935 134 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 8.94 vpr 65.08 MiB 0.02 7044 -1 -1 14 0.32 -1 -1 36412 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66644 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 26.6 MiB 1.82 1228 8270 2008 5297 965 65.1 MiB 0.08 0.00 7.98833 -161.421 -7.98833 7.98833 0.89 0.000657906 0.000596887 0.0342456 0.0310669 38 3303 16 6.79088e+06 269440 678818. 2348.85 3.79 0.195173 0.172552 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0288565 0.0261548 132 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 11.11 vpr 64.72 MiB 0.02 7104 -1 -1 11 0.26 -1 -1 36728 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 26.3 MiB 2.01 1125 11613 3520 5862 2231 64.7 MiB 0.10 0.00 7.03202 -141.666 -7.03202 7.03202 0.90 0.000597564 0.000533268 0.0430739 0.0389525 38 3591 44 6.79088e+06 269440 678818. 2348.85 5.77 0.227027 0.199656 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0255451 0.0231901 138 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 9.75 vpr 64.82 MiB 0.02 7120 -1 -1 12 0.43 -1 -1 36636 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 26.4 MiB 1.80 1021 7643 1879 4700 1064 64.8 MiB 0.07 0.00 7.24011 -138.658 -7.24011 7.24011 0.90 0.000632251 0.000573461 0.0309742 0.0281419 44 2625 22 6.79088e+06 296384 787024. 2723.27 4.39 0.233788 0.203424 27118 194962 -1 2281 16 1190 3689 186383 43387 6.41977 6.41977 -132.045 -6.41977 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0279172 0.0251537 136 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 11.28 vpr 65.13 MiB 0.02 6964 -1 -1 13 0.37 -1 -1 36660 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 26.8 MiB 2.60 1463 12568 3276 7023 2269 65.1 MiB 0.12 0.00 8.02445 -169.708 -8.02445 8.02445 0.92 0.000720096 0.000649233 0.052405 0.0475401 46 3660 20 6.79088e+06 323328 828058. 2865.25 5.07 0.281903 0.247783 27406 200422 -1 2903 15 1384 3728 182895 41588 7.21431 7.21431 -161.115 -7.21431 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0318752 0.0289702 160 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 9.11 vpr 65.16 MiB 0.02 7000 -1 -1 12 0.34 -1 -1 36388 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 26.6 MiB 2.87 1344 4768 918 3685 165 65.2 MiB 0.05 0.00 7.61832 -163.245 -7.61832 7.61832 0.91 0.000670107 0.00060634 0.0211571 0.0192948 44 3529 23 6.79088e+06 323328 787024. 2723.27 2.73 0.159229 0.141664 27118 194962 -1 2985 17 1359 4066 236003 51425 6.72076 6.72076 -157.449 -6.72076 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0326412 0.0295226 150 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 9.65 vpr 64.48 MiB 0.02 6816 -1 -1 12 0.23 -1 -1 35984 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 26.0 MiB 1.76 1000 7177 1656 4753 768 64.5 MiB 0.06 0.00 7.28149 -137.47 -7.28149 7.28149 0.90 0.00051283 0.000461312 0.0247277 0.0225758 36 2895 37 6.79088e+06 269440 648988. 2245.63 4.69 0.16371 0.143919 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0229764 0.0207447 101 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 21.29 vpr 64.92 MiB 0.02 6920 -1 -1 11 0.22 -1 -1 36672 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 26.5 MiB 1.57 1129 9531 2421 6090 1020 64.9 MiB 0.08 0.00 6.82017 -140.384 -6.82017 6.82017 0.89 0.000569078 0.000512204 0.0339907 0.0306127 38 3033 23 6.79088e+06 242496 678818. 2348.85 16.48 0.318989 0.278046 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.33 0.07 0.17 -1 -1 0.33 0.0259106 0.0233632 118 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 10.53 vpr 64.68 MiB 0.02 6956 -1 -1 12 0.21 -1 -1 36316 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 26.1 MiB 3.22 1115 11631 3187 7135 1309 64.7 MiB 0.09 0.00 6.73244 -139.285 -6.73244 6.73244 0.89 0.000520115 0.00047212 0.0379323 0.0344731 36 2986 40 6.79088e+06 242496 648988. 2245.63 4.12 0.177917 0.155184 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0232205 0.0209111 111 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 9.11 vpr 64.82 MiB 0.02 6828 -1 -1 13 0.22 -1 -1 36408 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 26.2 MiB 1.77 1011 5412 1090 4064 258 64.8 MiB 0.05 0.00 7.30367 -163.797 -7.30367 7.30367 0.89 0.000525821 0.00047402 0.0208086 0.0189418 38 2844 25 6.79088e+06 215552 678818. 2348.85 4.17 0.181689 0.157881 25966 169698 -1 2242 16 1046 2661 140774 31740 6.24757 6.24757 -156.538 -6.24757 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.024189 0.0218347 107 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 7.06 vpr 64.72 MiB 0.02 6872 -1 -1 12 0.21 -1 -1 36456 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 26.2 MiB 1.73 838 6386 1352 4871 163 64.7 MiB 0.05 0.00 7.31171 -145.298 -7.31171 7.31171 0.90 0.000514374 0.00046873 0.0225887 0.0205997 38 2306 22 6.79088e+06 215552 678818. 2348.85 2.14 0.135142 0.118028 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0193923 0.0175111 93 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 9.58 vpr 64.36 MiB 0.02 6960 -1 -1 12 0.17 -1 -1 36276 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 25.9 MiB 2.34 1055 4560 1014 3240 306 64.4 MiB 0.04 0.00 6.46989 -155.558 -6.46989 6.46989 0.91 0.000494815 0.000447425 0.0169113 0.0154025 44 2506 15 6.79088e+06 188608 787024. 2723.27 4.02 0.169783 0.147494 27118 194962 -1 2245 17 965 2486 151023 33451 5.57489 5.57489 -144.5 -5.57489 0 0 997811. 3452.63 0.39 0.06 0.18 -1 -1 0.39 0.0225472 0.0202901 94 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 12.55 vpr 65.57 MiB 0.02 7092 -1 -1 13 0.34 -1 -1 36720 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67144 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 26.8 MiB 1.81 1239 11431 3102 6258 2071 65.6 MiB 0.10 0.00 7.91359 -165.523 -7.91359 7.91359 0.89 0.000675701 0.000610341 0.0459427 0.0416631 36 3864 39 6.79088e+06 282912 648988. 2245.63 7.33 0.228176 0.199807 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.0341354 0.0306587 148 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 8.59 vpr 65.26 MiB 0.02 7052 -1 -1 14 0.40 -1 -1 36824 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 26.7 MiB 2.12 1366 11245 3016 6173 2056 65.3 MiB 0.11 0.00 9.12295 -182.881 -9.12295 9.12295 0.89 0.000671011 0.000604781 0.0452563 0.0410161 40 3379 26 6.79088e+06 282912 706193. 2443.58 2.87 0.217871 0.19184 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.35 0.17 0.17 -1 -1 0.35 0.0426486 0.0380389 149 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 9.32 vpr 64.88 MiB 0.02 6992 -1 -1 11 0.21 -1 -1 36320 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 26.4 MiB 1.83 857 12681 3929 6469 2283 64.9 MiB 0.09 0.00 6.92892 -133.02 -6.92892 6.92892 0.89 0.000519073 0.000469763 0.0411509 0.0373716 44 2366 27 6.79088e+06 269440 787024. 2723.27 4.20 0.212648 0.184628 27118 194962 -1 1895 17 1033 2535 134756 31487 5.95428 5.95428 -123.689 -5.95428 0 0 997811. 3452.63 0.37 0.06 0.19 -1 -1 0.37 0.0234677 0.0210832 111 149 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 9.32 vpr 65.43 MiB 0.02 7076 -1 -1 12 0.33 -1 -1 36712 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 27.1 MiB 2.89 1420 13992 4103 7703 2186 65.4 MiB 0.13 0.00 7.6046 -160.271 -7.6046 7.6046 0.89 0.000686822 0.000626684 0.0564928 0.0508672 46 4023 39 6.79088e+06 269440 828058. 2865.25 2.93 0.217849 0.191528 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.39 0.09 0.18 -1 -1 0.39 0.03385 0.0303468 146 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 21.97 vpr 64.95 MiB 0.02 7008 -1 -1 13 0.34 -1 -1 36636 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 26.6 MiB 1.91 1236 10687 3174 5565 1948 65.0 MiB 0.10 0.00 8.28661 -168.45 -8.28661 8.28661 0.91 0.000714508 0.00064795 0.0448041 0.0406667 38 3417 39 6.79088e+06 282912 678818. 2348.85 16.64 0.389012 0.33945 25966 169698 -1 2856 18 1463 4224 225289 50661 7.25695 7.25695 -164.08 -7.25695 0 0 902133. 3121.57 0.32 0.08 0.16 -1 -1 0.32 0.0310986 0.0279798 144 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 8.05 vpr 64.83 MiB 0.02 6836 -1 -1 12 0.19 -1 -1 36064 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 26.3 MiB 2.55 945 7992 1779 4650 1563 64.8 MiB 0.07 0.00 6.70943 -154.61 -6.70943 6.70943 0.90 0.000508099 0.000461734 0.0277747 0.025214 36 2644 29 6.79088e+06 215552 648988. 2245.63 2.36 0.151274 0.131705 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.0207871 0.0187606 104 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 8.70 vpr 63.98 MiB 0.02 6824 -1 -1 10 0.12 -1 -1 36196 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65512 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 25.5 MiB 3.16 878 7049 1926 4350 773 64.0 MiB 0.05 0.00 5.18321 -124.627 -5.18321 5.18321 0.90 0.000394343 0.000358957 0.0200358 0.0182182 38 2075 46 6.79088e+06 161664 678818. 2348.85 2.47 0.133577 0.116456 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.35 0.04 0.16 -1 -1 0.35 0.0161824 0.0145254 67 85 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 10.16 vpr 64.57 MiB 0.02 6880 -1 -1 13 0.21 -1 -1 36268 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 26.1 MiB 2.37 974 6332 1469 4570 293 64.6 MiB 0.06 0.00 7.59608 -163.359 -7.59608 7.59608 0.89 0.000527501 0.000479631 0.0234435 0.0213691 38 2544 18 6.79088e+06 215552 678818. 2348.85 4.61 0.207473 0.180107 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0216631 0.0194591 99 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 8.68 vpr 64.90 MiB 0.02 7120 -1 -1 13 0.36 -1 -1 36992 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 26.3 MiB 1.52 1254 12371 3408 7445 1518 64.9 MiB 0.11 0.00 7.46133 -157.73 -7.46133 7.46133 0.91 0.000684461 0.000618055 0.0494885 0.0447808 38 3224 45 6.79088e+06 296384 678818. 2348.85 3.67 0.267535 0.23689 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.35 0.09 0.16 -1 -1 0.35 0.0332501 0.0299426 143 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 24.24 vpr 65.39 MiB 0.02 7144 -1 -1 13 0.36 -1 -1 36676 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 26.8 MiB 2.42 1425 10883 2960 6054 1869 65.4 MiB 0.10 0.00 8.13867 -171.504 -8.13867 8.13867 0.86 0.000650645 0.000587941 0.0442711 0.0402497 40 3438 18 6.79088e+06 255968 706193. 2443.58 18.38 0.352793 0.30839 26254 175826 -1 3243 28 1533 4313 517934 211444 7.06211 7.06211 -164.608 -7.06211 0 0 926341. 3205.33 0.33 0.17 0.15 -1 -1 0.33 0.0407173 0.0362095 141 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 7.68 vpr 64.12 MiB 0.02 6804 -1 -1 9 0.10 -1 -1 35944 -1 -1 16 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65656 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 25.6 MiB 1.78 588 10149 2859 5591 1699 64.1 MiB 0.06 0.00 4.97273 -93.6629 -4.97273 4.97273 0.90 0.000340219 0.000308173 0.024562 0.0223214 30 1736 26 6.79088e+06 215552 556674. 1926.21 2.99 0.127695 0.110125 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.29 0.04 0.13 -1 -1 0.29 0.0145177 0.0129629 64 66 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 10.30 vpr 65.68 MiB 0.02 7156 -1 -1 13 0.39 -1 -1 36296 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 26.9 MiB 2.78 1289 7268 1575 5261 432 65.7 MiB 0.08 0.00 8.3813 -168.316 -8.3813 8.3813 0.91 0.000691366 0.00062602 0.0308721 0.0280731 38 3745 37 6.79088e+06 296384 678818. 2348.85 4.03 0.209034 0.182842 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.0366995 0.032883 137 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 11.20 vpr 64.04 MiB 0.02 6772 -1 -1 8 0.10 -1 -1 36272 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65580 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 25.7 MiB 2.99 737 11631 4246 5219 2166 64.0 MiB 0.06 0.00 4.77835 -104.906 -4.77835 4.77835 0.89 0.000318069 0.000285821 0.0243067 0.0220554 30 1930 29 6.79088e+06 229024 556674. 1926.21 5.30 0.131984 0.114361 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.29 0.04 0.12 -1 -1 0.29 0.0149122 0.0132951 64 60 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 8.09 vpr 64.92 MiB 0.02 7004 -1 -1 15 0.29 -1 -1 36532 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 26.6 MiB 2.34 1155 10581 3115 6097 1369 64.9 MiB 0.09 0.00 8.86251 -178.17 -8.86251 8.86251 0.89 0.000605511 0.000545286 0.0375453 0.0341138 46 2717 18 6.79088e+06 229024 828058. 2865.25 2.35 0.173633 0.152844 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0258555 0.0234473 118 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 11.58 vpr 65.57 MiB 0.02 7148 -1 -1 12 0.32 -1 -1 36532 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 26.8 MiB 2.02 1241 4433 817 3477 139 65.6 MiB 0.05 0.00 7.21583 -155.808 -7.21583 7.21583 0.90 0.000673568 0.000608625 0.0201608 0.0183867 36 4047 49 6.79088e+06 296384 648988. 2245.63 6.18 0.214257 0.186876 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.32 0.15 0.15 -1 -1 0.32 0.0413264 0.0368067 145 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 15.67 vpr 65.14 MiB 0.02 7216 -1 -1 13 0.35 -1 -1 36572 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 26.6 MiB 1.75 1284 4659 748 3690 221 65.1 MiB 0.05 0.00 8.13835 -165.274 -8.13835 8.13835 0.89 0.000633653 0.000574107 0.0207193 0.01886 38 3292 49 6.79088e+06 269440 678818. 2348.85 10.55 0.322833 0.279574 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0298028 0.0267819 136 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 10.05 vpr 64.79 MiB 0.02 6832 -1 -1 12 0.20 -1 -1 36192 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 26.3 MiB 2.68 1045 5303 1002 3952 349 64.8 MiB 0.05 0.00 6.60115 -147.873 -6.60115 6.60115 0.92 0.000548775 0.000498639 0.0196006 0.0178683 38 2622 19 6.79088e+06 255968 678818. 2348.85 4.15 0.173159 0.150548 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0224741 0.020298 106 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 8.44 vpr 64.41 MiB 0.02 7016 -1 -1 11 0.19 -1 -1 36504 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 26.0 MiB 2.50 954 11652 3379 7115 1158 64.4 MiB 0.08 0.00 6.23714 -130.615 -6.23714 6.23714 0.83 0.000411302 0.000373814 0.0351937 0.0318419 38 2452 30 6.79088e+06 269440 678818. 2348.85 2.91 0.145979 0.127483 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.32 0.05 0.15 -1 -1 0.32 0.0185529 0.0166793 97 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 9.18 vpr 64.77 MiB 0.02 7036 -1 -1 11 0.20 -1 -1 36816 -1 -1 19 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 26.3 MiB 1.56 1013 7346 1810 4929 607 64.8 MiB 0.06 0.00 6.76313 -133.919 -6.76313 6.76313 0.91 0.000533179 0.000484518 0.0261663 0.0238654 36 2839 26 6.79088e+06 255968 648988. 2245.63 4.45 0.184354 0.160569 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0230549 0.0207093 107 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 8.90 vpr 65.11 MiB 0.02 6896 -1 -1 12 0.24 -1 -1 36444 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 26.7 MiB 2.58 1274 9443 2812 5690 941 65.1 MiB 0.08 0.00 6.88424 -161.28 -6.88424 6.88424 0.88 0.000596368 0.000536302 0.0353511 0.0321933 38 3239 49 6.79088e+06 255968 678818. 2348.85 3.07 0.200812 0.17537 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0285285 0.0255675 119 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 8.44 vpr 64.38 MiB 0.02 7016 -1 -1 11 0.20 -1 -1 36264 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 25.9 MiB 1.86 908 10056 3226 4794 2036 64.4 MiB 0.08 0.00 6.39517 -140.882 -6.39517 6.39517 0.89 0.000558881 0.000502818 0.0359041 0.0325461 36 2970 31 6.79088e+06 229024 648988. 2245.63 3.40 0.173053 0.150598 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0245878 0.0220649 107 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 6.96 vpr 64.80 MiB 0.02 6896 -1 -1 10 0.18 -1 -1 36544 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 26.3 MiB 1.80 870 8022 2297 4713 1012 64.8 MiB 0.06 0.00 6.19022 -129.37 -6.19022 6.19022 0.89 0.000503188 0.000457348 0.0275994 0.0250914 34 2314 24 6.79088e+06 242496 618332. 2139.56 2.04 0.147245 0.128864 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0247577 0.0221927 103 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 11.70 vpr 65.41 MiB 0.02 7376 -1 -1 13 0.39 -1 -1 37316 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 26.6 MiB 1.80 1352 10103 2504 6636 963 65.4 MiB 0.10 0.00 7.85531 -169.709 -7.85531 7.85531 0.90 0.000760705 0.000679188 0.0449199 0.0405477 38 3914 48 6.79088e+06 296384 678818. 2348.85 6.38 0.286194 0.252924 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.35 0.10 0.16 -1 -1 0.35 0.0385855 0.0345795 162 238 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 24.81 vpr 64.98 MiB 0.02 7020 -1 -1 13 0.39 -1 -1 36756 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 26.7 MiB 2.24 1274 13849 4315 6877 2657 65.0 MiB 0.13 0.00 7.85526 -169.716 -7.85526 7.85526 0.92 0.000676636 0.000610824 0.0560852 0.0505917 36 4447 42 6.79088e+06 282912 648988. 2245.63 18.99 0.410467 0.360576 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.33 0.13 0.15 -1 -1 0.33 0.0385514 0.0345571 152 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 19.15 vpr 64.57 MiB 0.02 7060 -1 -1 12 0.18 -1 -1 36356 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 26.1 MiB 1.68 851 11631 4796 6628 207 64.6 MiB 0.09 0.00 7.11438 -152.359 -7.11438 7.11438 0.89 0.000508692 0.000460426 0.0378121 0.0342949 36 2928 40 6.79088e+06 242496 648988. 2245.63 14.30 0.259764 0.224806 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0232302 0.0208134 102 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 8.08 vpr 65.28 MiB 0.02 7224 -1 -1 12 0.32 -1 -1 37144 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 26.5 MiB 1.56 1154 12749 3915 6368 2466 65.3 MiB 0.12 0.00 7.84323 -159.621 -7.84323 7.84323 0.90 0.000730456 0.000664934 0.0519293 0.0471553 40 3413 28 6.79088e+06 309856 706193. 2443.58 3.00 0.228216 0.201726 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.35 0.12 0.17 -1 -1 0.35 0.0399496 0.0358629 148 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 9.45 vpr 65.24 MiB 0.02 7296 -1 -1 14 0.42 -1 -1 36604 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 26.7 MiB 1.40 1375 11247 2864 6672 1711 65.2 MiB 0.10 0.00 8.18012 -172.817 -8.18012 8.18012 0.87 0.00066858 0.000609188 0.0427715 0.0389248 40 3259 24 6.79088e+06 282912 706193. 2443.58 4.64 0.264773 0.232428 26254 175826 -1 3232 17 1428 3947 258674 57943 7.30047 7.30047 -164.869 -7.30047 0 0 926341. 3205.33 0.33 0.09 0.16 -1 -1 0.33 0.0321 0.0290274 146 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 8.44 vpr 64.97 MiB 0.02 7180 -1 -1 13 0.31 -1 -1 36824 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 26.5 MiB 2.70 1310 10149 2655 5632 1862 65.0 MiB 0.09 0.00 7.78561 -164.423 -7.78561 7.78561 0.89 0.00063653 0.000575804 0.0386501 0.0351284 40 3171 33 6.79088e+06 282912 706193. 2443.58 2.46 0.187522 0.16432 26254 175826 -1 2932 18 1410 3652 240235 52553 7.08209 7.08209 -161.624 -7.08209 0 0 926341. 3205.33 0.32 0.08 0.15 -1 -1 0.32 0.0283532 0.0254241 126 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 9.26 vpr 65.20 MiB 0.02 7228 -1 -1 12 0.28 -1 -1 36688 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 26.7 MiB 1.08 1267 10859 2857 6722 1280 65.2 MiB 0.10 0.00 7.65156 -158.395 -7.65156 7.65156 0.90 0.000680262 0.000615237 0.0412933 0.0372823 44 3168 15 6.79088e+06 309856 787024. 2723.27 4.81 0.244024 0.213493 27118 194962 -1 2657 16 1145 3375 184343 41330 6.59546 6.59546 -149.762 -6.59546 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0291614 0.0264196 135 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 17.42 vpr 65.09 MiB 0.02 7052 -1 -1 12 0.23 -1 -1 36108 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 26.7 MiB 1.44 1093 11106 3659 5731 1716 65.1 MiB 0.09 0.00 7.11863 -144.901 -7.11863 7.11863 0.89 0.000575951 0.0005208 0.0397927 0.0361373 36 3341 42 6.79088e+06 229024 648988. 2245.63 12.73 0.283874 0.246245 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0272893 0.0243683 113 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 29.99 vpr 65.68 MiB 0.02 7220 -1 -1 14 0.55 -1 -1 36532 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67252 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 27.0 MiB 1.62 1406 13355 3498 8147 1710 65.7 MiB 0.12 0.00 8.18038 -175.8 -8.18038 8.18038 0.90 0.000676796 0.000607301 0.0550028 0.0497219 38 4021 47 6.79088e+06 336800 678818. 2348.85 24.65 0.480481 0.420705 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.34 0.09 0.15 -1 -1 0.34 0.0342781 0.0311052 169 244 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 8.03 vpr 64.95 MiB 0.02 6784 -1 -1 11 0.24 -1 -1 36268 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 26.4 MiB 2.24 1088 9006 2212 5478 1316 64.9 MiB 0.08 0.00 6.58747 -141.672 -6.58747 6.58747 0.89 0.000568724 0.000517295 0.0327831 0.0297445 36 3313 23 6.79088e+06 242496 648988. 2245.63 2.55 0.143609 0.12554 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0264011 0.0236152 113 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 7.08 vpr 64.93 MiB 0.02 7280 -1 -1 13 0.33 -1 -1 37176 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 26.5 MiB 1.86 1133 5422 1123 3954 345 64.9 MiB 0.05 0.00 7.76692 -152.212 -7.76692 7.76692 0.85 0.000614656 0.000559669 0.0221431 0.0202309 36 3213 29 6.79088e+06 255968 648988. 2245.63 2.04 0.162795 0.143372 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.30 0.08 0.14 -1 -1 0.30 0.0285928 0.0257938 132 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 32.96 vpr 65.45 MiB 0.04 7012 -1 -1 12 0.34 -1 -1 36616 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 26.6 MiB 1.77 1437 6967 1505 4666 796 65.4 MiB 0.08 0.00 7.30746 -159.645 -7.30746 7.30746 0.91 0.000712319 0.000643677 0.031433 0.028578 38 3828 35 6.79088e+06 282912 678818. 2348.85 27.70 0.408908 0.357242 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.34 0.10 0.16 -1 -1 0.34 0.0371003 0.0335058 153 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 7.73 vpr 65.21 MiB 0.02 6936 -1 -1 13 0.30 -1 -1 36624 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 26.8 MiB 1.63 1157 7823 1835 4914 1074 65.2 MiB 0.07 0.00 7.47708 -158.746 -7.47708 7.47708 0.90 0.000638834 0.000579133 0.0313179 0.0284926 36 3541 41 6.79088e+06 255968 648988. 2245.63 2.78 0.167875 0.147072 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0271492 0.0245488 131 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 9.34 vpr 65.39 MiB 0.02 7088 -1 -1 13 0.28 -1 -1 36576 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 26.7 MiB 2.53 1097 11106 3753 5771 1582 65.4 MiB 0.09 0.00 7.69072 -162.222 -7.69072 7.69072 0.90 0.000594203 0.000538182 0.0420005 0.0381134 34 3515 39 6.79088e+06 229024 618332. 2139.56 3.47 0.202217 0.176643 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.30 0.12 0.15 -1 -1 0.30 0.0343177 0.0305594 118 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 11.16 vpr 65.37 MiB 0.02 6996 -1 -1 12 0.34 -1 -1 36888 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 26.8 MiB 2.39 1359 8151 1869 5680 602 65.4 MiB 0.08 0.00 7.62073 -165.231 -7.62073 7.62073 0.90 0.000709146 0.000640594 0.0340278 0.030847 36 3806 40 6.79088e+06 309856 648988. 2245.63 5.38 0.212638 0.186169 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.30 0.09 0.15 -1 -1 0.30 0.0310445 0.0278471 150 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 11.03 vpr 65.07 MiB 0.02 7108 -1 -1 13 0.34 -1 -1 36808 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 26.6 MiB 2.46 1315 9051 2036 5908 1107 65.1 MiB 0.09 0.00 7.55776 -165.084 -7.55776 7.55776 0.91 0.000620887 0.000561205 0.0376254 0.0340858 44 3354 21 6.79088e+06 269440 787024. 2723.27 5.10 0.282295 0.247507 27118 194962 -1 2672 17 1265 3553 183266 41178 6.95247 6.95247 -157.937 -6.95247 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0310653 0.02808 143 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 10.44 vpr 64.93 MiB 0.02 7064 -1 -1 14 0.35 -1 -1 36804 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 26.5 MiB 2.67 1139 8270 1889 5806 575 64.9 MiB 0.08 0.00 8.36252 -172.285 -8.36252 8.36252 0.90 0.000603289 0.000547676 0.0319539 0.0290943 44 3128 32 6.79088e+06 242496 787024. 2723.27 4.35 0.240196 0.210888 27118 194962 -1 2534 14 1111 3223 182733 40388 7.46496 7.46496 -165.503 -7.46496 0 0 997811. 3452.63 0.37 0.06 0.17 -1 -1 0.37 0.0230043 0.0208591 123 164 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 10.14 vpr 65.32 MiB 0.02 7236 -1 -1 13 0.33 -1 -1 36560 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 26.6 MiB 3.78 1159 8868 1881 6136 851 65.3 MiB 0.08 0.00 8.02321 -165.348 -8.02321 8.02321 0.85 0.000618676 0.000561793 0.0346033 0.03146 36 3689 32 6.79088e+06 269440 648988. 2245.63 3.16 0.218413 0.19343 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.031657 0.0285481 134 198 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 22.57 vpr 65.43 MiB 0.02 7296 -1 -1 13 0.37 -1 -1 36520 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 26.6 MiB 1.53 1323 8591 2185 5991 415 65.4 MiB 0.09 0.00 8.19403 -174.315 -8.19403 8.19403 0.90 0.000728317 0.00066147 0.0363935 0.0329855 40 3394 20 6.79088e+06 309856 706193. 2443.58 17.45 0.386567 0.338669 26254 175826 -1 3066 25 1743 5231 489753 175031 7.25772 7.25772 -167.404 -7.25772 0 0 926341. 3205.33 0.35 0.17 0.17 -1 -1 0.35 0.0436235 0.0392456 154 218 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 8.27 vpr 65.54 MiB 0.02 7240 -1 -1 12 0.39 -1 -1 36576 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 26.7 MiB 1.65 1325 11983 3288 6841 1854 65.5 MiB 0.11 0.00 7.62163 -166.383 -7.62163 7.62163 0.90 0.000721323 0.000653146 0.0486488 0.0439269 44 3682 36 6.79088e+06 323328 787024. 2723.27 3.04 0.23115 0.202624 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0331893 0.0299018 157 229 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 8.75 vpr 64.51 MiB 0.02 6948 -1 -1 11 0.16 -1 -1 36100 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 26.1 MiB 1.68 956 7249 1855 4884 510 64.5 MiB 0.06 0.00 6.10061 -138.097 -6.10061 6.10061 0.86 0.000496121 0.000449662 0.0240094 0.0218414 44 2204 16 6.79088e+06 175136 787024. 2723.27 3.99 0.178028 0.15528 27118 194962 -1 1994 14 890 2260 140178 30612 5.5245 5.5245 -131.032 -5.5245 0 0 997811. 3452.63 0.37 0.05 0.18 -1 -1 0.37 0.0184306 0.0166258 90 121 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 23.69 vpr 65.03 MiB 0.02 6792 -1 -1 13 0.23 -1 -1 36224 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 26.7 MiB 3.03 1073 11631 3861 5991 1779 65.0 MiB 0.09 0.00 7.81611 -170.556 -7.81611 7.81611 0.92 0.000557006 0.000504135 0.0410628 0.0372122 38 2825 21 6.79088e+06 229024 678818. 2348.85 17.37 0.276793 0.242492 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0242333 0.0219279 113 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 10.21 vpr 65.81 MiB 0.02 7112 -1 -1 14 0.54 -1 -1 36484 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 27.2 MiB 1.27 1399 15493 4561 8338 2594 65.8 MiB 0.15 0.00 8.67312 -179.019 -8.67312 8.67312 0.92 0.00077423 0.000688893 0.0691753 0.0623332 40 4316 49 6.79088e+06 323328 706193. 2443.58 4.95 0.31352 0.27687 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.36 0.30 0.16 -1 -1 0.36 0.0685108 0.0610316 180 266 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 8.80 vpr 65.75 MiB 0.02 6968 -1 -1 13 0.42 -1 -1 36832 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 27.1 MiB 2.93 1244 13849 3731 7364 2754 65.8 MiB 0.13 0.00 8.43396 -178.911 -8.43396 8.43396 0.92 0.000708632 0.000638866 0.0583658 0.0527449 38 3697 23 6.79088e+06 282912 678818. 2348.85 2.25 0.194771 0.171664 25966 169698 -1 2755 16 1418 3990 204815 47150 7.34737 7.34737 -164.785 -7.34737 0 0 902133. 3121.57 0.35 0.08 0.17 -1 -1 0.35 0.032967 0.0298192 154 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 5.87 vpr 64.29 MiB 0.02 6824 -1 -1 11 0.21 -1 -1 36236 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65836 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 25.8 MiB 0.84 899 5994 1459 3795 740 64.3 MiB 0.05 0.00 6.69493 -140.456 -6.69493 6.69493 0.89 0.000501463 0.000455345 0.0210234 0.0190847 30 2669 49 6.79088e+06 229024 556674. 1926.21 1.91 0.119689 0.104712 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.30 0.06 0.13 -1 -1 0.30 0.0242045 0.0217882 99 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 11.10 vpr 65.32 MiB 0.02 7472 -1 -1 15 0.53 -1 -1 37632 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 26.8 MiB 1.51 1572 8083 1890 5078 1115 65.3 MiB 0.09 0.00 9.61575 -193.644 -9.61575 9.61575 0.85 0.000763412 0.000684489 0.0363489 0.0329148 44 4110 31 6.79088e+06 323328 787024. 2723.27 6.02 0.34046 0.302383 27118 194962 -1 3390 17 1634 4978 276321 60698 8.1454 8.1454 -178.826 -8.1454 0 0 997811. 3452.63 0.37 0.10 0.17 -1 -1 0.37 0.037497 0.0341999 172 240 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 8.37 vpr 65.24 MiB 0.02 7144 -1 -1 13 0.40 -1 -1 36444 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 26.7 MiB 1.42 1447 9914 2954 6315 645 65.2 MiB 0.10 0.00 8.38843 -181.197 -8.38843 8.38843 0.90 0.00068396 0.00061835 0.0402916 0.0365181 38 3572 19 6.79088e+06 296384 678818. 2348.85 3.45 0.197046 0.17332 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0325599 0.0293957 149 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 6.85 vpr 64.74 MiB 0.02 7028 -1 -1 11 0.15 -1 -1 36484 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66292 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 26.3 MiB 2.02 1043 11604 3704 5973 1927 64.7 MiB 0.09 0.00 6.83225 -151.19 -6.83225 6.83225 0.92 0.000524732 0.000474277 0.0384421 0.0348636 30 2701 43 6.79088e+06 215552 556674. 1926.21 1.70 0.139229 0.123308 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0241195 0.0216283 97 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 20.32 vpr 65.73 MiB 0.02 7348 -1 -1 12 0.38 -1 -1 36456 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 26.9 MiB 1.95 1321 11989 3057 7272 1660 65.7 MiB 0.11 0.00 7.80487 -167.158 -7.80487 7.80487 0.89 0.000680592 0.000606443 0.0481128 0.0433883 40 3150 27 6.79088e+06 282912 706193. 2443.58 14.87 0.363313 0.315836 26254 175826 -1 3019 17 1406 4153 254158 55179 6.74877 6.74877 -155.224 -6.74877 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0312611 0.028181 152 213 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 10.23 vpr 64.72 MiB 0.02 6856 -1 -1 12 0.25 -1 -1 35968 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 26.4 MiB 2.10 1076 11776 3996 5804 1976 64.7 MiB 0.10 0.00 7.20737 -155.525 -7.20737 7.20737 0.87 0.0006003 0.000548038 0.0450582 0.0410224 38 3023 28 6.79088e+06 215552 678818. 2348.85 4.87 0.201325 0.178169 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.33 0.09 0.15 -1 -1 0.33 0.0308735 0.0276631 115 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 5.99 vpr 64.77 MiB 0.02 7084 -1 -1 12 0.23 -1 -1 36456 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 26.3 MiB 1.64 861 12331 3461 6927 1943 64.8 MiB 0.09 0.00 7.68992 -150.206 -7.68992 7.68992 0.91 0.000537498 0.000488289 0.041058 0.0373185 30 2423 23 6.79088e+06 255968 556674. 1926.21 1.16 0.117636 0.104105 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0218305 0.0198015 105 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 9.59 vpr 65.23 MiB 0.02 7172 -1 -1 12 0.35 -1 -1 36532 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 26.7 MiB 1.64 1109 13105 4321 6403 2381 65.2 MiB 0.11 0.00 7.73882 -148.46 -7.73882 7.73882 0.89 0.000645914 0.000581108 0.0490743 0.0443109 36 3249 25 6.79088e+06 323328 648988. 2245.63 4.57 0.221655 0.195379 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0308778 0.0278672 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 11.65 vpr 65.70 MiB 0.02 7212 -1 -1 14 0.41 -1 -1 36832 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 27.1 MiB 3.08 1442 8024 2021 5399 604 65.7 MiB 0.08 0.00 8.63126 -174.325 -8.63126 8.63126 0.89 0.000738658 0.000670602 0.0350112 0.0317577 46 3512 20 6.79088e+06 296384 828058. 2865.25 5.00 0.240937 0.210588 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.37 0.08 0.20 -1 -1 0.37 0.0322696 0.0291591 155 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 9.25 vpr 65.04 MiB 0.02 7180 -1 -1 12 0.29 -1 -1 36364 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 26.6 MiB 1.78 1323 12503 3954 6429 2120 65.0 MiB 0.11 0.00 7.68002 -164.527 -7.68002 7.68002 0.90 0.000653824 0.000590979 0.0496309 0.0449697 38 3480 45 6.79088e+06 255968 678818. 2348.85 4.00 0.226657 0.198883 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.33 0.15 0.16 -1 -1 0.33 0.040802 0.0363304 137 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 8.12 vpr 64.33 MiB 0.02 7064 -1 -1 12 0.18 -1 -1 36636 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 25.9 MiB 1.64 883 6839 1546 5160 133 64.3 MiB 0.06 0.00 7.22527 -147.319 -7.22527 7.22527 0.92 0.000518552 0.000456075 0.0243419 0.0220238 34 2749 47 6.79088e+06 202080 618332. 2139.56 3.27 0.14133 0.124011 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.31 0.12 0.14 -1 -1 0.31 0.030622 0.0272172 95 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 10.21 vpr 65.08 MiB 0.02 7028 -1 -1 12 0.27 -1 -1 35976 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 26.7 MiB 2.31 1016 11806 3829 5905 2072 65.1 MiB 0.09 0.00 7.21239 -153.602 -7.21239 7.21239 0.85 0.000598521 0.000541095 0.0405573 0.0368419 46 2377 20 6.79088e+06 242496 828058. 2865.25 4.65 0.27105 0.238793 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.37 0.06 0.18 -1 -1 0.37 0.0256155 0.0231439 114 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 11.35 vpr 65.12 MiB 0.02 7084 -1 -1 11 0.24 -1 -1 36648 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 26.6 MiB 3.23 1192 7587 1799 4901 887 65.1 MiB 0.07 0.00 6.65573 -139.172 -6.65573 6.65573 0.89 0.000574949 0.000516418 0.0280068 0.0253138 44 3222 24 6.79088e+06 296384 787024. 2723.27 4.84 0.222189 0.192853 27118 194962 -1 2529 15 1183 3751 197012 43772 5.78973 5.78973 -133.446 -5.78973 0 0 997811. 3452.63 0.37 0.07 0.17 -1 -1 0.37 0.0260877 0.0236679 129 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 9.69 vpr 65.02 MiB 0.02 7052 -1 -1 11 0.26 -1 -1 36560 -1 -1 21 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 26.6 MiB 1.66 990 12156 4943 6412 801 65.0 MiB 0.10 0.00 6.59863 -125.892 -6.59863 6.59863 0.91 0.000584921 0.000528262 0.0437753 0.0396737 44 2904 27 6.79088e+06 282912 787024. 2723.27 4.58 0.253484 0.220501 27118 194962 -1 2227 20 1278 3711 190655 44513 6.15444 6.15444 -122.054 -6.15444 0 0 997811. 3452.63 0.38 0.08 0.20 -1 -1 0.38 0.0303758 0.0272323 125 164 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 10.65 vpr 64.50 MiB 0.02 6872 -1 -1 13 0.23 -1 -1 36308 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 26.0 MiB 3.61 1023 6220 1452 4481 287 64.5 MiB 0.05 0.00 7.37394 -146.255 -7.37394 7.37394 0.89 0.000527914 0.000479019 0.0225268 0.0205109 36 2646 31 6.79088e+06 215552 648988. 2245.63 3.92 0.172655 0.149601 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.30 0.05 0.14 -1 -1 0.30 0.0191923 0.0173404 104 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 8.97 vpr 64.89 MiB 0.02 6752 -1 -1 12 0.24 -1 -1 36312 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 26.5 MiB 2.41 1239 4476 858 3235 383 64.9 MiB 0.04 0.00 7.13568 -159.479 -7.13568 7.13568 0.91 0.000659961 0.000592701 0.0182292 0.0166029 36 3048 33 6.79088e+06 269440 648988. 2245.63 3.32 0.177287 0.155031 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.32 0.07 0.16 -1 -1 0.32 0.0271065 0.0245067 125 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 8.05 vpr 64.87 MiB 0.02 7056 -1 -1 13 0.36 -1 -1 36688 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 26.4 MiB 2.37 1176 7283 1697 4959 627 64.9 MiB 0.07 0.00 7.98183 -162.706 -7.98183 7.98183 0.90 0.000632577 0.000573434 0.0294611 0.0267782 38 2773 17 6.79088e+06 269440 678818. 2348.85 2.26 0.178581 0.156796 25966 169698 -1 2364 19 1086 3314 147941 34759 6.84611 6.84611 -150.495 -6.84611 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0323128 0.0290925 137 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 9.25 vpr 65.68 MiB 0.02 6956 -1 -1 14 0.36 -1 -1 36780 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67252 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 26.9 MiB 1.90 1408 9013 2325 5592 1096 65.7 MiB 0.09 0.00 8.8032 -181.521 -8.8032 8.8032 0.92 0.000712026 0.000647753 0.0393847 0.035774 36 3712 28 6.79088e+06 282912 648988. 2245.63 3.89 0.225783 0.199652 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0309957 0.0280798 149 213 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 11.16 vpr 65.25 MiB 0.02 7112 -1 -1 14 0.33 -1 -1 36736 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 26.7 MiB 2.85 1168 12528 4001 6466 2061 65.3 MiB 0.11 0.00 8.11366 -160.164 -8.11366 8.11366 0.91 0.000645537 0.000584417 0.0488708 0.0442858 44 3141 20 6.79088e+06 269440 787024. 2723.27 4.81 0.271659 0.238743 27118 194962 -1 2405 15 1112 3343 161383 37575 7.21863 7.21863 -147.209 -7.21863 0 0 997811. 3452.63 0.36 0.07 0.17 -1 -1 0.36 0.0267632 0.0243185 136 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 11.75 vpr 65.13 MiB 0.02 7188 -1 -1 13 0.44 -1 -1 36988 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 26.6 MiB 2.56 1266 7823 1896 4973 954 65.1 MiB 0.08 0.00 7.98865 -167.696 -7.98865 7.98865 0.92 0.000679832 0.000615829 0.0339452 0.030815 44 3303 29 6.79088e+06 255968 787024. 2723.27 5.54 0.300005 0.264046 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.031051 0.0280225 139 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 16.85 vpr 64.92 MiB 0.02 7060 -1 -1 13 0.22 -1 -1 36408 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 26.4 MiB 1.98 955 5888 1275 4387 226 64.9 MiB 0.06 0.00 7.30909 -151.711 -7.30909 7.30909 0.91 0.000545782 0.000497359 0.022538 0.0205787 40 2382 30 6.79088e+06 215552 706193. 2443.58 11.62 0.275842 0.239022 26254 175826 -1 2197 16 1037 2468 154235 34830 6.41977 6.41977 -144.343 -6.41977 0 0 926341. 3205.33 0.34 0.06 0.17 -1 -1 0.34 0.0230679 0.0207382 106 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 8.19 vpr 65.27 MiB 0.02 7152 -1 -1 13 0.57 -1 -1 36816 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 26.5 MiB 1.82 1281 12175 3045 7735 1395 65.3 MiB 0.11 0.00 8.2401 -167.978 -8.2401 8.2401 0.90 0.000693457 0.000631689 0.0497886 0.045255 36 3566 29 6.79088e+06 309856 648988. 2245.63 2.65 0.189994 0.168377 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.32 0.13 0.15 -1 -1 0.32 0.0388317 0.034841 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 10.50 vpr 65.27 MiB 0.02 7112 -1 -1 14 0.37 -1 -1 36272 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66836 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 26.8 MiB 2.08 1252 6306 1410 4478 418 65.3 MiB 0.06 0.00 8.1933 -176.786 -8.1933 8.1933 0.89 0.000639354 0.000578147 0.0252798 0.0229716 46 3049 24 6.79088e+06 269440 828058. 2865.25 4.92 0.212082 0.184731 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0304105 0.0274155 133 181 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 20.38 vpr 65.00 MiB 0.02 7152 -1 -1 12 0.32 -1 -1 36808 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 26.5 MiB 2.19 1214 6855 1626 4139 1090 65.0 MiB 0.07 0.00 7.87232 -159.238 -7.87232 7.87232 0.91 0.000672914 0.000612074 0.029028 0.0264293 38 3142 49 6.79088e+06 282912 678818. 2348.85 14.78 0.387383 0.339688 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.029968 0.0271587 143 200 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 22.79 vpr 65.04 MiB 0.02 7280 -1 -1 13 0.30 -1 -1 36296 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 26.3 MiB 2.47 1166 13583 4513 7114 1956 65.0 MiB 0.12 0.00 8.05477 -151.514 -8.05477 8.05477 0.91 0.000622712 0.000566502 0.0523669 0.0476428 38 3283 21 6.79088e+06 282912 678818. 2348.85 16.89 0.31256 0.274314 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0275188 0.0248772 126 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 10.33 vpr 65.47 MiB 0.02 7064 -1 -1 14 0.44 -1 -1 36888 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 27.1 MiB 1.89 1356 6595 1328 4700 567 65.5 MiB 0.07 0.00 8.2637 -174.994 -8.2637 8.2637 0.91 0.000711175 0.000644319 0.0299098 0.027269 38 3897 30 6.79088e+06 282912 678818. 2348.85 4.85 0.220312 0.194601 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.34 0.11 0.16 -1 -1 0.34 0.0394935 0.0354841 154 215 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 21.95 vpr 65.25 MiB 0.02 6940 -1 -1 11 0.36 -1 -1 36348 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 26.8 MiB 1.57 1061 13403 4351 6899 2153 65.2 MiB 0.11 0.00 6.99502 -136.053 -6.99502 6.99502 0.89 0.00061488 0.00055283 0.0488385 0.0441376 30 3783 49 6.79088e+06 296384 556674. 1926.21 16.97 0.339534 0.296902 24526 138013 -1 2675 25 1322 3998 313633 101063 5.87926 5.87926 -131.148 -5.87926 0 0 706193. 2443.58 0.29 0.12 0.13 -1 -1 0.29 0.0372615 0.0333428 130 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 16.56 vpr 64.84 MiB 0.02 6896 -1 -1 13 0.20 -1 -1 36196 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 26.3 MiB 3.77 995 4062 701 3272 89 64.8 MiB 0.04 0.00 6.9771 -161.617 -6.9771 6.9771 0.88 0.000445789 0.000405922 0.0137433 0.012625 36 2919 36 6.79088e+06 188608 648988. 2245.63 9.65 0.253024 0.220132 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0238625 0.0215166 99 130 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 10.15 vpr 65.19 MiB 0.02 7004 -1 -1 14 0.30 -1 -1 36372 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 26.7 MiB 2.25 1302 5483 1117 4002 364 65.2 MiB 0.06 0.00 8.68565 -176.783 -8.68565 8.68565 0.90 0.000629178 0.000571498 0.0226418 0.0206574 36 3263 26 6.79088e+06 255968 648988. 2245.63 4.58 0.177659 0.155745 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.027432 0.0247692 129 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 20.97 vpr 65.42 MiB 0.02 7204 -1 -1 15 0.47 -1 -1 36668 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 27.0 MiB 2.36 1292 9914 2574 6184 1156 65.4 MiB 0.10 0.00 9.1052 -186.475 -9.1052 9.1052 0.89 0.000731243 0.000662019 0.0434404 0.0393815 40 3560 37 6.79088e+06 296384 706193. 2443.58 15.00 0.404028 0.353107 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0376495 0.0337181 153 227 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 8.95 vpr 64.72 MiB 0.02 6872 -1 -1 11 0.20 -1 -1 36340 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 26.3 MiB 2.58 829 6054 1305 4663 86 64.7 MiB 0.05 0.00 6.63906 -133.693 -6.63906 6.63906 0.92 0.000444057 0.000405331 0.0208684 0.0189588 34 2844 35 6.79088e+06 188608 618332. 2139.56 3.19 0.151502 0.132118 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0217952 0.0194945 91 123 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 8.31 vpr 64.50 MiB 0.02 7036 -1 -1 12 0.24 -1 -1 36328 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 25.9 MiB 1.92 1045 8360 2472 4444 1444 64.5 MiB 0.07 0.00 7.09988 -155.106 -7.09988 7.09988 0.91 0.000572382 0.000519893 0.031287 0.0285004 36 3087 23 6.79088e+06 215552 648988. 2245.63 3.13 0.16182 0.141605 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.026763 0.0239858 111 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 8.74 vpr 65.12 MiB 0.02 7180 -1 -1 12 0.39 -1 -1 36428 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 26.6 MiB 1.76 1231 6306 1337 4274 695 65.1 MiB 0.07 0.00 7.48442 -156.804 -7.48442 7.48442 0.86 0.000677822 0.000616983 0.0283551 0.0258353 36 3798 37 6.79088e+06 269440 648988. 2245.63 3.65 0.230191 0.204334 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.0354584 0.0320524 145 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 10.17 vpr 65.25 MiB 0.02 7212 -1 -1 12 0.31 -1 -1 36848 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 26.5 MiB 2.11 1313 9443 2521 5826 1096 65.2 MiB 0.09 0.00 7.56551 -160.745 -7.56551 7.56551 0.89 0.000626971 0.000568705 0.0372686 0.0339104 36 3623 36 6.79088e+06 255968 648988. 2245.63 4.69 0.253654 0.222074 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0303112 0.02731 133 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 9.84 vpr 65.70 MiB 0.02 7264 -1 -1 14 0.58 -1 -1 36808 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 26.9 MiB 1.70 1284 5079 907 4069 103 65.7 MiB 0.07 0.00 8.77515 -179.37 -8.77515 8.77515 0.90 0.000771297 0.000693737 0.0263096 0.0239547 38 4131 35 6.79088e+06 309856 678818. 2348.85 4.42 0.239371 0.211453 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.34 0.10 0.16 -1 -1 0.34 0.0394663 0.0357577 170 238 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 9.94 vpr 64.93 MiB 0.02 7200 -1 -1 11 0.29 -1 -1 36236 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 26.5 MiB 2.45 1159 11963 3648 6429 1886 64.9 MiB 0.10 0.00 7.06667 -142.983 -7.06667 7.06667 0.88 0.000591742 0.000534176 0.0436434 0.0395729 44 2874 16 6.79088e+06 282912 787024. 2723.27 4.06 0.230457 0.201232 27118 194962 -1 2495 13 1107 3189 172215 38308 6.29442 6.29442 -134.943 -6.29442 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0248722 0.0227077 128 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 8.87 vpr 64.62 MiB 0.02 6940 -1 -1 11 0.22 -1 -1 36476 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 26.2 MiB 1.50 770 7714 1883 5409 422 64.6 MiB 0.06 0.00 6.64923 -122.654 -6.64923 6.64923 0.90 0.00051867 0.000464699 0.0263987 0.0239277 44 2104 48 6.79088e+06 255968 787024. 2723.27 4.09 0.213271 0.185001 27118 194962 -1 1646 17 783 2028 103450 24460 5.81779 5.81779 -115.345 -5.81779 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0229047 0.0205492 101 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 11.15 vpr 66.08 MiB 0.02 7172 -1 -1 13 0.55 -1 -1 36740 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67664 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 27.3 MiB 2.24 1654 14793 4090 8037 2666 66.1 MiB 0.16 0.00 8.15219 -167.23 -8.15219 8.15219 0.92 0.000842398 0.000749858 0.0651443 0.0585332 40 4464 26 6.79088e+06 390688 706193. 2443.58 4.80 0.286578 0.253436 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.35 0.40 0.16 -1 -1 0.35 0.0817993 0.0727266 191 278 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 16.72 vpr 64.80 MiB 0.02 7232 -1 -1 14 0.34 -1 -1 36528 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 26.4 MiB 1.67 1216 6923 1704 4584 635 64.8 MiB 0.07 0.00 8.60637 -173.25 -8.60637 8.60637 0.91 0.00063506 0.00057574 0.0286734 0.0261952 30 3569 30 6.79088e+06 269440 556674. 1926.21 11.69 0.235119 0.206366 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.29 0.08 0.13 -1 -1 0.29 0.0299107 0.0269751 128 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 11.24 vpr 64.64 MiB 0.02 6960 -1 -1 12 0.19 -1 -1 36312 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 26.1 MiB 2.82 1144 8723 2365 5890 468 64.6 MiB 0.07 0.00 7.40683 -169.316 -7.40683 7.40683 0.89 0.000527915 0.000479488 0.0289501 0.0263156 44 3005 29 6.79088e+06 255968 787024. 2723.27 5.15 0.218471 0.189914 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0250852 0.0226017 109 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 11.98 vpr 65.23 MiB 0.02 7172 -1 -1 13 0.37 -1 -1 36400 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 26.8 MiB 3.49 1115 5066 1001 3852 213 65.2 MiB 0.05 0.00 8.33866 -169.136 -8.33866 8.33866 0.91 0.000615077 0.000557305 0.0213318 0.0194691 48 2783 21 6.79088e+06 242496 865456. 2994.66 4.95 0.247528 0.2172 27694 206865 -1 2457 17 1071 3000 181658 40341 7.04987 7.04987 -154.557 -7.04987 0 0 1.05005e+06 3633.38 0.40 0.07 0.20 -1 -1 0.40 0.0280874 0.0253877 125 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 9.64 vpr 65.47 MiB 0.02 7260 -1 -1 13 0.39 -1 -1 36764 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 26.8 MiB 2.45 1490 8083 1681 5214 1188 65.5 MiB 0.09 0.00 7.4732 -162.473 -7.4732 7.4732 0.90 0.000751712 0.000678013 0.0355775 0.0322763 44 3967 47 6.79088e+06 336800 787024. 2723.27 3.61 0.225825 0.199019 27118 194962 -1 3167 19 1591 4399 235762 52009 6.50587 6.50587 -151.156 -6.50587 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0377806 0.0342915 159 232 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 10.37 vpr 65.13 MiB 0.02 7104 -1 -1 11 0.28 -1 -1 36360 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 26.6 MiB 1.88 1209 11059 2877 6113 2069 65.1 MiB 0.09 0.00 7.11391 -144.84 -7.11391 7.11391 0.90 0.000687891 0.000619895 0.0415575 0.0375553 38 3561 49 6.79088e+06 309856 678818. 2348.85 5.15 0.241888 0.212989 25966 169698 -1 2802 19 1231 4028 222812 48680 6.29442 6.29442 -138.469 -6.29442 0 0 902133. 3121.57 0.34 0.08 0.15 -1 -1 0.34 0.0315772 0.028325 140 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 7.94 vpr 65.13 MiB 0.02 7060 -1 -1 15 0.42 -1 -1 36896 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 26.5 MiB 1.94 1211 12503 3460 7559 1484 65.1 MiB 0.11 0.00 9.11536 -184.558 -9.11536 9.11536 0.91 0.000662 0.000586266 0.0505598 0.0457167 40 2992 23 6.79088e+06 255968 706193. 2443.58 2.39 0.2084 0.183178 26254 175826 -1 2859 22 1385 3747 325915 107909 7.59386 7.59386 -167.071 -7.59386 0 0 926341. 3205.33 0.34 0.12 0.17 -1 -1 0.34 0.0361152 0.0323183 142 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 25.27 vpr 65.18 MiB 0.02 7124 -1 -1 13 0.38 -1 -1 36568 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 26.8 MiB 2.38 1357 5463 1001 4200 262 65.2 MiB 0.06 0.00 8.32676 -176.58 -8.32676 8.32676 0.92 0.000736276 0.000659005 0.0250044 0.0226749 36 4143 34 6.79088e+06 309856 648988. 2245.63 19.42 0.340779 0.29778 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0300667 0.0272759 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 9.78 vpr 64.57 MiB 0.02 6792 -1 -1 12 0.25 -1 -1 36016 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 26.1 MiB 2.48 941 10557 3755 4946 1856 64.6 MiB 0.08 0.00 7.68137 -155.362 -7.68137 7.68137 0.89 0.000535501 0.000484909 0.0377456 0.0343982 36 2695 26 6.79088e+06 242496 648988. 2245.63 4.05 0.196884 0.171572 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0253739 0.022795 109 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 9.60 vpr 64.60 MiB 0.02 6944 -1 -1 11 0.20 -1 -1 36312 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 26.1 MiB 1.78 1148 5224 1190 3763 271 64.6 MiB 0.05 0.00 6.84847 -147.97 -6.84847 6.84847 0.92 0.000531616 0.000482654 0.0196511 0.0179057 48 2763 18 6.79088e+06 188608 865456. 2994.66 4.49 0.214464 0.186863 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.40 0.06 0.20 -1 -1 0.40 0.023269 0.0209982 98 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 9.58 vpr 65.45 MiB 0.02 7112 -1 -1 13 0.39 -1 -1 36544 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 26.9 MiB 1.39 1115 8455 2194 4906 1355 65.4 MiB 0.08 0.00 7.89179 -153.02 -7.89179 7.89179 0.90 0.00067598 0.000611234 0.0352797 0.0320172 38 3369 23 6.79088e+06 296384 678818. 2348.85 4.68 0.19696 0.172679 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.34 0.09 0.17 -1 -1 0.34 0.0342981 0.0309737 144 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 9.67 vpr 64.63 MiB 0.02 6992 -1 -1 10 0.21 -1 -1 36116 -1 -1 17 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 26.2 MiB 2.18 851 10204 2504 7246 454 64.6 MiB 0.08 0.00 6.11518 -125.484 -6.11518 6.11518 0.90 0.000512339 0.00046553 0.0341173 0.0310531 38 2368 25 6.79088e+06 229024 678818. 2348.85 4.28 0.191192 0.165806 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0247784 0.0221423 98 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 10.00 vpr 64.98 MiB 0.02 6860 -1 -1 14 0.23 -1 -1 36320 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 26.4 MiB 3.45 1049 6312 1330 4556 426 65.0 MiB 0.06 0.00 7.76918 -161.081 -7.76918 7.76918 0.89 0.000552504 0.000501594 0.0224572 0.0204374 36 3203 45 6.79088e+06 242496 648988. 2245.63 3.21 0.156791 0.137344 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.31 0.21 0.15 -1 -1 0.31 0.0484325 0.0428836 110 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 10.49 vpr 65.37 MiB 0.02 7024 -1 -1 12 0.39 -1 -1 36616 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 26.8 MiB 1.45 1262 12919 3620 7000 2299 65.4 MiB 0.12 0.00 7.60154 -161.988 -7.60154 7.60154 0.92 0.000687672 0.000617547 0.0512276 0.0464385 36 3634 39 6.79088e+06 296384 648988. 2245.63 5.52 0.241322 0.21335 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0312715 0.0282867 143 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 16.48 vpr 64.79 MiB 0.02 6844 -1 -1 12 0.17 -1 -1 36216 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 26.3 MiB 2.46 992 10726 2823 7181 722 64.8 MiB 0.08 0.00 6.58069 -144.507 -6.58069 6.58069 0.86 0.000510293 0.000449635 0.0351614 0.0319403 30 2929 43 6.79088e+06 215552 556674. 1926.21 11.02 0.231907 0.203525 24526 138013 -1 2473 14 1119 2569 158771 34817 5.98999 5.98999 -142.769 -5.98999 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0202026 0.018244 101 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 9.64 vpr 64.79 MiB 0.02 7248 -1 -1 12 0.24 -1 -1 36672 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 26.3 MiB 1.73 1163 7736 1889 5402 445 64.8 MiB 0.07 0.00 7.51176 -154.757 -7.51176 7.51176 0.92 0.000636019 0.000577241 0.0312719 0.0283938 38 3181 29 6.79088e+06 242496 678818. 2348.85 4.59 0.190178 0.166544 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.33 0.07 0.17 -1 -1 0.33 0.029415 0.026579 123 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 19.42 vpr 65.12 MiB 0.02 7260 -1 -1 13 0.35 -1 -1 36588 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 26.6 MiB 1.85 1250 11296 2557 6849 1890 65.1 MiB 0.10 0.00 7.49717 -162.624 -7.49717 7.49717 0.89 0.000609814 0.000549853 0.0430712 0.0390927 40 2968 20 6.79088e+06 255968 706193. 2443.58 14.08 0.340277 0.296933 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0298818 0.0267833 134 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 9.95 vpr 64.69 MiB 0.02 6788 -1 -1 11 0.20 -1 -1 35980 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 26.1 MiB 1.63 937 7515 1724 5667 124 64.7 MiB 0.07 0.00 7.16165 -142.405 -7.16165 7.16165 0.90 0.000527434 0.000477817 0.026632 0.0242165 46 2683 20 6.79088e+06 202080 828058. 2865.25 5.02 0.210589 0.182628 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0228812 0.0206129 105 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 7.79 vpr 65.06 MiB 0.02 6884 -1 -1 13 0.24 -1 -1 36488 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 26.7 MiB 2.33 1005 13381 4639 6392 2350 65.1 MiB 0.11 0.00 7.38301 -157.601 -7.38301 7.38301 0.90 0.000600687 0.000543709 0.0480937 0.0435376 38 2883 22 6.79088e+06 229024 678818. 2348.85 2.14 0.153567 0.135092 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.36 0.06 0.17 -1 -1 0.36 0.0270546 0.024379 116 164 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 8.20 vpr 65.23 MiB 0.02 7240 -1 -1 13 0.33 -1 -1 36224 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 26.7 MiB 1.98 1327 8092 2018 5457 617 65.2 MiB 0.08 0.00 7.14878 -159.209 -7.14878 7.14878 0.91 0.000634318 0.000577495 0.0334998 0.0304513 46 3203 25 6.79088e+06 242496 828058. 2865.25 2.70 0.195209 0.172539 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0307678 0.027774 130 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 8.72 vpr 64.77 MiB 0.02 7236 -1 -1 11 0.22 -1 -1 36344 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 26.2 MiB 1.85 925 13403 4743 6446 2214 64.8 MiB 0.10 0.00 6.69836 -125.024 -6.69836 6.69836 0.86 0.000546446 0.000495635 0.0433984 0.0393596 36 2760 29 6.79088e+06 296384 648988. 2245.63 3.76 0.19376 0.170947 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0250173 0.0225737 115 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 7.81 vpr 65.50 MiB 0.02 7048 -1 -1 14 0.40 -1 -1 37148 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 26.9 MiB 1.82 1410 8213 2036 5597 580 65.5 MiB 0.09 0.00 9.10514 -189.548 -9.10514 9.10514 0.91 0.000723411 0.000655715 0.0362425 0.0328626 44 3396 25 6.79088e+06 296384 787024. 2723.27 2.39 0.186872 0.164205 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.37 0.08 0.19 -1 -1 0.37 0.0341626 0.0310825 160 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 18.09 vpr 64.82 MiB 0.02 6864 -1 -1 12 0.21 -1 -1 35972 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 26.3 MiB 3.57 1093 11281 2937 6811 1533 64.8 MiB 0.09 0.00 6.61653 -142.296 -6.61653 6.61653 0.90 0.000533228 0.000483869 0.041123 0.0371749 34 3493 43 6.79088e+06 242496 618332. 2139.56 11.33 0.256367 0.22289 25102 150614 -1 2644 17 1058 2530 171616 37701 5.57833 5.57833 -135.866 -5.57833 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0251974 0.0227427 108 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 8.88 vpr 65.08 MiB 0.02 7092 -1 -1 13 0.35 -1 -1 36592 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66644 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 26.6 MiB 2.45 1323 14123 4442 7710 1971 65.1 MiB 0.12 0.00 7.64293 -157.325 -7.64293 7.64293 0.90 0.000631202 0.000570224 0.0539266 0.0488849 44 3212 24 6.79088e+06 255968 787024. 2723.27 2.88 0.174531 0.15381 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.37 0.08 0.19 -1 -1 0.37 0.0303725 0.0273157 132 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 8.08 vpr 64.91 MiB 0.02 6904 -1 -1 13 0.22 -1 -1 36116 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 26.4 MiB 2.56 1020 12120 3554 6383 2183 64.9 MiB 0.09 0.00 7.35402 -164.423 -7.35402 7.35402 0.90 0.000522876 0.00047525 0.0409512 0.0371869 36 3009 44 6.79088e+06 215552 648988. 2245.63 2.29 0.15521 0.13626 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0261723 0.0234736 104 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 8.39 vpr 65.11 MiB 0.02 6972 -1 -1 12 0.27 -1 -1 36236 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 26.5 MiB 2.48 1030 11783 4465 6036 1282 65.1 MiB 0.10 0.00 7.13827 -153.033 -7.13827 7.13827 0.91 0.000603279 0.000544237 0.0429871 0.0389079 44 2856 22 6.79088e+06 255968 787024. 2723.27 2.44 0.162454 0.142768 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.40 0.07 0.18 -1 -1 0.40 0.0269856 0.0244453 121 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 8.45 vpr 65.81 MiB 0.02 7260 -1 -1 15 0.58 -1 -1 36608 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 27.2 MiB 2.38 1457 12373 3076 6798 2499 65.8 MiB 0.12 0.00 9.48621 -188.88 -9.48621 9.48621 0.86 0.000808431 0.00073697 0.0551729 0.0502143 46 4011 21 6.79088e+06 323328 828058. 2865.25 2.38 0.213661 0.190213 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.37 0.10 0.18 -1 -1 0.37 0.041886 0.0378121 176 249 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 7.08 vpr 63.97 MiB 0.02 6752 -1 -1 10 0.11 -1 -1 35948 -1 -1 11 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65504 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 25.4 MiB 1.98 678 9345 2965 4615 1765 64.0 MiB 0.06 0.00 5.03415 -115.492 -5.03415 5.03415 0.91 0.000389905 0.000354034 0.0262048 0.0238499 36 1722 23 6.79088e+06 148192 648988. 2245.63 2.06 0.113991 0.0993589 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0182834 0.0162907 63 82 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 8.96 vpr 64.82 MiB 0.02 6988 -1 -1 13 0.22 -1 -1 36344 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 26.3 MiB 2.20 930 9881 2975 5177 1729 64.8 MiB 0.08 0.00 7.15369 -149.901 -7.15369 7.15369 0.89 0.000525097 0.000477372 0.0331221 0.0301523 36 2757 44 6.79088e+06 255968 648988. 2245.63 3.57 0.179148 0.156676 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0267215 0.023976 105 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 21.13 vpr 65.05 MiB 0.02 6908 -1 -1 12 0.24 -1 -1 36308 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 26.7 MiB 2.42 1026 12331 4984 6774 573 65.0 MiB 0.11 0.00 7.35057 -161.147 -7.35057 7.35057 0.91 0.00059761 0.000541913 0.0455365 0.0413817 38 3211 42 6.79088e+06 229024 678818. 2348.85 15.39 0.331165 0.289836 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0294603 0.026521 115 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 7.23 vpr 64.53 MiB 0.02 6880 -1 -1 9 0.16 -1 -1 36380 -1 -1 20 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66080 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 26.0 MiB 1.39 772 8553 2593 4994 966 64.5 MiB 0.06 0.00 5.4216 -101.246 -5.4216 5.4216 0.89 0.000425331 0.000386083 0.0249294 0.0226645 32 2040 31 6.79088e+06 269440 586450. 2029.24 2.79 0.154711 0.13388 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.30 0.05 0.14 -1 -1 0.30 0.0169876 0.0152821 86 103 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 27.64 vpr 65.21 MiB 0.02 7044 -1 -1 12 0.33 -1 -1 36328 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66780 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 26.4 MiB 3.04 1475 10263 2607 5842 1814 65.2 MiB 0.10 0.00 7.81518 -176.908 -7.81518 7.81518 0.90 0.000674714 0.0006118 0.0409278 0.0371236 38 4034 49 6.79088e+06 309856 678818. 2348.85 21.17 0.378346 0.330848 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0316271 0.0286579 146 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 9.15 vpr 65.41 MiB 0.02 7016 -1 -1 14 0.37 -1 -1 36660 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66980 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 27.1 MiB 1.48 1195 12733 3723 6434 2576 65.4 MiB 0.12 0.00 9.14434 -182.838 -9.14434 9.14434 0.85 0.000692153 0.000629086 0.050445 0.0457064 38 3451 34 6.79088e+06 296384 678818. 2348.85 4.28 0.232276 0.204589 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.0321449 0.0289961 151 202 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 6.06 vpr 65.87 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 34256 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67452 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 27.1 MiB 1.60 895 12321 3076 8292 953 65.9 MiB 0.12 0.00 4.3249 -144.349 -4.3249 4.3249 0.90 0.000562863 0.000512322 0.0322987 0.0293249 30 2780 27 6.87369e+06 517032 556674. 1926.21 1.44 0.114426 0.100257 25186 138497 -1 1954 20 1593 2579 127329 33406 3.6718 3.6718 -141.768 -3.6718 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0246026 0.0217635 155 80 32 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.56 vpr 65.77 MiB 0.02 7480 -1 -1 1 0.03 -1 -1 33808 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 27.1 MiB 4.35 889 13477 4603 6656 2218 65.8 MiB 0.12 0.00 4.22285 -135.326 -4.22285 4.22285 0.89 0.000550684 0.000501012 0.0422494 0.0385271 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.13 0.115359 0.101453 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.30 0.09 0.14 -1 -1 0.30 0.0266994 0.023274 141 78 30 30 89 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 6.49 vpr 65.82 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33944 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67396 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 27.2 MiB 2.29 953 18428 5979 9684 2765 65.8 MiB 0.15 0.00 3.74716 -129.333 -3.74716 3.74716 0.90 0.000532016 0.00048147 0.0449681 0.0407548 30 2530 23 6.87369e+06 503058 556674. 1926.21 1.12 0.115521 0.101367 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0244228 0.0214097 145 50 54 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.66 vpr 65.56 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 33720 -1 -1 23 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 26.7 MiB 1.67 922 15090 5352 7218 2520 65.6 MiB 0.13 0.00 4.1666 -130.205 -4.1666 4.1666 0.92 0.000489852 0.000446781 0.0433377 0.0395062 34 2444 21 6.87369e+06 321398 618332. 2139.56 1.83 0.147616 0.129089 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0246258 0.0216803 136 25 87 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 7.21 vpr 65.55 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34044 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67120 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 26.9 MiB 2.17 1047 14965 5078 8038 1849 65.5 MiB 0.14 0.00 4.2175 -149.421 -4.2175 4.2175 0.90 0.000528291 0.00048123 0.0455339 0.0415396 34 2922 24 6.87369e+06 293451 618332. 2139.56 1.86 0.167323 0.146605 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.33 0.10 0.15 -1 -1 0.33 0.0274918 0.0243 147 31 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.83 vpr 65.52 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33976 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 26.9 MiB 1.54 1041 20588 6432 11323 2833 65.5 MiB 0.16 0.00 3.55395 -124.862 -3.55395 3.55395 0.96 0.000576184 0.000520483 0.0490235 0.0445512 32 2871 28 6.87369e+06 544980 586450. 2029.24 1.11 0.127355 0.112357 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0231389 0.0204112 154 61 63 32 63 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 6.40 vpr 64.84 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34120 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 26.5 MiB 2.59 640 10388 2730 6621 1037 64.8 MiB 0.08 0.00 3.6994 -105.15 -3.6994 3.6994 0.86 0.00040753 0.000372565 0.0261597 0.0238892 28 1921 25 6.87369e+06 279477 531479. 1839.03 1.01 0.0807521 0.0709316 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0198637 0.017412 102 26 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 8.64 vpr 65.63 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33448 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 26.8 MiB 1.16 969 14273 4212 7662 2399 65.6 MiB 0.11 0.00 3.61131 -114.549 -3.61131 3.61131 0.90 0.000487143 0.000444532 0.0324517 0.0295102 30 2496 28 6.87369e+06 489084 556674. 1926.21 4.47 0.174242 0.151945 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0210026 0.0184808 141 -1 115 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 7.27 vpr 65.02 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33808 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66576 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 26.6 MiB 3.34 735 9712 2823 5738 1151 65.0 MiB 0.08 0.00 3.24697 -108.666 -3.24697 3.24697 0.93 0.000483585 0.000440374 0.0293497 0.0267791 28 1915 21 6.87369e+06 223581 531479. 1839.03 0.94 0.088263 0.0774991 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.27 0.05 0.13 -1 -1 0.27 0.018434 0.0162738 103 81 0 0 84 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.61 vpr 64.95 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34020 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 4.71 706 12808 2978 8428 1402 65.0 MiB 0.09 0.00 3.8076 -131.302 -3.8076 3.8076 0.93 0.000464588 0.000422987 0.0366257 0.0333864 34 2315 45 6.87369e+06 223581 618332. 2139.56 1.83 0.155799 0.136166 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0220794 0.0194025 114 31 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 7.81 vpr 65.11 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33760 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 26.4 MiB 3.81 860 11776 3165 7564 1047 65.1 MiB 0.10 0.00 3.7375 -122.128 -3.7375 3.7375 0.90 0.000474713 0.000429942 0.0339315 0.0309624 32 2014 21 6.87369e+06 251529 586450. 2029.24 0.99 0.0925941 0.0814372 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.31 0.06 0.14 -1 -1 0.31 0.0194515 0.0171462 109 58 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.19 vpr 65.57 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34012 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67140 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 26.8 MiB 1.67 881 15207 4108 9975 1124 65.6 MiB 0.11 0.00 3.45001 -118.108 -3.45001 3.45001 0.86 0.000472298 0.000415264 0.032725 0.0296452 34 2251 27 6.87369e+06 447163 618332. 2139.56 1.58 0.134438 0.116666 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0202654 0.0177697 116 57 25 25 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 10.64 vpr 65.51 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33608 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67084 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 26.8 MiB 5.79 958 19935 5624 11872 2439 65.5 MiB 0.17 0.00 3.64005 -125.972 -3.64005 3.64005 0.89 0.000532753 0.000483637 0.0488784 0.0443446 34 2786 25 6.87369e+06 489084 618332. 2139.56 1.75 0.164921 0.144324 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0217143 0.0191877 147 55 64 32 57 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.02 vpr 65.80 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34216 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 27.1 MiB 2.78 1059 21016 6637 11817 2562 65.8 MiB 0.17 0.00 4.34584 -150.842 -4.34584 4.34584 0.91 0.00055449 0.000504138 0.0530632 0.0482242 30 2683 24 6.87369e+06 517032 556674. 1926.21 1.10 0.127578 0.112542 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0265304 0.023307 155 60 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.32 vpr 64.48 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33828 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 26.1 MiB 2.32 791 11776 3380 6895 1501 64.5 MiB 0.08 0.00 3.6364 -112.843 -3.6364 3.6364 0.91 0.000360231 0.000328346 0.0281281 0.0257074 32 2110 22 6.87369e+06 265503 586450. 2029.24 1.01 0.0807878 0.0709846 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.31 0.06 0.14 -1 -1 0.31 0.0184507 0.0163057 102 21 58 29 24 24 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 8.06 vpr 65.30 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33692 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 26.6 MiB 3.11 930 14221 5969 7807 445 65.3 MiB 0.13 0.00 3.52575 -124.171 -3.52575 3.52575 0.86 0.000532591 0.000484708 0.0429144 0.0390455 36 2582 25 6.87369e+06 293451 648988. 2245.63 1.96 0.169666 0.148661 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0258646 0.0228239 145 60 64 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.73 vpr 65.75 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33692 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 27.0 MiB 5.63 1056 17238 4537 10962 1739 65.8 MiB 0.14 0.00 3.55695 -127.024 -3.55695 3.55695 0.90 0.000542914 0.000494432 0.0422682 0.0384689 28 2543 24 6.87369e+06 531006 531479. 1839.03 1.06 0.114344 0.10068 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.26 0.08 0.12 -1 -1 0.26 0.0266836 0.0233694 148 54 64 32 56 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.50 vpr 65.42 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33696 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 26.7 MiB 3.00 836 17103 4501 10697 1905 65.4 MiB 0.13 0.00 3.09156 -112.02 -3.09156 3.09156 0.90 0.000492498 0.000448306 0.0419066 0.0381564 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.52 0.109476 0.0963304 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.25 0.06 0.12 -1 -1 0.25 0.021519 0.0188526 117 62 29 29 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.35 vpr 64.52 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 33524 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 26.1 MiB 0.65 560 9036 3714 4978 344 64.5 MiB 0.06 0.00 2.94056 -94.1681 -2.94056 2.94056 0.86 0.000374817 0.000344579 0.0211555 0.0193493 28 1745 31 6.87369e+06 195634 531479. 1839.03 0.99 0.0723089 0.0631867 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.26 0.04 0.11 -1 -1 0.26 0.0140582 0.0123758 73 29 24 24 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 5.52 vpr 64.79 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33864 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 26.4 MiB 1.46 944 12636 3568 7641 1427 64.8 MiB 0.10 0.00 4.39847 -135.821 -4.39847 4.39847 0.92 0.000486277 0.000444524 0.0374753 0.0342393 32 2277 24 6.87369e+06 237555 586450. 2029.24 1.01 0.097935 0.0863645 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0222245 0.0194967 113 55 31 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.82 vpr 65.69 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33840 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67264 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 27.0 MiB 1.12 894 19124 5624 10425 3075 65.7 MiB 0.15 0.00 4.20059 -139.885 -4.20059 4.20059 0.86 0.000441949 0.000402826 0.0439164 0.0399141 34 2709 23 6.87369e+06 503058 618332. 2139.56 1.72 0.156961 0.137571 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0244067 0.0214861 150 31 91 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 10.69 vpr 65.89 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 34304 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 27.1 MiB 3.87 951 19380 5821 10599 2960 65.9 MiB 0.17 0.00 3.81248 -128.436 -3.81248 3.81248 0.90 0.000601 0.000544129 0.0501843 0.0453016 34 2805 27 6.87369e+06 558954 618332. 2139.56 3.68 0.251117 0.217389 25762 151098 -1 2062 23 1561 2406 174013 41452 3.6181 3.6181 -129.211 -3.6181 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0277636 0.0243135 154 108 0 0 125 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.21 vpr 64.54 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 33996 -1 -1 16 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 26.3 MiB 2.40 600 9219 3759 4898 562 64.5 MiB 0.05 0.00 2.91856 -82.7442 -2.91856 2.91856 0.90 0.000309101 0.000281056 0.0195816 0.0178688 28 1359 19 6.87369e+06 223581 531479. 1839.03 0.96 0.0595765 0.0523122 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.27 0.05 0.12 -1 -1 0.27 0.0154686 0.0135718 69 21 26 26 22 22 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 8.89 vpr 65.54 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 34092 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 26.7 MiB 1.67 1038 9757 2635 6591 531 65.5 MiB 0.09 0.00 4.1666 -141.416 -4.1666 4.1666 0.89 0.000507829 0.00046401 0.0285196 0.0260292 36 2506 23 6.87369e+06 293451 648988. 2245.63 4.14 0.188518 0.16339 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0235451 0.0207479 141 -1 122 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.64 vpr 64.47 MiB 0.02 6628 -1 -1 1 0.03 -1 -1 33904 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 26.1 MiB 0.51 506 9516 2238 6770 508 64.5 MiB 0.06 0.00 2.55523 -88.1124 -2.55523 2.55523 0.86 0.000324441 0.000297657 0.020569 0.0187929 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.34 0.0853202 0.0744489 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.30 0.03 0.14 -1 -1 0.30 0.0142665 0.0126029 71 -1 53 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.26 vpr 65.61 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33888 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 26.9 MiB 0.98 1092 17964 4627 11625 1712 65.6 MiB 0.14 0.00 4.26205 -149.131 -4.26205 4.26205 0.90 0.000560318 0.000503452 0.0425472 0.0387294 32 3060 24 6.87369e+06 503058 586450. 2029.24 1.18 0.116331 0.102712 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0237359 0.0209854 155 21 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.96 vpr 65.66 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33924 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67236 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 27.0 MiB 1.02 964 9612 2267 6482 863 65.7 MiB 0.09 0.00 3.55269 -121.215 -3.55269 3.55269 0.86 0.000489183 0.00044298 0.0222985 0.0203009 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.07 0.0963882 0.0845084 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.28 0.07 0.13 -1 -1 0.28 0.0213497 0.018876 151 -1 124 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 10.26 vpr 65.64 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34224 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 27.0 MiB 1.21 1088 13358 3512 8899 947 65.6 MiB 0.12 0.00 4.2809 -148.724 -4.2809 4.2809 0.93 0.000549679 0.000493894 0.0348407 0.0316519 26 3507 43 6.87369e+06 544980 503264. 1741.40 5.95 0.227684 0.198421 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.25 0.11 0.12 -1 -1 0.25 0.0274817 0.02415 156 54 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.74 vpr 65.07 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33984 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 26.6 MiB 1.19 734 6839 1724 4743 372 65.1 MiB 0.06 0.00 3.07332 -108.035 -3.07332 3.07332 0.91 0.000467129 0.000427374 0.0194667 0.017802 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.55 0.114252 0.0990762 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0173 0.0153413 104 31 54 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.38 vpr 64.93 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33576 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 26.5 MiB 1.29 856 11260 3834 5392 2034 64.9 MiB 0.09 0.00 3.7936 -125.971 -3.7936 3.7936 0.92 0.000444019 0.000404289 0.0312666 0.028557 32 2233 22 6.87369e+06 251529 586450. 2029.24 1.05 0.0894487 0.0788139 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0180484 0.0159527 109 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.30 vpr 64.96 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33640 -1 -1 19 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 26.6 MiB 1.35 743 13092 5209 6121 1762 65.0 MiB 0.10 0.00 3.48175 -108.034 -3.48175 3.48175 0.85 0.000401514 0.000367286 0.0334508 0.0306121 28 2217 26 6.87369e+06 265503 531479. 1839.03 1.09 0.0931203 0.0822469 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0181397 0.0159739 104 27 56 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 6.30 vpr 65.15 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33956 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.7 MiB 1.58 861 14700 5460 6955 2285 65.1 MiB 0.11 0.00 3.58201 -129.205 -3.58201 3.58201 0.91 0.000447973 0.000409703 0.0393061 0.0359263 34 2321 22 6.87369e+06 223581 618332. 2139.56 1.63 0.131316 0.114891 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0209972 0.0184968 114 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.86 vpr 64.74 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34012 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66292 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 26.2 MiB 1.00 924 11975 3064 7554 1357 64.7 MiB 0.09 0.00 3.50375 -121.402 -3.50375 3.50375 0.86 0.00043367 0.000394479 0.0261739 0.0238615 32 2375 25 6.87369e+06 447163 586450. 2029.24 0.97 0.0848079 0.0743443 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.28 0.07 0.13 -1 -1 0.28 0.0219346 0.019257 119 26 61 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.62 vpr 65.04 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 33612 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 26.3 MiB 3.28 824 15003 4455 7859 2689 65.0 MiB 0.11 0.00 2.90021 -94.838 -2.90021 2.90021 0.87 0.000427113 0.000388669 0.032987 0.029996 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.42 0.120908 0.105279 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0197653 0.0174086 113 55 29 29 57 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 10.70 vpr 65.99 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33956 -1 -1 44 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67572 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 27.3 MiB 4.96 1315 20411 5511 12546 2354 66.0 MiB 0.20 0.00 4.25391 -147.758 -4.25391 4.25391 0.92 0.00058492 0.000527985 0.0490264 0.0443389 28 3619 31 6.87369e+06 614849 531479. 1839.03 2.53 0.138758 0.122077 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.26 0.12 0.12 -1 -1 0.26 0.0300345 0.0265129 184 26 128 32 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.95 vpr 65.91 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 34196 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 27.2 MiB 3.80 1049 18419 4848 10881 2690 65.9 MiB 0.15 0.00 3.66825 -130.624 -3.66825 3.66825 0.92 0.000540839 0.000492402 0.0443554 0.040285 32 2652 21 6.87369e+06 544980 586450. 2029.24 1.04 0.114015 0.10038 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0217683 0.019285 154 62 62 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 9.09 vpr 65.39 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34188 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 26.6 MiB 4.30 881 17134 5393 9307 2434 65.4 MiB 0.13 0.00 3.56305 -119.83 -3.56305 3.56305 0.91 0.000485702 0.000440465 0.0413347 0.0374865 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.71 0.143376 0.125096 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0205162 0.0180306 116 77 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 7.23 vpr 65.57 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33808 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67144 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 26.9 MiB 2.41 1019 8641 2131 5612 898 65.6 MiB 0.10 0.00 3.59121 -120.774 -3.59121 3.59121 0.91 0.000558039 0.000508808 0.0278286 0.0254139 34 2671 24 6.87369e+06 307425 618332. 2139.56 1.72 0.14604 0.127254 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0275275 0.0242882 141 59 60 30 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 11.37 vpr 65.77 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34168 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 27.0 MiB 6.24 1071 16825 7101 8757 967 65.8 MiB 0.16 0.00 4.97069 -151.888 -4.97069 4.97069 0.93 0.000599566 0.000545166 0.05681 0.0517274 34 2813 21 6.87369e+06 307425 618332. 2139.56 1.93 0.186198 0.163132 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.026125 0.0230086 145 111 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 6.90 vpr 65.30 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 34056 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 26.6 MiB 2.22 980 12175 3299 8119 757 65.3 MiB 0.11 0.00 4.75154 -140.36 -4.75154 4.75154 0.87 0.000562184 0.000515324 0.0383602 0.0350565 34 2589 22 6.87369e+06 307425 618332. 2139.56 1.72 0.161173 0.140981 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.29 0.07 0.13 -1 -1 0.29 0.025872 0.0227699 141 86 31 31 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 7.59 vpr 65.59 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34016 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67164 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 26.9 MiB 2.98 1053 19023 5653 10954 2416 65.6 MiB 0.15 0.00 3.64005 -125.414 -3.64005 3.64005 0.86 0.000539877 0.000493879 0.0470648 0.0427901 34 2453 25 6.87369e+06 503058 618332. 2139.56 1.63 0.164424 0.143968 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0252077 0.0221574 148 58 60 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 9.18 vpr 65.74 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 34340 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67316 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 27.1 MiB 2.24 1150 19618 5466 12522 1630 65.7 MiB 0.16 0.00 4.1996 -145.707 -4.1996 4.1996 0.91 0.000558041 0.000504818 0.0472736 0.0428279 34 2754 24 6.87369e+06 531006 618332. 2139.56 3.75 0.229769 0.199323 25762 151098 -1 2446 23 2018 3153 285501 61588 3.6528 3.6528 -145.952 -3.6528 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0270911 0.023704 156 42 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.59 vpr 65.68 MiB 0.02 7316 -1 -1 1 0.04 -1 -1 34168 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 27.3 MiB 4.17 1303 13356 3327 8820 1209 65.7 MiB 0.14 0.00 4.31511 -149.42 -4.31511 4.31511 0.90 0.000654912 0.000587431 0.0380705 0.0343869 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.33 0.124859 0.109658 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.26 0.09 0.13 -1 -1 0.26 0.030361 0.0267942 186 91 62 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 8.93 vpr 65.06 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34088 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 26.6 MiB 2.46 908 12636 4255 7048 1333 65.1 MiB 0.10 0.00 3.7654 -130.371 -3.7654 3.7654 0.92 0.000445082 0.000407385 0.0342845 0.0312937 34 2191 32 6.87369e+06 237555 618332. 2139.56 3.41 0.161269 0.140278 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.31 0.06 0.16 -1 -1 0.31 0.0189829 0.0167124 112 24 62 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.86 vpr 65.91 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33964 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67496 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 27.2 MiB 3.31 1036 19820 6398 10981 2441 65.9 MiB 0.16 0.00 4.25889 -142.345 -4.25889 4.25889 0.91 0.000547116 0.000497932 0.0487985 0.0443702 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.39 0.136501 0.120395 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.29 0.10 0.14 -1 -1 0.29 0.0268328 0.0236188 152 59 62 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 6.68 vpr 65.56 MiB 0.02 7344 -1 -1 1 0.04 -1 -1 33872 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 26.8 MiB 2.28 1118 16515 4839 10227 1449 65.6 MiB 0.14 0.00 3.56001 -125.702 -3.56001 3.56001 0.86 0.000540362 0.000492778 0.0402555 0.0366265 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.48 0.120909 0.10707 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.25 0.08 0.11 -1 -1 0.25 0.0251943 0.0221473 150 54 62 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 9.19 vpr 65.43 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33588 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 26.8 MiB 1.90 942 16081 4088 11306 687 65.4 MiB 0.14 0.00 4.1996 -144.758 -4.1996 4.1996 0.91 0.000531078 0.000488044 0.0466953 0.0426211 34 3051 25 6.87369e+06 293451 618332. 2139.56 4.13 0.200708 0.175393 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0257448 0.0226263 147 -1 128 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 9.68 vpr 65.95 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34012 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67528 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 27.2 MiB 4.79 1066 20980 7180 11264 2536 65.9 MiB 0.18 0.00 3.54349 -125.696 -3.54349 3.54349 0.92 0.000569563 0.000515513 0.0586016 0.0535064 34 2404 23 6.87369e+06 503058 618332. 2139.56 1.71 0.182424 0.160166 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0255529 0.0224714 148 81 25 25 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.89 vpr 65.63 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33708 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 27.0 MiB 4.50 1032 19142 4987 12020 2135 65.6 MiB 0.16 0.00 3.61805 -127.505 -3.61805 3.61805 0.87 0.000556954 0.000506429 0.0456525 0.0416049 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.43 0.142779 0.126162 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.26 0.08 0.11 -1 -1 0.26 0.0274282 0.0240894 152 58 64 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.85 vpr 65.78 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33948 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 27.0 MiB 3.64 1111 18648 5184 11229 2235 65.8 MiB 0.15 0.00 3.58025 -126.995 -3.58025 3.58025 0.90 0.000573914 0.000522572 0.0451848 0.0409114 32 2918 26 6.87369e+06 558954 586450. 2029.24 1.09 0.119188 0.104726 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.29 0.09 0.14 -1 -1 0.29 0.0252646 0.0222447 156 61 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 7.63 vpr 65.81 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 33872 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 27.1 MiB 1.00 973 12876 3455 7707 1714 65.8 MiB 0.09 0.00 4.3249 -147.802 -4.3249 4.3249 0.85 0.000505894 0.000462506 0.0286365 0.0260267 34 2850 24 6.87369e+06 544980 618332. 2139.56 3.70 0.186727 0.162778 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.023561 0.0208534 156 21 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 8.62 vpr 65.74 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34288 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67316 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 27.0 MiB 3.57 1087 15172 3966 9854 1352 65.7 MiB 0.13 0.00 4.1996 -143.047 -4.1996 4.1996 0.91 0.000577764 0.000525268 0.0366858 0.0332986 34 2680 28 6.87369e+06 572927 618332. 2139.56 1.90 0.164669 0.144038 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0276909 0.0244067 157 50 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 12.47 vpr 65.59 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33924 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 26.8 MiB 5.02 988 19356 5396 10906 3054 65.6 MiB 0.18 0.00 4.16785 -135.645 -4.16785 4.16785 0.92 0.000598999 0.000541836 0.0520314 0.0470904 30 2632 23 6.87369e+06 517032 556674. 1926.21 4.29 0.210191 0.183415 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.30 0.07 0.13 -1 -1 0.30 0.0274947 0.0241437 150 110 0 0 122 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 8.64 vpr 65.35 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33920 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 26.6 MiB 3.56 1079 15709 4633 9421 1655 65.4 MiB 0.15 0.00 4.13359 -143.515 -4.13359 4.13359 0.91 0.000585645 0.000532389 0.0519564 0.0472347 34 3228 24 6.87369e+06 293451 618332. 2139.56 1.89 0.179406 0.156725 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.028139 0.0246684 145 86 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.25 vpr 64.98 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33956 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 26.5 MiB 1.13 919 15426 4260 9754 1412 65.0 MiB 0.12 0.00 3.51475 -125.544 -3.51475 3.51475 0.92 0.000465665 0.000424366 0.0344461 0.0312959 32 2428 31 6.87369e+06 447163 586450. 2029.24 1.06 0.0996039 0.0873306 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0221335 0.0194066 121 20 63 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 8.06 vpr 65.48 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33728 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 26.7 MiB 3.95 953 12980 4579 7047 1354 65.5 MiB 0.11 0.00 3.6884 -132.193 -3.6884 3.6884 0.90 0.000490872 0.000446787 0.0400058 0.0364614 32 2548 27 6.87369e+06 223581 586450. 2029.24 1.05 0.108412 0.0952358 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0249082 0.0218028 112 91 0 0 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 14.39 vpr 65.66 MiB 0.02 7300 -1 -1 1 0.04 -1 -1 34192 -1 -1 44 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 27.3 MiB 2.57 1419 16556 4403 10830 1323 65.7 MiB 0.16 0.00 4.99284 -170.715 -4.99284 4.99284 0.90 0.000611969 0.000555854 0.0427306 0.0387611 28 3950 45 6.87369e+06 614849 531479. 1839.03 8.67 0.232941 0.203255 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.26 0.13 0.12 -1 -1 0.26 0.0310808 0.0275059 189 53 96 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 7.35 vpr 65.53 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33984 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67100 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 26.9 MiB 3.21 1069 15831 4027 10006 1798 65.5 MiB 0.13 0.00 3.59121 -127.943 -3.59121 3.59121 0.86 0.000520065 0.00047293 0.0383174 0.0348015 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.25 0.114155 0.101189 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.25 0.10 0.11 -1 -1 0.25 0.0322052 0.0282299 150 31 92 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.76 vpr 65.20 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33500 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 26.4 MiB 0.83 823 15633 5297 7776 2560 65.2 MiB 0.11 0.00 3.51601 -116.196 -3.51601 3.51601 0.87 0.000424496 0.000385108 0.0330973 0.0299853 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.10 0.0956609 0.0844265 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0201325 0.0176575 116 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 12.06 vpr 65.92 MiB 0.02 7580 -1 -1 1 0.04 -1 -1 34292 -1 -1 47 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67504 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 27.5 MiB 7.16 1193 22455 6528 13018 2909 65.9 MiB 0.20 0.00 4.91264 -167.151 -4.91264 4.91264 0.86 0.00066778 0.000610093 0.0582322 0.052882 32 3593 50 6.87369e+06 656770 586450. 2029.24 1.78 0.185682 0.164413 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.29 0.12 0.13 -1 -1 0.29 0.0355429 0.0313985 190 109 32 32 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.82 vpr 65.68 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33628 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 26.9 MiB 3.86 975 19868 5843 10688 3337 65.7 MiB 0.15 0.00 4.28153 -144.516 -4.28153 4.28153 0.91 0.000543219 0.000494571 0.0468357 0.0426627 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.83 0.164165 0.143668 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0236658 0.0208477 156 31 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.79 vpr 64.98 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33924 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 26.5 MiB 0.82 857 11197 2857 7409 931 65.0 MiB 0.09 0.00 3.64005 -128.736 -3.64005 3.64005 0.89 0.000441825 0.000403148 0.0236811 0.0216202 30 2290 23 6.87369e+06 461137 556674. 1926.21 1.01 0.0802588 0.070274 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0187636 0.0165543 123 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 8.15 vpr 65.88 MiB 0.02 7440 -1 -1 1 0.04 -1 -1 34416 -1 -1 45 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67460 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 27.2 MiB 3.25 1249 21169 5887 12519 2763 65.9 MiB 0.18 0.00 4.9297 -168.732 -4.9297 4.9297 0.91 0.000643137 0.000586991 0.0506838 0.0459636 28 3487 31 6.87369e+06 628823 531479. 1839.03 1.70 0.144441 0.127371 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.26 0.13 0.12 -1 -1 0.26 0.0323338 0.0284717 189 26 128 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.58 vpr 64.92 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 33948 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 1.17 806 12292 2857 8871 564 64.9 MiB 0.09 0.00 3.7764 -134.344 -3.7764 3.7764 0.86 0.000413729 0.000377152 0.0319735 0.029214 34 2200 24 6.87369e+06 223581 618332. 2139.56 1.53 0.121636 0.106351 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0203611 0.017916 114 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.93 vpr 65.13 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33816 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 26.6 MiB 2.95 719 10463 2628 6946 889 65.1 MiB 0.09 0.00 3.56001 -114.458 -3.56001 3.56001 0.89 0.000432518 0.00039425 0.0230064 0.0209149 28 2094 21 6.87369e+06 461137 531479. 1839.03 1.05 0.0794563 0.0695694 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0208676 0.0183067 118 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 8.90 vpr 65.25 MiB 0.02 7500 -1 -1 1 0.03 -1 -1 34080 -1 -1 35 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 26.6 MiB 4.11 1008 14550 3923 8443 2184 65.2 MiB 0.12 0.00 3.54707 -114.227 -3.54707 3.54707 0.90 0.000548786 0.000499026 0.0386508 0.0351555 34 2543 22 6.87369e+06 489084 618332. 2139.56 1.69 0.154733 0.134923 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0243597 0.0214544 141 81 29 29 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.78 vpr 65.49 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33980 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67064 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 26.8 MiB 2.66 854 12175 2685 7576 1914 65.5 MiB 0.10 0.00 4.2388 -146.065 -4.2388 4.2388 0.90 0.000557899 0.000507546 0.0392427 0.0357463 34 2806 28 6.87369e+06 293451 618332. 2139.56 2.04 0.171906 0.150632 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0287808 0.0251882 147 53 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 9.03 vpr 65.75 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33948 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 27.0 MiB 4.88 1100 18901 5336 11603 1962 65.8 MiB 0.15 0.00 4.27679 -150.534 -4.27679 4.27679 0.89 0.000527223 0.000473832 0.0452618 0.0410389 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.10 0.119445 0.105376 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.27 0.07 0.12 -1 -1 0.27 0.0253637 0.0222921 155 55 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 8.65 vpr 65.58 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 33924 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67156 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 26.8 MiB 3.80 825 17191 6233 8742 2216 65.6 MiB 0.13 0.00 3.60705 -126.657 -3.60705 3.60705 0.91 0.000497634 0.000447431 0.0404726 0.0366824 36 2048 23 6.87369e+06 461137 648988. 2245.63 1.71 0.143946 0.125421 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0221982 0.0195514 123 55 32 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.99 vpr 65.02 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34004 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 26.6 MiB 4.38 738 4456 873 3135 448 65.0 MiB 0.05 0.00 3.6994 -119.902 -3.6994 3.6994 0.91 0.000519088 0.000474944 0.0145115 0.0132503 34 2217 18 6.87369e+06 251529 618332. 2139.56 1.67 0.114449 0.0986535 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0226197 0.0198008 108 82 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.96 vpr 65.70 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34252 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 27.0 MiB 3.55 914 16740 4391 9932 2417 65.7 MiB 0.14 0.00 3.59605 -116.379 -3.59605 3.59605 0.86 0.000511536 0.000467569 0.0416498 0.0380319 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.47 0.147092 0.128635 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0208789 0.0184177 143 52 60 30 57 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 6.89 vpr 65.42 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34116 -1 -1 35 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66988 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 26.6 MiB 1.99 905 12191 3346 7959 886 65.4 MiB 0.10 0.00 4.19891 -125.962 -4.19891 4.19891 0.91 0.000439137 0.000399673 0.0286271 0.0259334 26 2593 24 6.87369e+06 489084 503264. 1741.40 1.89 0.100042 0.0879947 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.26 0.10 0.12 -1 -1 0.26 0.0266022 0.0232413 139 20 84 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 7.08 vpr 64.95 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 33868 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 26.5 MiB 3.08 882 11432 3518 6484 1430 65.0 MiB 0.10 0.00 3.7324 -126.153 -3.7324 3.7324 0.92 0.00048185 0.000439878 0.0335982 0.0306571 30 2191 20 6.87369e+06 251529 556674. 1926.21 0.99 0.0919993 0.0809561 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.28 0.06 0.14 -1 -1 0.28 0.0209283 0.0183849 110 58 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.72 vpr 64.96 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33772 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66520 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 26.3 MiB 4.13 904 14256 4718 7453 2085 65.0 MiB 0.12 0.00 3.6144 -123.374 -3.6144 3.6144 0.89 0.00047964 0.00043635 0.0418981 0.0381536 34 2227 20 6.87369e+06 237555 618332. 2139.56 1.56 0.143114 0.124718 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.022444 0.0196621 110 88 0 0 91 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 5.81 vpr 65.50 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 34060 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 27.1 MiB 1.05 962 16804 5215 8614 2975 65.5 MiB 0.14 0.00 4.24789 -140.354 -4.24789 4.24789 0.91 0.000518454 0.000473934 0.0386431 0.0352535 28 3199 26 6.87369e+06 517032 531479. 1839.03 1.64 0.11599 0.102882 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.26 0.08 0.11 -1 -1 0.26 0.0207336 0.0183014 151 -1 124 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.76 vpr 65.59 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33896 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 26.9 MiB 5.08 1093 19380 5712 11198 2470 65.6 MiB 0.16 0.00 4.29189 -149.386 -4.29189 4.29189 0.91 0.000574311 0.000523663 0.0483277 0.0439765 28 2995 25 6.87369e+06 531006 531479. 1839.03 1.54 0.128135 0.113245 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.26 0.11 0.13 -1 -1 0.26 0.0290414 0.0254265 156 57 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.92 vpr 65.77 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34060 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 26.9 MiB 4.70 1146 17256 4889 10338 2029 65.8 MiB 0.14 0.00 4.30289 -150.744 -4.30289 4.30289 0.92 0.000568984 0.00051641 0.0429575 0.0390208 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.14 0.116946 0.102876 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0252885 0.0223328 155 62 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.41 vpr 65.62 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33984 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67196 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 27.0 MiB 3.68 1114 16491 4519 10066 1906 65.6 MiB 0.14 0.00 4.16249 -142.489 -4.16249 4.16249 0.90 0.000561068 0.000510245 0.04116 0.0373506 28 3159 33 6.87369e+06 544980 531479. 1839.03 1.67 0.126826 0.111297 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.26 0.09 0.13 -1 -1 0.26 0.0258963 0.02268 152 62 60 30 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.18 vpr 64.95 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 34180 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 26.5 MiB 3.14 746 10406 2932 6420 1054 64.9 MiB 0.08 0.00 3.7324 -121.378 -3.7324 3.7324 0.92 0.000398557 0.000365237 0.0273244 0.0249538 32 2264 21 6.87369e+06 265503 586450. 2029.24 1.04 0.0836753 0.0735561 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0184392 0.0162677 110 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.89 vpr 65.37 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34168 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 26.7 MiB 3.97 980 15709 4819 8970 1920 65.4 MiB 0.13 0.00 4.23999 -140.261 -4.23999 4.23999 0.86 0.000511081 0.000467296 0.0454016 0.041459 30 2357 25 6.87369e+06 321398 556674. 1926.21 1.02 0.117433 0.103782 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0227762 0.0200898 140 58 60 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 10.63 vpr 65.65 MiB 0.02 7532 -1 -1 1 0.03 -1 -1 34212 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 27.0 MiB 6.17 1155 15540 3963 10188 1389 65.7 MiB 0.13 0.00 4.23385 -146.284 -4.23385 4.23385 0.90 0.000582331 0.000521411 0.0367929 0.0329965 32 3029 43 6.87369e+06 600875 586450. 2029.24 1.36 0.13482 0.117372 25474 144626 -1 2474 24 2205 3740 360243 77125 3.7941 3.7941 -146.23 -3.7941 0 0 744469. 2576.02 0.30 0.11 0.13 -1 -1 0.30 0.02856 0.0249341 158 106 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 6.04 vpr 65.77 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 33784 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 27.0 MiB 1.45 1029 18273 5989 9373 2911 65.8 MiB 0.16 0.00 4.26989 -143.564 -4.26989 4.26989 0.90 0.000576976 0.000525221 0.0503892 0.0458467 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.50 0.128539 0.113404 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.26 0.09 0.13 -1 -1 0.26 0.0275947 0.0241818 149 79 31 31 93 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.10 vpr 65.73 MiB 0.02 7512 -1 -1 1 0.03 -1 -1 34024 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 27.1 MiB 2.90 942 16921 5030 8706 3185 65.7 MiB 0.16 0.00 3.63595 -118.056 -3.63595 3.63595 0.91 0.000561644 0.00050523 0.0470833 0.0427841 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.12 0.119163 0.104842 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.28 0.06 0.14 -1 -1 0.28 0.0254521 0.0223408 141 83 26 26 90 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 10.86 vpr 65.67 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34292 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67248 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 27.0 MiB 5.69 1087 14593 4252 9147 1194 65.7 MiB 0.14 0.00 4.1996 -148.308 -4.1996 4.1996 0.89 0.000545252 0.000496592 0.0454056 0.041387 34 3260 29 6.87369e+06 293451 618332. 2139.56 2.06 0.171592 0.149901 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.027226 0.0239829 147 58 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.81 vpr 65.80 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34048 -1 -1 36 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67380 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 27.1 MiB 2.72 943 12751 3363 8405 983 65.8 MiB 0.11 0.00 3.54105 -112.818 -3.54105 3.54105 0.91 0.000535373 0.000485985 0.0335337 0.0304219 26 2618 24 6.87369e+06 503058 503264. 1741.40 1.06 0.10432 0.0913609 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.26 0.09 0.12 -1 -1 0.26 0.0255766 0.0224009 138 81 26 26 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.45 vpr 64.91 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 33816 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 0.81 862 12292 3174 7904 1214 64.9 MiB 0.10 0.00 3.7104 -131.958 -3.7104 3.7104 0.91 0.000433695 0.000395087 0.0334193 0.0305307 34 2313 18 6.87369e+06 223581 618332. 2139.56 1.58 0.121146 0.105756 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0201696 0.0178976 114 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.44 vpr 65.78 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33628 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 27.0 MiB 5.36 1088 19841 5443 12522 1876 65.8 MiB 0.16 0.00 4.3249 -149.309 -4.3249 4.3249 0.86 0.000556859 0.000509388 0.0478548 0.0435792 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.08 0.12236 0.108175 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.28 0.09 0.13 -1 -1 0.28 0.0277214 0.0243911 155 62 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 10.00 vpr 65.59 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33868 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67164 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 26.9 MiB 5.05 1071 15151 5130 8107 1914 65.6 MiB 0.13 0.00 4.2388 -148.068 -4.2388 4.2388 0.90 0.000583437 0.000530374 0.0490798 0.0446373 36 2570 23 6.87369e+06 293451 648988. 2245.63 1.81 0.171046 0.14929 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.31 0.08 0.16 -1 -1 0.31 0.0267208 0.0234607 147 62 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.77 vpr 65.16 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 34164 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 26.4 MiB 4.23 885 16708 4981 9424 2303 65.2 MiB 0.12 0.00 3.50501 -121.209 -3.50501 3.50501 0.91 0.000406917 0.000369409 0.036566 0.0330846 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.50 0.126822 0.110236 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0205235 0.0179718 112 47 32 32 54 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.17 vpr 64.88 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33832 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 26.6 MiB 1.10 723 6960 1528 4773 659 64.9 MiB 0.06 0.00 3.7434 -125.643 -3.7434 3.7434 0.93 0.000375445 0.000345241 0.0180952 0.0165492 32 2245 24 6.87369e+06 237555 586450. 2029.24 1.04 0.0750948 0.0657785 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.30 0.06 0.15 -1 -1 0.30 0.0193584 0.0170991 112 -1 93 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.72 vpr 65.25 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33932 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 26.6 MiB 3.58 1023 18795 5447 10788 2560 65.2 MiB 0.15 0.00 4.30799 -144.78 -4.30799 4.30799 0.90 0.000540647 0.000493135 0.0467183 0.0424507 28 2603 22 6.87369e+06 489084 531479. 1839.03 1.07 0.118853 0.105002 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0239316 0.0211124 144 56 60 32 58 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.93 vpr 65.37 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33964 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 26.6 MiB 1.45 1094 18745 5603 10775 2367 65.4 MiB 0.16 0.00 4.21185 -141.009 -4.21185 4.21185 0.91 0.000558915 0.000509292 0.049161 0.0446191 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.36 0.133033 0.117053 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.28 0.09 0.13 -1 -1 0.28 0.0281407 0.0246645 142 81 28 28 88 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 9.52 vpr 66.06 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33980 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67648 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 27.4 MiB 1.13 1329 17642 5677 9392 2573 66.1 MiB 0.17 0.00 4.98719 -165.596 -4.98719 4.98719 0.92 0.000525378 0.000480662 0.0442426 0.0401951 34 3730 48 6.87369e+06 572927 618332. 2139.56 5.17 0.270122 0.235451 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0282961 0.0249321 183 -1 156 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.63 vpr 65.49 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33796 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67064 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 26.9 MiB 3.10 1005 13300 3782 8501 1017 65.5 MiB 0.11 0.00 3.59605 -120.715 -3.59605 3.59605 0.86 0.000507787 0.000462481 0.0343111 0.031186 34 2294 27 6.87369e+06 447163 618332. 2139.56 1.60 0.146602 0.127806 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0212465 0.0187293 141 47 60 30 56 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.93 vpr 64.93 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 34200 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 26.6 MiB 0.96 735 12247 4571 5926 1750 64.9 MiB 0.09 0.00 3.6866 -109.378 -3.6866 3.6866 0.92 0.000405506 0.000368443 0.0308604 0.0281314 32 1771 18 6.87369e+06 279477 586450. 2029.24 0.97 0.0807288 0.0710109 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.29 0.05 0.15 -1 -1 0.29 0.0180003 0.0158529 102 26 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 12.92 vpr 65.94 MiB 0.02 7252 -1 -1 1 0.04 -1 -1 34164 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67524 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 27.5 MiB 3.22 1290 11856 2585 8478 793 65.9 MiB 0.13 0.00 4.1886 -144.868 -4.1886 4.1886 0.90 0.000642002 0.000579601 0.033645 0.0304476 30 3626 23 6.87369e+06 586901 556674. 1926.21 6.59 0.217116 0.188821 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.28 0.09 0.13 -1 -1 0.28 0.0304908 0.0268346 184 85 62 31 95 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 9.82 vpr 65.71 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33956 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67288 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 27.0 MiB 4.27 874 9914 2276 6234 1404 65.7 MiB 0.09 0.00 4.91157 -150.663 -4.91157 4.91157 0.93 0.000582216 0.000528519 0.0332627 0.0302756 34 2604 24 6.87369e+06 321398 618332. 2139.56 2.43 0.184751 0.162291 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0278965 0.0245105 144 105 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 8.62 vpr 65.12 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33732 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 26.6 MiB 4.00 802 14356 5267 6628 2461 65.1 MiB 0.11 0.00 4.598 -126.496 -4.598 4.598 0.92 0.000447166 0.000407568 0.0416078 0.0378321 34 2153 24 6.87369e+06 223581 618332. 2139.56 1.60 0.145969 0.127179 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.31 0.04 0.14 -1 -1 0.31 0.0172282 0.0153209 107 86 0 0 89 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 8.21 vpr 65.62 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34084 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67196 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 26.9 MiB 1.26 1114 14723 4652 8968 1103 65.6 MiB 0.13 0.00 4.1955 -143.003 -4.1955 4.1955 0.92 0.00054923 0.000501939 0.0376323 0.0341699 28 2955 24 6.87369e+06 475111 531479. 1839.03 3.86 0.220099 0.191829 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.26 0.10 0.13 -1 -1 0.26 0.0241615 0.0212778 147 31 90 30 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 7.92 vpr 65.78 MiB 0.02 7376 -1 -1 1 0.03 -1 -1 34248 -1 -1 40 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 27.2 MiB 2.47 1006 19865 6118 9930 3817 65.8 MiB 0.17 0.00 4.28153 -140.004 -4.28153 4.28153 0.92 0.0006115 0.000545065 0.0528139 0.0478992 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.22 0.198041 0.173284 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0298691 0.0263785 176 50 87 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.30 vpr 65.40 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34180 -1 -1 36 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 26.8 MiB 2.33 1085 17873 5357 10009 2507 65.4 MiB 0.15 0.00 3.50639 -115.998 -3.50639 3.50639 0.91 0.000521679 0.000475245 0.0443439 0.0402034 34 2647 22 6.87369e+06 503058 618332. 2139.56 1.82 0.158488 0.138682 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0249711 0.0219609 144 50 58 30 58 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 7.76 vpr 65.71 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34184 -1 -1 46 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67292 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 26.9 MiB 3.16 1127 20887 5685 13197 2005 65.7 MiB 0.17 0.00 4.26133 -148.826 -4.26133 4.26133 0.87 0.000538379 0.0004877 0.0456635 0.0414606 28 2839 24 6.87369e+06 642796 531479. 1839.03 1.63 0.131721 0.116823 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.25 0.09 0.11 -1 -1 0.25 0.0277467 0.0243844 160 61 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.37 vpr 65.92 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33676 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67504 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 27.2 MiB 3.62 1115 19606 5308 11826 2472 65.9 MiB 0.15 0.00 3.52575 -126.542 -3.52575 3.52575 0.91 0.000571422 0.000519745 0.0465321 0.0422663 26 2952 46 6.87369e+06 586901 503264. 1741.40 1.65 0.149113 0.13121 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.26 0.10 0.12 -1 -1 0.26 0.0290671 0.0255982 157 61 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.71 vpr 64.79 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 33788 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 26.4 MiB 2.24 669 12808 5105 6141 1562 64.8 MiB 0.09 0.00 3.73366 -117.212 -3.73366 3.73366 0.91 0.000428541 0.000390194 0.0324529 0.0295049 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.45 0.116971 0.101526 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.018334 0.0161372 107 28 58 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.69 vpr 65.52 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34176 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 26.8 MiB 2.94 808 7256 1653 5365 238 65.5 MiB 0.07 0.00 4.2805 -117.484 -4.2805 4.2805 0.93 0.000464807 0.000424209 0.0215073 0.0195989 34 2056 25 6.87369e+06 237555 618332. 2139.56 1.74 0.130516 0.113878 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.32 0.04 0.14 -1 -1 0.32 0.014721 0.0131654 102 79 0 0 82 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 7.10 vpr 65.66 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34212 -1 -1 39 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 27.0 MiB 2.17 1136 19618 6151 11073 2394 65.7 MiB 0.17 0.00 4.1886 -141.394 -4.1886 4.1886 0.89 0.000530404 0.000482121 0.0467803 0.0424788 28 2901 39 6.87369e+06 544980 531479. 1839.03 1.85 0.136486 0.119934 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.25 0.09 0.13 -1 -1 0.25 0.0243425 0.0214074 152 29 93 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 11.33 vpr 64.88 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33708 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 26.4 MiB 4.07 794 17103 5256 9538 2309 64.9 MiB 0.12 0.00 3.45975 -106.144 -3.45975 3.45975 0.90 0.000430529 0.000392827 0.0366213 0.0332691 24 2312 34 6.87369e+06 447163 470940. 1629.55 4.32 0.173099 0.149957 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.23 0.09 0.11 -1 -1 0.23 0.0222711 0.0194278 108 48 29 29 52 26 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.68 vpr 64.94 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33876 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.4 MiB 4.00 809 12464 3077 8852 535 64.9 MiB 0.10 0.00 3.7104 -131.395 -3.7104 3.7104 0.90 0.0004644 0.000424093 0.0358617 0.0327199 34 2309 26 6.87369e+06 223581 618332. 2139.56 1.65 0.138121 0.120425 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0219385 0.0192461 114 31 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.51 vpr 65.70 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34100 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 27.0 MiB 3.07 1003 13598 3664 8482 1452 65.7 MiB 0.11 0.00 3.61625 -124.489 -3.61625 3.61625 0.87 0.000545972 0.000488986 0.0349119 0.0316688 34 2208 22 6.87369e+06 489084 618332. 2139.56 1.53 0.143453 0.125034 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0227834 0.0201315 146 60 58 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 7.61 vpr 64.92 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33836 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 26.5 MiB 3.60 698 11402 3727 5924 1751 64.9 MiB 0.09 0.00 3.33623 -109.833 -3.33623 3.33623 0.90 0.000449823 0.000413789 0.0322318 0.0294365 26 2239 28 6.87369e+06 223581 503264. 1741.40 1.09 0.0955793 0.0838343 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.25 0.06 0.12 -1 -1 0.25 0.0190178 0.0166711 103 49 31 31 53 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 7.61 vpr 65.47 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33860 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 26.8 MiB 3.40 1019 17256 4700 9815 2741 65.5 MiB 0.14 0.00 3.59195 -122.625 -3.59195 3.59195 0.90 0.000488817 0.000442872 0.0411482 0.0374372 32 2782 36 6.87369e+06 517032 586450. 2029.24 1.14 0.12331 0.108492 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.30 0.07 0.14 -1 -1 0.30 0.0250445 0.0219687 143 56 52 26 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.43 vpr 65.56 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33768 -1 -1 39 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 26.8 MiB 4.24 929 10336 2368 6764 1204 65.6 MiB 0.10 0.00 3.59605 -120.102 -3.59605 3.59605 0.94 0.000578692 0.0005269 0.0274018 0.0248812 32 2620 21 6.87369e+06 544980 586450. 2029.24 1.06 0.10034 0.0879021 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0275735 0.0241594 151 88 31 31 92 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.99 vpr 65.39 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 34028 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66960 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 26.7 MiB 3.38 812 13206 3975 7418 1813 65.4 MiB 0.11 0.00 3.26897 -114.681 -3.26897 3.26897 0.90 0.00046264 0.000421788 0.037131 0.0338135 34 2174 27 6.87369e+06 237555 618332. 2139.56 1.57 0.139441 0.121477 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0214609 0.0188699 110 54 32 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.56 vpr 65.30 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33848 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 26.6 MiB 3.70 923 10056 2840 6443 773 65.3 MiB 0.09 0.00 3.6884 -128.712 -3.6884 3.6884 0.86 0.000451803 0.000411722 0.0292687 0.0267665 32 2547 22 6.87369e+06 223581 586450. 2029.24 0.99 0.090773 0.0799633 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.28 0.08 0.13 -1 -1 0.28 0.0236831 0.0208045 112 60 32 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 9.89 vpr 65.55 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34392 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67120 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 26.8 MiB 3.50 1032 14988 3846 9829 1313 65.5 MiB 0.13 0.00 4.29009 -147.998 -4.29009 4.29009 0.88 0.000607637 0.000527847 0.0366441 0.0332738 34 2540 20 6.87369e+06 558954 618332. 2139.56 3.33 0.185987 0.162354 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0278076 0.0243846 157 49 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 8.04 vpr 65.65 MiB 0.02 7416 -1 -1 1 0.03 -1 -1 33980 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 27.0 MiB 3.05 880 11759 2826 8215 718 65.7 MiB 0.10 0.00 3.59605 -112.745 -3.59605 3.59605 0.91 0.000518199 0.000470407 0.0304129 0.027603 26 2672 41 6.87369e+06 475111 503264. 1741.40 1.94 0.11949 0.104622 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.27 0.09 0.14 -1 -1 0.27 0.0273157 0.0239879 140 54 56 29 58 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 11.64 vpr 65.96 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 34128 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67544 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 27.4 MiB 6.44 930 19136 5654 10352 3130 66.0 MiB 0.16 0.00 4.25669 -144.754 -4.25669 4.25669 0.91 0.000581885 0.000524317 0.0501857 0.0452994 34 2868 25 6.87369e+06 558954 618332. 2139.56 2.02 0.186599 0.162793 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0292193 0.0255607 157 117 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.75 vpr 65.02 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33784 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 26.4 MiB 0.86 801 6501 1452 4525 524 65.0 MiB 0.05 0.00 3.09052 -106.923 -3.09052 3.09052 0.90 0.000373145 0.000342198 0.0161426 0.0148154 32 2327 32 6.87369e+06 223581 586450. 2029.24 0.99 0.0736669 0.0643926 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.017968 0.0158572 104 -1 85 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.52 vpr 65.59 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 33812 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67164 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 26.8 MiB 1.92 977 17961 5555 9821 2585 65.6 MiB 0.14 0.00 4.24789 -140.827 -4.24789 4.24789 0.86 0.00053898 0.000492163 0.0447862 0.040779 34 2366 23 6.87369e+06 517032 618332. 2139.56 1.64 0.166806 0.146426 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.021724 0.0192518 147 89 28 28 92 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 9.43 vpr 65.14 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 33632 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 26.4 MiB 4.95 961 12808 4157 6979 1672 65.1 MiB 0.09 0.00 3.7416 -135.274 -3.7416 3.7416 0.87 0.000439019 0.000398346 0.0372573 0.0338926 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.54 0.140765 0.122622 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.024211 0.0211701 114 93 0 0 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.12 vpr 65.46 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 33788 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67028 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 26.8 MiB 3.68 1013 13117 3136 9263 718 65.5 MiB 0.12 0.00 3.62407 -127.528 -3.62407 3.62407 0.90 0.00054925 0.00049931 0.0324106 0.0293624 28 2551 39 6.87369e+06 544980 531479. 1839.03 1.43 0.122371 0.107098 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.26 0.08 0.12 -1 -1 0.26 0.0270189 0.0236967 153 59 61 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.92 vpr 66.13 MiB 0.02 7492 -1 -1 1 0.04 -1 -1 34272 -1 -1 47 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67720 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 27.2 MiB 5.42 1138 14475 3597 10051 827 66.1 MiB 0.13 0.00 4.97494 -166.026 -4.97494 4.97494 0.91 0.000643957 0.000586798 0.0373421 0.0336975 32 3530 43 6.87369e+06 656770 586450. 2029.24 2.37 0.190146 0.16629 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.30 0.11 0.13 -1 -1 0.30 0.0301838 0.026493 190 81 64 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.44 vpr 64.75 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33468 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 26.3 MiB 2.55 613 9036 2242 6211 583 64.7 MiB 0.06 0.00 2.94746 -92.2629 -2.94746 2.94746 0.92 0.000384267 0.000351864 0.0231314 0.021096 32 1520 24 6.87369e+06 195634 586450. 2029.24 0.93 0.0715282 0.0624826 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.29 0.04 0.14 -1 -1 0.29 0.0140958 0.0124368 72 51 0 0 53 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.23 vpr 65.05 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33760 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 26.7 MiB 1.21 764 12120 4745 5717 1658 65.1 MiB 0.09 0.00 3.7196 -120.247 -3.7196 3.7196 0.91 0.000431908 0.000393147 0.0331118 0.0301913 32 2131 23 6.87369e+06 251529 586450. 2029.24 1.00 0.0889573 0.078429 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0199888 0.0176314 109 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.38 vpr 65.21 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33524 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 1.61 884 12464 4265 6183 2016 65.2 MiB 0.11 0.00 3.52575 -127.584 -3.52575 3.52575 0.91 0.000469394 0.000428112 0.0360033 0.0328833 34 2591 20 6.87369e+06 223581 618332. 2139.56 1.71 0.13419 0.117385 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0216898 0.0190405 114 31 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.83 vpr 64.77 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 34000 -1 -1 37 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 26.3 MiB 0.94 742 15004 4316 8330 2358 64.8 MiB 0.10 0.00 3.44875 -93.4127 -3.44875 3.44875 0.91 0.000380422 0.000347394 0.0283607 0.0258839 30 1638 20 6.87369e+06 517032 556674. 1926.21 0.93 0.0736533 0.0646506 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.017571 0.0153746 105 19 50 25 25 25 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.97 vpr 65.51 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33928 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 26.8 MiB 3.21 1035 11989 3061 8035 893 65.5 MiB 0.12 0.00 4.14459 -143.245 -4.14459 4.14459 0.86 0.000564198 0.000515137 0.0391256 0.0357196 34 2922 23 6.87369e+06 293451 618332. 2139.56 1.82 0.170651 0.150026 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.025373 0.0224458 145 84 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.07 vpr 65.86 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 34028 -1 -1 40 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 27.1 MiB 3.38 969 12394 3038 8536 820 65.9 MiB 0.11 0.00 3.62425 -121.977 -3.62425 3.62425 0.91 0.000550204 0.000496332 0.0317635 0.0287028 34 2208 23 6.87369e+06 558954 618332. 2139.56 1.60 0.148286 0.128657 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0260477 0.0228675 151 88 29 29 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 9.27 vpr 65.80 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 34180 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67384 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 27.1 MiB 1.98 1383 18363 6134 9531 2698 65.8 MiB 0.16 0.00 5.11247 -173.262 -5.11247 5.11247 0.90 0.000602376 0.000547834 0.053715 0.0489064 36 3373 46 6.89349e+06 408721 648988. 2245.63 4.13 0.255967 0.222288 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0255616 0.0226103 192 80 32 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.06 vpr 65.69 MiB 0.02 7476 -1 -1 1 0.03 -1 -1 33980 -1 -1 29 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67264 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 26.9 MiB 1.74 1338 16411 5641 8181 2589 65.7 MiB 0.14 0.00 5.22297 -160.634 -5.22297 5.22297 0.85 0.000529614 0.000484026 0.0445403 0.0405965 36 3246 31 6.89349e+06 408721 648988. 2245.63 2.28 0.171644 0.150472 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0290103 0.0256754 177 78 30 30 89 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.80 vpr 65.65 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33964 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67224 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 27.0 MiB 2.29 1277 15533 4267 9018 2248 65.6 MiB 0.14 0.00 4.0146 -140.879 -4.0146 4.0146 0.92 0.00051888 0.000464725 0.0435883 0.0397347 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.37 0.190472 0.166977 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0250325 0.0221295 167 50 54 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.98 vpr 65.02 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34100 -1 -1 25 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 26.2 MiB 2.34 1071 16718 5447 9404 1867 65.0 MiB 0.14 0.00 4.53305 -141.516 -4.53305 4.53305 0.86 0.000464892 0.000424811 0.0446716 0.0408212 34 2586 28 6.89349e+06 352346 618332. 2139.56 1.70 0.157582 0.138588 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0234029 0.020658 148 25 87 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 9.83 vpr 65.55 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33992 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 26.9 MiB 2.31 1361 14518 4265 8140 2113 65.6 MiB 0.13 0.00 5.03124 -172.909 -5.03124 5.03124 0.91 0.000558237 0.000508147 0.0418903 0.038106 36 3336 26 6.89349e+06 338252 648988. 2245.63 4.35 0.216582 0.188309 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0250693 0.0221045 163 31 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.18 vpr 65.88 MiB 0.02 7396 -1 -1 1 0.03 -1 -1 33844 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67456 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 27.1 MiB 2.20 1499 20359 6047 11800 2512 65.9 MiB 0.18 0.00 4.44565 -148.532 -4.44565 4.44565 0.90 0.000557334 0.000508542 0.0477159 0.0433276 34 3677 25 6.89349e+06 577847 618332. 2139.56 1.83 0.167084 0.145522 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0273811 0.0239793 179 61 63 32 63 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.84 vpr 64.72 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 34096 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 26.4 MiB 1.84 730 14528 4147 9388 993 64.7 MiB 0.10 0.00 3.83226 -109.129 -3.83226 3.83226 0.90 0.000417023 0.000380701 0.0361495 0.0329714 30 2039 26 6.89349e+06 295971 556674. 1926.21 1.01 0.0918646 0.0807942 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0172253 0.0151496 112 26 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.68 vpr 65.29 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 33636 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66860 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 26.6 MiB 0.94 921 14273 4335 7347 2591 65.3 MiB 0.11 0.00 3.53335 -112.01 -3.53335 3.53335 0.92 0.000469008 0.000424912 0.0315971 0.0287245 34 2397 23 6.89349e+06 493284 618332. 2139.56 1.70 0.131752 0.11504 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0204502 0.0180066 141 -1 115 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 6.41 vpr 65.12 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33628 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 26.5 MiB 1.86 1141 14358 3961 8348 2049 65.1 MiB 0.12 0.00 3.63141 -123.531 -3.63141 3.63141 0.91 0.000479564 0.000436659 0.0397067 0.0362041 34 2852 46 6.89349e+06 295971 618332. 2139.56 1.58 0.129741 0.113053 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.29 0.05 0.13 -1 -1 0.29 0.0191076 0.0167917 140 81 0 0 84 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.36 vpr 64.68 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 33704 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66228 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 26.3 MiB 1.89 873 6923 1573 5100 250 64.7 MiB 0.07 0.00 3.71245 -131.003 -3.71245 3.71245 0.86 0.000456887 0.000411057 0.0193327 0.0177009 34 2505 33 6.89349e+06 267783 618332. 2139.56 1.62 0.120653 0.104707 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0205078 0.0180743 127 31 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.00 vpr 64.89 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33460 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 26.4 MiB 2.48 942 6923 1677 4944 302 64.9 MiB 0.07 0.00 4.3965 -138.695 -4.3965 4.3965 0.90 0.00046172 0.000422016 0.019958 0.018226 34 2532 21 6.89349e+06 295971 618332. 2139.56 1.56 0.11526 0.0991047 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0191683 0.0168758 135 58 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 7.40 vpr 65.41 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33844 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 26.7 MiB 1.95 883 15822 6326 7340 2156 65.4 MiB 0.12 0.00 3.8129 -121.35 -3.8129 3.8129 0.93 0.000453437 0.000412518 0.0424352 0.038628 36 2401 21 6.89349e+06 281877 648988. 2245.63 2.34 0.1569 0.13788 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0180934 0.0160608 135 57 25 25 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.86 vpr 65.34 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33920 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 26.7 MiB 1.47 987 17513 5731 7853 3929 65.3 MiB 0.14 0.00 4.23419 -140.25 -4.23419 4.23419 0.91 0.000533053 0.000485602 0.0502524 0.0457526 38 3008 43 6.89349e+06 352346 678818. 2348.85 4.26 0.197206 0.172842 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.32 0.07 0.17 -1 -1 0.32 0.0244147 0.021475 161 55 64 32 57 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 10.46 vpr 65.80 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33792 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 27.1 MiB 1.75 1162 11063 2970 6995 1098 65.8 MiB 0.11 0.00 5.02024 -166.562 -5.02024 5.02024 0.90 0.000622192 0.000568474 0.0335933 0.030602 36 3019 23 6.89349e+06 394628 648988. 2245.63 5.65 0.257179 0.222036 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0244498 0.0214143 175 60 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.20 vpr 64.79 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 34116 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 26.4 MiB 1.72 754 11296 2879 7697 720 64.8 MiB 0.08 0.00 3.61645 -112 -3.61645 3.61645 0.90 0.000397056 0.00036288 0.0271423 0.0247973 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.51 0.115868 0.1008 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0183307 0.0160791 112 21 58 29 24 24 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 7.79 vpr 65.54 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34060 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 26.8 MiB 2.61 1259 17315 5682 9212 2421 65.5 MiB 0.16 0.00 4.31019 -146.5 -4.31019 4.31019 0.85 0.000547902 0.000489185 0.0503129 0.0457192 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.20 0.193814 0.170398 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.30 0.10 0.13 -1 -1 0.30 0.0262225 0.0230982 174 60 64 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 5.86 vpr 65.29 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33872 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 26.7 MiB 1.37 1183 12365 3291 7811 1263 65.3 MiB 0.11 0.00 3.69045 -130.871 -3.69045 3.69045 0.88 0.000534171 0.000487218 0.0355316 0.032449 34 2840 24 6.89349e+06 352346 618332. 2139.56 1.55 0.145698 0.127224 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.29 0.06 0.14 -1 -1 0.29 0.020784 0.0184741 160 54 64 32 56 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.10 vpr 65.32 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 33736 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 26.5 MiB 2.11 1015 15395 4903 8010 2482 65.3 MiB 0.13 0.00 3.61051 -123.557 -3.61051 3.61051 0.93 0.000480029 0.000436581 0.0411812 0.0374416 38 2435 45 6.89349e+06 310065 678818. 2348.85 1.86 0.164181 0.14298 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0221505 0.0196285 139 62 29 29 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.39 vpr 64.26 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 33804 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 25.8 MiB 1.17 569 8227 1998 5670 559 64.3 MiB 0.05 0.00 3.06366 -95.1937 -3.06366 3.06366 0.89 0.000302631 0.000277281 0.0173984 0.0158903 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.38 0.087997 0.0757353 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.29 0.04 0.13 -1 -1 0.29 0.0153558 0.0133913 85 29 24 24 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 6.37 vpr 65.03 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33784 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 26.3 MiB 1.67 1101 13663 4048 7780 1835 65.0 MiB 0.11 0.00 4.32835 -147.32 -4.32835 4.32835 0.90 0.000467544 0.000425696 0.0369393 0.033725 34 2756 25 6.89349e+06 310065 618332. 2139.56 1.67 0.138479 0.120625 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0205179 0.0180655 141 55 31 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.88 vpr 65.44 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33776 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 26.8 MiB 1.12 1052 20112 6009 11047 3056 65.4 MiB 0.16 0.00 4.67003 -155.404 -4.67003 4.67003 0.88 0.000540502 0.000494312 0.0450711 0.0410505 34 2792 26 6.89349e+06 563754 618332. 2139.56 1.73 0.168395 0.147956 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0230658 0.0203695 166 31 91 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.31 vpr 65.86 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 34196 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 27.2 MiB 1.42 1507 16511 4972 9774 1765 65.9 MiB 0.15 0.00 4.34661 -147.62 -4.34661 4.34661 0.86 0.00058042 0.000530564 0.0469591 0.0428523 36 3423 27 6.89349e+06 436909 648988. 2245.63 3.89 0.257018 0.223804 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0280845 0.0248216 201 108 0 0 125 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 7.38 vpr 64.54 MiB 0.02 6800 -1 -1 1 0.02 -1 -1 33880 -1 -1 18 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 26.2 MiB 1.53 692 10476 3888 5359 1229 64.5 MiB 0.06 0.00 2.84541 -81.5212 -2.84541 2.84541 0.94 0.000316607 0.000288443 0.0222115 0.0202553 34 1440 20 6.89349e+06 253689 618332. 2139.56 2.88 0.111501 0.0964731 25762 151098 -1 1275 19 537 676 51771 11421 2.04335 2.04335 -77.3366 -2.04335 0 0 787024. 2723.27 0.31 0.03 0.14 -1 -1 0.31 0.0135702 0.0119985 77 21 26 26 22 22 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.77 vpr 65.00 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34172 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 26.5 MiB 1.33 1016 9571 2543 6414 614 65.0 MiB 0.09 0.00 4.12784 -139.243 -4.12784 4.12784 0.87 0.000505075 0.000461998 0.0275037 0.0251406 30 2786 37 6.89349e+06 295971 556674. 1926.21 1.54 0.113633 0.100206 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0223898 0.0196497 141 -1 122 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.10 vpr 64.23 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 34144 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65776 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 25.8 MiB 0.40 514 9356 2285 6456 615 64.2 MiB 0.06 0.00 2.43188 -86.7872 -2.43188 2.43188 0.89 0.000346789 0.000316383 0.0199339 0.0181921 28 1509 16 6.89349e+06 169126 531479. 1839.03 0.92 0.0592659 0.0521364 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.26 0.04 0.12 -1 -1 0.26 0.0137198 0.0121116 71 -1 53 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.77 vpr 65.36 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34008 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66924 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 26.5 MiB 1.65 1097 15929 4551 10101 1277 65.4 MiB 0.15 0.00 4.62958 -159.64 -4.62958 4.62958 0.91 0.000544844 0.000499858 0.0445377 0.0407395 30 2755 25 6.89349e+06 352346 556674. 1926.21 1.05 0.115093 0.101597 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.021154 0.0187214 161 21 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.82 vpr 65.52 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34024 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 26.8 MiB 0.87 885 10772 2583 7345 844 65.5 MiB 0.09 0.00 3.4709 -116.935 -3.4709 3.4709 0.86 0.000452912 0.000414526 0.0227167 0.0205996 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.03 0.0937421 0.0815543 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.28 0.06 0.13 -1 -1 0.28 0.0202753 0.017857 151 -1 124 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.82 vpr 65.78 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33956 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67356 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 27.1 MiB 1.94 1365 8130 1863 5269 998 65.8 MiB 0.09 0.00 4.69935 -162.091 -4.69935 4.69935 0.86 0.000537252 0.000491536 0.0240979 0.0220898 34 3698 26 6.89349e+06 366440 618332. 2139.56 1.97 0.137276 0.120643 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.30 0.09 0.13 -1 -1 0.30 0.0269564 0.023753 174 54 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.23 vpr 64.63 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 34116 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 26.2 MiB 2.17 863 14256 5690 7135 1431 64.6 MiB 0.11 0.00 3.57625 -122.952 -3.57625 3.57625 0.87 0.000437419 0.000396598 0.0375528 0.0342182 36 2395 27 6.89349e+06 239595 648988. 2245.63 2.12 0.146411 0.128445 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0204534 0.0180372 118 31 54 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.71 vpr 64.77 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33592 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 26.3 MiB 1.99 1065 12331 4460 6746 1125 64.8 MiB 0.10 0.00 4.27029 -139.911 -4.27029 4.27029 0.90 0.000432125 0.000393479 0.0330171 0.0301648 34 2653 21 6.89349e+06 267783 618332. 2139.56 1.73 0.130674 0.114194 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0196092 0.0172787 121 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.52 vpr 64.61 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 33848 -1 -1 21 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 26.2 MiB 2.52 839 10231 2827 6777 627 64.6 MiB 0.09 0.00 4.26535 -126.926 -4.26535 4.26535 0.90 0.000414696 0.00037927 0.0257945 0.0235597 30 2437 23 6.89349e+06 295971 556674. 1926.21 1.05 0.0799253 0.070149 25186 138497 -1 1837 21 1164 1980 126771 30045 3.5641 3.5641 -124.418 -3.5641 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0187585 0.0164575 115 27 56 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.60 vpr 64.68 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33628 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.1 MiB 1.19 860 14700 5342 7547 1811 64.7 MiB 0.11 0.00 3.60535 -129.612 -3.60535 3.60535 0.86 0.000431579 0.000395586 0.0377272 0.0344825 34 2261 23 6.89349e+06 225501 618332. 2139.56 1.53 0.12803 0.112281 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0193016 0.017042 114 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 7.50 vpr 64.80 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34088 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 26.3 MiB 1.59 985 14322 4727 7440 2155 64.8 MiB 0.12 0.00 3.69435 -127.028 -3.69435 3.69435 0.87 0.000437747 0.000400331 0.0370937 0.0338503 30 2355 32 6.89349e+06 267783 556674. 1926.21 2.97 0.156135 0.135612 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0182619 0.0160554 121 26 61 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 6.47 vpr 64.97 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34016 -1 -1 23 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 26.4 MiB 1.80 1052 14724 4760 7779 2185 65.0 MiB 0.12 0.00 3.57215 -115.596 -3.57215 3.57215 0.94 0.000444215 0.000406541 0.0378247 0.0344915 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.57 0.150759 0.131333 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0189605 0.0168313 130 55 29 29 57 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.96 vpr 65.80 MiB 0.02 7456 -1 -1 1 0.03 -1 -1 34120 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67380 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 27.0 MiB 2.36 1199 18247 5521 9891 2835 65.8 MiB 0.17 0.00 4.73855 -160.484 -4.73855 4.73855 0.88 0.000562759 0.000513075 0.0532427 0.0484829 34 3612 43 6.89349e+06 380534 618332. 2139.56 2.54 0.225633 0.19917 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.30 0.09 0.13 -1 -1 0.30 0.0272866 0.0241108 184 26 128 32 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 7.30 vpr 65.65 MiB 0.02 7232 -1 -1 1 0.03 -1 -1 33916 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 26.8 MiB 2.11 1143 14147 4354 7296 2497 65.7 MiB 0.13 0.00 4.17974 -143.168 -4.17974 4.17974 0.91 0.000552768 0.000503613 0.041889 0.038195 34 3686 37 6.89349e+06 352346 618332. 2139.56 2.06 0.178196 0.155488 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0279289 0.0245588 173 62 62 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 5.55 vpr 65.30 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33924 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 26.5 MiB 1.00 1094 14965 4562 8063 2340 65.3 MiB 0.12 0.00 3.67235 -123.222 -3.67235 3.67235 0.88 0.0004804 0.000437092 0.0414638 0.0378012 34 2583 23 6.89349e+06 310065 618332. 2139.56 1.56 0.141676 0.123508 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.0196038 0.0172331 143 77 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 7.32 vpr 65.64 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33696 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 27.0 MiB 2.58 1244 16523 4277 10843 1403 65.6 MiB 0.16 0.00 4.45875 -146.616 -4.45875 4.45875 0.87 0.000513783 0.000468341 0.0461455 0.0420666 34 3212 33 6.89349e+06 366440 618332. 2139.56 1.77 0.176645 0.155152 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.29 0.07 0.13 -1 -1 0.29 0.0251001 0.0221464 170 59 60 30 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 7.36 vpr 65.92 MiB 0.02 7564 -1 -1 1 0.03 -1 -1 34252 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67504 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 27.3 MiB 2.27 1489 17560 4957 10293 2310 65.9 MiB 0.16 0.00 5.02254 -165.43 -5.02254 5.02254 0.86 0.000615991 0.000551334 0.0478218 0.0434981 34 3603 25 6.89349e+06 436909 618332. 2139.56 2.02 0.187326 0.164274 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0256139 0.0226163 201 111 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 7.79 vpr 65.77 MiB 0.02 7532 -1 -1 1 0.03 -1 -1 33968 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 27.1 MiB 2.90 1401 11923 3470 7236 1217 65.8 MiB 0.12 0.00 5.49816 -175.294 -5.49816 5.49816 0.90 0.000549967 0.000501631 0.0344439 0.0314276 38 3017 23 6.89349e+06 394628 678818. 2348.85 1.77 0.129848 0.11367 26626 170182 -1 2506 19 1826 2480 147944 34484 4.87284 4.87284 -166.744 -4.87284 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.023587 0.0208167 181 86 31 31 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.76 vpr 65.73 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33860 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67304 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 27.0 MiB 1.92 1340 14763 4284 8311 2168 65.7 MiB 0.13 0.00 3.76655 -130.012 -3.76655 3.76655 0.88 0.000550208 0.000499829 0.0394292 0.0359828 34 3258 47 6.89349e+06 380534 618332. 2139.56 1.78 0.167399 0.145764 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.30 0.08 0.16 -1 -1 0.30 0.0267594 0.0235613 168 58 60 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 10.78 vpr 65.81 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33972 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 27.1 MiB 2.17 1284 16207 4365 9844 1998 65.8 MiB 0.15 0.00 4.62085 -160.706 -4.62085 4.62085 0.88 0.000542244 0.000490738 0.0453376 0.0414106 34 3366 50 6.89349e+06 380534 618332. 2139.56 5.57 0.317232 0.27595 25762 151098 -1 2675 20 2097 2768 213441 47597 4.08816 4.08816 -158.057 -4.08816 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0252997 0.0223763 178 42 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.66 vpr 65.70 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 34184 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 27.3 MiB 2.41 1764 15215 4236 8627 2352 65.7 MiB 0.16 0.00 5.15348 -175.341 -5.15348 5.15348 0.86 0.000623808 0.000569496 0.0469918 0.0428478 34 4947 37 6.89349e+06 436909 618332. 2139.56 3.19 0.20203 0.178647 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.30 0.13 0.13 -1 -1 0.30 0.0326402 0.0290695 220 91 62 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.40 vpr 64.84 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 33984 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 26.4 MiB 1.94 822 6743 1455 4759 529 64.8 MiB 0.06 0.00 3.853 -129.297 -3.853 3.853 0.86 0.00046556 0.000424287 0.0188397 0.0171491 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.53 0.122597 0.1064 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.0198343 0.0174623 127 24 62 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 7.33 vpr 65.30 MiB 0.02 7420 -1 -1 1 0.03 -1 -1 34080 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 26.7 MiB 1.99 1294 17376 6419 8627 2330 65.3 MiB 0.16 0.00 5.00234 -161.335 -5.00234 5.00234 0.90 0.000536657 0.000487627 0.048752 0.044378 34 3454 30 6.89349e+06 380534 618332. 2139.56 2.23 0.157341 0.137959 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0252649 0.0222241 168 59 62 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.44 vpr 65.58 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33860 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67156 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 26.9 MiB 2.14 1356 15391 5368 7626 2397 65.6 MiB 0.14 0.00 4.39449 -148.549 -4.39449 4.39449 0.88 0.000552153 0.00050432 0.0432926 0.0394514 36 3343 28 6.89349e+06 380534 648988. 2245.63 2.29 0.174524 0.153243 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.30 0.07 0.14 -1 -1 0.30 0.0227058 0.0201029 172 54 62 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.71 vpr 65.47 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33684 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 26.7 MiB 1.50 953 14407 3720 10033 654 65.5 MiB 0.13 0.00 4.3344 -147.594 -4.3344 4.3344 0.87 0.000492975 0.000449675 0.0414501 0.0377811 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.21 0.167279 0.147654 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0244249 0.0215386 147 -1 128 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.88 vpr 65.80 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33796 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 27.0 MiB 1.82 1279 18101 5797 9598 2706 65.8 MiB 0.16 0.00 4.41459 -148.068 -4.41459 4.41459 0.92 0.000591532 0.000539033 0.0504333 0.0459773 34 3456 36 6.89349e+06 394628 618332. 2139.56 1.94 0.186088 0.16207 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.29 0.06 0.15 -1 -1 0.29 0.0226601 0.0200792 184 81 25 25 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.68 vpr 65.52 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33424 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67096 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 26.9 MiB 2.35 1221 17635 5673 8836 3126 65.5 MiB 0.14 0.00 4.28929 -146.442 -4.28929 4.28929 0.86 0.000535655 0.000489374 0.0482609 0.0440801 36 3258 26 6.89349e+06 380534 648988. 2245.63 3.33 0.189916 0.167763 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0278875 0.0245227 169 58 64 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 6.91 vpr 65.66 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34140 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 27.0 MiB 2.07 1303 7027 1560 5110 357 65.7 MiB 0.08 0.00 3.72045 -130.455 -3.72045 3.72045 0.90 0.000569025 0.000514123 0.0218029 0.0198918 34 3432 32 6.89349e+06 380534 618332. 2139.56 1.80 0.150272 0.130458 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0239405 0.0211407 175 61 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.63 vpr 65.55 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33732 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 26.7 MiB 1.88 1190 14518 4171 8562 1785 65.6 MiB 0.13 0.00 4.63815 -161.109 -4.63815 4.63815 0.88 0.000528013 0.000483692 0.0410251 0.0375197 34 2867 24 6.89349e+06 338252 618332. 2139.56 1.75 0.160527 0.140646 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0232074 0.0204375 161 21 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 8.82 vpr 65.67 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 34084 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67244 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 27.0 MiB 1.62 1201 13351 3240 8446 1665 65.7 MiB 0.12 0.00 4.60525 -158.398 -4.60525 4.60525 0.94 0.000522576 0.000475599 0.0391952 0.0357238 36 3088 18 6.89349e+06 380534 648988. 2245.63 4.04 0.212877 0.184911 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0256682 0.022498 177 50 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 6.17 vpr 65.76 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33944 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 27.1 MiB 1.41 1470 18625 5270 10765 2590 65.8 MiB 0.17 0.00 5.00359 -155.604 -5.00359 5.00359 0.86 0.00056419 0.000514874 0.0528325 0.0481729 34 3523 29 6.89349e+06 436909 618332. 2139.56 1.77 0.190407 0.167382 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0258822 0.0228946 195 110 0 0 122 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 10.23 vpr 65.49 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33820 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67060 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 27.0 MiB 3.01 1648 15391 4130 9133 2128 65.5 MiB 0.15 0.00 4.77885 -161.828 -4.77885 4.77885 0.87 0.000778753 0.000712333 0.0441756 0.0403558 36 3608 22 6.89349e+06 380534 648988. 2245.63 4.15 0.224256 0.194526 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.30 0.09 0.14 -1 -1 0.30 0.0272333 0.0238187 190 86 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.38 vpr 65.05 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 34140 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66612 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 26.7 MiB 1.87 1067 16081 5068 9178 1835 65.1 MiB 0.13 0.00 3.68745 -131.866 -3.68745 3.68745 0.88 0.000437262 0.000398261 0.0406007 0.0369906 34 2400 20 6.89349e+06 295971 618332. 2139.56 1.56 0.137655 0.120802 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0185599 0.0164375 127 20 63 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 8.92 vpr 65.37 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 33676 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 26.7 MiB 1.83 1122 7711 1541 6020 150 65.4 MiB 0.08 0.00 4.29439 -143.523 -4.29439 4.29439 0.89 0.000495491 0.00045093 0.0230977 0.0210725 38 2565 21 6.89349e+06 295971 678818. 2348.85 4.04 0.171538 0.148009 26626 170182 -1 2184 20 1590 1872 134734 29974 3.67705 3.67705 -137.39 -3.67705 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0220898 0.0194193 154 91 0 0 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 7.47 vpr 65.55 MiB 0.02 7380 -1 -1 1 0.04 -1 -1 34148 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 26.9 MiB 2.15 1537 17347 5978 9037 2332 65.6 MiB 0.19 0.00 5.35709 -181.872 -5.35709 5.35709 0.92 0.000635451 0.000577423 0.0539734 0.0490937 38 3731 22 6.89349e+06 422815 678818. 2348.85 2.02 0.207523 0.183163 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.35 0.09 0.16 -1 -1 0.35 0.0303642 0.0268761 209 53 96 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.25 vpr 65.32 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 34072 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 26.6 MiB 2.04 1176 14295 4272 7910 2113 65.3 MiB 0.13 0.00 3.7808 -134.415 -3.7808 3.7808 0.86 0.000496535 0.000453165 0.039621 0.0362187 34 2997 45 6.89349e+06 324158 618332. 2139.56 2.27 0.188015 0.165484 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.29 0.09 0.13 -1 -1 0.29 0.0272918 0.0240759 156 31 92 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.75 vpr 64.65 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33720 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 26.1 MiB 1.30 932 11809 3108 7963 738 64.7 MiB 0.10 0.00 4.33203 -134.423 -4.33203 4.33203 0.89 0.000450165 0.000410544 0.0265491 0.0242195 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.50 0.116023 0.100886 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0195471 0.0171294 129 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 7.40 vpr 65.64 MiB 0.02 7412 -1 -1 1 0.04 -1 -1 34428 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 27.5 MiB 2.05 1787 18111 5206 10704 2201 65.6 MiB 0.20 0.00 5.73258 -193.193 -5.73258 5.73258 0.87 0.000723322 0.000659749 0.056662 0.0515609 36 4099 45 6.89349e+06 493284 648988. 2245.63 2.21 0.214923 0.189808 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.32 0.09 0.14 -1 -1 0.32 0.0321995 0.0284862 239 109 32 32 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.48 vpr 65.57 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33984 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 27.0 MiB 1.63 1091 13143 3864 7923 1356 65.6 MiB 0.12 0.00 4.41749 -154.465 -4.41749 4.41749 0.90 0.000561575 0.000515016 0.0387981 0.0354213 34 2892 26 6.89349e+06 324158 618332. 2139.56 1.78 0.156876 0.137186 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0237585 0.0209586 159 31 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.42 vpr 64.75 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 33932 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 26.4 MiB 0.62 849 10087 2557 6780 750 64.8 MiB 0.09 0.00 3.73565 -131.011 -3.73565 3.73565 0.86 0.000420869 0.000383727 0.0210811 0.0192622 30 2269 22 6.89349e+06 465097 556674. 1926.21 0.99 0.0764557 0.0668473 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.27 0.05 0.12 -1 -1 0.27 0.0177943 0.0157007 123 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.69 vpr 65.49 MiB 0.02 7200 -1 -1 1 0.04 -1 -1 34284 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67064 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 26.7 MiB 2.17 1275 12273 3390 7733 1150 65.5 MiB 0.12 0.00 5.39711 -179.414 -5.39711 5.39711 0.85 0.000621384 0.000563423 0.0342814 0.0312577 34 3822 27 6.89349e+06 408721 618332. 2139.56 2.47 0.156009 0.136805 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.32 0.10 0.15 -1 -1 0.32 0.03043 0.0268548 194 26 128 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.59 vpr 64.73 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 33976 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.2 MiB 0.95 787 10056 2193 7590 273 64.7 MiB 0.08 0.00 3.8468 -135.678 -3.8468 3.8468 0.89 0.00044288 0.000404594 0.0270475 0.0247103 34 2224 26 6.89349e+06 225501 618332. 2139.56 1.68 0.128068 0.112028 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0201989 0.0177193 114 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.23 vpr 65.03 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 34068 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 26.5 MiB 1.36 801 8131 1824 5536 771 65.0 MiB 0.07 0.00 3.71635 -120.03 -3.71635 3.71635 0.87 0.000439733 0.000401091 0.0221647 0.020293 36 2120 22 6.89349e+06 267783 648988. 2245.63 1.96 0.126475 0.11065 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.018671 0.0165106 121 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 6.22 vpr 65.62 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34020 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67192 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 26.9 MiB 1.66 1254 15203 3953 9019 2231 65.6 MiB 0.13 0.00 4.1318 -129.307 -4.1318 4.1318 0.87 0.00052466 0.000479688 0.0412644 0.0376302 34 2921 25 6.89349e+06 436909 618332. 2139.56 1.62 0.156524 0.136612 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0237346 0.0209174 171 81 29 29 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.41 vpr 65.61 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 33936 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67184 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 26.9 MiB 2.28 1381 16974 4929 9664 2381 65.6 MiB 0.14 0.00 5.29596 -177.687 -5.29596 5.29596 0.90 0.000543755 0.000495363 0.0492938 0.0449108 36 3381 23 6.89349e+06 366440 648988. 2245.63 2.00 0.17032 0.148957 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0263807 0.0232839 178 53 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 7.01 vpr 65.77 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 34384 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 27.1 MiB 1.90 1376 18180 6112 9250 2818 65.8 MiB 0.17 0.00 5.13064 -174.448 -5.13064 5.13064 0.87 0.000527136 0.00048232 0.0514762 0.0469933 34 3618 39 6.89349e+06 366440 618332. 2139.56 2.04 0.191133 0.167982 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0257044 0.0226388 175 55 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 6.21 vpr 65.45 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33964 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 26.7 MiB 1.43 1013 14221 3579 9597 1045 65.5 MiB 0.11 0.00 4.30029 -147.314 -4.30029 4.30029 0.87 0.000475422 0.000434462 0.0382137 0.0349332 34 2793 24 6.89349e+06 295971 618332. 2139.56 1.83 0.152458 0.133744 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0210489 0.0185472 141 55 32 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.57 vpr 65.43 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34100 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 26.6 MiB 1.91 1168 10501 2617 6825 1059 65.4 MiB 0.09 0.00 4.23729 -139.76 -4.23729 4.23729 0.90 0.000478339 0.000436088 0.0294832 0.0268961 34 2811 21 6.89349e+06 310065 618332. 2139.56 1.65 0.132537 0.115112 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0220983 0.0194146 146 82 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.16 vpr 64.99 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33972 -1 -1 29 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 26.4 MiB 2.24 1158 18043 5948 9235 2860 65.0 MiB 0.15 0.00 3.9471 -130.183 -3.9471 3.9471 0.87 0.000510294 0.000465224 0.0467254 0.0426112 36 2742 19 6.89349e+06 408721 648988. 2245.63 1.86 0.166074 0.146227 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0252471 0.0221223 164 52 60 30 57 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.32 vpr 64.71 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34144 -1 -1 27 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 26.2 MiB 1.40 970 11031 2869 6600 1562 64.7 MiB 0.09 0.00 4.51585 -132.654 -4.51585 4.51585 0.86 0.000453392 0.000413594 0.0290603 0.0264598 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.06 0.0931748 0.0821232 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0219436 0.0193895 145 20 84 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.35 vpr 65.19 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33812 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 26.7 MiB 2.26 1087 9083 2557 5800 726 65.2 MiB 0.08 0.00 4.36859 -139.508 -4.36859 4.36859 0.91 0.000454334 0.000413681 0.0251185 0.0228962 36 2461 21 6.89349e+06 295971 648988. 2245.63 2.04 0.135649 0.118885 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0194844 0.0172715 136 58 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.80 vpr 65.56 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33780 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 27.0 MiB 2.01 1180 8827 2269 5871 687 65.6 MiB 0.09 0.00 3.8008 -130.21 -3.8008 3.8008 0.90 0.000495353 0.00044626 0.0256148 0.0233301 34 2947 27 6.89349e+06 295971 618332. 2139.56 1.78 0.118498 0.103059 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0207497 0.018277 150 88 0 0 91 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 6.06 vpr 65.14 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33880 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 26.4 MiB 0.89 1032 15180 4497 8229 2454 65.1 MiB 0.13 0.00 4.35445 -144.691 -4.35445 4.35445 0.93 0.000495064 0.000449568 0.0345629 0.0314341 28 3116 24 6.89349e+06 521472 531479. 1839.03 2.08 0.115567 0.102329 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.27 0.09 0.12 -1 -1 0.27 0.0244215 0.0214476 151 -1 124 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 6.34 vpr 65.23 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34188 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 26.6 MiB 1.49 1263 12351 3110 8140 1101 65.2 MiB 0.12 0.00 4.78058 -162.367 -4.78058 4.78058 0.86 0.000551815 0.000506684 0.0356609 0.0325457 34 3370 34 6.89349e+06 366440 618332. 2139.56 1.86 0.174567 0.153098 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0242474 0.0213787 173 57 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 7.97 vpr 65.55 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 34060 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 26.8 MiB 1.98 1405 10743 3107 6650 986 65.6 MiB 0.11 0.00 4.9601 -169.723 -4.9601 4.9601 0.91 0.000564512 0.000514997 0.0322932 0.0294416 36 3352 21 6.89349e+06 366440 648988. 2245.63 2.83 0.174736 0.154222 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0297181 0.0262051 171 62 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 7.91 vpr 65.78 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 33812 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 27.1 MiB 2.15 1306 10087 2279 7315 493 65.8 MiB 0.11 0.00 4.3224 -145.723 -4.3224 4.3224 0.90 0.000546982 0.000498375 0.0291611 0.0265829 34 4019 38 6.89349e+06 380534 618332. 2139.56 2.67 0.168976 0.147223 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0259745 0.0228581 172 62 60 30 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.75 vpr 64.87 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33748 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 26.4 MiB 2.00 814 9181 2458 5686 1037 64.9 MiB 0.08 0.00 3.809 -121.257 -3.809 3.809 0.93 0.000443559 0.000403935 0.0249875 0.022784 34 2414 23 6.89349e+06 267783 618332. 2139.56 1.68 0.122621 0.106838 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0181387 0.0160482 122 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.52 vpr 65.55 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34020 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67124 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 26.9 MiB 2.63 1287 12568 3293 7724 1551 65.6 MiB 0.12 0.00 5.05854 -160.711 -5.05854 5.05854 0.86 0.000517586 0.000472769 0.0360875 0.0329649 34 3215 23 6.89349e+06 366440 618332. 2139.56 1.94 0.162851 0.142904 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0256588 0.0226682 165 58 60 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.60 vpr 66.05 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 34312 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67640 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 27.3 MiB 1.32 1479 11383 3062 7492 829 66.1 MiB 0.11 0.00 4.57601 -155.587 -4.57601 4.57601 0.90 0.000587296 0.000533316 0.0341483 0.0310368 36 3485 21 6.89349e+06 422815 648988. 2245.63 2.21 0.16102 0.140075 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0276778 0.0242739 204 106 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 9.15 vpr 65.66 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34060 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 26.9 MiB 1.89 1301 16445 5093 9336 2016 65.7 MiB 0.16 0.00 5.17904 -171.173 -5.17904 5.17904 0.92 0.000581529 0.000531796 0.0484602 0.0441659 36 3067 22 6.89349e+06 408721 648988. 2245.63 4.08 0.222521 0.19372 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0266357 0.0235455 186 79 31 31 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.09 vpr 65.77 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 34008 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 27.1 MiB 2.44 1252 12351 3368 8179 804 65.8 MiB 0.12 0.00 4.25135 -136.296 -4.25135 4.25135 0.93 0.000545339 0.000496821 0.0361907 0.0328687 34 3685 43 6.89349e+06 394628 618332. 2139.56 2.50 0.167625 0.147296 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0254369 0.0224709 175 83 26 26 90 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.30 vpr 65.68 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33952 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 27.0 MiB 2.06 1349 14160 4180 8412 1568 65.7 MiB 0.13 0.00 5.11687 -171.214 -5.11687 5.11687 0.91 0.000546699 0.000495954 0.0410605 0.0373364 34 3581 27 6.89349e+06 366440 618332. 2139.56 2.11 0.151608 0.133424 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.0244921 0.0216307 177 58 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 7.14 vpr 65.71 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33888 -1 -1 30 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67292 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 27.0 MiB 2.38 1337 17431 5595 9274 2562 65.7 MiB 0.15 0.00 4.49555 -136.793 -4.49555 4.49555 0.90 0.000523004 0.000475959 0.0472617 0.0431298 34 3073 24 6.89349e+06 422815 618332. 2139.56 1.67 0.159553 0.139128 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0239218 0.0210335 170 81 26 26 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.25 vpr 64.62 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 33700 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.1 MiB 0.64 851 10744 3065 7267 412 64.6 MiB 0.09 0.00 3.7888 -133.854 -3.7888 3.7888 0.92 0.000458019 0.00041877 0.0297314 0.0271213 34 2305 21 6.89349e+06 225501 618332. 2139.56 1.59 0.118714 0.103588 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0182026 0.0160892 114 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.57 vpr 65.71 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33616 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67284 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 27.0 MiB 1.84 1266 16411 5685 8276 2450 65.7 MiB 0.16 0.00 5.17997 -174.972 -5.17997 5.17997 0.90 0.000575633 0.000518787 0.0486017 0.0442576 34 3964 24 6.89349e+06 380534 618332. 2139.56 2.54 0.176042 0.153853 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0265195 0.0234295 174 62 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 8.28 vpr 65.72 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33936 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67300 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 27.0 MiB 2.96 1294 9791 2343 6863 585 65.7 MiB 0.09 0.00 5.01095 -168.663 -5.01095 5.01095 0.85 0.000489565 0.000446171 0.0270254 0.0246654 34 3734 27 6.89349e+06 352346 618332. 2139.56 2.29 0.151603 0.131775 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0271235 0.0237734 176 62 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 6.43 vpr 64.91 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33992 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 26.5 MiB 1.84 971 13043 4021 6975 2047 64.9 MiB 0.10 0.00 3.51612 -116.281 -3.51612 3.51612 0.91 0.000423432 0.000390166 0.0333942 0.0303787 34 2366 21 6.89349e+06 267783 618332. 2139.56 1.59 0.126699 0.110164 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0191144 0.0168311 128 47 32 32 54 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.88 vpr 64.70 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33808 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66252 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 26.2 MiB 0.91 734 11604 2641 7381 1582 64.7 MiB 0.09 0.00 3.8218 -128.161 -3.8218 3.8218 0.90 0.00041088 0.000374692 0.0300425 0.0274781 32 2249 20 6.89349e+06 239595 586450. 2029.24 1.00 0.0828335 0.0730345 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0190563 0.0167158 112 -1 93 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.58 vpr 65.26 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33932 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 26.6 MiB 1.70 1234 14147 4178 8444 1525 65.3 MiB 0.13 0.00 4.31849 -141.833 -4.31849 4.31849 0.91 0.000561054 0.000513708 0.0423258 0.0386282 34 3001 25 6.89349e+06 352346 618332. 2139.56 1.75 0.160958 0.14083 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0265058 0.0233655 158 56 60 32 58 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.63 vpr 65.68 MiB 0.02 7456 -1 -1 1 0.03 -1 -1 33676 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 27.0 MiB 1.69 1314 10341 2747 6842 752 65.7 MiB 0.11 0.00 5.10864 -160.907 -5.10864 5.10864 0.85 0.000523595 0.000479136 0.030374 0.0276962 34 3382 28 6.89349e+06 366440 618332. 2139.56 1.96 0.158418 0.138611 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0260071 0.0230221 170 81 28 28 88 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.21 vpr 65.45 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34000 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 26.8 MiB 0.96 1292 15419 3797 10101 1521 65.4 MiB 0.14 0.00 4.85078 -164.688 -4.85078 4.85078 0.93 0.000592634 0.000541099 0.0390735 0.0354945 34 3291 24 6.89349e+06 577847 618332. 2139.56 2.08 0.171456 0.150063 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0263406 0.0229399 183 -1 156 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 6.78 vpr 65.28 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33796 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 26.7 MiB 1.94 1124 9395 2323 6078 994 65.3 MiB 0.09 0.00 3.8961 -125.22 -3.8961 3.8961 0.92 0.000555707 0.000505418 0.025812 0.0234819 34 2687 35 6.89349e+06 380534 618332. 2139.56 1.76 0.146315 0.127129 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0241409 0.0212665 160 47 60 30 56 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.01 vpr 64.80 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34216 -1 -1 22 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 26.4 MiB 1.43 915 13031 5095 6351 1585 64.8 MiB 0.10 0.00 4.34539 -126.288 -4.34539 4.34539 0.92 0.000408142 0.000372838 0.0320455 0.0292798 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.55 0.11573 0.10112 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0176556 0.015488 112 26 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 7.48 vpr 66.23 MiB 0.02 7412 -1 -1 1 0.04 -1 -1 34196 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67824 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 27.5 MiB 1.97 1748 16302 4126 10044 2132 66.2 MiB 0.19 0.00 5.09354 -170.611 -5.09354 5.09354 0.89 0.000656156 0.000599879 0.0510587 0.0465545 34 4285 25 6.89349e+06 451003 618332. 2139.56 2.38 0.208365 0.183972 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.30 0.10 0.14 -1 -1 0.30 0.0299272 0.0265123 219 85 62 31 95 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.00 vpr 65.61 MiB 0.02 7460 -1 -1 1 0.03 -1 -1 34140 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 27.0 MiB 2.53 1467 12661 2948 8528 1185 65.6 MiB 0.13 0.00 5.14784 -166.315 -5.14784 5.14784 0.91 0.000638322 0.000577836 0.0393864 0.0359459 36 3334 29 6.89349e+06 436909 648988. 2245.63 2.31 0.178617 0.156239 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0263859 0.023288 201 105 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.25 vpr 65.16 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 33604 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 26.3 MiB 2.25 1133 9914 2313 7132 469 65.2 MiB 0.09 0.00 4.28535 -139.234 -4.28535 4.28535 0.92 0.000511286 0.000462328 0.0273151 0.0247733 34 3076 43 6.89349e+06 310065 618332. 2139.56 1.96 0.150726 0.130715 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0201578 0.0177399 150 86 0 0 89 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 6.79 vpr 65.46 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34016 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67028 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 26.6 MiB 2.04 1114 12951 3612 7720 1619 65.5 MiB 0.12 0.00 4.53785 -150.754 -4.53785 4.53785 0.92 0.000507447 0.000467033 0.0382251 0.0348559 34 2799 24 6.89349e+06 324158 618332. 2139.56 1.65 0.149349 0.130217 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0230551 0.0202319 151 31 90 30 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.08 vpr 65.68 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 34172 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 26.9 MiB 1.87 1475 19413 5609 11709 2095 65.7 MiB 0.20 0.00 4.64537 -154.979 -4.64537 4.64537 0.94 0.000630453 0.000564426 0.0591485 0.0536332 34 3553 32 6.89349e+06 422815 618332. 2139.56 1.95 0.205669 0.18039 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0301466 0.0266315 193 50 87 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.27 vpr 65.12 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34184 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 26.5 MiB 2.19 1223 16773 5429 8542 2802 65.1 MiB 0.14 0.00 4.28025 -135.791 -4.28025 4.28025 0.90 0.000527002 0.000479559 0.0455534 0.0414657 36 2894 24 6.89349e+06 394628 648988. 2245.63 1.96 0.164731 0.144376 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0218962 0.0193885 162 50 58 30 58 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.20 vpr 65.70 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34120 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 27.0 MiB 1.71 1373 17066 5393 8866 2807 65.7 MiB 0.16 0.00 5.03124 -168.563 -5.03124 5.03124 0.91 0.000526456 0.00047693 0.0477618 0.043462 34 3693 35 6.89349e+06 394628 618332. 2139.56 2.36 0.190389 0.167176 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0258877 0.0227927 173 61 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.13 vpr 65.71 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33988 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67284 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 27.0 MiB 2.23 1418 13147 3928 7969 1250 65.7 MiB 0.13 0.00 3.78872 -134.171 -3.78872 3.78872 0.91 0.000526058 0.000481813 0.0383206 0.0348546 34 3370 23 6.89349e+06 380534 618332. 2139.56 1.78 0.158993 0.138479 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0252843 0.0222396 175 61 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.21 vpr 64.60 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33660 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 26.2 MiB 1.56 802 14322 5252 6511 2559 64.6 MiB 0.11 0.00 3.809 -119.785 -3.809 3.809 0.95 0.00043138 0.0003935 0.0365181 0.0333043 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.56 0.127606 0.111341 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0183792 0.0162306 118 28 58 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.19 vpr 65.15 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34064 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 26.4 MiB 1.34 1059 7038 1561 5080 397 65.1 MiB 0.07 0.00 4.31213 -129.707 -4.31213 4.31213 0.92 0.000495745 0.000448858 0.0195793 0.0178198 34 2689 32 6.89349e+06 281877 618332. 2139.56 1.86 0.127445 0.110278 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0179163 0.0158327 136 79 0 0 82 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 8.92 vpr 65.04 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 33848 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 26.2 MiB 1.62 1144 15255 6301 7544 1410 65.0 MiB 0.13 0.00 4.60015 -151.135 -4.60015 4.60015 0.91 0.000541427 0.000491994 0.0435239 0.0396741 36 2816 23 6.89349e+06 338252 648988. 2245.63 4.14 0.205992 0.178747 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.33 0.07 0.16 -1 -1 0.33 0.022355 0.0197747 154 29 93 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.92 vpr 64.63 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33688 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 26.2 MiB 1.40 955 13610 4945 6467 2198 64.6 MiB 0.10 0.00 3.4839 -106.878 -3.4839 3.4839 0.92 0.000382789 0.000345068 0.0338195 0.030742 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.52 0.121656 0.105475 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0171911 0.0151144 123 48 29 29 52 26 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.74 vpr 65.01 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33700 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 26.6 MiB 1.95 1000 12186 3922 6390 1874 65.0 MiB 0.10 0.00 3.839 -135.657 -3.839 3.839 0.91 0.000479161 0.000436227 0.0328976 0.0300233 34 2613 22 6.89349e+06 253689 618332. 2139.56 1.79 0.140121 0.122595 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0219621 0.0193475 127 31 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.32 vpr 65.34 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33888 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 26.7 MiB 1.98 1201 16773 5048 9300 2425 65.3 MiB 0.15 0.00 4.20938 -143.511 -4.20938 4.20938 0.91 0.000546401 0.000497566 0.0480615 0.0437961 36 2859 23 6.89349e+06 380534 648988. 2245.63 2.16 0.170612 0.149238 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.34 0.09 0.16 -1 -1 0.34 0.0258891 0.0228426 164 60 58 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.24 vpr 64.75 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33684 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 26.3 MiB 1.71 877 7953 1966 5579 408 64.7 MiB 0.07 0.00 3.31212 -108.619 -3.31212 3.31212 0.91 0.000450346 0.000411286 0.0215873 0.0197256 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.53 0.112907 0.0979968 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0179322 0.0157988 125 49 31 31 53 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.17 vpr 65.16 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34036 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 26.6 MiB 2.09 1287 17711 6388 9306 2017 65.2 MiB 0.17 0.00 4.20729 -140.905 -4.20729 4.20729 0.90 0.00049716 0.000452844 0.0499208 0.0453513 34 3044 21 6.89349e+06 352346 618332. 2139.56 1.94 0.164147 0.143604 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0249952 0.0221029 162 56 52 26 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 7.82 vpr 65.77 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34104 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 27.0 MiB 2.10 1441 16921 4862 9627 2432 65.8 MiB 0.16 0.00 5.00842 -163.951 -5.00842 5.00842 0.91 0.000557698 0.0005081 0.0479133 0.0435307 36 3492 23 6.89349e+06 436909 648988. 2245.63 2.53 0.175952 0.153906 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.33 0.10 0.14 -1 -1 0.33 0.0292194 0.0257089 185 88 31 31 92 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 9.31 vpr 65.25 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 34048 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 26.5 MiB 2.88 1150 11245 3095 6987 1163 65.2 MiB 0.10 0.00 3.53115 -123.245 -3.53115 3.53115 0.87 0.000428136 0.000392674 0.0298037 0.0272074 34 2943 19 6.89349e+06 295971 618332. 2139.56 3.51 0.193321 0.167182 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.0171913 0.0151293 137 54 32 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 6.37 vpr 64.92 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33468 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 26.4 MiB 1.47 1121 13443 3684 8167 1592 64.9 MiB 0.11 0.00 3.817 -131.483 -3.817 3.817 0.90 0.000521921 0.000473977 0.035742 0.0324892 34 2949 27 6.89349e+06 281877 618332. 2139.56 1.85 0.143646 0.124868 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0219865 0.0193604 139 60 32 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 9.62 vpr 65.50 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34360 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 26.8 MiB 1.71 1272 13147 3375 7731 2041 65.5 MiB 0.12 0.00 4.61515 -160.202 -4.61515 4.61515 0.90 0.000544551 0.000496134 0.0374713 0.0341929 36 3093 23 6.89349e+06 380534 648988. 2245.63 4.82 0.245694 0.212705 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0240611 0.0212179 178 49 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.90 vpr 65.62 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34180 -1 -1 26 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67192 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 27.0 MiB 1.87 1161 15639 4794 8641 2204 65.6 MiB 0.14 0.00 3.67945 -117.378 -3.67945 3.67945 0.91 0.000545871 0.000500988 0.0443632 0.0404931 30 2520 23 6.89349e+06 366440 556674. 1926.21 1.01 0.110899 0.0978778 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0216525 0.0191564 157 54 56 29 58 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 8.51 vpr 65.93 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 34196 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67516 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 27.3 MiB 1.65 1517 16893 4857 9388 2648 65.9 MiB 0.16 0.00 4.97404 -168.093 -4.97404 4.97404 0.90 0.00061903 0.000560663 0.0521018 0.047359 36 3623 47 6.89349e+06 408721 648988. 2245.63 3.69 0.287486 0.248943 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0281699 0.0247672 203 117 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.58 vpr 64.79 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33660 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 26.3 MiB 0.70 803 5149 1186 3599 364 64.8 MiB 0.05 0.00 2.99217 -104.791 -2.99217 2.99217 0.91 0.000403123 0.000368008 0.0139609 0.0127793 30 2012 19 6.89349e+06 225501 556674. 1926.21 0.97 0.0640912 0.0559133 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0188323 0.0165298 104 -1 85 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 9.18 vpr 65.66 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33812 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 26.9 MiB 1.87 1396 18101 5815 9868 2418 65.7 MiB 0.17 0.00 5.41163 -177.078 -5.41163 5.41163 0.88 0.000576328 0.000528775 0.0520395 0.047519 34 3746 48 6.89349e+06 394628 618332. 2139.56 4.23 0.304513 0.265972 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0274093 0.0241565 179 89 28 28 92 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 9.99 vpr 65.37 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 33848 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 26.7 MiB 2.61 1193 17248 5142 9796 2310 65.4 MiB 0.15 0.00 4.89074 -162.672 -4.89074 4.89074 0.89 0.000516047 0.000471754 0.047777 0.0435381 36 3213 26 6.89349e+06 338252 648988. 2245.63 4.27 0.209305 0.181822 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.0243154 0.0213789 161 93 0 0 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.75 vpr 65.56 MiB 0.02 7396 -1 -1 1 0.03 -1 -1 33812 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 26.8 MiB 2.03 1163 10187 2742 6187 1258 65.6 MiB 0.10 0.00 3.75965 -128.904 -3.75965 3.75965 0.89 0.000545774 0.00049777 0.0302772 0.0276414 34 3025 27 6.89349e+06 352346 618332. 2139.56 1.68 0.150219 0.130638 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0237763 0.020958 170 59 61 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 8.09 vpr 65.99 MiB 0.02 7588 -1 -1 1 0.04 -1 -1 34184 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67572 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 27.2 MiB 1.96 1578 21409 7235 11132 3042 66.0 MiB 0.22 0.00 5.18464 -176.869 -5.18464 5.18464 0.90 0.000643123 0.000576417 0.0668427 0.0607187 36 3817 25 6.89349e+06 465097 648988. 2245.63 2.87 0.214787 0.188318 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.31 0.10 0.16 -1 -1 0.31 0.0316819 0.0278424 224 81 64 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.61 vpr 64.63 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 33716 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 26.1 MiB 1.28 774 12860 4018 7384 1458 64.6 MiB 0.08 0.00 3.08706 -94.2237 -3.08706 3.08706 0.90 0.000365635 0.000333716 0.030067 0.0274466 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.39 0.104979 0.0913278 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.30 0.03 0.15 -1 -1 0.30 0.0133503 0.0118394 93 51 0 0 53 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.96 vpr 64.89 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 34064 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 26.4 MiB 1.40 936 13763 4663 7110 1990 64.9 MiB 0.11 0.00 4.23979 -138.497 -4.23979 4.23979 0.89 0.000430036 0.000391815 0.0353108 0.0323022 34 2090 22 6.89349e+06 295971 618332. 2139.56 1.56 0.126046 0.110038 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0210948 0.0185153 124 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 7.96 vpr 65.03 MiB 0.02 6808 -1 -1 1 0.03 -1 -1 33700 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 26.6 MiB 2.53 1009 8448 2021 6048 379 65.0 MiB 0.08 0.00 4.33609 -148.866 -4.33609 4.33609 0.90 0.000452667 0.00041324 0.0235674 0.0215275 36 2726 23 6.89349e+06 253689 648988. 2245.63 2.41 0.127807 0.111252 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0223715 0.0196189 129 31 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.88 vpr 64.66 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33660 -1 -1 24 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 26.1 MiB 1.46 636 10231 2621 6138 1472 64.7 MiB 0.08 0.00 3.787 -96.2626 -3.787 3.787 0.90 0.000379909 0.000347874 0.0236614 0.0216467 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.48 0.101888 0.0885405 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0170923 0.0149917 107 19 50 25 25 25 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 10.57 vpr 65.70 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 33948 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 27.2 MiB 3.03 1453 17273 5845 8574 2854 65.7 MiB 0.17 0.00 4.55715 -154.068 -4.55715 4.55715 0.89 0.00058276 0.000529605 0.0507773 0.0461893 38 3543 25 6.89349e+06 394628 678818. 2348.85 4.34 0.231546 0.201144 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.33 0.09 0.17 -1 -1 0.33 0.0272074 0.0239124 190 84 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.41 vpr 65.50 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33788 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 26.7 MiB 2.30 1285 13758 3623 8223 1912 65.5 MiB 0.14 0.00 4.84654 -156.987 -4.84654 4.84654 0.90 0.000554482 0.000505385 0.0409441 0.0373291 34 3577 46 6.89349e+06 380534 618332. 2139.56 1.98 0.185703 0.161427 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.30 0.11 0.15 -1 -1 0.30 0.0324663 0.0284624 183 88 29 29 93 31 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 4.76 vpr 62.50 MiB 0.02 6740 -1 -1 14 0.24 -1 -1 32952 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1354 8532 2094 5512 926 62.5 MiB 0.09 0.00 8.19013 -165.934 -8.19013 8.19013 0.63 0.000911572 0.000845455 0.0421278 0.0389893 28 3693 28 6.55708e+06 313430 500653. 1732.36 1.79 0.162717 0.142573 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.037161 0.0324187 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 4.52 vpr 62.45 MiB 0.03 6716 -1 -1 14 0.29 -1 -1 32772 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1292 15824 4267 9033 2524 62.4 MiB 0.15 0.00 8.12966 -162.719 -8.12966 8.12966 0.66 0.000907128 0.000840271 0.0750926 0.0696213 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.22 0.194161 0.171438 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0341478 0.0299947 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.29 vpr 62.25 MiB 0.05 6840 -1 -1 11 0.22 -1 -1 32672 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1266 13157 3416 7667 2074 62.3 MiB 0.13 0.00 6.4728 -136.716 -6.4728 6.4728 0.63 0.000893199 0.000827038 0.0631231 0.0583866 36 3746 35 6.55708e+06 301375 612192. 2118.31 4.11 0.262229 0.228441 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0390401 0.0341413 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 6.75 vpr 62.76 MiB 0.02 6756 -1 -1 12 0.33 -1 -1 32892 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 24.1 MiB 0.28 1320 8130 2002 5291 837 62.8 MiB 0.09 0.00 7.77357 -147.192 -7.77357 7.77357 0.63 0.00093371 0.000839328 0.0402817 0.0372852 36 3542 23 6.55708e+06 349595 612192. 2118.31 3.73 0.224209 0.194478 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.21 0.09 0.12 -1 -1 0.21 0.0327015 0.0287213 185 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 5.15 vpr 62.83 MiB 0.02 6628 -1 -1 13 0.30 -1 -1 32868 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 24.3 MiB 0.41 1568 9951 2486 6481 984 62.8 MiB 0.11 0.00 7.68511 -161.036 -7.68511 7.68511 0.65 0.00103523 0.000958016 0.0514817 0.0476022 30 4458 47 6.55708e+06 385760 526063. 1820.29 1.87 0.214298 0.187068 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0402365 0.0353162 223 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.58 vpr 63.07 MiB 0.05 6688 -1 -1 12 0.28 -1 -1 32676 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 24.2 MiB 0.47 1500 9773 2280 6498 995 63.1 MiB 0.10 0.00 7.53766 -152.093 -7.53766 7.53766 0.65 0.000958635 0.000887576 0.0456729 0.0422471 36 3688 23 6.55708e+06 409870 612192. 2118.31 2.27 0.236012 0.205012 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.20 0.09 0.12 -1 -1 0.20 0.0322298 0.0285026 209 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.58 vpr 62.11 MiB 0.02 6492 -1 -1 12 0.18 -1 -1 32272 -1 -1 27 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1024 5945 1385 4013 547 62.1 MiB 0.06 0.00 7.15274 -128.455 -7.15274 7.15274 0.63 0.000568799 0.00052082 0.0237947 0.0220379 28 3014 27 6.55708e+06 325485 500653. 1732.36 1.80 0.119129 0.10371 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.025201 0.0221632 136 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 4.42 vpr 62.32 MiB 0.05 6772 -1 -1 11 0.18 -1 -1 32816 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1220 9679 2547 5973 1159 62.3 MiB 0.09 0.00 6.45772 -132.139 -6.45772 6.45772 0.62 0.000848956 0.00078669 0.0435893 0.0403683 30 3114 33 6.55708e+06 337540 526063. 1820.29 1.46 0.168525 0.148065 21886 126133 -1 2648 14 1146 3627 182841 42517 5.46178 5.46178 -127.489 -5.46178 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0268312 0.0236665 175 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 4.59 vpr 62.18 MiB 0.04 6788 -1 -1 12 0.17 -1 -1 32448 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1146 12373 3633 6385 2355 62.2 MiB 0.11 0.00 7.00181 -148.703 -7.00181 7.00181 0.64 0.000750915 0.000694775 0.0508621 0.0470599 28 3391 24 6.55708e+06 301375 500653. 1732.36 1.65 0.148228 0.130496 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0288059 0.0253076 145 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.22 vpr 62.32 MiB 0.03 6548 -1 -1 13 0.21 -1 -1 32768 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1098 10979 3065 6306 1608 62.3 MiB 0.10 0.00 7.23855 -159.771 -7.23855 7.23855 0.63 0.000817545 0.000758341 0.0485073 0.044869 30 3034 26 6.55708e+06 301375 526063. 1820.29 1.12 0.152677 0.133991 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0295727 0.0259776 162 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.49 vpr 62.00 MiB 0.04 6532 -1 -1 12 0.17 -1 -1 32736 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1073 8868 2309 4974 1585 62.0 MiB 0.08 0.00 7.23424 -146.32 -7.23424 7.23424 0.67 0.000702278 0.000650303 0.0365744 0.033886 28 2862 44 6.55708e+06 265210 500653. 1732.36 1.53 0.148597 0.129912 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0242107 0.0213057 132 129 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 4.81 vpr 61.96 MiB 0.02 6584 -1 -1 12 0.17 -1 -1 32800 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 23.5 MiB 0.18 971 12175 3572 6038 2565 62.0 MiB 0.11 0.00 6.75009 -143.946 -6.75009 6.75009 0.63 0.000733129 0.000679315 0.0494691 0.045705 36 2632 22 6.55708e+06 253155 612192. 2118.31 1.99 0.192827 0.168024 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.21 0.06 0.13 -1 -1 0.21 0.0231096 0.0204691 138 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 5.18 vpr 62.76 MiB 0.05 6736 -1 -1 13 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1456 5419 862 4216 341 62.8 MiB 0.07 0.00 7.90792 -162.801 -7.90792 7.90792 0.64 0.000982983 0.000909746 0.0287289 0.0266188 28 4018 41 6.55708e+06 361650 500653. 1732.36 1.85 0.181383 0.157595 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.037686 0.0331274 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 9.87 vpr 62.88 MiB 0.03 6776 -1 -1 14 0.32 -1 -1 33252 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 24.2 MiB 0.46 1487 7653 1685 5037 931 62.9 MiB 0.09 0.00 8.67599 -179.222 -8.67599 8.67599 0.64 0.00098071 0.000906993 0.0396785 0.0367267 30 3773 20 6.55708e+06 349595 526063. 1820.29 6.54 0.286875 0.248245 21886 126133 -1 3079 18 1487 4228 203303 48407 7.37842 7.37842 -169.663 -7.37842 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0373031 0.0327956 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.71 vpr 62.11 MiB 0.02 6536 -1 -1 11 0.22 -1 -1 32408 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1095 15366 4454 8585 2327 62.1 MiB 0.13 0.00 6.42654 -129.9 -6.42654 6.42654 0.66 0.000754213 0.000693132 0.0639594 0.0592358 28 3139 21 6.55708e+06 349595 500653. 1732.36 1.73 0.155457 0.137734 21310 115450 -1 2830 20 1432 4043 278896 69092 5.81012 5.81012 -131.609 -5.81012 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0308411 0.0270245 160 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 8.12 vpr 62.80 MiB 0.05 6748 -1 -1 12 0.27 -1 -1 32884 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1497 7523 1547 5261 715 62.8 MiB 0.08 0.00 7.78498 -159.33 -7.78498 7.78498 0.64 0.000995265 0.000918752 0.0381691 0.0352965 36 3844 37 6.55708e+06 409870 612192. 2118.31 4.65 0.275563 0.239664 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0364182 0.0321835 213 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 4.84 vpr 62.89 MiB 0.02 6736 -1 -1 13 0.25 -1 -1 32744 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1448 9075 2050 5697 1328 62.9 MiB 0.10 0.00 8.28129 -168.719 -8.28129 8.28129 0.64 0.00101741 0.000942053 0.046806 0.0433115 30 3798 28 6.55708e+06 385760 526063. 1820.29 1.66 0.182792 0.16007 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.22 0.09 0.12 -1 -1 0.22 0.0379165 0.033406 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 4.54 vpr 62.10 MiB 0.04 6492 -1 -1 12 0.17 -1 -1 32592 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.49 1089 8402 1864 6112 426 62.1 MiB 0.08 0.00 7.26292 -158.375 -7.26292 7.26292 0.63 0.000749562 0.000693343 0.0363037 0.0335967 28 3024 19 6.55708e+06 265210 500653. 1732.36 1.42 0.125465 0.110246 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0263692 0.0232836 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 3.76 vpr 61.68 MiB 0.04 6356 -1 -1 10 0.10 -1 -1 32304 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63160 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 23.2 MiB 0.14 786 5244 1130 3909 205 61.7 MiB 0.05 0.00 5.1986 -117.15 -5.1986 5.1986 0.64 0.000568228 0.000528103 0.0193127 0.0179301 30 2126 24 6.55708e+06 241100 526063. 1820.29 1.12 0.0866695 0.0754284 21886 126133 -1 1800 21 731 1861 102932 24553 4.7502 4.7502 -115.743 -4.7502 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0241224 0.0209538 96 88 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 5.35 vpr 62.18 MiB 0.02 6612 -1 -1 13 0.17 -1 -1 32636 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1123 5079 946 3658 475 62.2 MiB 0.06 0.00 7.44701 -156.373 -7.44701 7.44701 0.64 0.000748003 0.000693257 0.0227339 0.0210382 26 3256 40 6.55708e+06 289320 477104. 1650.88 2.47 0.13633 0.118525 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0288565 0.0253292 139 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.53 vpr 62.69 MiB 0.02 6668 -1 -1 13 0.28 -1 -1 32824 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1494 10031 2522 6626 883 62.7 MiB 0.10 0.00 7.77584 -154.394 -7.77584 7.77584 0.67 0.000760707 0.000693863 0.0394374 0.0359732 28 4288 44 6.55708e+06 373705 500653. 1732.36 2.34 0.194262 0.168915 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.18 0.14 0.10 -1 -1 0.18 0.0414711 0.0363462 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 7.44 vpr 62.77 MiB 0.02 6740 -1 -1 13 0.29 -1 -1 33280 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 24.0 MiB 0.45 1626 7973 1601 5735 637 62.8 MiB 0.09 0.00 7.9648 -163.763 -7.9648 7.9648 0.64 0.000959812 0.000888632 0.0378658 0.0350273 34 4543 38 6.55708e+06 409870 585099. 2024.56 3.93 0.253937 0.220003 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.20 0.23 0.13 -1 -1 0.20 0.0632518 0.0560076 207 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.66 vpr 61.45 MiB 0.02 6316 -1 -1 9 0.09 -1 -1 32220 -1 -1 21 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62928 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 23.0 MiB 0.29 710 10557 2762 6888 907 61.5 MiB 0.07 0.00 4.66154 -94.5374 -4.66154 4.66154 0.66 0.000591432 0.000550371 0.0339111 0.0315476 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.00 0.110688 0.0969159 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.16 0.03 0.07 -1 -1 0.16 0.00926188 0.00831013 83 73 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.68 vpr 62.79 MiB 0.02 6612 -1 -1 13 0.31 -1 -1 32676 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1530 4780 793 3650 337 62.8 MiB 0.06 0.00 7.84695 -156.636 -7.84695 7.84695 0.65 0.00098049 0.000906089 0.0279149 0.0258923 26 4457 46 6.55708e+06 361650 477104. 1650.88 3.15 0.186585 0.162037 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.18 0.69 0.08 -1 -1 0.18 0.130392 0.112362 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 3.73 vpr 61.49 MiB 0.02 6296 -1 -1 8 0.09 -1 -1 31108 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62964 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 22.9 MiB 0.22 436 8831 2193 4716 1922 61.5 MiB 0.06 0.00 4.66158 -87.3613 -4.66158 4.66158 0.66 0.000512117 0.000476279 0.0275763 0.025635 30 1374 37 6.55708e+06 204935 526063. 1820.29 1.11 0.10112 0.0883793 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.18 0.04 0.11 -1 -1 0.18 0.0149569 0.0131562 77 61 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 4.46 vpr 62.53 MiB 0.03 6736 -1 -1 15 0.23 -1 -1 33240 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1127 8999 2110 5455 1434 62.5 MiB 0.09 0.00 8.78748 -168.447 -8.78748 8.78748 0.71 0.000840897 0.000779905 0.0417058 0.0386975 30 3036 31 6.55708e+06 301375 526063. 1820.29 1.45 0.159054 0.139405 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0330986 0.0289932 161 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.59 vpr 62.84 MiB 0.05 6548 -1 -1 12 0.24 -1 -1 32752 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1426 7871 1871 5355 645 62.8 MiB 0.09 0.00 6.97141 -150.212 -6.97141 6.97141 0.68 0.000987461 0.000913708 0.0405558 0.0374732 34 3985 37 6.55708e+06 373705 585099. 2024.56 4.30 0.373319 0.321778 22462 138074 -1 3469 18 1513 4862 300913 67896 6.49978 6.49978 -149.655 -6.49978 0 0 742403. 2568.87 0.20 0.11 0.13 -1 -1 0.20 0.0378 0.0332635 218 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 10.43 vpr 62.62 MiB 0.02 6724 -1 -1 13 0.26 -1 -1 32836 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1403 8993 2077 6178 738 62.6 MiB 0.10 0.00 7.73601 -160.617 -7.73601 7.73601 0.63 0.000932834 0.000852773 0.0437932 0.040496 30 3593 32 6.55708e+06 337540 526063. 1820.29 7.35 0.276862 0.239839 21886 126133 -1 3072 18 1384 4308 205516 48866 6.67144 6.67144 -155.896 -6.67144 0 0 666494. 2306.21 0.19 0.09 0.12 -1 -1 0.19 0.0353125 0.0309999 196 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 4.25 vpr 62.32 MiB 0.03 6480 -1 -1 12 0.17 -1 -1 32336 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 23.7 MiB 0.20 1093 9158 2327 6239 592 62.3 MiB 0.09 0.00 6.471 -143.803 -6.471 6.471 0.66 0.000762234 0.000702162 0.0402733 0.0372186 28 3047 45 6.55708e+06 265210 500653. 1732.36 1.41 0.160538 0.140399 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0297925 0.026162 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 3.67 vpr 61.88 MiB 0.04 6508 -1 -1 11 0.16 -1 -1 32688 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63364 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 23.5 MiB 0.18 1045 6781 1469 4387 925 61.9 MiB 0.06 0.00 6.28146 -130.954 -6.28146 6.28146 0.63 0.000689475 0.000639119 0.0278034 0.0257913 30 2354 17 6.55708e+06 277265 526063. 1820.29 0.91 0.103511 0.0909063 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0200318 0.0178077 128 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.30 vpr 62.13 MiB 0.04 6516 -1 -1 11 0.16 -1 -1 32636 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 23.6 MiB 0.25 1079 8535 1915 5707 913 62.1 MiB 0.08 0.00 6.57292 -128.193 -6.57292 6.57292 0.62 0.000727551 0.000674546 0.035076 0.0325199 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.35 0.149491 0.130269 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0371363 0.0324386 142 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 3.89 vpr 62.67 MiB 0.04 6516 -1 -1 12 0.20 -1 -1 32492 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1327 6716 1263 5020 433 62.7 MiB 0.07 0.00 7.20375 -160.021 -7.20375 7.20375 0.63 0.000861993 0.000799266 0.0312838 0.0289936 30 3050 19 6.55708e+06 337540 526063. 1820.29 0.99 0.122561 0.107355 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0340653 0.0298833 180 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 3.96 vpr 62.15 MiB 0.02 6544 -1 -1 11 0.17 -1 -1 32764 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.27 1072 4244 722 3315 207 62.1 MiB 0.05 0.00 6.41894 -136.128 -6.41894 6.41894 0.63 0.000768605 0.000711708 0.0208966 0.0193635 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.10 0.119701 0.104074 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0342294 0.0299412 147 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 3.72 vpr 62.05 MiB 0.04 6612 -1 -1 10 0.14 -1 -1 32692 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.23 967 12733 4051 6442 2240 62.0 MiB 0.11 0.00 6.08886 -123.876 -6.08886 6.08886 0.63 0.000725097 0.000671423 0.0527031 0.0487447 32 2471 22 6.55708e+06 289320 554710. 1919.41 0.84 0.140261 0.123877 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0230223 0.0203407 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.81 vpr 63.01 MiB 0.05 6944 -1 -1 13 0.32 -1 -1 33412 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1621 5869 1104 4212 553 63.0 MiB 0.04 0.00 7.46683 -155.207 -7.46683 7.46683 0.63 0.000476956 0.000437109 0.0159413 0.0146369 30 3995 44 6.55708e+06 397815 526063. 1820.29 2.53 0.14845 0.129059 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.20 0.10 0.11 -1 -1 0.20 0.0379468 0.0335009 239 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.66 vpr 62.67 MiB 0.02 6720 -1 -1 13 0.28 -1 -1 32972 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1508 8283 1888 5355 1040 62.7 MiB 0.09 0.00 8.09706 -175.077 -8.09706 8.09706 0.63 0.000975472 0.00090224 0.0422161 0.0389818 36 3925 27 6.55708e+06 349595 612192. 2118.31 3.42 0.254466 0.220908 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0372485 0.0327661 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.09 vpr 62.34 MiB 0.04 6620 -1 -1 12 0.15 -1 -1 32752 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1096 12568 3446 6926 2196 62.3 MiB 0.11 0.00 6.66868 -144.132 -6.66868 6.66868 0.64 0.000738521 0.0006831 0.0506349 0.0467321 36 2895 29 6.55708e+06 301375 612192. 2118.31 2.11 0.207701 0.181103 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0234613 0.0207376 150 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.58 vpr 62.84 MiB 0.05 6712 -1 -1 12 0.26 -1 -1 33112 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 24.0 MiB 0.22 1489 8977 2020 5913 1044 62.8 MiB 0.09 0.00 8.10558 -165.766 -8.10558 8.10558 0.66 0.00100419 0.000931709 0.0352035 0.0324236 36 3566 22 6.55708e+06 409870 612192. 2118.31 2.46 0.232694 0.201434 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0338183 0.0299356 219 219 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.28 vpr 62.64 MiB 0.05 6936 -1 -1 14 0.36 -1 -1 33216 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1460 6211 1289 4295 627 62.6 MiB 0.07 0.00 8.35283 -161.679 -8.35283 8.35283 0.65 0.000956704 0.0008874 0.0328082 0.03042 30 3894 50 6.55708e+06 337540 526063. 1820.29 2.11 0.189678 0.16467 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0350292 0.0308772 194 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 4.00 vpr 62.37 MiB 0.04 6896 -1 -1 13 0.28 -1 -1 32820 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1364 9271 2151 5683 1437 62.4 MiB 0.10 0.00 7.40806 -157.551 -7.40806 7.40806 0.55 0.000899304 0.000831062 0.044975 0.0415022 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.18 0.162745 0.142374 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0320359 0.0281335 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 6.96 vpr 62.67 MiB 0.05 6692 -1 -1 12 0.25 -1 -1 32892 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 23.9 MiB 0.48 1374 13743 3666 8130 1947 62.7 MiB 0.13 0.00 6.76701 -143.203 -6.76701 6.76701 0.63 0.000911643 0.000843971 0.0637128 0.0589754 34 4200 50 6.55708e+06 361650 585099. 2024.56 3.58 0.302333 0.263807 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0387178 0.0338767 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 3.81 vpr 62.56 MiB 0.04 6828 -1 -1 12 0.17 -1 -1 32920 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1252 8278 1977 5044 1257 62.6 MiB 0.08 0.00 7.19338 -143.847 -7.19338 7.19338 0.65 0.000835498 0.000774578 0.0387252 0.035867 30 3079 17 6.55708e+06 289320 526063. 1820.29 0.92 0.133688 0.117273 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0298981 0.0262802 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 6.65 vpr 62.80 MiB 0.05 6932 -1 -1 14 0.43 -1 -1 32476 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 24.4 MiB 0.34 1757 10673 2583 7118 972 62.8 MiB 0.12 0.00 8.08019 -170.094 -8.08019 8.08019 0.64 0.00107206 0.000991306 0.0553479 0.0511759 38 4328 19 6.55708e+06 409870 638502. 2209.35 3.16 0.269697 0.235114 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.22 0.11 0.13 -1 -1 0.22 0.0418706 0.0369416 245 245 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.29 vpr 62.25 MiB 0.04 6604 -1 -1 11 0.20 -1 -1 32528 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 23.7 MiB 0.23 1212 8009 2047 5116 846 62.2 MiB 0.08 0.00 6.43815 -136.573 -6.43815 6.43815 0.64 0.000811093 0.000752324 0.0362993 0.0336181 30 3062 33 6.55708e+06 313430 526063. 1820.29 1.28 0.151057 0.131804 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0307915 0.0270527 160 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.19 vpr 62.52 MiB 0.04 6688 -1 -1 13 0.30 -1 -1 32744 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 23.9 MiB 0.37 1339 4512 785 3381 346 62.5 MiB 0.06 0.00 8.23298 -156.44 -8.23298 8.23298 0.63 0.000896123 0.000819016 0.0233624 0.0216121 36 3361 29 6.55708e+06 325485 612192. 2118.31 3.06 0.212056 0.182395 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.21 0.08 0.08 -1 -1 0.21 0.0311296 0.0274297 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.07 vpr 62.84 MiB 0.05 6692 -1 -1 12 0.23 -1 -1 32896 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 24.2 MiB 0.35 1513 7973 1697 5548 728 62.8 MiB 0.09 0.00 7.05697 -153.444 -7.05697 7.05697 0.63 0.000992776 0.000918071 0.0392452 0.0363086 34 4231 45 6.55708e+06 409870 585099. 2024.56 2.87 0.275637 0.238104 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.20 0.19 0.12 -1 -1 0.20 0.0532504 0.0463601 227 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 9.01 vpr 62.64 MiB 0.04 6728 -1 -1 13 0.24 -1 -1 32968 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1286 13340 3362 8056 1922 62.6 MiB 0.13 0.00 7.57452 -156.038 -7.57452 7.57452 0.63 0.000908581 0.000842402 0.0614507 0.0568175 28 3767 45 6.55708e+06 337540 500653. 1732.36 5.94 0.350158 0.303313 21310 115450 -1 3132 28 1519 4299 373726 132229 6.63024 6.63024 -153.52 -6.63024 0 0 612192. 2118.31 0.17 0.14 0.11 -1 -1 0.17 0.0471903 0.0410931 184 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 9.48 vpr 62.50 MiB 0.06 6808 -1 -1 13 0.25 -1 -1 32740 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1203 12563 3367 6823 2373 62.5 MiB 0.12 0.00 7.77281 -162.033 -7.77281 7.77281 0.63 0.000870649 0.000805904 0.0589842 0.0544377 30 2961 38 6.55708e+06 301375 526063. 1820.29 6.35 0.300193 0.260036 21886 126133 -1 2447 14 1081 3296 149761 36490 6.6027 6.6027 -148.076 -6.6027 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0281982 0.0249356 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 6.53 vpr 62.76 MiB 0.04 6800 -1 -1 12 0.29 -1 -1 32708 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 24.0 MiB 0.59 1416 10679 2747 6565 1367 62.8 MiB 0.11 0.00 6.86528 -151.049 -6.86528 6.86528 0.66 0.00108601 0.00100035 0.0539988 0.0498462 36 3519 46 6.55708e+06 373705 612192. 2118.31 3.04 0.288389 0.250122 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0338705 0.0298649 205 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.82 vpr 62.63 MiB 0.04 6728 -1 -1 13 0.25 -1 -1 32708 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1584 11223 2635 7117 1471 62.6 MiB 0.12 0.00 7.96921 -159.229 -7.96921 7.96921 0.64 0.000967061 0.000895486 0.0557484 0.051563 36 3876 21 6.55708e+06 349595 612192. 2118.31 3.68 0.253433 0.220653 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0350936 0.0309186 205 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.39 vpr 62.41 MiB 0.02 6708 -1 -1 14 0.28 -1 -1 32860 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1228 9197 2464 5958 775 62.4 MiB 0.10 0.00 7.91369 -163.421 -7.91369 7.91369 0.66 0.000869014 0.000796924 0.0469801 0.0434289 28 3563 32 6.55708e+06 301375 500653. 1732.36 2.10 0.168672 0.1478 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.20 0.11 0.12 -1 -1 0.20 0.0365672 0.0319997 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 5.60 vpr 62.56 MiB 0.03 6772 -1 -1 13 0.27 -1 -1 32804 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 24.0 MiB 0.50 1537 7336 1683 5066 587 62.6 MiB 0.08 0.00 8.38432 -170.174 -8.38432 8.38432 0.66 0.00107264 0.00100343 0.0368505 0.0340221 30 3969 38 6.55708e+06 361650 526063. 1820.29 2.27 0.178969 0.15636 21886 126133 -1 3163 16 1446 4156 214013 48953 7.21136 7.21136 -158.492 -7.21136 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0326727 0.0288024 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.05 vpr 62.67 MiB 0.05 6744 -1 -1 13 0.28 -1 -1 33100 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1531 8951 1993 6087 871 62.7 MiB 0.10 0.00 8.45326 -176.134 -8.45326 8.45326 0.63 0.000995902 0.000921594 0.0454643 0.041904 30 3859 27 6.55708e+06 385760 526063. 1820.29 1.85 0.175429 0.1535 21886 126133 -1 3179 14 1309 4204 206454 47477 7.48636 7.48636 -165.351 -7.48636 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0318034 0.0281455 221 220 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 6.72 vpr 62.93 MiB 0.05 6728 -1 -1 12 0.30 -1 -1 32668 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 24.4 MiB 0.40 1599 7323 1463 5208 652 62.9 MiB 0.09 0.00 7.47193 -159.786 -7.47193 7.47193 0.63 0.00102005 0.000941953 0.0379666 0.0350937 36 4072 27 6.55708e+06 385760 612192. 2118.31 3.42 0.236312 0.204878 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0369305 0.0325417 231 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 3.89 vpr 61.92 MiB 0.04 6508 -1 -1 11 0.15 -1 -1 32360 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 23.5 MiB 0.20 1043 10883 2916 6057 1910 61.9 MiB 0.10 0.00 5.95009 -133.303 -5.95009 5.95009 0.63 0.000684026 0.000632855 0.0443481 0.0409612 30 2668 32 6.55708e+06 229045 526063. 1820.29 0.98 0.142295 0.124386 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.18 0.06 0.13 -1 -1 0.18 0.025023 0.0219396 127 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 4.73 vpr 62.25 MiB 0.04 6520 -1 -1 13 0.19 -1 -1 32868 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 23.6 MiB 0.44 1281 6211 1217 4524 470 62.3 MiB 0.07 0.00 7.73937 -166.104 -7.73937 7.73937 0.63 0.000805651 0.000747502 0.0283327 0.0262887 28 3459 26 6.55708e+06 325485 500653. 1732.36 1.63 0.126889 0.110711 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0360988 0.0314731 156 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 6.18 vpr 62.86 MiB 0.05 6944 -1 -1 14 0.44 -1 -1 32916 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 24.6 MiB 0.36 1818 9380 1999 6471 910 62.9 MiB 0.11 0.00 8.82888 -183.788 -8.82888 8.82888 0.63 0.00114881 0.00106353 0.0505866 0.0467001 30 4907 35 6.55708e+06 433980 526063. 1820.29 2.69 0.218196 0.191133 21886 126133 -1 3812 17 1794 5584 296408 67225 7.76595 7.76595 -174.414 -7.76595 0 0 666494. 2306.21 0.19 0.14 0.11 -1 -1 0.19 0.0478678 0.0425258 267 267 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 6.31 vpr 63.19 MiB 0.04 6620 -1 -1 13 0.33 -1 -1 32792 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 24.7 MiB 0.46 1477 8735 1981 6002 752 63.2 MiB 0.10 0.00 7.79483 -168.531 -7.79483 7.79483 0.63 0.00102872 0.00095177 0.0468266 0.0431886 26 4757 42 6.55708e+06 373705 477104. 1650.88 2.87 0.213452 0.186126 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.17 0.19 0.10 -1 -1 0.17 0.0692161 0.0601008 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 4.75 vpr 62.11 MiB 0.03 6560 -1 -1 11 0.17 -1 -1 32772 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63604 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.20 916 9943 3248 5072 1623 62.1 MiB 0.09 0.00 6.47975 -131.851 -6.47975 6.47975 0.66 0.000731304 0.000676574 0.0431961 0.0398932 36 2386 24 6.55708e+06 277265 612192. 2118.31 1.78 0.189 0.164258 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.026683 0.0235345 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 7.53 vpr 62.97 MiB 0.05 7068 -1 -1 15 0.45 -1 -1 32884 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 24.4 MiB 0.35 1670 7867 1614 5465 788 63.0 MiB 0.09 0.00 8.70958 -179.837 -8.70958 8.70958 0.65 0.00107842 0.000996852 0.0428172 0.0395571 36 4552 44 6.55708e+06 397815 612192. 2118.31 4.01 0.316407 0.275579 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.20 0.13 0.13 -1 -1 0.20 0.0473525 0.0415923 241 241 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 14.44 vpr 62.79 MiB 0.05 6732 -1 -1 13 0.32 -1 -1 33264 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1370 12483 3068 7076 2339 62.8 MiB 0.13 0.00 7.72925 -154.988 -7.72925 7.72925 0.64 0.000978501 0.000906426 0.0628185 0.0581343 38 3720 24 6.55708e+06 349595 638502. 2209.35 10.95 0.430567 0.373341 23326 155178 -1 2846 17 1323 3926 193252 45298 7.0025 7.0025 -149.156 -7.0025 0 0 851065. 2944.86 0.22 0.09 0.13 -1 -1 0.22 0.0356639 0.0314547 207 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.34 vpr 62.30 MiB 0.04 6488 -1 -1 11 0.14 -1 -1 32656 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1161 6718 1477 4583 658 62.3 MiB 0.07 0.00 6.62468 -135.028 -6.62468 6.62468 0.64 0.00073168 0.000678159 0.0279979 0.0259334 28 3179 30 6.55708e+06 289320 500653. 1732.36 1.52 0.127649 0.111375 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0298159 0.0261519 149 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.24 vpr 62.73 MiB 0.05 6868 -1 -1 12 0.29 -1 -1 32776 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1540 8735 2140 5810 785 62.7 MiB 0.09 0.00 7.17512 -150.872 -7.17512 7.17512 0.65 0.000977688 0.000903307 0.0435449 0.0402436 34 3975 42 6.55708e+06 373705 585099. 2024.56 5.95 0.38864 0.334264 22462 138074 -1 3408 21 1468 4452 271452 60248 6.59444 6.59444 -149.82 -6.59444 0 0 742403. 2568.87 0.20 0.11 0.12 -1 -1 0.20 0.0419011 0.0367126 217 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 4.03 vpr 62.36 MiB 0.02 6588 -1 -1 12 0.20 -1 -1 32380 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 23.7 MiB 0.25 1252 5517 962 4221 334 62.4 MiB 0.06 0.00 7.41221 -152.744 -7.41221 7.41221 0.63 0.000837982 0.000777388 0.0275411 0.0256044 30 2953 20 6.55708e+06 313430 526063. 1820.29 1.10 0.12738 0.111337 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.18 0.07 0.12 -1 -1 0.18 0.0303534 0.0267501 164 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 3.84 vpr 62.02 MiB 0.03 6564 -1 -1 12 0.18 -1 -1 32668 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 23.6 MiB 0.22 998 6383 1524 4361 498 62.0 MiB 0.07 0.00 7.15324 -144.822 -7.15324 7.15324 0.64 0.00076182 0.000706224 0.0302407 0.0279842 28 2443 17 6.55708e+06 253155 500653. 1732.36 0.97 0.117351 0.10289 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.03172 0.0277692 139 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 12.15 vpr 62.66 MiB 0.03 6820 -1 -1 12 0.33 -1 -1 32768 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1315 14583 4048 7926 2609 62.7 MiB 0.15 0.00 7.005 -132.757 -7.005 7.005 0.63 0.000962425 0.000889088 0.0733817 0.0677962 30 3666 44 6.55708e+06 385760 526063. 1820.29 8.98 0.364866 0.316603 21886 126133 -1 2881 17 1439 4398 224548 51939 6.35204 6.35204 -127.614 -6.35204 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0345851 0.0304227 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 4.66 vpr 63.11 MiB 0.04 6732 -1 -1 14 0.31 -1 -1 32948 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 24.6 MiB 0.47 1622 11046 2782 7202 1062 63.1 MiB 0.12 0.00 8.27143 -173.321 -8.27143 8.27143 0.63 0.00102748 0.00095163 0.0566707 0.0524257 30 4187 27 6.55708e+06 385760 526063. 1820.29 1.29 0.178305 0.15718 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0408506 0.0359528 227 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 4.98 vpr 62.54 MiB 0.02 6736 -1 -1 12 0.24 -1 -1 32888 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1318 5191 912 3744 535 62.5 MiB 0.06 0.00 7.44045 -154.388 -7.44045 7.44045 0.63 0.000935331 0.000863766 0.0272598 0.0252337 28 3868 27 6.55708e+06 325485 500653. 1732.36 1.84 0.153948 0.134193 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.21 0.11 0.11 -1 -1 0.21 0.0346751 0.030565 192 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 4.03 vpr 62.02 MiB 0.02 6580 -1 -1 12 0.13 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 23.6 MiB 0.40 1100 6615 1512 4600 503 62.0 MiB 0.06 0.00 6.69922 -140.427 -6.69922 6.69922 0.64 0.000703776 0.000652206 0.0269216 0.0249271 30 2478 18 6.55708e+06 277265 526063. 1820.29 1.13 0.114916 0.100558 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0256924 0.0225684 133 127 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.30 vpr 62.24 MiB 0.04 6560 -1 -1 12 0.23 -1 -1 32340 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1148 11398 2849 6739 1810 62.2 MiB 0.11 0.00 7.39043 -143.264 -7.39043 7.39043 0.63 0.000835345 0.000773965 0.0530799 0.049195 28 3477 38 6.55708e+06 301375 500653. 1732.36 2.15 0.178693 0.156617 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0349132 0.0305764 170 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 5.25 vpr 62.42 MiB 0.04 6736 -1 -1 11 0.19 -1 -1 32932 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1267 6723 1289 4852 582 62.4 MiB 0.07 0.00 6.0378 -125.718 -6.0378 6.0378 0.63 0.000893289 0.00082792 0.0328412 0.0304201 28 3807 32 6.55708e+06 337540 500653. 1732.36 2.25 0.156894 0.136707 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0373179 0.0325781 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.13 vpr 62.41 MiB 0.02 6792 -1 -1 11 0.23 -1 -1 32780 -1 -1 28 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1153 14128 4158 7800 2170 62.4 MiB 0.13 0.00 6.59995 -118.466 -6.59995 6.59995 0.63 0.000843271 0.000781816 0.0642843 0.0595487 38 2640 22 6.55708e+06 337540 638502. 2209.35 2.04 0.228428 0.199243 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.21 0.04 0.09 -1 -1 0.21 0.0179725 0.0162048 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 4.19 vpr 62.08 MiB 0.04 6568 -1 -1 13 0.18 -1 -1 32644 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 23.5 MiB 0.42 1112 5463 1180 3669 614 62.1 MiB 0.06 0.00 7.87624 -151.634 -7.87624 7.87624 0.64 0.000721543 0.000667534 0.0220921 0.0203786 30 2565 19 6.55708e+06 301375 526063. 1820.29 1.13 0.105113 0.0920041 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0235665 0.0208631 142 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 3.94 vpr 62.60 MiB 0.24 6632 -1 -1 12 0.21 -1 -1 32500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1245 6211 1266 4515 430 62.6 MiB 0.07 0.00 7.2362 -155.292 -7.2362 7.2362 0.63 0.000867828 0.000804009 0.0304375 0.0282454 30 3044 16 6.55708e+06 325485 526063. 1820.29 0.94 0.12793 0.11183 21886 126133 -1 2579 17 1186 3221 154686 37072 6.38924 6.38924 -147.46 -6.38924 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0315858 0.0277797 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 4.95 vpr 62.57 MiB 0.02 6832 -1 -1 13 0.32 -1 -1 32780 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1187 15843 5382 8046 2415 62.6 MiB 0.15 0.00 7.69912 -151.004 -7.69912 7.69912 0.63 0.000920329 0.00085195 0.073505 0.0679805 32 3890 40 6.55708e+06 361650 554710. 1919.41 1.66 0.21641 0.190665 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.0408985 0.0356324 195 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 4.58 vpr 62.86 MiB 0.02 6644 -1 -1 14 0.28 -1 -1 32756 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1371 16295 4299 9326 2670 62.9 MiB 0.16 0.00 7.90558 -162.398 -7.90558 7.90558 0.63 0.00100236 0.000927732 0.0798324 0.0738648 30 3631 37 6.55708e+06 373705 526063. 1820.29 1.40 0.225615 0.198937 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.20 0.09 0.12 -1 -1 0.20 0.0377738 0.033258 215 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 6.79 vpr 62.65 MiB 0.02 6696 -1 -1 14 0.26 -1 -1 32732 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.0 MiB 0.49 1364 9067 2106 6307 654 62.6 MiB 0.10 0.00 7.8859 -150.917 -7.8859 7.8859 0.63 0.000920831 0.000849217 0.0446599 0.0412789 36 3364 28 6.55708e+06 325485 612192. 2118.31 3.49 0.245341 0.213756 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0344779 0.0303371 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 5.58 vpr 62.44 MiB 0.05 6648 -1 -1 13 0.34 -1 -1 33204 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 23.9 MiB 0.46 1350 6211 1219 4577 415 62.4 MiB 0.07 0.00 7.98147 -162.621 -7.98147 7.98147 0.64 0.000950398 0.00088083 0.033529 0.0310655 36 3253 20 6.55708e+06 325485 612192. 2118.31 2.23 0.215458 0.186842 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.21 0.10 0.12 -1 -1 0.21 0.0305154 0.0272715 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 4.15 vpr 62.05 MiB 0.02 6536 -1 -1 13 0.20 -1 -1 32772 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1092 10670 2647 6412 1611 62.1 MiB 0.09 0.00 7.9674 -161.443 -7.9674 7.9674 0.63 0.000739961 0.000684278 0.0446374 0.0412826 32 2870 34 6.55708e+06 289320 554710. 1919.41 1.18 0.148636 0.130384 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0250927 0.0221699 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.01 vpr 62.96 MiB 0.04 6712 -1 -1 13 0.44 -1 -1 32868 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 24.3 MiB 0.31 1304 7653 1748 5033 872 63.0 MiB 0.09 0.00 8.34953 -161.953 -8.34953 8.34953 0.64 0.00148578 0.00136169 0.0410987 0.0380415 30 3707 24 6.55708e+06 373705 526063. 1820.29 1.64 0.163888 0.14354 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0383337 0.033676 208 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 6.12 vpr 62.82 MiB 0.04 6824 -1 -1 14 0.31 -1 -1 31508 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 24.2 MiB 0.50 1332 7336 1480 5450 406 62.8 MiB 0.08 0.00 7.42283 -159.831 -7.42283 7.42283 0.65 0.000912859 0.000846309 0.0356172 0.0329015 28 3869 50 6.55708e+06 361650 500653. 1732.36 2.51 0.18401 0.160108 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.17 0.43 0.08 -1 -1 0.17 0.0895655 0.0768268 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 5.26 vpr 62.84 MiB 0.02 6768 -1 -1 12 0.25 -1 -1 32924 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1420 6575 1256 4964 355 62.8 MiB 0.07 0.00 8.28906 -160.635 -8.28906 8.28906 0.64 0.000954078 0.000884846 0.0323466 0.0299406 34 3727 35 6.55708e+06 385760 585099. 2024.56 2.23 0.241323 0.208752 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0341754 0.0301016 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 4.69 vpr 62.68 MiB 0.04 6812 -1 -1 13 0.23 -1 -1 32808 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1315 6522 1420 4675 427 62.7 MiB 0.07 0.00 7.42898 -137.517 -7.42898 7.42898 0.63 0.000883382 0.000818644 0.0327075 0.0302532 30 3356 18 6.55708e+06 337540 526063. 1820.29 1.69 0.137371 0.120492 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0319055 0.0280749 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 11.44 vpr 62.93 MiB 0.03 6740 -1 -1 14 0.36 -1 -1 32908 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 24.2 MiB 0.49 1483 8199 1652 5918 629 62.9 MiB 0.10 0.00 8.85275 -170.114 -8.85275 8.85275 0.62 0.00101573 0.000935747 0.0435958 0.0403868 28 4521 37 6.55708e+06 385760 500653. 1732.36 8.01 0.399432 0.345288 21310 115450 -1 3801 21 1703 5128 320201 72469 7.66262 7.66262 -166.899 -7.66262 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0426671 0.0374235 220 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 5.23 vpr 62.53 MiB 0.02 6840 -1 -1 11 0.27 -1 -1 32908 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1183 4512 917 3199 396 62.5 MiB 0.05 0.00 6.95549 -133.856 -6.95549 6.95549 0.67 0.000704895 0.000639451 0.0234754 0.0217469 28 3440 40 6.55708e+06 349595 500653. 1732.36 2.10 0.1519 0.131482 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.22 0.15 0.10 -1 -1 0.22 0.0383427 0.0338582 174 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 4.74 vpr 62.01 MiB 0.04 6512 -1 -1 13 0.15 -1 -1 32648 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1098 6999 1531 4700 768 62.0 MiB 0.09 0.00 7.85907 -167.622 -7.85907 7.85907 0.63 0.00126489 0.00117239 0.0377926 0.034943 26 3154 29 6.55708e+06 277265 477104. 1650.88 1.85 0.137495 0.120587 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.02897 0.0254386 142 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 4.94 vpr 62.51 MiB 0.02 6692 -1 -1 14 0.30 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1308 7027 1497 5027 503 62.5 MiB 0.08 0.00 8.02087 -160.438 -8.02087 8.02087 0.64 0.000895879 0.000822624 0.0354911 0.0328273 28 3737 36 6.55708e+06 325485 500653. 1732.36 1.86 0.163509 0.142313 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.25 0.12 0.12 -1 -1 0.25 0.0416046 0.0365153 183 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 5.21 vpr 62.84 MiB 0.02 6732 -1 -1 15 0.42 -1 -1 33144 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 24.3 MiB 0.58 1579 7323 1484 5148 691 62.8 MiB 0.09 0.00 9.31018 -193.267 -9.31018 9.31018 0.65 0.00104453 0.000967957 0.0407113 0.0376537 28 4344 42 6.55708e+06 385760 500653. 1732.36 1.66 0.198383 0.173159 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0391995 0.0345258 228 228 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 4.88 vpr 62.09 MiB 0.03 6664 -1 -1 11 0.17 -1 -1 32612 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 23.6 MiB 0.59 1088 7079 1594 5001 484 62.1 MiB 0.07 0.00 6.82798 -137.917 -6.82798 6.82798 0.64 0.000704369 0.000652459 0.0288596 0.0267233 38 2286 15 6.55708e+06 265210 638502. 2209.35 1.67 0.159935 0.13858 23326 155178 -1 2053 17 798 2444 119607 27783 5.83204 5.83204 -129.113 -5.83204 0 0 851065. 2944.86 0.22 0.06 0.13 -1 -1 0.22 0.0253795 0.022281 126 124 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 10.68 vpr 62.31 MiB 0.05 6488 -1 -1 12 0.24 -1 -1 32564 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1155 8207 1978 5141 1088 62.3 MiB 0.10 0.00 7.38032 -154.384 -7.38032 7.38032 0.63 0.000795518 0.000737807 0.0461021 0.0429769 40 2525 16 6.55708e+06 313430 666494. 2306.21 7.52 0.319559 0.276084 23614 160646 -1 2436 15 988 2915 152941 35751 6.47024 6.47024 -145.36 -6.47024 0 0 872365. 3018.56 0.22 0.07 0.14 -1 -1 0.22 0.0272887 0.024086 157 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.04 vpr 62.81 MiB 0.06 6656 -1 -1 12 0.32 -1 -1 32876 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 24.1 MiB 0.45 1424 7439 1505 5396 538 62.8 MiB 0.11 0.00 7.41461 -164.576 -7.41461 7.41461 0.73 0.000996995 0.000919504 0.051374 0.0476477 28 4519 45 6.55708e+06 373705 500653. 1732.36 2.47 0.212758 0.186348 21310 115450 -1 3481 18 1714 5153 317181 70391 6.7249 6.7249 -164.1 -6.7249 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0374782 0.0329476 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 4.82 vpr 62.64 MiB 0.04 6656 -1 -1 12 0.26 -1 -1 32960 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.55 1429 8579 2186 5781 612 62.6 MiB 0.09 0.00 7.42022 -157.463 -7.42022 7.42022 0.66 0.000899436 0.000833432 0.040738 0.0377066 30 3708 20 6.55708e+06 337540 526063. 1820.29 1.45 0.152667 0.134183 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.20 0.09 0.11 -1 -1 0.20 0.0353409 0.0311607 186 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 5.74 vpr 63.05 MiB 0.02 6788 -1 -1 14 0.48 -1 -1 33388 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1656 14691 3485 9017 2189 63.1 MiB 0.15 0.00 8.55829 -177.042 -8.55829 8.55829 0.64 0.00113794 0.00102892 0.0742777 0.0686806 38 3905 20 6.55708e+06 421925 638502. 2209.35 2.29 0.285914 0.250365 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.22 0.10 0.13 -1 -1 0.22 0.0391986 0.0346062 241 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 4.87 vpr 62.30 MiB 0.02 6708 -1 -1 11 0.23 -1 -1 32444 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 23.9 MiB 0.57 1210 13157 4017 6643 2497 62.3 MiB 0.12 0.00 6.86503 -131.636 -6.86503 6.86503 0.68 0.000861997 0.000798509 0.0613439 0.0567996 30 3211 36 6.55708e+06 325485 526063. 1820.29 1.44 0.188284 0.165574 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0302565 0.026676 176 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.49 vpr 61.92 MiB 0.02 6504 -1 -1 11 0.19 -1 -1 32408 -1 -1 25 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 23.4 MiB 0.29 858 9234 2019 6554 661 61.9 MiB 0.08 0.00 6.39815 -115.858 -6.39815 6.39815 0.79 0.000716243 0.000664189 0.0397719 0.0368491 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.16 0.120316 0.106681 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.21 0.09 0.10 -1 -1 0.21 0.0301293 0.0266312 138 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 9.34 vpr 63.04 MiB 0.03 6980 -1 -1 13 0.54 -1 -1 32888 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 24.8 MiB 0.32 1915 8888 1943 6342 603 63.0 MiB 0.11 0.00 7.96961 -161.89 -7.96961 7.96961 0.65 0.00120778 0.00111628 0.0480526 0.0443725 36 5494 32 6.55708e+06 482200 612192. 2118.31 5.76 0.319339 0.277987 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.21 0.12 0.13 -1 -1 0.21 0.0434667 0.0383805 280 279 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 5.90 vpr 62.43 MiB 0.03 6836 -1 -1 14 0.31 -1 -1 33400 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1307 6821 1398 4713 710 62.4 MiB 0.08 0.00 8.63003 -171.716 -8.63003 8.63003 0.71 0.000878922 0.00081404 0.0349227 0.0323696 28 3653 27 6.55708e+06 313430 500653. 1732.36 2.57 0.153636 0.135104 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0317754 0.0279348 178 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.13 vpr 62.01 MiB 0.06 6484 -1 -1 12 0.20 -1 -1 32304 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 23.5 MiB 0.45 1197 8251 1803 5271 1177 62.0 MiB 0.08 0.00 7.37817 -162.484 -7.37817 7.37817 0.64 0.000746662 0.000691107 0.0335085 0.0310046 28 3416 42 6.55708e+06 325485 500653. 1732.36 1.85 0.151532 0.132604 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.25 0.08 0.11 -1 -1 0.25 0.0249639 0.0224962 144 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 9.98 vpr 62.35 MiB 0.02 6780 -1 -1 13 0.28 -1 -1 32744 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1296 6623 1420 4442 761 62.4 MiB 0.08 0.00 7.83929 -154.667 -7.83929 7.83929 0.69 0.000971325 0.000889427 0.035415 0.0325059 30 3458 27 6.55708e+06 301375 526063. 1820.29 6.71 0.267236 0.230739 21886 126133 -1 2834 16 1230 3612 182845 42395 6.7621 6.7621 -149.574 -6.7621 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0305594 0.026957 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 6.21 vpr 62.98 MiB 0.02 6844 -1 -1 13 0.34 -1 -1 33368 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1675 5723 977 4473 273 63.0 MiB 0.07 0.00 7.72485 -162.113 -7.72485 7.72485 0.71 0.000808246 0.000739602 0.0264645 0.0242867 30 4421 42 6.55708e+06 421925 526063. 1820.29 2.45 0.181906 0.159695 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0388471 0.0343277 235 234 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 4.91 vpr 62.62 MiB 0.02 6640 -1 -1 11 0.23 -1 -1 32884 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1363 8827 2077 5986 764 62.6 MiB 0.06 0.00 7.0834 -142.912 -7.0834 7.0834 0.62 0.000436483 0.000402726 0.0218388 0.0200895 30 3732 37 6.55708e+06 385760 526063. 1820.29 1.75 0.13045 0.113486 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0320649 0.0288437 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 7.10 vpr 62.83 MiB 0.03 6740 -1 -1 15 0.32 -1 -1 32936 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1473 9543 2499 5737 1307 62.8 MiB 0.10 0.00 9.02492 -182.614 -9.02492 9.02492 0.65 0.000963107 0.00088708 0.0484339 0.0447229 36 3930 43 6.55708e+06 349595 612192. 2118.31 3.84 0.278441 0.241763 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.20 0.10 0.13 -1 -1 0.20 0.0352606 0.0310257 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 5.66 vpr 62.60 MiB 0.02 6668 -1 -1 13 0.32 -1 -1 32952 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1528 11922 3138 7505 1279 62.6 MiB 0.12 0.00 8.01701 -168.403 -8.01701 8.01701 0.64 0.00101178 0.000935502 0.0593763 0.0548676 34 4013 32 6.55708e+06 385760 585099. 2024.56 2.46 0.279384 0.242796 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.27 0.10 0.14 -1 -1 0.27 0.0374917 0.0330817 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.10 vpr 62.14 MiB 0.02 6600 -1 -1 12 0.21 -1 -1 32340 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63628 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 23.6 MiB 0.44 1144 6321 1459 4287 575 62.1 MiB 0.07 0.00 6.98904 -150.776 -6.98904 6.98904 0.64 0.000777179 0.00072137 0.0269759 0.0250142 30 2863 42 6.55708e+06 349595 526063. 1820.29 4.00 0.241644 0.209494 21886 126133 -1 2340 16 1097 2746 125880 30697 6.25938 6.25938 -142.04 -6.25938 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0264391 0.0233918 159 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 10.08 vpr 61.95 MiB 0.02 6680 -1 -1 11 0.18 -1 -1 32504 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 23.4 MiB 0.37 1041 8402 1813 6153 436 61.9 MiB 0.08 0.00 6.97021 -142.93 -6.97021 6.97021 0.65 0.00073734 0.000683055 0.0353529 0.0327063 30 2905 24 6.55708e+06 265210 526063. 1820.29 7.02 0.220582 0.190696 21886 126133 -1 2264 17 1036 2912 133804 32948 5.86158 5.86158 -135.772 -5.86158 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.0251092 0.0221089 138 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 5.45 vpr 62.65 MiB 0.02 6684 -1 -1 13 0.30 -1 -1 32756 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 24.0 MiB 0.35 1528 7975 1701 5466 808 62.6 MiB 0.09 0.00 8.19329 -167.366 -8.19329 8.19329 0.69 0.000955143 0.000883771 0.0391456 0.0361949 28 4213 29 6.55708e+06 373705 500653. 1732.36 2.22 0.171767 0.150128 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.037373 0.032921 204 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.58 vpr 61.96 MiB 0.02 6568 -1 -1 10 0.17 -1 -1 32764 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63444 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1030 5107 1053 3581 473 62.0 MiB 0.05 0.00 6.08471 -123.999 -6.08471 6.08471 0.63 0.000724127 0.000671014 0.0231606 0.0214633 26 3016 46 6.55708e+06 289320 477104. 1650.88 2.79 0.140875 0.122289 21022 109990 -1 2373 19 1107 3180 197521 45332 5.45152 5.45152 -125.81 -5.45152 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0281723 0.0246893 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 5.59 vpr 62.17 MiB 0.02 6656 -1 -1 14 0.18 -1 -1 32692 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 23.6 MiB 0.45 1019 11203 3089 5915 2199 62.2 MiB 0.10 0.00 7.69221 -156.392 -7.69221 7.69221 0.64 0.000775238 0.000716406 0.0470527 0.0435112 28 3519 29 6.55708e+06 289320 500653. 1732.36 2.46 0.159999 0.140997 21310 115450 -1 2590 22 1381 4103 241007 57254 7.4813 7.4813 -165.085 -7.4813 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.0350871 0.0307997 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 5.62 vpr 62.78 MiB 0.04 6760 -1 -1 12 0.33 -1 -1 32840 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 24.2 MiB 0.29 1351 11891 3061 6959 1871 62.8 MiB 0.12 0.00 7.58423 -159.03 -7.58423 7.58423 0.63 0.000961983 0.000886965 0.0588962 0.0543274 36 3367 18 6.55708e+06 349595 612192. 2118.31 2.43 0.246747 0.215187 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.21 0.09 0.12 -1 -1 0.21 0.0342994 0.0301751 201 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 4.50 vpr 62.11 MiB 0.02 6644 -1 -1 12 0.15 -1 -1 32392 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1079 5567 1026 4331 210 62.1 MiB 0.06 0.00 6.95154 -149.121 -6.95154 6.95154 0.67 0.000623329 0.000568003 0.0243021 0.0225048 28 3150 46 6.55708e+06 277265 500653. 1732.36 1.60 0.142242 0.123578 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0272408 0.0239668 141 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 4.73 vpr 62.62 MiB 0.02 6844 -1 -1 12 0.22 -1 -1 32700 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1263 7843 1830 5405 608 62.6 MiB 0.08 0.00 7.086 -151.926 -7.086 7.086 0.64 0.000898875 0.000832249 0.0383897 0.0354925 28 3643 19 6.55708e+06 325485 500653. 1732.36 1.72 0.14975 0.131128 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.0439523 0.0382702 188 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 10.71 vpr 62.55 MiB 0.02 6780 -1 -1 13 0.27 -1 -1 33028 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1349 6509 1390 4237 882 62.6 MiB 0.07 0.00 7.60996 -160.091 -7.60996 7.60996 0.63 0.000893594 0.000827738 0.0317426 0.0293922 28 4174 46 6.55708e+06 349595 500653. 1732.36 7.51 0.352884 0.302938 21310 115450 -1 3442 36 1483 4579 649016 276569 6.5197 6.5197 -157.574 -6.5197 0 0 612192. 2118.31 0.20 0.23 0.11 -1 -1 0.20 0.058293 0.0504437 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 4.14 vpr 62.15 MiB 0.04 6528 -1 -1 11 0.16 -1 -1 32324 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 23.6 MiB 0.23 1256 8251 2031 5471 749 62.1 MiB 0.08 0.00 6.67834 -143.715 -6.67834 6.67834 0.64 0.000792608 0.000735385 0.0349008 0.0323788 28 3436 25 6.55708e+06 325485 500653. 1732.36 1.28 0.136913 0.120487 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.17 0.09 0.11 -1 -1 0.17 0.0298066 0.0261791 148 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 4.86 vpr 62.21 MiB 0.02 6492 -1 -1 13 0.20 -1 -1 32452 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 23.6 MiB 0.24 1339 8047 1963 5261 823 62.2 MiB 0.08 0.00 7.72555 -161.807 -7.72555 7.72555 0.64 0.000846725 0.000784054 0.0366124 0.0338966 28 3857 33 6.55708e+06 325485 500653. 1732.36 1.87 0.155823 0.135952 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.0468029 0.0405681 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.68 vpr 62.52 MiB 0.04 6772 -1 -1 13 0.26 -1 -1 32808 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1276 15187 4382 8407 2398 62.5 MiB 0.15 0.00 7.99583 -160.474 -7.99583 7.99583 0.65 0.000907748 0.00084118 0.0713909 0.0660637 36 3413 20 6.55708e+06 325485 612192. 2118.31 2.59 0.24837 0.217297 22750 144809 -1 2918 17 1346 4006 219400 51325 7.09316 7.09316 -153.316 -7.09316 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0326906 0.0287648 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 4.95 vpr 62.22 MiB 0.04 6872 -1 -1 11 0.24 -1 -1 32716 -1 -1 28 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1142 12761 3414 7382 1965 62.2 MiB 0.12 0.00 6.37111 -124.414 -6.37111 6.37111 0.64 0.000808228 0.000747209 0.0527179 0.0482621 36 2747 19 6.55708e+06 337540 612192. 2118.31 1.81 0.20936 0.181625 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.20 0.07 0.13 -1 -1 0.20 0.027754 0.0243508 162 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 4.54 vpr 63.13 MiB 0.02 6760 -1 -1 14 0.35 -1 -1 33556 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 24.4 MiB 0.38 1569 9951 2260 6812 879 63.1 MiB 0.11 0.00 8.3634 -177.338 -8.3634 8.3634 0.63 0.0010227 0.000946832 0.0507044 0.0468561 30 4355 28 6.55708e+06 385760 526063. 1820.29 1.35 0.185312 0.162365 21886 126133 -1 3455 18 1687 4974 233475 55515 7.34382 7.34382 -169.849 -7.34382 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0381553 0.0336846 225 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 4.91 vpr 62.10 MiB 0.02 6564 -1 -1 12 0.19 -1 -1 32512 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 23.6 MiB 0.43 1144 6619 1429 4488 702 62.1 MiB 0.06 0.00 6.81857 -143.271 -6.81857 6.81857 0.64 0.000739445 0.00068451 0.0268686 0.02487 36 2680 25 6.55708e+06 337540 612192. 2118.31 1.78 0.176467 0.152667 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0237312 0.0209983 145 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 5.43 vpr 62.62 MiB 0.02 6852 -1 -1 13 0.34 -1 -1 32880 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 23.9 MiB 0.39 1396 7843 1736 5120 987 62.6 MiB 0.08 0.00 7.69421 -153.973 -7.69421 7.69421 0.58 0.00103015 0.000957193 0.0386503 0.0357159 28 3900 43 6.55708e+06 325485 500653. 1732.36 2.23 0.180634 0.15731 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.038469 0.0336339 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.12 vpr 61.99 MiB 0.05 6544 -1 -1 13 0.22 -1 -1 32832 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63476 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 23.4 MiB 0.36 1076 10583 2933 6087 1563 62.0 MiB 0.09 0.00 7.44215 -162.135 -7.44215 7.44215 0.65 0.000747898 0.000692173 0.0431559 0.0399264 28 3369 28 6.55708e+06 301375 500653. 1732.36 1.99 0.148937 0.131212 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0331016 0.0289265 146 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 7.32 vpr 62.36 MiB 0.03 6740 -1 -1 12 0.21 -1 -1 32900 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1148 5517 1034 4096 387 62.4 MiB 0.06 0.00 7.36755 -151.17 -7.36755 7.36755 0.66 0.000993175 0.000915804 0.0281481 0.0261209 30 2794 18 6.55708e+06 313430 526063. 1820.29 4.29 0.234482 0.201916 21886 126133 -1 2452 16 1021 3422 165754 38479 6.5237 6.5237 -142.626 -6.5237 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0304638 0.0267292 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 7.78 vpr 63.07 MiB 0.03 6896 -1 -1 15 0.49 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 24.9 MiB 0.31 1759 9998 2422 6696 880 63.1 MiB 0.14 0.00 8.78932 -180.299 -8.78932 8.78932 0.64 0.00112224 0.00103771 0.0649369 0.0598937 36 4483 32 6.55708e+06 409870 612192. 2118.31 4.20 0.312555 0.272257 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0473715 0.0417671 250 250 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 3.81 vpr 61.55 MiB 0.02 6444 -1 -1 10 0.09 -1 -1 31968 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63028 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 23.1 MiB 0.31 757 9042 2084 6396 562 61.6 MiB 0.07 0.00 5.22063 -120.025 -5.22063 5.22063 0.63 0.000561989 0.000522243 0.0325528 0.0301338 28 1925 17 6.55708e+06 192880 500653. 1732.36 1.05 0.0960395 0.0843475 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0174701 0.0153802 92 85 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.03 vpr 62.40 MiB 0.02 6524 -1 -1 13 0.18 -1 -1 32544 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1069 6415 1411 4237 767 62.4 MiB 0.06 0.00 7.77311 -151.473 -7.77311 7.77311 0.63 0.000752674 0.000698341 0.0264341 0.0244626 28 2954 45 6.55708e+06 349595 500653. 1732.36 1.20 0.144514 0.125828 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.18 0.12 0.10 -1 -1 0.18 0.0412877 0.0360205 150 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 4.77 vpr 62.38 MiB 0.04 6520 -1 -1 12 0.21 -1 -1 32516 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 23.7 MiB 0.28 1241 11223 2642 6703 1878 62.4 MiB 0.11 0.00 6.72746 -150.964 -6.72746 6.72746 0.63 0.000841141 0.000779116 0.0520145 0.0481425 34 3118 16 6.55708e+06 277265 585099. 2024.56 1.80 0.209822 0.182621 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.20 0.08 0.12 -1 -1 0.20 0.0312523 0.0274015 167 167 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.09 vpr 61.95 MiB 0.02 6552 -1 -1 9 0.13 -1 -1 32508 -1 -1 25 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 23.4 MiB 0.16 840 9694 2571 5897 1226 61.9 MiB 0.07 0.00 5.60806 -104.508 -5.60806 5.60806 0.67 0.000469714 0.000429671 0.0288376 0.0264435 26 2429 32 6.55708e+06 301375 477104. 1650.88 2.39 0.115528 0.100615 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0255648 0.0222381 112 111 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 7.94 vpr 62.73 MiB 0.05 6656 -1 -1 12 0.26 -1 -1 32744 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 24.2 MiB 0.55 1640 5273 863 4118 292 62.7 MiB 0.06 0.00 7.59969 -165.851 -7.59969 7.59969 0.64 0.000983417 0.000902618 0.0264788 0.0245066 36 4101 31 6.55708e+06 409870 612192. 2118.31 4.44 0.242036 0.209418 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.20 0.15 0.13 -1 -1 0.20 0.0493503 0.0430863 209 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 6.33 vpr 62.79 MiB 0.04 6724 -1 -1 14 0.31 -1 -1 32944 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 24.1 MiB 0.49 1228 13340 3394 7367 2579 62.8 MiB 0.14 0.00 8.33716 -163.889 -8.33716 8.33716 0.64 0.000984721 0.000903453 0.0664498 0.0612243 38 3334 33 6.55708e+06 349595 638502. 2209.35 2.88 0.287428 0.250907 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.21 0.08 0.11 -1 -1 0.21 0.0325453 0.0287779 204 204 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.78 vpr 62.83 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30832 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.12 929 17268 4565 10218 2485 62.8 MiB 0.17 0.00 4.24756 -141.398 -4.24756 4.24756 0.64 0.000827988 0.000767268 0.064469 0.0596802 32 2653 22 6.64007e+06 452088 554710. 1919.41 0.96 0.162961 0.14444 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.19 0.09 0.10 -1 -1 0.19 0.0316439 0.0275912 153 96 32 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.67 vpr 62.99 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30636 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 24.3 MiB 0.19 873 12919 4129 6395 2395 63.0 MiB 0.13 0.00 4.44716 -130.844 -4.44716 4.44716 0.64 0.000764562 0.000709835 0.0559314 0.0519323 32 2348 20 6.64007e+06 288834 554710. 1919.41 0.86 0.144281 0.127743 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0324432 0.0282045 142 91 30 30 89 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.58 vpr 62.97 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30500 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 24.4 MiB 0.12 1003 9675 2005 7104 566 63.0 MiB 0.10 0.00 3.83457 -129.818 -3.83457 3.83457 0.66 0.000742313 0.000689013 0.0347448 0.0322428 30 2305 22 6.64007e+06 439530 526063. 1820.29 0.87 0.129417 0.113479 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0267707 0.0234137 142 65 54 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.69 vpr 62.72 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30508 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 24.0 MiB 0.08 990 11245 3461 6773 1011 62.7 MiB 0.12 0.00 4.46418 -132.921 -4.46418 4.46418 0.64 0.000688526 0.000639881 0.042101 0.0390755 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.03 0.127391 0.112594 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0281545 0.0245736 138 34 87 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.62 vpr 62.80 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 24.2 MiB 0.11 849 15017 4515 8552 1950 62.8 MiB 0.16 0.00 4.14936 -139.21 -4.14936 4.14936 0.63 0.000698925 0.00064501 0.0620162 0.057641 32 2360 21 6.64007e+06 276276 554710. 1919.41 0.90 0.149161 0.132535 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0324253 0.0284015 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.66 vpr 62.93 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30516 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1024 19142 5848 10342 2952 62.9 MiB 0.18 0.00 3.5603 -122.153 -3.5603 3.5603 0.66 0.000769856 0.000712554 0.0637324 0.0590922 32 2260 24 6.64007e+06 489762 554710. 1919.41 0.86 0.157237 0.139232 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0317082 0.0276797 156 64 63 32 63 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.37 vpr 62.18 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30580 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 23.6 MiB 0.10 722 12923 4015 7171 1737 62.2 MiB 0.11 0.00 3.7987 -103.375 -3.7987 3.7987 0.63 0.00056724 0.000527573 0.0454016 0.0422238 32 1657 16 6.64007e+06 251160 554710. 1919.41 0.76 0.107912 0.0956302 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0209956 0.0182635 96 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.11 vpr 62.89 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30240 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 24.0 MiB 0.09 948 16081 4441 8879 2761 62.9 MiB 0.14 0.00 3.49449 -109.504 -3.49449 3.49449 0.63 0.000668355 0.00062178 0.0508719 0.0473057 28 2371 22 6.64007e+06 426972 500653. 1732.36 0.92 0.133171 0.118063 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0260766 0.0227478 140 4 115 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.41 vpr 62.50 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30228 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 23.6 MiB 0.15 706 7820 1805 5417 598 62.5 MiB 0.08 0.00 3.31336 -101.862 -3.31336 3.31336 0.63 0.000657452 0.000610882 0.0320631 0.0298232 28 1873 21 6.64007e+06 213486 500653. 1732.36 0.74 0.108945 0.095574 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0250137 0.0218173 106 85 0 0 84 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.24 vpr 62.62 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 24.0 MiB 0.15 890 10756 2975 5928 1853 62.6 MiB 0.10 0.00 3.5061 -124.869 -3.5061 3.5061 0.64 0.000648222 0.000603082 0.0421452 0.0392251 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.83 0.117423 0.103772 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0244739 0.0213861 121 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.37 vpr 62.62 MiB 0.03 6856 -1 -1 1 0.03 -1 -1 30176 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 23.9 MiB 0.14 822 14012 5060 7295 1657 62.6 MiB 0.13 0.00 3.4841 -115.834 -3.4841 3.4841 0.65 0.000642683 0.000596339 0.0547004 0.0508058 28 1767 16 6.64007e+06 226044 500653. 1732.36 0.76 0.12621 0.112089 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0236129 0.0206423 110 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.42 vpr 62.62 MiB 0.03 6848 -1 -1 1 0.03 -1 -1 30528 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.9 MiB 0.10 840 9753 2297 6936 520 62.6 MiB 0.09 0.00 3.52209 -114.564 -3.52209 3.52209 0.67 0.00065979 0.00061293 0.0329072 0.0305616 30 1922 21 6.64007e+06 364182 526063. 1820.29 0.80 0.109337 0.095981 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0226312 0.0197843 114 65 25 25 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.76 vpr 62.99 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 0.21 893 19448 6133 10048 3267 63.0 MiB 0.20 0.00 3.56129 -122.026 -3.56129 3.56129 0.55 0.000759823 0.000705655 0.0745375 0.0692153 32 2222 23 6.64007e+06 426972 554710. 1919.41 0.91 0.165859 0.147789 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0317495 0.0277204 145 58 64 32 57 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.30 vpr 63.09 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30480 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1031 17036 4693 9820 2523 63.1 MiB 0.16 0.00 4.31123 -147.759 -4.31123 4.31123 0.63 0.000774397 0.000719396 0.0598716 0.0555632 26 2990 23 6.64007e+06 452088 477104. 1650.88 1.57 0.155599 0.137807 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.16 0.11 0.10 -1 -1 0.16 0.0365356 0.0318073 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.38 vpr 62.15 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30596 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.11 800 8852 2481 5509 862 62.1 MiB 0.08 0.00 3.4261 -103.793 -3.4261 3.4261 0.64 0.000579514 0.000539613 0.0317105 0.0295349 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.78 0.0960878 0.0845963 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.19 0.06 0.15 -1 -1 0.19 0.0241147 0.0210077 108 29 58 29 24 24 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.72 vpr 62.97 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30480 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1068 13316 3890 7652 1774 63.0 MiB 0.14 0.00 3.5141 -124.724 -3.5141 3.5141 0.64 0.000770659 0.000715805 0.0558149 0.0517676 32 2326 21 6.64007e+06 276276 554710. 1919.41 0.88 0.146298 0.129498 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0315044 0.027501 147 63 64 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.66 vpr 62.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30236 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 24.2 MiB 0.17 964 16340 5208 8057 3075 62.8 MiB 0.13 0.00 3.6263 -123.14 -3.6263 3.6263 0.63 0.000743354 0.000689953 0.0548368 0.0508881 34 2358 39 6.64007e+06 452088 585099. 2024.56 1.92 0.221119 0.192919 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.21 0.07 0.12 -1 -1 0.21 0.0282365 0.0247067 144 57 64 32 56 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.41 vpr 62.73 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30108 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 24.0 MiB 0.15 919 13487 3473 7992 2022 62.7 MiB 0.12 0.00 2.83964 -105.375 -2.83964 2.83964 0.64 0.000675201 0.000627262 0.0440963 0.0409032 26 2137 22 6.64007e+06 389298 477104. 1650.88 0.78 0.129117 0.114143 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0253755 0.0222945 119 65 29 29 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.25 vpr 61.81 MiB 0.04 6652 -1 -1 1 0.03 -1 -1 30140 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.2 MiB 0.03 670 10835 3352 6011 1472 61.8 MiB 0.08 0.00 2.72344 -89.4054 -2.72344 2.72344 0.64 0.000508569 0.000473794 0.035256 0.0328355 32 1416 19 6.64007e+06 188370 554710. 1919.41 0.76 0.0935044 0.0824858 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0201169 0.0174276 85 34 24 24 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.44 vpr 62.73 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 24.0 MiB 0.12 727 12120 4439 5930 1751 62.7 MiB 0.11 0.00 4.19115 -121.049 -4.19115 4.19115 0.63 0.000662025 0.000615316 0.048875 0.0454405 32 2029 16 6.64007e+06 213486 554710. 1919.41 0.80 0.121788 0.108011 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0220441 0.0193532 113 64 31 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.63 vpr 62.93 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 24.4 MiB 0.09 885 17732 4998 9545 3189 62.9 MiB 0.16 0.00 4.22193 -138.344 -4.22193 4.22193 0.65 0.000725514 0.000673601 0.0579985 0.0538142 32 2479 24 6.64007e+06 452088 554710. 1919.41 0.87 0.147005 0.130259 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0301692 0.0263673 147 34 91 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.77 vpr 63.39 MiB 0.04 7132 -1 -1 1 0.04 -1 -1 30840 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.21 960 11288 2842 7087 1359 63.4 MiB 0.12 0.00 3.74425 -123.858 -3.74425 3.74425 0.63 0.000845384 0.000785564 0.04286 0.039765 30 2640 22 6.64007e+06 477204 526063. 1820.29 0.91 0.143047 0.125515 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.20 0.08 0.14 -1 -1 0.20 0.0354752 0.0308318 150 124 0 0 125 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.24 vpr 61.77 MiB 0.03 6820 -1 -1 1 0.03 -1 -1 30520 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63248 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.2 MiB 0.09 395 10503 3120 6151 1232 61.8 MiB 0.07 0.00 2.74064 -71.156 -2.74064 2.74064 0.63 0.000439838 0.000408942 0.0307856 0.0286255 28 1145 19 6.64007e+06 213486 500653. 1732.36 0.74 0.0820588 0.0724596 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0170694 0.0149113 77 30 26 26 22 22 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.59 vpr 62.85 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30076 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 24.2 MiB 0.10 990 12749 4130 6257 2362 62.8 MiB 0.13 0.00 4.45633 -140.507 -4.45633 4.45633 0.67 0.000691454 0.000643358 0.0491148 0.0457345 32 2561 21 6.64007e+06 276276 554710. 1919.41 0.89 0.131861 0.116928 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0267335 0.0233777 138 3 122 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.30 vpr 61.88 MiB 0.02 6636 -1 -1 1 0.03 -1 -1 30564 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63368 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.3 MiB 0.05 603 10672 2424 7898 350 61.9 MiB 0.08 0.00 2.3583 -83.9313 -2.3583 2.3583 0.63 0.000470605 0.000437815 0.0328069 0.0305017 28 1546 20 6.64007e+06 163254 500653. 1732.36 0.89 0.0877241 0.0775743 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0170371 0.014911 81 3 53 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.62 vpr 63.03 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30572 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.10 956 14691 4376 8904 1411 63.0 MiB 0.14 0.00 4.18856 -140.856 -4.18856 4.18856 0.65 0.000738556 0.000686526 0.0504071 0.046727 32 2560 22 6.64007e+06 439530 554710. 1919.41 0.94 0.138704 0.122631 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0322818 0.028112 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.79 vpr 62.74 MiB 0.05 6836 -1 -1 1 0.03 -1 -1 30280 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 23.9 MiB 0.09 1019 8796 1857 6524 415 62.7 MiB 0.11 0.00 3.60659 -123.354 -3.60659 3.60659 0.68 0.000697109 0.00064849 0.0302687 0.0279192 26 3249 33 6.64007e+06 464646 477104. 1650.88 2.12 0.127266 0.11105 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0285418 0.0249149 152 3 124 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.61 vpr 63.16 MiB 0.05 7024 -1 -1 1 0.04 -1 -1 30696 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.5 MiB 0.10 1069 18901 5689 10576 2636 63.2 MiB 0.18 0.00 4.16036 -141.868 -4.16036 4.16036 0.65 0.000778214 0.000721261 0.065092 0.0603558 32 2736 22 6.64007e+06 464646 554710. 1919.41 0.86 0.14307 0.127528 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.19 0.09 0.08 -1 -1 0.19 0.0326697 0.028514 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.49 vpr 62.38 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 23.9 MiB 0.07 857 10572 2555 6423 1594 62.4 MiB 0.10 0.00 3.07196 -107.422 -3.07196 3.07196 0.68 0.000619284 0.000575848 0.0398414 0.0370536 32 1869 19 6.64007e+06 200928 554710. 1919.41 0.84 0.111502 0.0985515 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0303854 0.0265291 107 34 54 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.50 vpr 62.38 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30188 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.05 824 11806 3275 6761 1770 62.4 MiB 0.11 0.00 3.4951 -114.009 -3.4951 3.4951 0.63 0.00061495 0.000572089 0.0435388 0.0405159 32 1835 21 6.64007e+06 238602 554710. 1919.41 0.88 0.124794 0.109885 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0262761 0.0228717 115 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.38 vpr 62.25 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30344 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.6 MiB 0.09 658 7132 1686 4570 876 62.3 MiB 0.08 0.00 3.4309 -100.483 -3.4309 3.4309 0.64 0.000580304 0.000539058 0.0259747 0.0241387 32 1851 20 6.64007e+06 251160 554710. 1919.41 0.81 0.0959523 0.083993 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0224452 0.0195602 107 34 56 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.50 vpr 62.68 MiB 0.03 6780 -1 -1 1 0.02 -1 -1 30508 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 24.0 MiB 0.07 802 15390 5648 7380 2362 62.7 MiB 0.14 0.00 3.5251 -121.985 -3.5251 3.5251 0.63 0.000611879 0.000568595 0.0550573 0.0511471 32 2003 23 6.64007e+06 226044 554710. 1919.41 0.83 0.12968 0.115178 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0283485 0.0246472 125 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.40 vpr 62.66 MiB 0.03 6836 -1 -1 1 0.03 -1 -1 30260 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.06 772 9679 2262 6618 799 62.7 MiB 0.09 0.00 3.47387 -114.287 -3.47387 3.47387 0.64 0.000563076 0.000523775 0.0305503 0.028373 28 2025 20 6.64007e+06 389298 500653. 1732.36 0.89 0.103193 0.0906019 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.16 0.04 0.07 -1 -1 0.16 0.0127998 0.011364 119 34 61 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.38 vpr 62.62 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30228 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 23.9 MiB 0.08 877 15824 4460 9332 2032 62.6 MiB 0.13 0.00 2.80466 -91.9047 -2.80466 2.80466 0.63 0.000626684 0.000581866 0.0501112 0.0464827 26 2073 22 6.64007e+06 389298 477104. 1650.88 0.82 0.123948 0.109521 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0258751 0.0225273 110 61 29 29 57 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.57 vpr 63.00 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 30412 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 24.7 MiB 0.17 1234 17889 5288 10109 2492 63.0 MiB 0.20 0.00 4.16036 -142.499 -4.16036 4.16036 0.63 0.000829408 0.000770382 0.0631875 0.0586163 28 3347 24 6.64007e+06 514878 500653. 1732.36 1.80 0.167466 0.148182 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.032658 0.0285599 181 29 128 32 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.39 vpr 63.21 MiB 0.03 7012 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.15 996 11616 2636 8022 958 63.2 MiB 0.12 0.00 3.5823 -125.213 -3.5823 3.5823 0.68 0.000782207 0.000720146 0.0432372 0.0401145 30 2080 20 6.64007e+06 464646 526063. 1820.29 0.85 0.134641 0.118638 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0292772 0.0256438 154 65 62 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.49 vpr 62.80 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30404 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 0.20 803 9407 2189 6388 830 62.8 MiB 0.09 0.00 3.6833 -114.43 -3.6833 3.6833 0.63 0.000688313 0.000639344 0.0332064 0.0308694 30 1852 20 6.64007e+06 364182 526063. 1820.29 0.78 0.110984 0.0971906 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.18 0.06 0.10 -1 -1 0.18 0.024241 0.0211499 114 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.59 vpr 63.04 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 30404 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1052 11799 3060 6831 1908 63.0 MiB 0.12 0.00 3.64847 -119.816 -3.64847 3.64847 0.65 0.000748906 0.000695833 0.0485682 0.0451458 32 2372 21 6.64007e+06 301392 554710. 1919.41 0.85 0.137505 0.121475 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0318861 0.0278132 149 64 60 30 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.72 vpr 63.07 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30568 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 24.4 MiB 0.30 953 7835 1760 5704 371 63.1 MiB 0.10 0.00 5.23812 -147.937 -5.23812 5.23812 0.64 0.00083531 0.00077671 0.0375823 0.0349464 32 2549 24 6.64007e+06 288834 554710. 1919.41 0.88 0.138421 0.121042 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0328164 0.0285762 150 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.71 vpr 63.10 MiB 0.03 7280 -1 -1 1 0.03 -1 -1 30364 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 24.4 MiB 0.14 955 10859 3044 7047 768 63.1 MiB 0.12 0.00 5.02279 -136.574 -5.02279 5.02279 0.60 0.000775991 0.00072066 0.0473001 0.0439536 30 2107 21 6.64007e+06 288834 526063. 1820.29 0.81 0.138565 0.122326 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0273593 0.0240681 144 90 31 31 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.62 vpr 62.91 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30360 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 24.2 MiB 0.13 1046 15623 4332 9609 1682 62.9 MiB 0.15 0.00 3.5621 -120.379 -3.5621 3.5621 0.63 0.000749334 0.000695992 0.0552679 0.0511571 26 2560 22 6.64007e+06 439530 477104. 1650.88 0.87 0.144642 0.127847 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0262977 0.0230402 148 64 60 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.63 vpr 63.08 MiB 0.04 7020 -1 -1 1 0.04 -1 -1 30920 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.11 865 10206 2264 6941 1001 63.1 MiB 0.11 0.00 4.23656 -140.329 -4.23656 4.23656 0.63 0.000765917 0.000710766 0.0367901 0.0341209 32 2829 21 6.64007e+06 464646 554710. 1919.41 0.92 0.124704 0.109783 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0311987 0.0272495 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 3.81 vpr 63.03 MiB 0.03 7284 -1 -1 1 0.05 -1 -1 30632 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 24.6 MiB 0.19 1205 17356 4219 10649 2488 63.0 MiB 0.21 0.00 4.21478 -145.938 -4.21478 4.21478 0.64 0.000930411 0.000865548 0.0711812 0.0658242 32 2779 22 6.64007e+06 527436 554710. 1919.41 0.89 0.180042 0.159148 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.20 0.11 0.12 -1 -1 0.20 0.0446948 0.0392437 186 96 62 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.50 vpr 62.66 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30640 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.9 MiB 0.10 655 13731 5030 6417 2284 62.7 MiB 0.07 0.00 3.7665 -117.146 -3.7665 3.7665 0.69 0.000286358 0.000263769 0.0238656 0.0220173 32 1931 27 6.64007e+06 226044 554710. 1919.41 0.83 0.104369 0.090779 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.22 0.07 0.12 -1 -1 0.22 0.0253339 0.0222428 116 34 62 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.57 vpr 63.09 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30460 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 24.4 MiB 0.10 910 7386 1527 5477 382 63.1 MiB 0.09 0.00 4.20356 -136.322 -4.20356 4.20356 0.63 0.000763323 0.000708838 0.0265754 0.0246692 32 2713 25 6.64007e+06 477204 554710. 1919.41 0.94 0.120099 0.104933 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.22 0.08 0.12 -1 -1 0.22 0.0310919 0.0271511 152 64 62 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.52 vpr 63.15 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30580 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 24.3 MiB 0.13 994 14048 3500 8468 2080 63.1 MiB 0.14 0.00 3.7163 -119.726 -3.7163 3.7163 0.64 0.000755328 0.000701354 0.0499884 0.046411 32 2435 23 6.64007e+06 426972 554710. 1919.41 0.78 0.128398 0.113773 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0300424 0.0262219 149 63 62 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.77 vpr 62.80 MiB 0.08 6964 -1 -1 1 0.03 -1 -1 30340 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 24.0 MiB 0.08 1080 15017 4624 8554 1839 62.8 MiB 0.15 0.00 4.14936 -144.892 -4.14936 4.14936 0.67 0.000708092 0.000658265 0.0587861 0.0546481 32 2624 22 6.64007e+06 276276 554710. 1919.41 0.91 0.144924 0.128805 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0303339 0.0265041 151 3 128 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.71 vpr 63.12 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30404 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1044 15603 4218 9336 2049 63.1 MiB 0.15 0.00 3.55822 -125.535 -3.55822 3.55822 0.65 0.00079638 0.00073909 0.0566774 0.0525784 32 2394 19 6.64007e+06 439530 554710. 1919.41 0.89 0.146532 0.129754 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0307139 0.0267276 146 96 25 25 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.13 vpr 63.18 MiB 0.02 6944 -1 -1 1 0.04 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1017 12791 3286 8285 1220 63.2 MiB 0.13 0.00 3.47912 -120.914 -3.47912 3.47912 0.63 0.000767519 0.000713288 0.0442653 0.041 26 2568 45 6.64007e+06 464646 477104. 1650.88 1.45 0.163008 0.142866 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0278299 0.0243714 148 61 64 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.80 vpr 63.08 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30504 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1102 19142 5372 11310 2460 63.1 MiB 0.17 0.00 3.5243 -123.608 -3.5243 3.5243 0.75 0.000597611 0.000546728 0.0584572 0.0538865 32 2414 19 6.64007e+06 489762 554710. 1919.41 0.91 0.157983 0.139518 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0294464 0.025815 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.65 vpr 62.77 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 24.3 MiB 0.08 1032 14906 4320 9186 1400 62.8 MiB 0.19 0.00 4.18856 -144.112 -4.18856 4.18856 0.65 0.000743603 0.000691214 0.0630334 0.058403 30 2290 20 6.64007e+06 464646 526063. 1820.29 0.87 0.149447 0.132686 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.18 0.07 0.12 -1 -1 0.18 0.0290211 0.025396 152 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.44 vpr 62.96 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30804 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 24.2 MiB 0.14 1016 12153 3010 8355 788 63.0 MiB 0.12 0.00 4.23153 -146.068 -4.23153 4.23153 0.67 0.000767544 0.00071225 0.0419196 0.0388259 26 2842 35 6.64007e+06 489762 477104. 1650.88 1.58 0.151455 0.132609 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.032679 0.0284541 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.16 vpr 63.34 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30496 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1141 13095 3356 8753 986 63.3 MiB 0.14 0.00 4.67535 -137.171 -4.67535 4.67535 0.65 0.000823597 0.000764662 0.0501666 0.0465596 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.29 0.153533 0.135155 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0306034 0.0266151 147 122 0 0 122 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.68 vpr 63.04 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30468 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1069 15584 4992 8664 1928 63.0 MiB 0.17 0.00 4.34993 -137.194 -4.34993 4.34993 0.65 0.000808182 0.000750404 0.0722198 0.0671163 32 2657 20 6.64007e+06 276276 554710. 1919.41 0.88 0.1671 0.14872 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0313887 0.0273473 151 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.45 vpr 62.77 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30592 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 24.1 MiB 0.07 928 8735 1852 5986 897 62.8 MiB 0.09 0.00 3.50687 -122.364 -3.50687 3.50687 0.65 0.000641009 0.00059443 0.0290733 0.0270114 28 2197 22 6.64007e+06 389298 500653. 1732.36 0.88 0.107981 0.0947505 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0260214 0.0226763 125 34 63 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.54 vpr 62.83 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30492 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 24.0 MiB 0.18 885 10406 2864 6861 681 62.8 MiB 0.11 0.00 3.5031 -121.505 -3.5031 3.5031 0.64 0.000713908 0.00066341 0.0442174 0.0411126 26 2358 26 6.64007e+06 226044 477104. 1650.88 0.88 0.134775 0.11876 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0265461 0.0231568 121 94 0 0 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.98 vpr 63.09 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30728 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1352 17606 4821 10688 2097 63.1 MiB 0.20 0.00 4.98622 -168.741 -4.98622 4.98622 0.66 0.00114974 0.00105947 0.0671496 0.0622668 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.01 0.181008 0.159999 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.041696 0.0362943 189 65 96 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.62 vpr 63.14 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30472 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 24.5 MiB 0.15 1055 17857 5354 10411 2092 63.1 MiB 0.17 0.00 3.51607 -123.396 -3.51607 3.51607 0.67 0.000736211 0.000681833 0.0619367 0.0573078 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.83 0.138497 0.1235 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0278644 0.0244341 148 34 92 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.63 vpr 62.66 MiB 0.03 6776 -1 -1 1 0.05 -1 -1 30392 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 23.9 MiB 0.08 853 17523 5443 9889 2191 62.7 MiB 0.15 0.00 3.4529 -114.711 -3.4529 3.4529 0.67 0.000617041 0.000573917 0.0540711 0.0501917 30 1885 20 6.64007e+06 389298 526063. 1820.29 0.79 0.128338 0.11395 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.18 0.06 0.12 -1 -1 0.18 0.0259534 0.0225771 116 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.02 vpr 63.23 MiB 0.05 7236 -1 -1 1 0.04 -1 -1 31060 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1192 13629 3357 8864 1408 63.2 MiB 0.15 0.00 4.97469 -167.233 -4.97469 4.97469 0.64 0.000749041 0.000687645 0.0457609 0.0419029 32 2825 26 6.64007e+06 565110 554710. 1919.41 0.97 0.140448 0.123463 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0430907 0.0382662 188 127 32 32 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.57 vpr 62.96 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30496 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1027 16762 4357 10483 1922 63.0 MiB 0.15 0.00 4.27488 -146.847 -4.27488 4.27488 0.64 0.000744244 0.000691356 0.0561498 0.0520468 28 2563 23 6.64007e+06 477204 500653. 1732.36 0.88 0.145637 0.128935 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.17 0.08 0.07 -1 -1 0.17 0.0273898 0.0240398 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.37 vpr 62.43 MiB 0.05 6732 -1 -1 1 0.03 -1 -1 30456 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 23.9 MiB 0.08 882 11046 2802 6952 1292 62.4 MiB 0.10 0.00 3.5621 -124.172 -3.5621 3.5621 0.66 0.000622511 0.000579542 0.0328011 0.0303732 30 1857 21 6.64007e+06 401856 526063. 1820.29 0.77 0.10487 0.0921965 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.21 0.03 0.12 -1 -1 0.21 0.0133288 0.0118575 124 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.10 vpr 62.99 MiB 0.07 7144 -1 -1 1 0.04 -1 -1 30820 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 24.6 MiB 0.13 1334 20347 5362 13158 1827 63.0 MiB 0.21 0.00 4.95502 -168.119 -4.95502 4.95502 0.65 0.000853648 0.000793136 0.0720922 0.0669924 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.15 0.183167 0.162815 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.20 0.10 0.12 -1 -1 0.20 0.0369691 0.0323422 190 34 128 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.58 vpr 62.29 MiB 0.07 6792 -1 -1 1 0.03 -1 -1 30344 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 23.8 MiB 0.09 623 13731 4925 6406 2400 62.3 MiB 0.12 0.00 3.5061 -118.666 -3.5061 3.5061 0.65 0.000612175 0.000569632 0.0501907 0.0467109 32 2131 28 6.64007e+06 213486 554710. 1919.41 0.85 0.129947 0.115061 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.025148 0.0219274 121 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.47 vpr 62.39 MiB 0.02 6960 -1 -1 1 0.02 -1 -1 30264 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 23.8 MiB 0.12 855 13939 4099 8667 1173 62.4 MiB 0.12 0.00 3.47387 -112.968 -3.47387 3.47387 0.68 0.000617153 0.000574394 0.0427663 0.0397175 28 1888 22 6.64007e+06 401856 500653. 1732.36 0.84 0.11942 0.105586 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.17 0.06 0.07 -1 -1 0.17 0.0243286 0.0211553 114 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.72 vpr 62.89 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30348 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 24.2 MiB 0.17 1003 12839 3224 8329 1286 62.9 MiB 0.13 0.00 3.6803 -109.03 -3.6803 3.6803 0.65 0.00074837 0.000695401 0.0470527 0.0436914 26 2529 22 6.64007e+06 426972 477104. 1650.88 0.86 0.124505 0.110345 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0327536 0.0285784 134 88 29 29 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.68 vpr 63.05 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30604 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 24.4 MiB 0.13 937 11048 2797 7564 687 63.1 MiB 0.12 0.00 4.21976 -143.232 -4.21976 4.21976 0.65 0.000770568 0.000715458 0.0477968 0.0444019 32 2378 24 6.64007e+06 276276 554710. 1919.41 0.93 0.143628 0.126722 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0311277 0.0271736 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.99 vpr 62.91 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30604 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 24.3 MiB 0.22 1070 15876 4480 9346 2050 62.9 MiB 0.17 0.00 4.25856 -146.098 -4.25856 4.25856 0.65 0.00077803 0.000722073 0.0584984 0.054275 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.02 0.169838 0.149849 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0408059 0.0354159 154 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.61 vpr 62.73 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30484 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 24.0 MiB 0.13 863 8856 1892 6516 448 62.7 MiB 0.09 0.00 3.4749 -121.747 -3.4749 3.4749 0.73 0.000523797 0.000479742 0.0263443 0.0241591 32 2048 21 6.64007e+06 401856 554710. 1919.41 0.87 0.106752 0.0930891 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.027379 0.0238337 122 65 32 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.55 vpr 62.72 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.0 MiB 0.18 821 8336 2395 4162 1779 62.7 MiB 0.09 0.00 3.72326 -116.749 -3.72326 3.72326 0.66 0.000676986 0.000628888 0.0351132 0.0326137 32 1980 18 6.64007e+06 213486 554710. 1919.41 0.84 0.112517 0.0988879 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0267366 0.0232606 109 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.95 vpr 62.90 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30452 -1 -1 35 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 985 17635 4923 10695 2017 62.9 MiB 0.17 0.00 3.4529 -110.073 -3.4529 3.4529 0.63 0.000731009 0.000679685 0.0603311 0.0560557 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.16 0.156345 0.138282 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0272597 0.0238228 139 60 60 30 57 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.95 vpr 62.59 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30404 -1 -1 32 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 24.0 MiB 0.09 939 14996 4215 8524 2257 62.6 MiB 0.15 0.00 4.39198 -124.88 -4.39198 4.39198 0.63 0.000671121 0.000624858 0.0557517 0.0517479 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.30 0.145199 0.128587 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0280153 0.0244488 134 34 84 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.56 vpr 62.64 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 24.0 MiB 0.16 846 13731 4520 7348 1863 62.6 MiB 0.13 0.00 3.5343 -117.296 -3.5343 3.5343 0.63 0.000646424 0.000600523 0.0531668 0.0493664 32 1980 19 6.64007e+06 238602 554710. 1919.41 0.84 0.125645 0.111563 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.024408 0.02127 114 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.41 vpr 62.66 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 24.0 MiB 0.18 892 11281 2807 6986 1488 62.7 MiB 0.09 0.00 3.6865 -117.315 -3.6865 3.6865 0.66 0.000704124 0.000654464 0.0352036 0.0326278 30 1846 19 6.64007e+06 213486 526063. 1820.29 0.78 0.115932 0.101943 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0259568 0.0226832 114 91 0 0 91 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.65 vpr 62.98 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30196 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 0.09 1121 19124 6194 10224 2706 63.0 MiB 0.17 0.00 4.18856 -139.706 -4.18856 4.18856 0.63 0.000692597 0.000643647 0.0598423 0.0555476 32 2557 23 6.64007e+06 464646 554710. 1919.41 0.86 0.143978 0.127856 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.029593 0.0258547 152 4 124 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.05 vpr 63.17 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30756 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1037 18660 5257 10625 2778 63.2 MiB 0.18 0.00 4.17032 -143.358 -4.17032 4.17032 0.68 0.000778162 0.000722385 0.0652289 0.060448 32 2589 21 6.64007e+06 452088 554710. 1919.41 0.99 0.166826 0.147689 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.19 0.09 0.15 -1 -1 0.19 0.0302731 0.0264379 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.63 vpr 63.15 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30368 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1085 15876 4268 10377 1231 63.2 MiB 0.15 0.00 4.15553 -144.194 -4.15553 4.15553 0.63 0.000774015 0.000718395 0.0561187 0.0520202 32 2670 22 6.64007e+06 452088 554710. 1919.41 0.90 0.149258 0.13207 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.19 0.09 0.09 -1 -1 0.19 0.0318266 0.0277727 153 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.74 vpr 62.99 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30432 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 24.3 MiB 0.13 963 9146 1745 6045 1356 63.0 MiB 0.09 0.00 4.17056 -135.219 -4.17056 4.17056 0.64 0.000767842 0.000712195 0.0323649 0.0300307 30 3028 24 6.64007e+06 477204 526063. 1820.29 1.07 0.126742 0.111113 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0333563 0.0291114 149 65 60 30 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.47 vpr 62.51 MiB 0.03 6900 -1 -1 1 0.03 -1 -1 30376 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 840 12856 4254 6466 2136 62.5 MiB 0.12 0.00 3.4921 -115.538 -3.4921 3.4921 0.65 0.000615101 0.000571826 0.0475663 0.0442057 32 2099 22 6.64007e+06 238602 554710. 1919.41 0.82 0.12201 0.10804 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0243759 0.0212663 113 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.80 vpr 62.90 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30412 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 24.1 MiB 0.15 996 13127 3599 7422 2106 62.9 MiB 0.13 0.00 4.20393 -135.69 -4.20393 4.20393 0.66 0.000742573 0.000689672 0.0539589 0.0501115 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.09 0.152751 0.134862 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0282203 0.0247192 146 63 60 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.65 vpr 62.90 MiB 0.05 7216 -1 -1 1 0.05 -1 -1 30892 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 24.4 MiB 0.23 1061 10232 2187 7405 640 62.9 MiB 0.11 0.00 4.16036 -143.59 -4.16036 4.16036 0.64 0.000853651 0.000792068 0.0386711 0.0358428 26 3037 26 6.64007e+06 514878 477104. 1650.88 1.80 0.151419 0.132609 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0340566 0.0294936 156 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.74 vpr 63.16 MiB 0.04 7164 -1 -1 1 0.03 -1 -1 30424 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 24.5 MiB 0.12 924 14769 3776 9247 1746 63.2 MiB 0.15 0.00 4.18868 -135.93 -4.18868 4.18868 0.63 0.000808375 0.00074977 0.056086 0.05202 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.02 0.146397 0.130052 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0322025 0.0281177 148 94 31 31 93 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.65 vpr 63.08 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30472 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 24.4 MiB 0.17 973 15004 4033 8498 2473 63.1 MiB 0.19 0.00 3.6693 -113.052 -3.6693 3.6693 0.66 0.000902613 0.000830107 0.066143 0.0609115 32 2183 19 6.64007e+06 401856 554710. 1919.41 0.88 0.15026 0.133376 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.19 0.07 0.08 -1 -1 0.19 0.0291805 0.025582 138 92 26 26 90 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.90 vpr 63.02 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30708 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1125 9725 2385 6614 726 63.0 MiB 0.12 0.00 4.21673 -144.443 -4.21673 4.21673 0.64 0.00061603 0.000562602 0.0406824 0.0376346 30 2849 27 6.64007e+06 276276 526063. 1820.29 0.96 0.141329 0.124128 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.19 0.10 0.12 -1 -1 0.19 0.035455 0.030982 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.80 vpr 62.78 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30308 -1 -1 36 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 24.2 MiB 0.14 964 18079 5189 10710 2180 62.8 MiB 0.16 0.00 3.5353 -109.312 -3.5353 3.5353 0.64 0.000818081 0.000764168 0.0615371 0.0568908 32 2101 19 6.64007e+06 452088 554710. 1919.41 0.96 0.153241 0.135526 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0252811 0.0223443 136 88 26 26 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.65 vpr 62.30 MiB 0.04 6792 -1 -1 1 0.35 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 23.9 MiB 0.04 799 9356 2113 6168 1075 62.3 MiB 0.09 0.00 3.4921 -122.483 -3.4921 3.4921 0.63 0.000614909 0.000572495 0.0348496 0.0324662 32 1948 20 6.64007e+06 213486 554710. 1919.41 0.79 0.10577 0.0932244 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0235451 0.0205916 115 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.96 vpr 63.06 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30572 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.25 992 16743 5741 8435 2567 63.1 MiB 0.16 0.00 4.25856 -144.485 -4.25856 4.25856 0.64 0.000779233 0.000722929 0.0600044 0.055631 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.12 0.158203 0.140112 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.0315336 0.0275113 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.77 vpr 63.05 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30544 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1054 17367 5167 10302 1898 63.1 MiB 0.10 0.00 4.21976 -145.962 -4.21976 4.21976 0.70 0.000343248 0.00031599 0.0333551 0.0307199 32 2466 19 6.64007e+06 288834 554710. 1919.41 0.86 0.123921 0.10848 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0352269 0.0306761 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.93 vpr 62.50 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30396 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 23.8 MiB 0.15 691 7975 1531 6145 299 62.5 MiB 0.08 0.00 3.6913 -111.241 -3.6913 3.6913 0.65 0.000551682 0.00050898 0.0247783 0.0228674 26 2376 30 6.64007e+06 376740 477104. 1650.88 1.43 0.107754 0.0942095 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.16 0.04 0.06 -1 -1 0.16 0.0140691 0.0124427 112 55 32 32 54 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.52 vpr 62.27 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.9 MiB 0.08 653 13381 4684 6039 2658 62.3 MiB 0.13 0.00 3.5533 -116.629 -3.5533 3.5533 0.63 0.000612246 0.000569386 0.0501599 0.0466494 32 1990 24 6.64007e+06 226044 554710. 1919.41 0.83 0.123736 0.109539 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0261753 0.0227956 118 4 93 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.77 vpr 62.85 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30500 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 927 16303 4785 8793 2725 62.8 MiB 0.16 0.00 4.16476 -135.871 -4.16476 4.16476 0.64 0.000765219 0.000710821 0.0577329 0.0535618 32 2289 21 6.64007e+06 414414 554710. 1919.41 0.84 0.144242 0.127709 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0187321 0.0167692 139 59 60 32 58 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.16 vpr 63.20 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30336 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 24.5 MiB 0.11 1051 17397 5163 9750 2484 63.2 MiB 0.17 0.00 4.41596 -136.112 -4.41596 4.41596 0.63 0.000874693 0.00081956 0.0653336 0.0605845 26 2942 23 6.64007e+06 401856 477104. 1650.88 1.37 0.161089 0.14288 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.20 0.10 0.11 -1 -1 0.20 0.0351537 0.0305773 136 88 28 28 88 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 3.84 vpr 62.85 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30584 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 24.6 MiB 0.09 1159 10441 2545 7247 649 62.8 MiB 0.12 0.00 4.95022 -163.094 -4.95022 4.95022 0.71 0.000792931 0.000736999 0.0382021 0.0354709 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.04 0.136474 0.120295 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0350806 0.0307806 179 3 156 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.12 vpr 62.81 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30524 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 24.2 MiB 0.15 813 9732 2096 6039 1597 62.8 MiB 0.08 0.00 3.7815 -111.41 -3.7815 3.7815 0.63 0.000715746 0.000664134 0.0343126 0.0318428 28 2429 27 6.64007e+06 426972 500653. 1732.36 1.48 0.130716 0.114564 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.17 0.06 0.11 -1 -1 0.17 0.0246781 0.0217498 138 59 60 30 56 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.47 vpr 62.21 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 529 12292 5081 5761 1450 62.2 MiB 0.10 0.00 3.54427 -98.353 -3.54427 3.54427 0.64 0.000439955 0.000403615 0.0404621 0.0373668 32 1668 31 6.64007e+06 263718 554710. 1919.41 0.91 0.115974 0.101693 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0241623 0.0209504 107 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 63.32 MiB 0.03 7168 -1 -1 1 0.04 -1 -1 30712 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 24.8 MiB 0.16 1462 20856 5895 12562 2399 63.3 MiB 0.23 0.00 4.52196 -148.077 -4.52196 4.52196 0.64 0.000911176 0.000845836 0.0772459 0.0714878 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.03 0.18576 0.164578 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0366714 0.0319264 186 95 62 31 95 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.84 vpr 63.11 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 24.4 MiB 0.23 998 12919 3192 8538 1189 63.1 MiB 0.14 0.00 4.42996 -140.975 -4.42996 4.42996 0.64 0.00082973 0.00077044 0.060554 0.0562332 32 2535 22 6.64007e+06 276276 554710. 1919.41 0.91 0.157879 0.139453 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.035985 0.0312398 145 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.59 vpr 62.72 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 24.1 MiB 0.22 894 11948 3681 7128 1139 62.7 MiB 0.12 0.00 3.6755 -115.703 -3.6755 3.6755 0.66 0.000696569 0.000647021 0.0501565 0.0465973 32 1930 19 6.64007e+06 200928 554710. 1919.41 0.83 0.132349 0.117476 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.19 0.06 0.15 -1 -1 0.19 0.0237604 0.020748 108 89 0 0 89 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.17 vpr 62.86 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30460 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 24.2 MiB 0.08 1023 18745 6322 9498 2925 62.9 MiB 0.17 0.00 4.46396 -140.121 -4.46396 4.46396 0.65 0.000728743 0.000677377 0.0644208 0.0598041 28 3262 26 6.64007e+06 414414 500653. 1732.36 1.44 0.158692 0.140857 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0309427 0.0269668 147 34 90 30 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.69 vpr 62.98 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30752 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1135 20076 5790 11566 2720 63.0 MiB 0.20 0.00 4.51716 -144.659 -4.51716 4.51716 0.65 0.000987666 0.000911618 0.0748152 0.0694554 32 2682 21 6.64007e+06 477204 554710. 1919.41 0.89 0.179385 0.158802 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0342205 0.0297936 173 64 87 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.21 vpr 62.93 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30400 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 24.3 MiB 0.07 923 11484 2608 8162 714 62.9 MiB 0.12 0.00 3.73061 -110.59 -3.73061 3.73061 0.67 0.00072196 0.000670654 0.0402824 0.0373785 26 3004 29 6.64007e+06 426972 477104. 1650.88 1.62 0.129164 0.113641 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0315296 0.0274364 135 61 58 30 58 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.81 vpr 62.67 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30516 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1008 13516 3637 9135 744 62.7 MiB 0.14 0.00 4.19956 -142.899 -4.19956 4.19956 0.65 0.000781943 0.000725876 0.0450655 0.041736 28 2725 41 6.64007e+06 539994 500653. 1732.36 1.10 0.160164 0.140458 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0340321 0.0296331 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.29 vpr 62.99 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30496 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 24.3 MiB 0.14 988 17184 5218 8807 3159 63.0 MiB 0.18 0.00 3.62559 -123.648 -3.62559 3.62559 0.69 0.000781233 0.000724812 0.0666394 0.0618203 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.32 0.16354 0.144196 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.18 0.11 0.10 -1 -1 0.18 0.0385387 0.0334723 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.50 vpr 62.46 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 23.5 MiB 0.07 573 13430 5649 6739 1042 62.5 MiB 0.11 0.00 3.6785 -105.931 -3.6785 3.6785 0.66 0.000456864 0.00041738 0.0472114 0.0436413 28 1653 18 6.64007e+06 226044 500653. 1732.36 0.95 0.102083 0.0907808 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.023585 0.0204936 95 34 58 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.47 vpr 62.67 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30084 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 23.8 MiB 0.16 857 11783 4174 5528 2081 62.7 MiB 0.11 0.00 4.00656 -110.848 -4.00656 4.00656 0.63 0.000771003 0.000724295 0.0463133 0.0430175 30 1873 19 6.64007e+06 238602 526063. 1820.29 0.82 0.121351 0.107278 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0207409 0.0182056 112 82 0 0 82 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.78 vpr 62.84 MiB 0.02 7016 -1 -1 1 0.05 -1 -1 30432 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1100 13261 3564 8068 1629 62.8 MiB 0.12 0.00 4.80256 -145.153 -4.80256 4.80256 0.65 0.000728323 0.000676865 0.0446827 0.041501 28 2902 24 6.64007e+06 477204 500653. 1732.36 1.01 0.134972 0.119033 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0298906 0.0261146 151 34 93 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.69 vpr 62.64 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30372 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.9 MiB 0.17 620 10442 2502 7352 588 62.6 MiB 0.09 0.00 3.6803 -100.526 -3.6803 3.6803 0.65 0.000602596 0.00056042 0.0324745 0.0301407 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.11 0.115906 0.101214 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0225636 0.0195846 108 56 29 29 52 26 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.62 vpr 62.75 MiB 0.02 6772 -1 -1 1 0.05 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.14 691 13906 4599 7385 1922 62.8 MiB 0.13 0.00 3.53127 -120.288 -3.53127 3.53127 0.66 0.000646162 0.000600867 0.0536383 0.0499105 32 2039 20 6.64007e+06 213486 554710. 1919.41 0.86 0.131636 0.116643 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0264044 0.0230142 118 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.84 vpr 62.97 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30588 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 24.4 MiB 0.12 999 13261 3446 8635 1180 63.0 MiB 0.13 0.00 3.5665 -119.865 -3.5665 3.5665 0.67 0.000753069 0.000700131 0.0460652 0.0427129 30 2030 20 6.64007e+06 477204 526063. 1820.29 0.82 0.132461 0.116739 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0281434 0.0246253 144 64 58 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.51 vpr 62.57 MiB 0.02 6984 -1 -1 1 0.04 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 23.8 MiB 0.14 869 9368 2508 6076 784 62.6 MiB 0.09 0.00 3.34153 -105.882 -3.34153 3.34153 0.64 0.000628762 0.000585022 0.0368969 0.0343516 32 1935 19 6.64007e+06 213486 554710. 1919.41 0.81 0.111414 0.0982209 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.20 0.06 0.15 -1 -1 0.20 0.0236052 0.0205975 106 55 31 31 53 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.95 vpr 62.85 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30544 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 24.0 MiB 0.14 879 9865 2512 6573 780 62.8 MiB 0.10 0.00 3.57229 -117.612 -3.57229 3.57229 0.70 0.000747709 0.000694802 0.0357745 0.0332191 28 2622 27 6.64007e+06 414414 500653. 1732.36 1.18 0.130126 0.114437 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0291816 0.0255959 137 65 52 26 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.74 vpr 63.13 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30428 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.25 875 10540 2287 7686 567 63.1 MiB 0.11 0.00 3.79366 -119.555 -3.79366 3.79366 0.64 0.000791213 0.000734819 0.0389231 0.0361057 30 2033 25 6.64007e+06 464646 526063. 1820.29 0.89 0.137661 0.120894 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0298256 0.0260566 149 93 31 31 92 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.57 vpr 62.71 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.0 MiB 0.15 816 8626 2345 5890 391 62.7 MiB 0.09 0.00 3.06096 -106.925 -3.06096 3.06096 0.64 0.000663626 0.000616966 0.0346069 0.0321608 32 2043 18 6.64007e+06 226044 554710. 1919.41 0.87 0.115809 0.101231 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0291058 0.0254055 115 61 32 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.62 vpr 62.65 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30188 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.17 920 11296 3024 7326 946 62.7 MiB 0.11 0.00 3.5031 -121.121 -3.5031 3.5031 0.66 0.000672425 0.000624742 0.045022 0.0418272 30 2197 20 6.64007e+06 226044 526063. 1820.29 0.82 0.124642 0.110364 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0273739 0.0238382 121 63 32 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.50 vpr 62.93 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30768 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1027 12240 2965 8371 904 62.9 MiB 0.12 0.00 4.25676 -144.495 -4.25676 4.25676 0.63 0.000773013 0.000717401 0.0422635 0.0391933 32 2501 30 6.64007e+06 477204 554710. 1919.41 0.76 0.108207 0.0959152 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0333425 0.0290399 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.66 vpr 63.04 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30516 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1021 16079 4076 10280 1723 63.0 MiB 0.18 0.00 3.7925 -111.563 -3.7925 3.7925 0.64 0.000732658 0.000681636 0.063549 0.0589393 32 2199 23 6.64007e+06 426972 554710. 1919.41 0.83 0.1556 0.137191 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0286238 0.0250386 135 62 56 29 58 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.85 vpr 62.89 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 24.4 MiB 0.24 937 9020 1835 6701 484 62.9 MiB 0.10 0.00 4.29776 -145.038 -4.29776 4.29776 0.67 0.000852686 0.000790953 0.0352488 0.0327114 32 2670 31 6.64007e+06 489762 554710. 1919.41 0.95 0.148463 0.129517 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0353782 0.0306721 158 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.37 vpr 62.15 MiB 0.05 6740 -1 -1 1 0.03 -1 -1 30504 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 804 11948 3966 6404 1578 62.1 MiB 0.10 0.00 3.08296 -103.61 -3.08296 3.08296 0.65 0.000573544 0.000534111 0.0418632 0.0389878 32 1812 20 6.64007e+06 213486 554710. 1919.41 0.77 0.108873 0.0963511 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0236629 0.0205892 106 4 85 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.84 vpr 62.84 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30548 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 24.2 MiB 0.13 998 18111 4956 10747 2408 62.8 MiB 0.17 0.00 4.26296 -139.632 -4.26296 4.26296 0.65 0.000775327 0.000719281 0.0645162 0.059778 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.22 0.16459 0.145722 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.16 0.05 0.06 -1 -1 0.16 0.0179052 0.0158423 144 92 28 28 92 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.66 vpr 63.04 MiB 0.04 6944 -1 -1 1 0.04 -1 -1 30116 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.3 MiB 0.29 734 13381 4309 7077 1995 63.0 MiB 0.13 0.00 3.54047 -121.881 -3.54047 3.54047 0.64 0.000715267 0.000663699 0.0573444 0.0532458 28 2004 19 6.64007e+06 213486 500653. 1732.36 0.82 0.143448 0.127503 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0294383 0.02566 114 96 0 0 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.63 vpr 62.95 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30316 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1102 9501 2041 6911 549 63.0 MiB 0.11 0.00 3.5841 -124.322 -3.5841 3.5841 0.65 0.000770066 0.000715436 0.0340486 0.0316187 30 2381 21 6.64007e+06 464646 526063. 1820.29 0.86 0.134402 0.117752 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0283215 0.024894 151 65 61 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.13 vpr 63.33 MiB 0.03 7156 -1 -1 1 0.04 -1 -1 30936 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 24.9 MiB 0.22 1244 16489 4012 10933 1544 63.3 MiB 0.19 0.00 4.96651 -168.366 -4.96651 4.96651 0.67 0.00092804 0.000862132 0.0701169 0.065029 26 3486 28 6.64007e+06 565110 477104. 1650.88 2.17 0.188052 0.165947 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.18 0.11 0.08 -1 -1 0.18 0.0361165 0.031558 188 96 64 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.31 vpr 62.08 MiB 0.03 6784 -1 -1 1 0.03 -1 -1 30148 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.4 MiB 0.08 483 10509 2545 7262 702 62.1 MiB 0.08 0.00 2.73878 -81.5531 -2.73878 2.73878 0.65 0.00052924 0.000492155 0.0358284 0.0333551 28 1397 23 6.64007e+06 188370 500653. 1732.36 0.77 0.10014 0.0880357 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.17 0.05 0.11 -1 -1 0.17 0.0216446 0.0187493 83 56 0 0 53 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.41 vpr 62.17 MiB 0.03 6956 -1 -1 1 0.03 -1 -1 30372 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63660 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 23.5 MiB 0.08 793 10388 3558 5136 1694 62.2 MiB 0.07 0.00 3.6815 -114.291 -3.6815 3.6815 0.73 0.000616805 0.000573515 0.0283126 0.0262449 32 1615 19 6.64007e+06 213486 554710. 1919.41 0.78 0.100509 0.0881538 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0245803 0.0214329 97 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.66 vpr 62.61 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.9 MiB 0.11 798 13966 5020 6560 2386 62.6 MiB 0.13 0.00 3.4859 -119.604 -3.4859 3.4859 0.64 0.000646211 0.000600452 0.0530012 0.0492348 32 2382 23 6.64007e+06 226044 554710. 1919.41 0.93 0.131792 0.116789 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0274288 0.0238717 126 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.42 vpr 62.14 MiB 0.03 6916 -1 -1 1 0.03 -1 -1 30436 -1 -1 34 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63632 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.5 MiB 0.05 678 12127 3168 7672 1287 62.1 MiB 0.10 0.00 3.4089 -91.215 -3.4089 3.4089 0.63 0.000762538 0.000708997 0.0339782 0.0316566 26 1687 20 6.64007e+06 426972 477104. 1650.88 0.94 0.0971062 0.0853718 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0233551 0.0201962 103 34 50 25 25 25 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.77 vpr 62.98 MiB 0.05 7008 -1 -1 1 0.04 -1 -1 30548 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1064 14828 5337 7470 2021 63.0 MiB 0.16 0.00 4.34676 -140.278 -4.34676 4.34676 0.64 0.000802022 0.000744616 0.0656436 0.0609464 32 2475 24 6.64007e+06 276276 554710. 1919.41 0.90 0.163639 0.14489 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.27 0.07 0.12 -1 -1 0.27 0.0268572 0.023701 149 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.45 vpr 63.04 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30364 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 24.4 MiB 0.17 786 10336 2273 7345 718 63.0 MiB 0.11 0.00 3.53327 -114.261 -3.53327 3.53327 0.64 0.00101929 0.000933286 0.0378106 0.0349707 28 2510 49 6.64007e+06 489762 500653. 1732.36 1.71 0.165672 0.144622 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0304777 0.0266013 148 94 29 29 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.78 vpr 62.67 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30620 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 24.5 MiB 0.21 984 7523 1506 5708 309 62.7 MiB 0.09 0.00 3.92206 -133.487 -3.92206 3.92206 0.64 0.000809792 0.000752004 0.0300029 0.02782 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.08 0.132418 0.11575 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.18 0.09 0.08 -1 -1 0.18 0.0304517 0.0265385 151 96 32 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.70 vpr 62.96 MiB 0.05 7108 -1 -1 1 0.04 -1 -1 30572 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 24.2 MiB 0.31 986 12323 4513 6271 1539 63.0 MiB 0.08 0.00 4.33507 -129.747 -4.33507 4.33507 0.65 0.000344815 0.000317708 0.0257176 0.0237632 32 2540 23 6.65987e+06 266238 554710. 1919.41 0.82 0.117595 0.102598 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0312099 0.027203 140 91 30 30 89 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.73 vpr 62.88 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30404 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1040 16523 4439 10256 1828 62.9 MiB 0.15 0.00 3.41879 -119.689 -3.41879 3.41879 0.63 0.000743191 0.000689694 0.0571518 0.0530765 28 2534 22 6.65987e+06 431052 500653. 1732.36 1.05 0.145688 0.129103 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.19 0.09 0.11 -1 -1 0.19 0.0324746 0.0282694 141 65 54 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.40 vpr 62.63 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30444 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 24.1 MiB 0.11 793 11603 2857 6819 1927 62.6 MiB 0.07 0.00 4.2977 -123.649 -4.2977 4.2977 0.71 0.000696309 0.000647326 0.0241568 0.022322 34 2278 23 6.65987e+06 278916 585099. 2024.56 1.67 0.154266 0.133557 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.20 0.09 0.13 -1 -1 0.20 0.0328465 0.0287523 138 34 87 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.02 vpr 62.72 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1026 15456 4961 8586 1909 62.7 MiB 0.16 0.00 4.14936 -143.085 -4.14936 4.14936 0.64 0.000738993 0.000686648 0.0653041 0.060671 32 2926 21 6.65987e+06 253560 554710. 1919.41 0.92 0.15429 0.137314 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0341645 0.0298938 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.79 vpr 62.69 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1029 9501 1978 7135 388 62.7 MiB 0.10 0.00 3.43623 -117.882 -3.43623 3.43623 0.65 0.000769948 0.000712758 0.0338278 0.0313746 32 2567 26 6.65987e+06 469086 554710. 1919.41 0.86 0.12975 0.113679 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.22 0.08 0.13 -1 -1 0.22 0.0318188 0.0278025 154 64 63 32 63 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.60 vpr 61.91 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30808 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63392 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 23.3 MiB 0.18 580 13026 4344 6329 2353 61.9 MiB 0.12 0.00 3.7565 -98.351 -3.7565 3.7565 0.75 0.000567201 0.000527919 0.0509653 0.047448 30 1363 17 6.65987e+06 240882 526063. 1820.29 0.78 0.115784 0.102776 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0205585 0.0180041 96 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.62 vpr 62.64 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30228 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1006 10170 2426 6636 1108 62.6 MiB 0.10 0.00 3.27903 -106.33 -3.27903 3.27903 0.65 0.000676177 0.000628649 0.0347205 0.032285 28 2449 18 6.65987e+06 418374 500653. 1732.36 0.90 0.111753 0.0985446 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0263728 0.0230883 139 4 115 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.66 vpr 62.41 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 23.7 MiB 0.27 870 11571 3268 6617 1686 62.4 MiB 0.11 0.00 3.07084 -101.313 -3.07084 3.07084 0.67 0.000664646 0.000617713 0.04847 0.0450797 32 1812 21 6.65987e+06 202848 554710. 1919.41 0.78 0.126011 0.111481 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0262122 0.0228715 105 85 0 0 84 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.16 vpr 62.44 MiB 0.06 6820 -1 -1 1 0.03 -1 -1 30464 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 23.7 MiB 0.28 642 11432 4032 4649 2751 62.4 MiB 0.10 0.00 3.56921 -118.924 -3.56921 3.56921 0.63 0.000655871 0.000609079 0.0453333 0.0421093 36 2032 39 6.65987e+06 202848 612192. 2118.31 2.24 0.191647 0.166991 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0275798 0.0241721 121 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.88 vpr 62.64 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30184 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 0.26 784 11571 3060 7609 902 62.6 MiB 0.11 0.00 3.4841 -113.76 -3.4841 3.4841 0.64 0.00065046 0.000604685 0.0468917 0.0436505 32 1689 20 6.65987e+06 215526 554710. 1919.41 0.87 0.130299 0.115416 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.23 0.07 0.12 -1 -1 0.23 0.0293567 0.0254978 110 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.70 vpr 62.42 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30484 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.7 MiB 0.25 841 11223 2602 8034 587 62.4 MiB 0.11 0.00 3.27957 -108.894 -3.27957 3.27957 0.65 0.000659311 0.000611112 0.0378672 0.0351403 30 1969 21 6.65987e+06 367662 526063. 1820.29 0.87 0.118192 0.104153 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0249791 0.0218061 114 65 25 25 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.99 vpr 62.78 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 24.0 MiB 0.36 1002 18711 5900 10256 2555 62.8 MiB 0.18 0.00 3.50686 -122.446 -3.50686 3.50686 0.65 0.000750831 0.000696554 0.0677127 0.0627021 32 2409 24 6.65987e+06 405696 554710. 1919.41 0.93 0.158304 0.140707 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0317277 0.0276627 143 58 64 32 57 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.43 vpr 62.46 MiB 0.02 6996 -1 -1 1 0.04 -1 -1 30576 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 24.0 MiB 0.29 942 7973 1567 6126 280 62.5 MiB 0.09 0.00 4.02327 -135.611 -4.02327 4.02327 0.87 0.000618028 0.000567462 0.0256015 0.0235677 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.04 0.119624 0.104685 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.21 0.10 0.13 -1 -1 0.21 0.0344855 0.0301231 156 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.60 vpr 62.16 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30632 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 23.8 MiB 0.17 686 7177 1709 4538 930 62.2 MiB 0.07 0.00 3.15358 -93.6229 -3.15358 3.15358 0.65 0.000583404 0.000543612 0.0265262 0.0247235 28 1802 20 6.65987e+06 228204 500653. 1732.36 0.79 0.0947739 0.083094 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.24 0.08 0.12 -1 -1 0.24 0.0356502 0.0314816 107 29 58 29 24 24 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.50 vpr 62.88 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30404 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 24.2 MiB 0.30 1074 13992 4161 7846 1985 62.9 MiB 0.14 0.00 3.5141 -125.301 -3.5141 3.5141 0.88 0.000597023 0.00054735 0.0487722 0.044764 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.03 0.125802 0.111277 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0319986 0.02813 146 63 64 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.46 vpr 62.90 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30296 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 24.3 MiB 0.34 934 18323 6450 8556 3317 62.9 MiB 0.15 0.00 3.6343 -123.732 -3.6343 3.6343 0.64 0.000727331 0.000672626 0.0640976 0.0595207 30 2475 27 6.65987e+06 431052 526063. 1820.29 1.49 0.164195 0.146008 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.18 0.07 0.09 -1 -1 0.18 0.027872 0.0245105 142 57 64 32 56 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.53 vpr 62.79 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30056 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.19 832 15430 4777 8349 2304 62.8 MiB 0.14 0.00 2.83964 -101.748 -2.83964 2.83964 0.63 0.000679661 0.000630926 0.0514787 0.0477813 30 1919 16 6.65987e+06 380340 526063. 1820.29 0.77 0.125249 0.111012 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0235774 0.0206696 118 65 29 29 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.45 vpr 61.64 MiB 0.02 6648 -1 -1 1 0.03 -1 -1 30288 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63120 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.2 MiB 0.12 661 10835 3152 6204 1479 61.6 MiB 0.08 0.00 2.60038 -85.2282 -2.60038 2.60038 0.66 0.000601778 0.00055492 0.0354827 0.0330116 28 1412 25 6.65987e+06 190170 500653. 1732.36 0.75 0.0987736 0.0869962 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.018376 0.0159886 85 34 24 24 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.65 vpr 62.57 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30424 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 23.9 MiB 0.20 855 13768 4604 7573 1591 62.6 MiB 0.13 0.00 3.94338 -122.155 -3.94338 3.94338 0.64 0.000659835 0.000613017 0.0578196 0.0537615 32 1948 20 6.65987e+06 202848 554710. 1919.41 0.81 0.137082 0.121579 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0238189 0.0208769 113 64 31 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.59 vpr 62.84 MiB 0.02 6928 -1 -1 1 0.04 -1 -1 30340 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 24.2 MiB 0.06 1021 12248 3399 7922 927 62.8 MiB 0.12 0.00 3.9823 -134.861 -3.9823 3.9823 0.65 0.000718081 0.000664225 0.0428026 0.0397435 26 2573 27 6.65987e+06 431052 477104. 1650.88 0.98 0.136722 0.120444 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0320781 0.0280901 145 34 91 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.94 vpr 62.72 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 30572 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1084 15644 4587 8678 2379 62.7 MiB 0.15 0.00 3.46744 -121.209 -3.46744 3.46744 0.67 0.000843363 0.000783129 0.0608548 0.0565342 32 2893 24 6.65987e+06 456408 554710. 1919.41 0.94 0.166898 0.147133 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0377261 0.0328294 149 124 0 0 125 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.28 vpr 61.62 MiB 0.02 6724 -1 -1 1 0.03 -1 -1 30552 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63096 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.0 MiB 0.15 410 10345 3142 6004 1199 61.6 MiB 0.07 0.00 2.61938 -68.655 -2.61938 2.61938 0.63 0.000440883 0.00040938 0.0303597 0.0282489 30 1108 22 6.65987e+06 215526 526063. 1820.29 0.71 0.0830307 0.0732116 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.18 0.04 0.14 -1 -1 0.18 0.0157633 0.0137968 77 30 26 26 22 22 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.52 vpr 62.74 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1123 11064 3077 6737 1250 62.7 MiB 0.12 0.00 4.10424 -135.549 -4.10424 4.10424 0.60 0.000690645 0.000642303 0.0442303 0.0411699 32 2636 25 6.65987e+06 253560 554710. 1919.41 0.89 0.1307 0.115484 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0290035 0.0255074 137 3 122 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.40 vpr 61.63 MiB 0.02 6712 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63108 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.0 MiB 0.04 594 8553 1943 6358 252 61.6 MiB 0.07 0.00 2.22607 -81.0919 -2.22607 2.22607 0.69 0.000467776 0.000435397 0.0271284 0.0252266 28 1546 23 6.65987e+06 164814 500653. 1732.36 0.90 0.092641 0.081581 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.17 0.04 0.11 -1 -1 0.17 0.0141677 0.0125464 81 3 53 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.71 vpr 62.89 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30508 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.07 1112 19189 6002 11213 1974 62.9 MiB 0.18 0.00 4.06247 -140.472 -4.06247 4.06247 0.64 0.000735489 0.000682684 0.0695124 0.0644878 32 2640 23 6.65987e+06 418374 554710. 1919.41 0.92 0.158962 0.141374 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.21 0.10 0.12 -1 -1 0.21 0.0342125 0.0300857 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.72 vpr 62.70 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30112 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.15 1134 16059 4004 10217 1838 62.7 MiB 0.15 0.00 3.38184 -119.391 -3.38184 3.38184 0.66 0.000545831 0.000501028 0.050128 0.0465176 30 2437 23 6.65987e+06 443730 526063. 1820.29 0.88 0.135047 0.119558 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0291351 0.0254669 150 3 124 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.37 vpr 62.63 MiB 0.02 6936 -1 -1 1 0.04 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1120 14463 4038 8924 1501 62.6 MiB 0.16 0.00 3.91784 -136.256 -3.91784 3.91784 0.64 0.000938635 0.000872578 0.0545017 0.0506019 28 2877 24 6.65987e+06 443730 500653. 1732.36 1.29 0.153439 0.13593 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.20 0.11 0.13 -1 -1 0.20 0.0380745 0.0332444 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.52 vpr 62.19 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30164 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 23.7 MiB 0.06 736 8191 2107 5347 737 62.2 MiB 0.08 0.00 2.8895 -100.047 -2.8895 2.8895 0.66 0.000616876 0.00057359 0.0325978 0.0303512 28 1959 23 6.65987e+06 190170 500653. 1732.36 0.81 0.107934 0.0949648 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.24 0.06 0.10 -1 -1 0.24 0.0230211 0.0201368 106 34 54 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.74 vpr 62.43 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.7 MiB 0.12 832 12156 3666 7026 1464 62.4 MiB 0.11 0.00 3.4951 -115.55 -3.4951 3.4951 0.66 0.000613693 0.000570723 0.045411 0.0422522 32 1928 21 6.65987e+06 240882 554710. 1919.41 0.82 0.119352 0.105675 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0245931 0.021542 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.72 vpr 62.18 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30468 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.7 MiB 0.12 590 7820 1903 5456 461 62.2 MiB 0.08 0.00 3.4309 -99.7277 -3.4309 3.4309 0.66 0.000586781 0.000546298 0.0287992 0.0267962 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.05 0.115158 0.100443 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0243158 0.0211755 107 34 56 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.61 vpr 62.44 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30512 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.7 MiB 0.12 686 12008 2561 8162 1285 62.4 MiB 0.10 0.00 3.4859 -118.026 -3.4859 3.4859 0.65 0.000614104 0.000571435 0.0433436 0.0403278 32 2225 24 6.65987e+06 228204 554710. 1919.41 0.94 0.12409 0.109888 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0261458 0.0229299 125 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.40 vpr 62.27 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30328 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.08 778 11809 2809 7761 1239 62.3 MiB 0.11 0.00 3.29178 -109.233 -3.29178 3.29178 0.76 0.000632262 0.000587894 0.0367419 0.0341078 26 2453 37 6.65987e+06 393018 477104. 1650.88 1.46 0.127783 0.111946 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.16 0.08 0.06 -1 -1 0.16 0.0256641 0.0223509 119 34 61 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.55 vpr 62.50 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30236 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 23.7 MiB 0.19 717 8047 1725 5786 536 62.5 MiB 0.08 0.00 2.76744 -86.2128 -2.76744 2.76744 0.64 0.000486762 0.000446094 0.0271978 0.0251921 32 1839 18 6.65987e+06 380340 554710. 1919.41 0.82 0.0964644 0.0844708 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.21 0.07 0.13 -1 -1 0.21 0.0254877 0.0223402 109 61 29 29 57 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.24 vpr 62.72 MiB 0.05 7180 -1 -1 1 0.05 -1 -1 30560 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1246 13117 3185 8526 1406 62.7 MiB 0.15 0.00 4.16036 -141.523 -4.16036 4.16036 0.65 0.000837396 0.000779058 0.0485236 0.0451188 26 4082 47 6.65987e+06 494442 477104. 1650.88 3.31 0.187362 0.164646 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.17 0.12 0.10 -1 -1 0.17 0.0327446 0.0288259 179 29 128 32 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.68 vpr 62.93 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30540 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 24.5 MiB 0.22 1041 9447 2232 6542 673 62.9 MiB 0.11 0.00 3.5061 -122.514 -3.5061 3.5061 0.67 0.000775963 0.00071838 0.03559 0.0329359 32 2399 23 6.65987e+06 443730 554710. 1919.41 0.88 0.127609 0.111981 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0296716 0.0260214 152 65 62 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.42 vpr 62.61 MiB 0.05 6992 -1 -1 1 0.04 -1 -1 30508 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 23.8 MiB 0.32 709 5599 957 4403 239 62.6 MiB 0.07 0.00 3.18838 -103.883 -3.18838 3.18838 0.68 0.000684041 0.000636138 0.0218387 0.0202942 26 2166 21 6.65987e+06 354984 477104. 1650.88 1.52 0.107343 0.0935397 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0287437 0.0249188 113 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.80 vpr 62.71 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30528 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1062 14541 4862 7202 2477 62.7 MiB 0.15 0.00 3.4921 -118.867 -3.4921 3.4921 0.66 0.00069921 0.000645777 0.0620453 0.0576392 32 2506 18 6.65987e+06 266238 554710. 1919.41 0.84 0.147518 0.131138 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0325776 0.0285071 148 64 60 30 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.82 vpr 63.00 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30504 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1075 7953 1851 5455 647 63.0 MiB 0.10 0.00 4.84238 -140.996 -4.84238 4.84238 0.64 0.000833417 0.000774336 0.0388296 0.0360857 30 2507 19 6.65987e+06 266238 526063. 1820.29 0.89 0.129577 0.11403 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0303767 0.0266649 149 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.76 vpr 62.91 MiB 0.03 7192 -1 -1 1 0.05 -1 -1 30392 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 24.2 MiB 0.38 977 8868 2457 6032 379 62.9 MiB 0.10 0.00 4.78027 -132.334 -4.78027 4.78027 0.64 0.000772969 0.00071824 0.0399795 0.0371651 30 2304 21 6.65987e+06 266238 526063. 1820.29 0.83 0.131159 0.115448 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0262971 0.0231833 143 90 31 31 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.26 vpr 62.64 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30412 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1043 11922 3052 7896 974 62.6 MiB 0.15 0.00 3.40784 -114.93 -3.40784 3.40784 0.67 0.000764538 0.000709662 0.0495888 0.0458193 26 2879 21 6.65987e+06 418374 477104. 1650.88 1.27 0.138671 0.122224 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.18 0.11 0.10 -1 -1 0.18 0.0374524 0.0326004 146 64 60 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.65 vpr 62.65 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30844 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.12 1091 9903 2241 6952 710 62.7 MiB 0.11 0.00 3.91784 -134.792 -3.91784 3.91784 0.64 0.000769042 0.000714512 0.036182 0.0336156 30 2568 27 6.65987e+06 443730 526063. 1820.29 0.92 0.134481 0.118161 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.20 0.08 0.13 -1 -1 0.20 0.0330949 0.0289531 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.09 vpr 63.06 MiB 0.04 7268 -1 -1 1 0.04 -1 -1 30632 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1177 18648 4595 11838 2215 63.1 MiB 0.21 0.00 4.0593 -137.323 -4.0593 4.0593 0.64 0.000907617 0.000842397 0.0730646 0.0677843 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.04 0.18259 0.161712 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.039302 0.034334 184 96 62 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.42 vpr 62.54 MiB 0.03 6832 -1 -1 1 0.02 -1 -1 30660 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 685 11806 2914 7153 1739 62.5 MiB 0.11 0.00 3.55518 -111.493 -3.55518 3.55518 0.60 0.000627651 0.000583741 0.0454916 0.0423698 32 2030 23 6.65987e+06 228204 554710. 1919.41 0.85 0.122125 0.108067 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.19 0.07 0.10 -1 -1 0.19 0.0250079 0.0218439 116 34 62 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.16 vpr 62.51 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30452 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.27 976 9675 2155 7053 467 62.5 MiB 0.11 0.00 4.0281 -131.561 -4.0281 4.0281 0.68 0.000757609 0.000704246 0.0349931 0.0325048 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.30 0.128477 0.112874 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0323436 0.0282261 150 64 62 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.72 vpr 62.96 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30564 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 24.1 MiB 0.12 1040 11641 3109 7665 867 63.0 MiB 0.13 0.00 3.62624 -117.445 -3.62624 3.62624 0.66 0.000763023 0.000708828 0.0428777 0.0397849 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.05 0.140709 0.123982 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.0292194 0.0256143 148 63 62 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.03 vpr 62.44 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30560 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 24.0 MiB 0.14 853 8685 1897 5601 1187 62.4 MiB 0.09 0.00 4.14936 -138.467 -4.14936 4.14936 0.66 0.000714112 0.00066334 0.0356344 0.0330795 32 3554 31 6.65987e+06 253560 554710. 1919.41 1.21 0.119221 0.104964 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.0341263 0.0300601 150 3 128 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.90 vpr 62.91 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1097 11798 3144 7589 1065 62.9 MiB 0.13 0.00 3.29555 -116.715 -3.29555 3.29555 0.64 0.000789388 0.000732844 0.0449829 0.0416769 32 2610 28 6.65987e+06 431052 554710. 1919.41 0.95 0.143859 0.126648 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0423671 0.036921 145 96 25 25 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.83 vpr 62.57 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30476 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1042 7623 1446 5778 399 62.6 MiB 0.09 0.00 3.5841 -121.365 -3.5841 3.5841 0.64 0.000765022 0.000709614 0.0282191 0.0262215 32 2739 23 6.65987e+06 443730 554710. 1919.41 0.90 0.121539 0.106139 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.19 0.09 0.14 -1 -1 0.19 0.0298541 0.0262543 146 61 64 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.73 vpr 62.61 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30424 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1118 19136 5296 11671 2169 62.6 MiB 0.19 0.00 3.42984 -118.83 -3.42984 3.42984 0.59 0.000775195 0.000719231 0.0661715 0.0612942 32 2579 24 6.65987e+06 469086 554710. 1919.41 0.89 0.169748 0.150184 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.22 0.09 0.12 -1 -1 0.22 0.034144 0.029891 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.57 vpr 62.43 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.07 1049 17883 5721 9099 3063 62.4 MiB 0.17 0.00 4.02327 -139.097 -4.02327 4.02327 0.60 0.00074002 0.000684777 0.0617647 0.0573754 32 2663 21 6.65987e+06 443730 554710. 1919.41 0.91 0.150493 0.133842 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0356784 0.0310904 150 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.93 vpr 62.58 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1032 17491 4961 10150 2380 62.6 MiB 0.16 0.00 3.95704 -138.916 -3.95704 3.95704 0.65 0.000781284 0.000725712 0.060515 0.0561538 32 2565 23 6.65987e+06 469086 554710. 1919.41 0.91 0.156774 0.1388 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.28 0.09 0.12 -1 -1 0.28 0.0299453 0.0264942 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 3.89 vpr 62.74 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30476 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 24.5 MiB 0.38 1081 15859 4297 9232 2330 62.7 MiB 0.16 0.00 4.24338 -127.817 -4.24338 4.24338 0.66 0.000818516 0.000758987 0.0615839 0.0570575 28 2788 21 6.65987e+06 431052 500653. 1732.36 0.91 0.159928 0.141205 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.20 0.08 0.11 -1 -1 0.20 0.0313545 0.0273084 145 122 0 0 122 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.84 vpr 62.99 MiB 0.04 7116 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1088 15822 4733 9518 1571 63.0 MiB 0.17 0.00 4.01118 -127.976 -4.01118 4.01118 0.63 0.000816562 0.000758681 0.073541 0.0683868 32 2771 23 6.65987e+06 253560 554710. 1919.41 0.91 0.173218 0.153771 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.19 0.10 0.14 -1 -1 0.19 0.0375222 0.0328049 149 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.34 vpr 62.48 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30608 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 23.7 MiB 0.07 798 8401 2034 5819 548 62.5 MiB 0.09 0.00 3.27158 -111.236 -3.27158 3.27158 0.63 0.000654809 0.000602127 0.0276186 0.0256554 30 1935 19 6.65987e+06 380340 526063. 1820.29 0.83 0.102596 0.0900605 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0261568 0.0228501 124 34 63 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.74 vpr 62.69 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30348 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.26 912 11830 3154 7792 884 62.7 MiB 0.13 0.00 3.41618 -118.934 -3.41618 3.41618 0.65 0.000701766 0.000650887 0.0499572 0.0463826 32 2244 21 6.65987e+06 228204 554710. 1919.41 0.85 0.134778 0.119009 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.029552 0.0257673 121 94 0 0 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.89 vpr 63.05 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30780 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 24.9 MiB 0.15 1362 14988 3862 9734 1392 63.1 MiB 0.14 0.00 4.6627 -159.741 -4.6627 4.6627 0.67 0.000735348 0.000674342 0.0409575 0.0376465 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.03 0.153144 0.133909 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0379304 0.0330853 187 65 96 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.72 vpr 62.70 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30320 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 954 14567 4735 7432 2400 62.7 MiB 0.14 0.00 3.51422 -121.562 -3.51422 3.51422 0.64 0.000733427 0.000681526 0.0519425 0.0482695 32 2533 23 6.65987e+06 393018 554710. 1919.41 0.94 0.140451 0.124348 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0306468 0.0268595 146 34 92 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.43 vpr 62.32 MiB 0.06 6772 -1 -1 1 0.03 -1 -1 30300 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 23.7 MiB 0.08 839 17066 5534 9253 2279 62.3 MiB 0.14 0.00 3.49012 -114.14 -3.49012 3.49012 0.63 0.000624954 0.000582346 0.053231 0.0494946 32 1859 23 6.65987e+06 380340 554710. 1919.41 0.80 0.126959 0.112552 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0272575 0.0236996 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.28 vpr 63.07 MiB 0.03 7440 -1 -1 1 0.04 -1 -1 30928 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 24.9 MiB 0.53 1333 18829 5161 11634 2034 63.1 MiB 0.21 0.00 4.64147 -157.361 -4.64147 4.64147 0.63 0.000952758 0.000882584 0.0748397 0.0693026 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.03 0.190972 0.169073 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0389888 0.0340168 186 127 32 32 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.71 vpr 62.50 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1044 16340 4500 10034 1806 62.5 MiB 0.15 0.00 4.15932 -143.209 -4.15932 4.15932 0.64 0.000742717 0.000689388 0.0550826 0.0511361 28 2433 22 6.65987e+06 456408 500653. 1732.36 0.87 0.145136 0.128588 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0264479 0.0232405 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.58 vpr 62.54 MiB 0.04 6736 -1 -1 1 0.03 -1 -1 30308 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 23.7 MiB 0.08 722 13703 3609 8489 1605 62.5 MiB 0.12 0.00 3.4859 -117.474 -3.4859 3.4859 0.64 0.000509563 0.000466631 0.0413225 0.0383061 28 2223 23 6.65987e+06 393018 500653. 1732.36 0.98 0.116584 0.102947 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0259409 0.0226801 123 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.74 vpr 62.88 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30776 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 24.7 MiB 0.14 1337 12702 3419 8223 1060 62.9 MiB 0.14 0.00 4.90437 -166.477 -4.90437 4.90437 0.65 0.000858617 0.000798689 0.0470784 0.0437851 30 3011 23 6.65987e+06 519798 526063. 1820.29 0.93 0.14967 0.131835 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0354023 0.0309891 188 34 128 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.65 vpr 62.32 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30304 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 23.8 MiB 0.15 852 11260 3935 5447 1878 62.3 MiB 0.10 0.00 3.4749 -119.679 -3.4749 3.4749 0.64 0.00063525 0.000582271 0.0426567 0.0396897 32 2124 48 6.65987e+06 202848 554710. 1919.41 0.96 0.140232 0.12312 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0246848 0.0215664 121 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.62 vpr 62.19 MiB 0.05 6880 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63684 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 23.6 MiB 0.18 707 8073 1842 5622 609 62.2 MiB 0.09 0.00 3.47387 -110.471 -3.47387 3.47387 0.66 0.000624242 0.000581123 0.0244039 0.0225586 28 1935 20 6.65987e+06 393018 500653. 1732.36 0.81 0.0966993 0.0845194 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0267687 0.0233655 113 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.58 vpr 62.66 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 30360 -1 -1 33 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 24.0 MiB 0.27 964 15856 4550 8712 2594 62.7 MiB 0.15 0.00 3.50895 -109.722 -3.50895 3.50895 0.63 0.000751214 0.000698151 0.0576721 0.0535069 30 2020 23 6.65987e+06 418374 526063. 1820.29 0.84 0.159025 0.140483 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.22 0.06 0.12 -1 -1 0.22 0.0282237 0.0247772 133 88 29 29 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.65 vpr 62.90 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30704 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 24.2 MiB 0.12 1002 7770 1874 5369 527 62.9 MiB 0.10 0.00 4.0593 -140.547 -4.0593 4.0593 0.64 0.000766236 0.000710834 0.0351693 0.032663 32 2537 20 6.65987e+06 253560 554710. 1919.41 0.90 0.125729 0.110466 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.19 0.10 0.14 -1 -1 0.19 0.0330931 0.0289263 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.06 vpr 62.55 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30652 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1039 19223 6359 10018 2846 62.6 MiB 0.18 0.00 4.06007 -140.169 -4.06007 4.06007 0.64 0.000769709 0.00071392 0.0689799 0.0639557 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.04 0.16362 0.14536 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.17 0.09 0.07 -1 -1 0.17 0.0326348 0.0286053 152 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.71 vpr 62.58 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30604 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 23.7 MiB 0.21 697 8614 1900 5780 934 62.6 MiB 0.09 0.00 3.41884 -113.998 -3.41884 3.41884 0.64 0.000678438 0.00062919 0.0298938 0.0277444 32 1903 25 6.65987e+06 380340 554710. 1919.41 0.91 0.119155 0.104234 22834 132086 -1 1650 21 1314 2100 163030 37783 2.73351 2.73351 -110.442 -2.73351 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0280949 0.0245343 120 65 32 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.77 vpr 62.59 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30440 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 23.9 MiB 0.30 800 12464 4465 5577 2422 62.6 MiB 0.14 0.00 3.46898 -107.312 -3.46898 3.46898 0.77 0.000677636 0.000629193 0.0620627 0.0576711 32 1982 23 6.65987e+06 215526 554710. 1919.41 0.83 0.143619 0.12746 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0297124 0.0258183 109 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.22 vpr 62.69 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30420 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 24.0 MiB 0.20 996 12623 3384 8308 931 62.7 MiB 0.13 0.00 3.33164 -109.888 -3.33164 3.33164 0.64 0.000725495 0.000673787 0.0466242 0.0432373 26 2507 31 6.65987e+06 418374 477104. 1650.88 1.42 0.14643 0.128923 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0301378 0.0264004 137 60 60 30 57 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.56 vpr 62.57 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30324 -1 -1 31 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 23.9 MiB 0.10 995 16207 5283 8775 2149 62.6 MiB 0.15 0.00 4.24344 -123.397 -4.24344 4.24344 0.64 0.000665842 0.000619186 0.0554609 0.0515575 28 2478 21 6.65987e+06 393018 500653. 1732.36 0.88 0.132921 0.118081 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0286154 0.0250244 133 34 84 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.84 vpr 62.43 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30264 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 23.7 MiB 0.36 727 13152 3808 7208 2136 62.4 MiB 0.12 0.00 3.5343 -112.204 -3.5343 3.5343 0.65 0.000544335 0.000489546 0.047606 0.043977 30 1865 21 6.65987e+06 228204 526063. 1820.29 0.83 0.124699 0.110026 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.21 0.05 0.12 -1 -1 0.21 0.0230428 0.0202149 114 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.80 vpr 62.54 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30392 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 23.8 MiB 0.30 910 8164 2057 5403 704 62.5 MiB 0.08 0.00 3.44398 -109.924 -3.44398 3.44398 0.79 0.000553097 0.000506008 0.0290293 0.0266783 30 1920 20 6.65987e+06 202848 526063. 1820.29 0.83 0.110159 0.0962057 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0276936 0.0242626 113 91 0 0 91 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.08 vpr 62.70 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30204 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 24.1 MiB 0.11 1101 12023 3143 7728 1152 62.7 MiB 0.12 0.00 4.17558 -139.576 -4.17558 4.17558 0.70 0.000693696 0.000644473 0.0410847 0.0381683 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.24 0.1286 0.113996 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0260032 0.023028 150 4 124 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 3.95 vpr 62.57 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 30568 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1037 13598 4125 8601 872 62.6 MiB 0.15 0.00 4.1263 -141.609 -4.1263 4.1263 0.65 0.000780035 0.000723919 0.0522642 0.0485146 28 2566 22 6.65987e+06 431052 500653. 1732.36 1.18 0.142535 0.12639 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0335775 0.0294161 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.37 vpr 62.46 MiB 0.04 7000 -1 -1 1 0.04 -1 -1 30540 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1033 10448 2380 7653 415 62.5 MiB 0.12 0.00 4.16458 -142.258 -4.16458 4.16458 0.65 0.000781082 0.000725478 0.0399336 0.0369548 28 3079 34 6.65987e+06 431052 500653. 1732.36 1.49 0.149414 0.130886 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.03088 0.0270837 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.77 vpr 62.55 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.25 982 9031 1878 6401 752 62.6 MiB 0.10 0.00 3.86706 -126.941 -3.86706 3.86706 0.66 0.000771741 0.000716852 0.0320121 0.0296859 30 2443 22 6.65987e+06 469086 526063. 1820.29 0.90 0.127245 0.111684 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.20 0.08 0.11 -1 -1 0.20 0.0358447 0.0315433 148 65 60 30 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.98 vpr 62.46 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 23.6 MiB 0.21 656 10400 2388 7389 623 62.5 MiB 0.10 0.00 3.50927 -110.79 -3.50927 3.50927 0.69 0.000616738 0.000573255 0.0391656 0.0364384 28 2173 45 6.65987e+06 228204 500653. 1732.36 1.09 0.136403 0.119444 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0257346 0.0226014 112 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.96 vpr 62.67 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 30340 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 24.0 MiB 0.24 986 11613 3437 7269 907 62.7 MiB 0.12 0.00 4.19776 -134.76 -4.19776 4.19776 0.80 0.000568302 0.000521081 0.0391176 0.0359418 32 2227 20 6.65987e+06 278916 554710. 1919.41 0.90 0.126895 0.111177 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.26 0.08 0.13 -1 -1 0.26 0.0274918 0.0239688 145 63 60 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.07 vpr 62.79 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30864 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 0.29 1052 13117 2855 8842 1420 62.8 MiB 0.13 0.00 3.91498 -132.986 -3.91498 3.91498 0.77 0.000866717 0.000806091 0.0500562 0.0465014 32 2892 25 6.65987e+06 494442 554710. 1919.41 0.93 0.156748 0.137793 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.18 0.07 0.08 -1 -1 0.18 0.0219432 0.0192119 154 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.94 vpr 62.67 MiB 0.06 7112 -1 -1 1 0.03 -1 -1 30652 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1048 9679 2436 6757 486 62.7 MiB 0.11 0.00 3.91106 -131.073 -3.91106 3.91106 0.66 0.00079337 0.000736257 0.0368721 0.034059 28 2624 22 6.65987e+06 393018 500653. 1732.36 1.11 0.132776 0.116623 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0327955 0.0286431 146 94 31 31 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.85 vpr 62.86 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30524 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 24.2 MiB 0.30 967 14375 3613 8859 1903 62.9 MiB 0.14 0.00 3.7785 -114.4 -3.7785 3.7785 0.68 0.000584347 0.000535331 0.0433938 0.0398308 30 2034 21 6.65987e+06 380340 526063. 1820.29 0.98 0.135747 0.119321 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0291872 0.0256149 136 92 26 26 90 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.93 vpr 62.59 MiB 0.02 7036 -1 -1 1 0.04 -1 -1 30604 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1103 13477 4009 7448 2020 62.6 MiB 0.15 0.00 4.11944 -143.283 -4.11944 4.11944 0.67 0.000777769 0.000721767 0.0599668 0.0556484 32 2896 23 6.65987e+06 266238 554710. 1919.41 0.99 0.154185 0.136688 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.28 0.10 0.13 -1 -1 0.28 0.0300984 0.0268261 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.67 vpr 62.71 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30308 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 24.1 MiB 0.18 870 10463 2796 6767 900 62.7 MiB 0.11 0.00 3.39684 -102.663 -3.39684 3.39684 0.64 0.000732665 0.000680718 0.0378185 0.0350861 32 2139 21 6.65987e+06 431052 554710. 1919.41 0.92 0.127319 0.11168 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0288492 0.0251964 134 88 26 26 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.52 vpr 62.36 MiB 0.04 6668 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 23.6 MiB 0.07 838 13496 3888 8529 1079 62.4 MiB 0.14 0.00 3.5031 -123.339 -3.5031 3.5031 0.63 0.000632506 0.000588509 0.0582954 0.0541751 32 2175 23 6.65987e+06 202848 554710. 1919.41 0.90 0.138823 0.123251 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0259233 0.0226952 116 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.91 vpr 62.55 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30352 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1015 16525 5345 8784 2396 62.6 MiB 0.16 0.00 4.18856 -142.192 -4.18856 4.18856 0.64 0.00077494 0.000719046 0.0607549 0.0563711 32 2598 23 6.65987e+06 418374 554710. 1919.41 0.91 0.154999 0.137458 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.19 0.10 0.13 -1 -1 0.19 0.0358873 0.031491 150 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.70 vpr 62.58 MiB 0.02 7044 -1 -1 1 0.04 -1 -1 30568 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1026 16081 4881 8736 2464 62.6 MiB 0.17 0.00 4.23393 -146.239 -4.23393 4.23393 0.66 0.000785494 0.000730031 0.0706725 0.0656835 32 2633 23 6.65987e+06 266238 554710. 1919.41 0.91 0.165428 0.147229 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.18 0.06 0.08 -1 -1 0.18 0.0186745 0.0166259 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.25 vpr 62.53 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30396 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 24.0 MiB 0.23 688 16683 5557 7719 3407 62.5 MiB 0.13 0.00 3.44878 -105.048 -3.44878 3.44878 0.63 0.000640246 0.000594417 0.0531823 0.0493856 30 2275 33 6.65987e+06 367662 526063. 1820.29 1.44 0.141197 0.124598 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0236755 0.02091 111 55 32 32 54 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.42 vpr 62.25 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30452 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 746 13556 4162 7429 1965 62.2 MiB 0.12 0.00 3.4529 -114.38 -3.4529 3.4529 0.63 0.000598508 0.000556982 0.0487316 0.0453454 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.82 0.12063 0.106926 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0224695 0.0197176 118 4 93 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.87 vpr 62.75 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30340 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 24.1 MiB 0.29 900 5133 854 4121 158 62.7 MiB 0.07 0.00 4.0123 -128.007 -4.0123 4.0123 0.70 0.00074276 0.000690529 0.0198711 0.0184988 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.90 0.109385 0.0954485 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.23 0.08 0.12 -1 -1 0.23 0.0292306 0.0255387 138 59 60 32 58 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.91 vpr 62.55 MiB 0.03 7112 -1 -1 1 0.03 -1 -1 30348 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 24.2 MiB 0.31 879 9892 2434 7009 449 62.6 MiB 0.11 0.00 4.11224 -123.302 -4.11224 4.11224 0.71 0.000760257 0.00070598 0.0385376 0.0357803 28 2733 50 6.65987e+06 380340 500653. 1732.36 1.85 0.163268 0.142533 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0328959 0.0286655 134 88 28 28 88 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.60 vpr 62.65 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30420 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 24.4 MiB 0.07 1224 16515 4921 9863 1731 62.6 MiB 0.18 0.00 4.82096 -159.28 -4.82096 4.82096 0.86 0.000789401 0.000733334 0.0620433 0.0577253 34 3026 21 6.65987e+06 443730 585099. 2024.56 1.54 0.2139 0.188256 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0335672 0.0295164 177 3 156 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.08 vpr 62.96 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30604 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1012 13726 3606 8436 1684 63.0 MiB 0.14 0.00 3.638 -113.448 -3.638 3.638 0.72 0.000717173 0.00066628 0.0500269 0.0464165 32 2171 21 6.65987e+06 405696 554710. 1919.41 0.83 0.13402 0.118516 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.20 0.08 0.14 -1 -1 0.20 0.0305698 0.0267863 136 59 60 30 56 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.68 vpr 62.10 MiB 0.13 6940 -1 -1 1 0.03 -1 -1 30616 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 23.7 MiB 0.12 768 12754 4322 6521 1911 62.1 MiB 0.11 0.00 3.3979 -99.6122 -3.3979 3.3979 0.71 0.000570125 0.000530457 0.0463313 0.0431254 32 1581 21 6.65987e+06 253560 554710. 1919.41 0.82 0.115739 0.10254 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0257384 0.0223532 107 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 63.14 MiB 0.03 7208 -1 -1 1 0.03 -1 -1 30596 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 25.0 MiB 0.20 1366 15232 4128 9656 1448 63.1 MiB 0.17 0.00 4.15924 -136.806 -4.15924 4.15924 0.65 0.000911491 0.000845869 0.0601603 0.0557784 32 3584 25 6.65987e+06 507120 554710. 1919.41 0.99 0.174145 0.153625 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.19 0.13 0.12 -1 -1 0.19 0.0419947 0.0365706 184 95 62 31 95 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.94 vpr 62.96 MiB 0.03 7208 -1 -1 1 0.04 -1 -1 30508 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 24.1 MiB 0.33 999 12894 3350 8149 1395 63.0 MiB 0.14 0.00 4.3007 -134.868 -4.3007 4.3007 0.66 0.000827225 0.000768524 0.061338 0.0569738 32 2741 23 6.65987e+06 266238 554710. 1919.41 0.93 0.165957 0.146737 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0378688 0.0329122 144 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.63 vpr 62.44 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30408 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 23.7 MiB 0.28 739 9540 2469 6056 1015 62.4 MiB 0.10 0.00 3.43298 -108.977 -3.43298 3.43298 0.65 0.000687752 0.00063842 0.0408523 0.0379745 28 1956 23 6.65987e+06 202848 500653. 1732.36 0.82 0.124396 0.10963 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0303661 0.0264474 109 89 0 0 89 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.71 vpr 62.81 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30356 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1126 15645 4217 9584 1844 62.8 MiB 0.15 0.00 4.2677 -137.429 -4.2677 4.2677 0.66 0.000735788 0.000675958 0.0553791 0.0513525 28 2607 21 6.65987e+06 405696 500653. 1732.36 0.89 0.135215 0.120206 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.22 0.07 0.12 -1 -1 0.22 0.0274774 0.0241803 146 34 90 30 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.83 vpr 62.79 MiB 0.05 7264 -1 -1 1 0.04 -1 -1 30696 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 24.5 MiB 0.19 1167 13551 3218 9177 1156 62.8 MiB 0.15 0.00 4.22766 -133.836 -4.22766 4.22766 0.64 0.000848186 0.000789199 0.0549963 0.0511091 32 2713 24 6.65987e+06 456408 554710. 1919.41 0.93 0.163067 0.143863 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0347798 0.0304362 171 64 87 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.25 vpr 62.77 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30352 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 24.1 MiB 0.13 1070 11111 2802 7426 883 62.8 MiB 0.12 0.00 3.62941 -110.797 -3.62941 3.62941 0.65 0.000857112 0.000795438 0.0424953 0.039394 26 2917 46 6.65987e+06 418374 477104. 1650.88 1.51 0.155949 0.137077 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.19 0.08 0.12 -1 -1 0.19 0.030515 0.0266624 134 61 58 30 58 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.88 vpr 62.75 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30548 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 24.5 MiB 0.24 1074 12606 3053 8336 1217 62.8 MiB 0.13 0.00 4.0783 -140.694 -4.0783 4.0783 0.64 0.000614404 0.000562704 0.0362254 0.0332797 30 2464 23 6.65987e+06 532476 526063. 1820.29 0.95 0.127185 0.111662 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.03022 0.0266813 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.69 vpr 62.73 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30588 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 24.3 MiB 0.23 985 6766 1235 5165 366 62.7 MiB 0.08 0.00 3.41884 -116.445 -3.41884 3.41884 0.63 0.000773145 0.000717771 0.0250353 0.0232608 28 2716 20 6.65987e+06 481764 500653. 1732.36 0.92 0.114102 0.0998578 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0363592 0.0316636 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.48 vpr 62.05 MiB 0.05 6828 -1 -1 1 0.03 -1 -1 30396 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63544 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 23.6 MiB 0.12 502 12791 3342 7797 1652 62.1 MiB 0.10 0.00 3.7595 -104.343 -3.7595 3.7595 0.63 0.000604967 0.000562887 0.0491863 0.0457977 32 1548 18 6.65987e+06 202848 554710. 1919.41 0.81 0.119128 0.105751 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0249219 0.0217023 93 34 58 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.66 vpr 62.62 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30104 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.29 872 14431 4553 8297 1581 62.6 MiB 0.13 0.00 3.69338 -109.525 -3.69338 3.69338 0.63 0.000660775 0.000613853 0.0563316 0.0523415 32 1973 19 6.65987e+06 215526 554710. 1919.41 0.83 0.13128 0.116497 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0264976 0.0231307 111 82 0 0 82 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.76 vpr 62.64 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30516 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 23.9 MiB 0.14 973 15876 4279 9893 1704 62.6 MiB 0.16 0.00 4.55701 -136.44 -4.55701 4.55701 0.63 0.000728302 0.000676688 0.0525022 0.0488075 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.00 0.151572 0.133861 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0350059 0.0306611 150 34 93 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.91 vpr 62.12 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30404 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.6 MiB 0.23 621 11063 2736 7707 620 62.1 MiB 0.10 0.00 3.58224 -95.8028 -3.58224 3.58224 0.63 0.000605527 0.000562235 0.0346882 0.0321968 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.27 0.118873 0.104088 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0219865 0.0191452 108 56 29 29 52 26 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.13 vpr 62.52 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30304 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 23.8 MiB 0.21 823 7992 1920 5681 391 62.5 MiB 0.09 0.00 3.5141 -118.56 -3.5141 3.5141 0.63 0.000610626 0.000564725 0.0323803 0.0301423 34 2038 19 6.65987e+06 202848 585099. 2024.56 1.39 0.157163 0.13684 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.22 0.07 0.13 -1 -1 0.22 0.0258694 0.0225794 119 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.68 vpr 62.90 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30392 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1001 11955 3102 7859 994 62.9 MiB 0.12 0.00 3.4951 -117.77 -3.4951 3.4951 0.64 0.000752967 0.000699691 0.0418998 0.0388398 26 2363 24 6.65987e+06 456408 477104. 1650.88 0.89 0.133025 0.117097 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0296007 0.0258956 142 64 58 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.57 vpr 62.34 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30416 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 23.6 MiB 0.29 876 12923 4161 7145 1617 62.3 MiB 0.11 0.00 3.11304 -101.32 -3.11304 3.11304 0.63 0.00062587 0.000581747 0.0500737 0.0465781 32 1966 17 6.65987e+06 202848 554710. 1919.41 0.78 0.118923 0.105555 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0237348 0.0208426 105 55 31 31 53 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.06 vpr 62.87 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30468 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 24.3 MiB 0.22 929 17616 5738 7949 3929 62.9 MiB 0.14 0.00 3.3979 -111.1 -3.3979 3.3979 0.64 0.00072904 0.000675678 0.0616225 0.0571556 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.15 0.235012 0.205197 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.20 0.08 0.08 -1 -1 0.20 0.0303433 0.0265266 136 65 52 26 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.05 vpr 62.86 MiB 0.05 7196 -1 -1 1 0.04 -1 -1 30264 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 0.59 965 17427 4981 9867 2579 62.9 MiB 0.16 0.00 3.7445 -120.758 -3.7445 3.7445 0.63 0.00079254 0.00073174 0.0634381 0.0587876 28 2286 21 6.65987e+06 456408 500653. 1732.36 0.85 0.155751 0.138019 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0314744 0.0275111 148 93 31 31 92 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.52 vpr 62.54 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30532 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 23.7 MiB 0.16 861 11652 3522 6006 2124 62.5 MiB 0.11 0.00 2.81844 -100.349 -2.81844 2.81844 0.63 0.000660513 0.000613665 0.0456212 0.042431 32 2079 23 6.65987e+06 228204 554710. 1919.41 0.84 0.126086 0.111347 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0271744 0.0236712 115 61 32 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.83 vpr 62.71 MiB 0.04 6944 -1 -1 1 0.02 -1 -1 30124 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.26 667 7380 1595 4913 872 62.7 MiB 0.04 0.00 3.38184 -112.707 -3.38184 3.38184 0.65 0.000301478 0.000276528 0.0141537 0.0130409 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.10 0.114005 0.0983365 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0274993 0.0239719 121 63 32 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.86 vpr 62.61 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30700 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 24.2 MiB 0.19 1042 12164 2979 8000 1185 62.6 MiB 0.12 0.00 4.02524 -139.262 -4.02524 4.02524 0.71 0.000776565 0.000721736 0.0437191 0.0405644 28 2653 23 6.65987e+06 456408 500653. 1732.36 0.97 0.138141 0.121793 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.17 0.10 0.12 -1 -1 0.17 0.0363539 0.0317408 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.82 vpr 62.65 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30500 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 24.2 MiB 0.22 968 17313 5602 9212 2499 62.6 MiB 0.16 0.00 3.57304 -105.57 -3.57304 3.57304 0.64 0.00071024 0.00065969 0.0651758 0.0605399 32 2179 18 6.65987e+06 405696 554710. 1919.41 0.83 0.148835 0.132522 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.23 0.07 0.08 -1 -1 0.23 0.0307303 0.0268374 133 62 56 29 58 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.89 vpr 62.77 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 30656 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 24.4 MiB 0.33 1004 11616 2968 7911 737 62.8 MiB 0.13 0.00 3.97241 -135.454 -3.97241 3.97241 0.64 0.000862851 0.00080114 0.0467395 0.0432985 32 2756 22 6.65987e+06 469086 554710. 1919.41 0.87 0.148171 0.12994 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0377371 0.0328529 156 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.35 vpr 62.12 MiB 0.02 6728 -1 -1 1 0.03 -1 -1 30284 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 23.7 MiB 0.10 715 5825 1215 4401 209 62.1 MiB 0.07 0.00 2.9397 -97.4988 -2.9397 2.9397 0.65 0.000696113 0.000640247 0.0224785 0.0209462 30 1705 18 6.65987e+06 202848 526063. 1820.29 0.78 0.0883915 0.0772869 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.19 0.05 0.13 -1 -1 0.19 0.0230888 0.0201077 105 4 85 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.78 vpr 62.89 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 30380 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 24.1 MiB 0.18 948 20077 6167 11074 2836 62.9 MiB 0.19 0.00 4.10497 -133.778 -4.10497 4.10497 0.66 0.00077987 0.000723377 0.0754877 0.0700117 32 2340 22 6.65987e+06 418374 554710. 1919.41 0.87 0.181481 0.161103 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0301345 0.0264543 142 92 28 28 92 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.98 vpr 62.72 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30196 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 24.0 MiB 0.22 805 9196 3450 4876 870 62.7 MiB 0.10 0.00 3.54047 -120.422 -3.54047 3.54047 0.63 0.000719555 0.000666722 0.0421606 0.0391707 30 2070 21 6.65987e+06 202848 526063. 1820.29 1.15 0.133195 0.117825 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0262375 0.0230395 115 96 0 0 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.83 vpr 62.61 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1002 18111 5520 9663 2928 62.6 MiB 0.17 0.00 3.45184 -118.995 -3.45184 3.45184 0.63 0.000771318 0.000714881 0.063436 0.0588405 32 2572 22 6.65987e+06 443730 554710. 1919.41 0.86 0.149075 0.132635 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.19 0.09 0.14 -1 -1 0.19 0.0348295 0.0305177 149 65 61 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.70 vpr 62.95 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30784 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 24.7 MiB 0.32 1201 15034 3694 9653 1687 63.0 MiB 0.16 0.00 4.6905 -158.567 -4.6905 4.6905 0.63 0.000917083 0.000850746 0.058484 0.0543283 26 3501 45 6.65987e+06 545154 477104. 1650.88 2.73 0.206556 0.181139 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.16 0.13 0.10 -1 -1 0.16 0.0455005 0.0394765 186 96 64 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.61 vpr 61.98 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30168 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63468 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.5 MiB 0.21 532 10509 2640 7460 409 62.0 MiB 0.08 0.00 2.61752 -80.0454 -2.61752 2.61752 0.63 0.00052958 0.000493126 0.0358871 0.0334003 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.00 0.100383 0.0883961 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0222499 0.0193469 83 56 0 0 53 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.41 vpr 62.14 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63632 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 23.7 MiB 0.09 758 10536 3415 5493 1628 62.1 MiB 0.10 0.00 3.52904 -110.224 -3.52904 3.52904 0.63 0.000615174 0.000572003 0.0412953 0.0384438 32 1744 20 6.65987e+06 202848 554710. 1919.41 0.80 0.114729 0.101274 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0312569 0.0274112 96 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.56 vpr 62.54 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30096 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.7 MiB 0.10 856 9872 2316 7018 538 62.5 MiB 0.10 0.00 3.4859 -122.574 -3.4859 3.4859 0.64 0.000646025 0.000600739 0.0380562 0.0354195 32 2373 21 6.65987e+06 228204 554710. 1919.41 0.86 0.114652 0.101149 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0268309 0.0234654 126 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.22 vpr 62.23 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30428 -1 -1 34 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.6 MiB 0.08 696 13351 3608 8032 1711 62.2 MiB 0.11 0.00 3.32684 -88.9535 -3.32684 3.32684 0.64 0.000533747 0.000496456 0.038792 0.0360852 26 1641 17 6.65987e+06 431052 477104. 1650.88 0.73 0.0992142 0.0876063 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0214542 0.0186141 103 34 50 25 25 25 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.72 vpr 63.24 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 24.4 MiB 0.22 877 14541 4608 7775 2158 63.2 MiB 0.18 0.00 4.02035 -125.217 -4.02035 4.02035 0.63 0.000806725 0.000749157 0.0773694 0.0718484 32 2783 25 6.65987e+06 253560 554710. 1919.41 0.95 0.176376 0.156834 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0189049 0.0167551 147 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.68 vpr 62.57 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30288 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 24.2 MiB 0.16 938 18660 5414 10450 2796 62.6 MiB 0.17 0.00 3.4903 -116.326 -3.4903 3.4903 0.63 0.000778371 0.000721938 0.0656141 0.0607971 32 2461 21 6.65987e+06 469086 554710. 1919.41 0.87 0.158441 0.140268 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0333193 0.0290693 146 94 29 29 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 6.14 vpr 63.51 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 30664 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 24.9 MiB 0.91 758 13949 4789 6835 2325 63.5 MiB 0.12 0.00 3.74419 -135.496 -3.74419 3.74419 0.66 0.000805874 0.00074779 0.0601069 0.0557882 58 1960 26 6.95648e+06 361892 997811. 3452.63 2.30 0.229723 0.200369 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.30 0.09 0.21 -1 -1 0.30 0.0340263 0.0297076 84 96 32 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 8.39 vpr 63.55 MiB 0.03 7292 -1 -1 1 0.04 -1 -1 30672 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 24.6 MiB 1.97 807 12716 4975 6082 1659 63.5 MiB 0.12 0.00 3.9478 -130.518 -3.9478 3.9478 0.65 0.000757224 0.00070248 0.0629915 0.058513 48 2407 29 6.95648e+06 202660 865456. 2994.66 3.58 0.225398 0.197257 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.26 0.17 0.17 -1 -1 0.26 0.0506675 0.0438814 76 91 30 30 89 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 16.23 vpr 63.44 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 24.6 MiB 0.72 1022 7103 1835 4569 699 63.4 MiB 0.07 0.00 3.60914 -132.635 -3.60914 3.60914 0.66 0.000740139 0.00068768 0.0322411 0.0299829 40 2728 21 6.95648e+06 275038 706193. 2443.58 12.69 0.331362 0.285048 26914 176310 -1 2485 24 1665 2605 297469 57129 3.85496 3.85496 -146.999 -3.85496 0 0 926341. 3205.33 0.24 0.12 0.16 -1 -1 0.24 0.0388303 0.0338927 77 65 54 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.12 vpr 63.36 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30496 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 24.6 MiB 0.37 752 10672 3799 5216 1657 63.4 MiB 0.10 0.00 4.001 -128.21 -4.001 4.001 0.65 0.00068378 0.000635503 0.0472427 0.043968 44 2696 27 6.95648e+06 231611 787024. 2723.27 2.01 0.186442 0.162797 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0322562 0.0281657 75 34 87 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.62 vpr 63.43 MiB 0.06 6972 -1 -1 1 0.03 -1 -1 30316 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 24.8 MiB 0.65 716 9857 3295 4764 1798 63.4 MiB 0.10 0.00 3.66789 -133.791 -3.66789 3.66789 0.65 0.000746485 0.000693313 0.0481862 0.0448464 56 2163 40 6.95648e+06 188184 973134. 3367.25 3.10 0.229883 0.200875 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.29 0.10 0.20 -1 -1 0.29 0.0331287 0.0289903 78 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 14.94 vpr 63.73 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30428 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 24.8 MiB 0.39 727 15003 5272 7155 2576 63.7 MiB 0.12 0.00 3.0985 -114.166 -3.0985 3.0985 0.66 0.000774594 0.000718145 0.0578677 0.0536952 46 2435 46 6.95648e+06 419795 828058. 2865.25 11.80 0.38416 0.332084 28066 200906 -1 1746 20 1574 2179 209536 59676 3.22017 3.22017 -121.541 -3.22017 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0302881 0.0264798 89 64 63 32 63 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 8.41 vpr 62.94 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30604 -1 -1 14 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 24.4 MiB 3.54 451 8433 2993 4087 1353 62.9 MiB 0.07 0.00 3.26916 -93.4177 -3.26916 3.26916 0.66 0.000575449 0.000535949 0.0335818 0.0312904 40 1397 46 6.95648e+06 202660 706193. 2443.58 2.25 0.167617 0.145119 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0228175 0.0198745 54 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 5.77 vpr 63.07 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30244 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.6 MiB 0.48 722 11088 4563 6076 449 63.1 MiB 0.11 0.00 3.0394 -105.493 -3.0394 3.0394 0.65 0.0008327 0.000776 0.0504746 0.0469401 46 2382 26 6.95648e+06 246087 828058. 2865.25 2.56 0.188363 0.164698 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0297735 0.0260166 77 4 115 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 11.46 vpr 62.98 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30232 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 24.3 MiB 1.54 523 9994 2759 5612 1623 63.0 MiB 0.09 0.00 3.10275 -98.727 -3.10275 3.10275 0.65 0.000653658 0.000606421 0.0444859 0.041304 40 1829 42 6.95648e+06 159232 706193. 2443.58 7.27 0.33491 0.287725 26914 176310 -1 1508 28 1092 1638 211555 63072 3.68972 3.68972 -118.397 -3.68972 0 0 926341. 3205.33 0.23 0.11 0.12 -1 -1 0.23 0.0420189 0.0363805 57 85 0 0 84 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.09 vpr 62.93 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30356 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 24.3 MiB 0.91 638 10614 4216 4843 1555 62.9 MiB 0.10 0.00 2.95005 -114.898 -2.95005 2.95005 0.65 0.000650113 0.000603717 0.0478757 0.0445693 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.52 0.189557 0.165527 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0273877 0.0239382 62 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.11 vpr 63.25 MiB 0.02 6916 -1 -1 1 0.05 -1 -1 30132 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 24.4 MiB 1.59 651 11079 4648 6085 346 63.3 MiB 0.10 0.00 3.1095 -111.937 -3.1095 3.1095 0.72 0.000647361 0.000601785 0.050373 0.0469555 38 1744 25 6.95648e+06 173708 678818. 2348.85 1.77 0.173707 0.151984 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0259027 0.022618 60 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 5.32 vpr 63.51 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30448 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 24.6 MiB 0.81 540 10476 4331 5741 404 63.5 MiB 0.09 0.00 2.9793 -106.716 -2.9793 2.9793 0.65 0.00065639 0.0006096 0.045402 0.0422115 50 1707 47 6.95648e+06 173708 902133. 3121.57 1.77 0.176299 0.153697 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.26 0.07 0.18 -1 -1 0.26 0.0253947 0.0221734 60 65 25 25 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.13 vpr 63.41 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30256 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 24.5 MiB 1.27 751 11803 3277 6504 2022 63.4 MiB 0.11 0.00 3.1024 -116.565 -3.1024 3.1024 0.67 0.00075595 0.000702005 0.0501366 0.0466012 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.03 0.216096 0.188407 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0303115 0.0265731 79 58 64 32 57 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 7.54 vpr 63.62 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30564 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 24.7 MiB 0.99 832 16371 6652 7990 1729 63.6 MiB 0.14 0.00 3.72719 -138.885 -3.72719 3.72719 0.65 0.000777053 0.00072101 0.0662595 0.0614675 40 2769 48 6.95648e+06 376368 706193. 2443.58 3.75 0.252121 0.220571 26914 176310 -1 2281 20 2007 2799 309109 71324 4.39516 4.39516 -161.353 -4.39516 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0312666 0.0273574 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 5.55 vpr 62.80 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30684 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 24.2 MiB 1.05 465 11234 4544 5569 1121 62.8 MiB 0.10 0.00 3.14676 -95.8879 -3.14676 3.14676 0.67 0.000686511 0.000638323 0.048916 0.0455068 46 1613 28 6.95648e+06 188184 828058. 2865.25 1.83 0.168088 0.14664 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.25 0.07 0.14 -1 -1 0.25 0.0290433 0.0251649 58 29 58 29 24 24 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 6.52 vpr 63.73 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30480 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 24.9 MiB 1.63 807 11813 5009 6533 271 63.7 MiB 0.13 0.00 3.1505 -120.688 -3.1505 3.1505 0.65 0.00141771 0.00131534 0.0670848 0.0623275 46 2437 23 6.95648e+06 188184 828058. 2865.25 2.02 0.219232 0.192434 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0364726 0.0317591 77 63 64 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 6.81 vpr 63.80 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30244 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 24.9 MiB 1.39 707 11064 3419 5711 1934 63.8 MiB 0.11 0.00 3.0804 -113.837 -3.0804 3.0804 0.67 0.000744491 0.000689519 0.0507175 0.0470672 46 2393 47 6.95648e+06 289514 828058. 2865.25 2.76 0.226558 0.197194 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.24 0.07 0.11 -1 -1 0.24 0.029687 0.025994 78 57 64 32 56 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 5.34 vpr 63.28 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30204 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 24.4 MiB 0.80 574 10698 2981 5511 2206 63.3 MiB 0.09 0.00 2.43656 -93.1005 -2.43656 2.43656 0.66 0.000667806 0.000619429 0.0414783 0.0385373 48 1509 24 6.95648e+06 289514 865456. 2994.66 1.82 0.174657 0.151996 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.26 0.07 0.17 -1 -1 0.26 0.0275562 0.0239977 67 65 29 29 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.50 vpr 62.52 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30208 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 24.0 MiB 0.36 450 11098 4789 5936 373 62.5 MiB 0.08 0.00 2.21746 -80.6728 -2.21746 2.21746 0.65 0.00050213 0.000467251 0.0394933 0.0367878 36 1377 32 6.95648e+06 144757 648988. 2245.63 1.61 0.146611 0.12761 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0205962 0.0179419 45 34 24 24 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.08 vpr 63.29 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30412 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 24.4 MiB 1.09 525 9374 3845 5090 439 63.3 MiB 0.10 0.00 3.8254 -127.041 -3.8254 3.8254 0.71 0.000807564 0.000751147 0.0493322 0.0459326 46 1860 48 6.95648e+06 159232 828058. 2865.25 3.12 0.217029 0.189114 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.032612 0.0283618 61 64 31 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 6.34 vpr 63.50 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30236 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 24.7 MiB 0.40 664 13663 4054 7770 1839 63.5 MiB 0.14 0.00 3.70954 -128.174 -3.70954 3.70954 0.65 0.000729895 0.000678103 0.0673952 0.0626513 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.14 0.224234 0.196772 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0307136 0.026939 81 34 91 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 6.54 vpr 63.84 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30612 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 25.1 MiB 1.10 791 14779 5223 7361 2195 63.8 MiB 0.13 0.00 3.66119 -126.81 -3.66119 3.66119 0.65 0.000845583 0.000784988 0.0639627 0.0593862 48 2442 23 6.95648e+06 390843 865456. 2994.66 2.57 0.233281 0.203625 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.26 0.10 0.17 -1 -1 0.26 0.0382407 0.0332439 85 124 0 0 125 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 5.22 vpr 62.28 MiB 0.04 6764 -1 -1 1 0.03 -1 -1 30720 -1 -1 13 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 23.8 MiB 0.87 348 7809 2770 3912 1127 62.3 MiB 0.06 0.00 2.19726 -66.8557 -2.19726 2.19726 0.65 0.000520141 0.00048389 0.0290685 0.0270564 46 937 48 6.95648e+06 188184 828058. 2865.25 1.73 0.133386 0.115596 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.25 0.04 0.18 -1 -1 0.25 0.0167711 0.014753 44 30 26 26 22 22 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.00 vpr 63.44 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30144 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 24.7 MiB 0.80 737 10316 4241 5568 507 63.4 MiB 0.10 0.00 4.02534 -135.509 -4.02534 4.02534 0.66 0.000691905 0.000643038 0.0481539 0.0448461 48 2419 30 6.95648e+06 173708 865456. 2994.66 3.10 0.195138 0.170797 28354 207349 -1 1970 49 3641 5913 1247564 597467 4.02741 4.02741 -146.507 -4.02741 0 0 1.05005e+06 3633.38 0.26 0.36 0.17 -1 -1 0.26 0.0574908 0.0496754 74 3 122 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.47 vpr 62.67 MiB 0.04 6676 -1 -1 1 0.03 -1 -1 30352 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 24.2 MiB 0.29 731 9906 3689 5081 1136 62.7 MiB 0.07 0.00 2.15326 -87.6492 -2.15326 2.15326 0.67 0.000466282 0.000432898 0.032831 0.0305024 34 1791 46 6.95648e+06 115805 618332. 2139.56 1.60 0.145898 0.126962 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.20 0.05 0.14 -1 -1 0.20 0.0155766 0.0137291 44 3 53 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.42 vpr 63.35 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30624 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 24.7 MiB 0.50 827 16371 5667 8716 1988 63.4 MiB 0.15 0.00 3.67409 -135.23 -3.67409 3.67409 0.68 0.000751139 0.000696051 0.0639691 0.0592373 40 2687 28 6.95648e+06 376368 706193. 2443.58 3.07 0.219677 0.192122 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0385571 0.0335002 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 7.64 vpr 63.39 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30172 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.6 MiB 0.33 985 13754 4254 7657 1843 63.4 MiB 0.12 0.00 3.0955 -119.852 -3.0955 3.0955 0.65 0.000701636 0.000651792 0.0488406 0.0453699 36 2880 44 6.95648e+06 405319 648988. 2245.63 4.57 0.209521 0.182849 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0270326 0.0237357 87 3 124 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 5.96 vpr 63.64 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30584 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 24.7 MiB 0.33 789 18308 6099 10070 2139 63.6 MiB 0.16 0.00 3.69663 -134.61 -3.69663 3.69663 0.67 0.000771296 0.000714486 0.0732736 0.067875 46 2780 28 6.95648e+06 405319 828058. 2865.25 2.84 0.238946 0.209821 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0338506 0.0295608 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 6.42 vpr 63.00 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30128 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 24.3 MiB 0.72 541 9374 3087 4731 1556 63.0 MiB 0.10 0.00 2.8982 -102.358 -2.8982 2.8982 0.67 0.000735864 0.000691673 0.0512937 0.0477817 38 2009 38 6.95648e+06 144757 678818. 2348.85 3.03 0.1926 0.168113 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.23 0.07 0.16 -1 -1 0.23 0.0276089 0.0240681 57 34 54 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.14 vpr 62.84 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30152 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 24.2 MiB 0.55 571 8444 3466 4635 343 62.8 MiB 0.08 0.00 3.1175 -112.058 -3.1175 3.1175 0.67 0.000615567 0.00057243 0.0357287 0.033258 40 1947 30 6.95648e+06 173708 706193. 2443.58 1.94 0.169244 0.146684 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.026427 0.0230086 60 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 5.35 vpr 62.91 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30368 -1 -1 13 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 24.3 MiB 0.55 505 10257 3681 4972 1604 62.9 MiB 0.09 0.00 3.0435 -97.9378 -3.0435 3.0435 0.66 0.000581545 0.000540482 0.0414812 0.0386228 44 1727 27 6.95648e+06 188184 787024. 2723.27 2.12 0.163838 0.142439 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0226589 0.0197483 61 34 56 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.17 vpr 63.01 MiB 0.02 6748 -1 -1 1 0.03 -1 -1 30308 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.3 MiB 0.23 703 9374 3895 5319 160 63.0 MiB 0.09 0.00 2.93285 -116.414 -2.93285 2.93285 0.66 0.000612187 0.000569167 0.0392736 0.0365728 44 2101 25 6.95648e+06 144757 787024. 2723.27 2.18 0.163883 0.142867 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.029518 0.025764 64 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 5.13 vpr 63.23 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30264 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 24.5 MiB 0.16 623 13443 5605 7395 443 63.2 MiB 0.11 0.00 3.0955 -111.973 -3.0955 3.0955 0.66 0.000629843 0.000585072 0.0486487 0.0452508 44 2077 38 6.95648e+06 303989 787024. 2723.27 2.24 0.186596 0.162701 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.26 0.08 0.19 -1 -1 0.26 0.0275901 0.0240641 68 34 61 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 5.44 vpr 63.10 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30220 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 24.6 MiB 0.73 508 10219 3550 4648 2021 63.1 MiB 0.08 0.00 2.43392 -85.0275 -2.43392 2.43392 0.66 0.000624575 0.000580017 0.0399226 0.0371231 46 1411 35 6.95648e+06 260562 828058. 2865.25 2.05 0.176321 0.153225 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0268241 0.0233241 64 61 29 29 57 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 17.92 vpr 63.83 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30568 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 25.1 MiB 0.74 944 14375 4687 7097 2591 63.8 MiB 0.13 0.00 3.95585 -140.771 -3.95585 3.95585 0.66 0.000827677 0.000767647 0.0605035 0.0562107 50 2802 35 6.95648e+06 405319 902133. 3121.57 14.31 0.416063 0.360027 28642 213929 -1 2332 25 2175 3439 375097 108678 4.03032 4.03032 -146.333 -4.03032 0 0 1.08113e+06 3740.92 0.27 0.13 0.18 -1 -1 0.27 0.0393316 0.0343178 100 29 128 32 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.45 vpr 63.75 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30400 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 24.9 MiB 0.93 786 12739 3070 7853 1816 63.7 MiB 0.12 0.00 3.0804 -115.407 -3.0804 3.0804 0.65 0.000781296 0.000723929 0.051149 0.0475119 40 2423 28 6.95648e+06 390843 706193. 2443.58 2.70 0.212018 0.185059 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0410768 0.0356608 87 65 62 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 5.70 vpr 63.34 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30660 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 24.4 MiB 1.06 525 12362 5188 6715 459 63.3 MiB 0.10 0.00 3.26916 -109.722 -3.26916 3.26916 0.65 0.000675989 0.000627411 0.0529355 0.0492012 50 1653 27 6.95648e+06 217135 902133. 3121.57 1.90 0.18966 0.165633 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.26 0.05 0.18 -1 -1 0.26 0.0216951 0.0190699 62 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 5.50 vpr 63.64 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 30480 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 0.53 965 12791 5492 6957 342 63.6 MiB 0.12 0.00 3.0625 -116.847 -3.0625 3.0625 0.65 0.000746072 0.000692342 0.0614204 0.0570389 38 2599 23 6.95648e+06 202660 678818. 2348.85 2.34 0.211149 0.185007 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0288782 0.0253066 79 64 60 30 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 7.87 vpr 63.90 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30476 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 2.12 778 10998 4559 6059 380 63.9 MiB 0.11 0.00 4.63397 -149.774 -4.63397 4.63397 0.65 0.00084012 0.000780514 0.0592324 0.0550615 44 2926 36 6.95648e+06 202660 787024. 2723.27 2.96 0.23878 0.207589 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0371166 0.0322964 78 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 6.36 vpr 63.68 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 30460 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 24.8 MiB 1.42 775 10476 3672 5136 1668 63.7 MiB 0.11 0.00 4.49354 -135.009 -4.49354 4.49354 0.65 0.000768648 0.000713199 0.053456 0.0496077 44 2669 43 6.95648e+06 188184 787024. 2723.27 2.17 0.22894 0.199259 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0378706 0.0329743 76 90 31 31 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.66 vpr 63.59 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 30500 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 24.7 MiB 0.84 864 15493 5631 7761 2101 63.6 MiB 0.14 0.00 3.1285 -114.829 -3.1285 3.1285 0.67 0.000780585 0.000723274 0.0646432 0.0600666 38 2848 26 6.95648e+06 361892 678818. 2348.85 3.13 0.221189 0.193855 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0313667 0.0274556 85 64 60 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 5.53 vpr 63.87 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 30680 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65400 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 25.0 MiB 0.49 956 10743 3793 5013 1937 63.9 MiB 0.10 0.00 3.77119 -139.239 -3.77119 3.77119 0.65 0.000772885 0.000717777 0.0440934 0.0409993 44 2711 27 6.95648e+06 376368 787024. 2723.27 2.40 0.198967 0.173398 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.25 0.11 0.11 -1 -1 0.25 0.0349637 0.0305893 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 17.93 vpr 64.00 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30648 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65536 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 25.7 MiB 0.88 1078 14999 4071 8495 2433 64.0 MiB 0.14 0.00 3.84845 -142.865 -3.84845 3.84845 0.66 0.000914787 0.000848334 0.0669773 0.0621348 40 2955 26 6.95648e+06 448746 706193. 2443.58 14.28 0.43074 0.37192 26914 176310 -1 2667 20 2127 3183 309846 62326 4.36702 4.36702 -161.254 -4.36702 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.036351 0.0318076 104 96 62 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 6.37 vpr 63.49 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30540 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 0.60 721 10304 4339 5695 270 63.5 MiB 0.09 0.00 3.34916 -121.065 -3.34916 3.34916 0.67 0.000626714 0.000582494 0.0440208 0.0409723 36 2215 27 6.95648e+06 159232 648988. 2245.63 3.11 0.172259 0.150164 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0260322 0.022742 62 34 62 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 5.11 vpr 63.53 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30396 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 24.7 MiB 0.41 784 13959 3819 8017 2123 63.5 MiB 0.13 0.00 4.0519 -136.516 -4.0519 4.0519 0.55 0.000768293 0.000713404 0.0566325 0.0526458 48 2294 26 6.95648e+06 390843 865456. 2994.66 2.11 0.21044 0.184029 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.0300851 0.0263255 86 64 62 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 6.28 vpr 63.80 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30564 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65336 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 24.9 MiB 0.75 863 13557 4887 6407 2263 63.8 MiB 0.11 0.00 3.29596 -116.543 -3.29596 3.29596 0.65 0.000760321 0.000705017 0.0545203 0.0506466 50 2481 26 6.95648e+06 376368 902133. 3121.57 2.60 0.204345 0.178602 28642 213929 -1 1941 42 2097 3578 542152 243437 3.19817 3.19817 -117.898 -3.19817 0 0 1.08113e+06 3740.92 0.26 0.20 0.18 -1 -1 0.26 0.0547317 0.047295 85 63 62 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.29 vpr 63.30 MiB 0.10 7000 -1 -1 1 0.03 -1 -1 30524 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.6 MiB 0.83 760 7738 3134 4374 230 63.3 MiB 0.08 0.00 3.65689 -135.736 -3.65689 3.65689 0.65 0.00070816 0.000657961 0.0361191 0.0336373 44 3266 47 6.95648e+06 188184 787024. 2723.27 4.63 0.195374 0.169851 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.25 0.12 0.17 -1 -1 0.25 0.031844 0.0278397 78 3 128 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 6.55 vpr 63.81 MiB 0.03 7036 -1 -1 1 0.04 -1 -1 30408 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65344 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 24.9 MiB 1.55 808 11991 3810 6067 2114 63.8 MiB 0.11 0.00 3.1768 -117.392 -3.1768 3.1768 0.65 0.000786115 0.000729626 0.052251 0.0485884 46 2159 29 6.95648e+06 332941 828058. 2865.25 2.30 0.214274 0.186971 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.25 0.07 0.11 -1 -1 0.25 0.0308622 0.0270065 81 96 25 25 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 5.45 vpr 63.84 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30304 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.79 845 12926 3665 7173 2088 63.8 MiB 0.11 0.00 3.1214 -116.244 -3.1214 3.1214 0.65 0.00076373 0.000709159 0.0501642 0.0466061 46 2291 24 6.95648e+06 405319 828058. 2865.25 1.94 0.200017 0.174548 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0348641 0.030425 85 61 64 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 5.68 vpr 63.94 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30432 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 25.3 MiB 0.56 803 14996 4547 7782 2667 63.9 MiB 0.13 0.00 3.09676 -115.471 -3.09676 3.09676 0.65 0.000777787 0.000720411 0.0587256 0.054432 46 2386 25 6.95648e+06 405319 828058. 2865.25 2.38 0.213129 0.186329 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0309563 0.0271394 88 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 6.17 vpr 63.85 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30532 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 25.0 MiB 0.52 938 15617 5888 7604 2125 63.8 MiB 0.14 0.00 3.66789 -137.042 -3.66789 3.66789 0.65 0.000739817 0.00068669 0.0584745 0.0542802 44 2729 48 6.95648e+06 405319 787024. 2723.27 2.87 0.231972 0.20268 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0326036 0.0284901 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 6.21 vpr 63.57 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30696 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 25.1 MiB 0.97 799 12448 3955 5788 2705 63.6 MiB 0.12 0.00 3.78219 -138.337 -3.78219 3.78219 0.71 0.000884798 0.000812115 0.0542225 0.0502694 44 2633 42 6.95648e+06 434271 787024. 2723.27 2.39 0.227336 0.198178 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0335008 0.029245 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 21.91 vpr 63.88 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30480 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 25.2 MiB 1.24 822 11983 4768 6508 707 63.9 MiB 0.11 0.00 4.19045 -134.89 -4.19045 4.19045 0.65 0.000827936 0.000769042 0.0538013 0.0499986 44 3007 44 6.95648e+06 361892 787024. 2723.27 17.93 0.413065 0.355678 27778 195446 -1 2186 29 1784 2766 272117 64702 3.83002 3.83002 -138.199 -3.83002 0 0 997811. 3452.63 0.24 0.07 0.11 -1 -1 0.24 0.0230894 0.0202217 84 122 0 0 122 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 6.34 vpr 63.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 25.0 MiB 1.11 840 10346 3694 5398 1254 63.8 MiB 0.11 0.00 3.7688 -130.649 -3.7688 3.7688 0.68 0.000808834 0.000751515 0.054335 0.0505417 40 2535 24 6.95648e+06 188184 706193. 2443.58 2.65 0.216316 0.188985 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.22 0.06 0.10 -1 -1 0.22 0.0193723 0.0171277 78 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 5.29 vpr 63.16 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30564 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 24.5 MiB 0.17 594 10647 4341 5910 396 63.2 MiB 0.09 0.00 3.12656 -113.614 -3.12656 3.12656 0.70 0.000645758 0.000600202 0.0381608 0.0354233 56 1741 22 6.95648e+06 332941 973134. 3367.25 2.27 0.165474 0.1442 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.29 0.07 0.20 -1 -1 0.29 0.0254144 0.0222203 71 34 63 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 16.41 vpr 63.45 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30328 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 24.8 MiB 1.03 610 8444 3495 4676 273 63.4 MiB 0.09 0.00 3.0405 -112.422 -3.0405 3.0405 0.65 0.000893196 0.00082361 0.0429175 0.0398144 48 1986 36 6.95648e+06 144757 865456. 2994.66 12.64 0.336895 0.289861 28354 207349 -1 1587 21 1492 2244 248234 67713 3.07482 3.07482 -121.215 -3.07482 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.0292001 0.0254931 63 94 0 0 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 22.83 vpr 63.60 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30772 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 25.3 MiB 0.59 1000 14152 3772 8188 2192 63.6 MiB 0.14 0.00 4.46224 -157.711 -4.46224 4.46224 0.65 0.000883339 0.000820977 0.0617213 0.0573182 48 3589 41 6.95648e+06 434271 865456. 2994.66 19.31 0.486896 0.419306 28354 207349 -1 2647 39 3273 5242 691557 203542 5.05191 5.05191 -180.38 -5.05191 0 0 1.05005e+06 3633.38 0.27 0.23 0.18 -1 -1 0.27 0.0632437 0.0548627 103 65 96 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 5.48 vpr 63.57 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 24.7 MiB 0.60 717 11983 4638 6220 1125 63.6 MiB 0.10 0.00 3.1457 -117.079 -3.1457 3.1457 0.65 0.000732211 0.000679808 0.0482652 0.0445208 46 2078 38 6.95648e+06 347416 828058. 2865.25 2.33 0.207495 0.180477 28066 200906 -1 1635 20 1426 1856 150168 34567 3.22337 3.22337 -123.095 -3.22337 0 0 1.01997e+06 3529.29 0.25 0.07 0.18 -1 -1 0.25 0.0296739 0.0260194 83 34 92 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.99 vpr 62.87 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30388 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 24.5 MiB 0.28 571 10581 4367 5776 438 62.9 MiB 0.10 0.00 3.0735 -108.432 -3.0735 3.0735 0.69 0.000624132 0.000580397 0.0436408 0.0406775 38 2214 32 6.95648e+06 275038 678818. 2348.85 3.16 0.176367 0.153403 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.25 0.04 0.14 -1 -1 0.25 0.0137549 0.0122137 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 7.62 vpr 63.81 MiB 0.03 7328 -1 -1 1 0.04 -1 -1 30856 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 25.5 MiB 1.87 1126 15215 3732 10105 1378 63.8 MiB 0.15 0.00 4.49524 -160.999 -4.49524 4.49524 0.64 0.000947963 0.000880294 0.0702237 0.0651985 64 2603 22 6.95648e+06 448746 1.08113e+06 3740.92 2.66 0.256214 0.224081 31522 276338 -1 2323 24 2383 3561 336579 68033 4.75731 4.75731 -169.715 -4.75731 0 0 1.36325e+06 4717.13 0.33 0.13 0.26 -1 -1 0.33 0.0431568 0.0377567 103 127 32 32 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.06 vpr 63.57 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30616 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 24.6 MiB 1.06 804 14375 4842 7223 2310 63.6 MiB 0.12 0.00 3.73321 -136.441 -3.73321 3.73321 0.65 0.000754408 0.000699746 0.0550887 0.0510594 40 2325 28 6.95648e+06 405319 706193. 2443.58 2.36 0.19909 0.174424 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0323659 0.0283721 86 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.13 vpr 63.11 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30304 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.6 MiB 0.31 740 12763 4452 6451 1860 63.1 MiB 0.10 0.00 3.05815 -117.559 -3.05815 3.05815 0.66 0.000613264 0.000569724 0.0422527 0.0393145 44 2104 25 6.95648e+06 347416 787024. 2723.27 2.16 0.164787 0.14378 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0252353 0.0220465 70 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.32 vpr 63.49 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30888 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 25.0 MiB 0.50 924 14567 5045 6877 2645 63.5 MiB 0.13 0.00 4.52824 -159.979 -4.52824 4.52824 0.65 0.000860252 0.000799772 0.061709 0.057364 54 3003 36 6.95648e+06 448746 949917. 3286.91 3.96 0.252431 0.220257 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.28 0.12 0.19 -1 -1 0.28 0.0377166 0.032947 105 34 128 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 4.90 vpr 62.86 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30224 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.2 MiB 0.34 618 10614 4475 5915 224 62.9 MiB 0.09 0.00 2.92185 -113.699 -2.92185 2.92185 0.66 0.00061319 0.000570121 0.0442681 0.0412025 46 1828 25 6.95648e+06 144757 828058. 2865.25 1.92 0.168334 0.14725 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.25 0.08 0.18 -1 -1 0.25 0.0283245 0.0246925 62 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 13.28 vpr 62.95 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30428 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 24.5 MiB 0.80 601 10163 2708 5873 1582 62.9 MiB 0.08 0.00 3.10776 -107.419 -3.10776 3.10776 0.68 0.000618254 0.000574921 0.0370486 0.0344865 46 1545 25 6.95648e+06 303989 828058. 2865.25 9.72 0.321302 0.275939 28066 200906 -1 1217 20 1164 1727 130235 38121 3.03987 3.03987 -109.31 -3.03987 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0247784 0.0216718 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 7.35 vpr 63.43 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30404 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 24.8 MiB 1.24 705 12856 4698 6070 2088 63.4 MiB 0.12 0.00 3.39446 -107.671 -3.39446 3.39446 0.68 0.000744683 0.000690741 0.0581135 0.0539501 48 2602 41 6.95648e+06 289514 865456. 2994.66 3.12 0.22579 0.196935 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.26 0.09 0.22 -1 -1 0.26 0.0293305 0.0256081 77 88 29 29 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 13.12 vpr 63.77 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 24.9 MiB 0.84 807 13117 5264 6347 1506 63.8 MiB 0.13 0.00 3.65689 -136.729 -3.65689 3.65689 0.65 0.000777952 0.000722481 0.0653681 0.0607189 40 2249 23 6.95648e+06 188184 706193. 2443.58 9.50 0.343898 0.298658 26914 176310 -1 1948 24 2181 2903 293446 60806 4.18386 4.18386 -152.298 -4.18386 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0375576 0.0328295 78 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 6.77 vpr 63.73 MiB 0.05 7120 -1 -1 1 0.05 -1 -1 30600 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 24.8 MiB 1.50 890 14345 5510 6931 1904 63.7 MiB 0.13 0.00 3.74419 -138.408 -3.74419 3.74419 0.66 0.000778559 0.000723486 0.0602509 0.0559962 48 2618 24 6.95648e+06 361892 865456. 2994.66 2.38 0.21599 0.189423 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.26 0.13 0.17 -1 -1 0.26 0.0354481 0.0308888 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 5.97 vpr 63.36 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30664 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 24.6 MiB 0.97 685 10813 4185 5763 865 63.4 MiB 0.10 0.00 3.05815 -117.015 -3.05815 3.05815 0.67 0.000718417 0.000659877 0.0415913 0.0386653 44 2023 47 6.95648e+06 347416 787024. 2723.27 2.26 0.201209 0.174623 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.25 0.08 0.19 -1 -1 0.25 0.0277721 0.0242484 69 65 32 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.12 vpr 63.51 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30600 -1 -1 10 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 24.6 MiB 1.38 684 10105 3894 4557 1654 63.5 MiB 0.09 0.00 3.30215 -110.841 -3.30215 3.30215 0.66 0.000677441 0.000628577 0.0473566 0.0439737 36 2232 46 6.95648e+06 144757 648988. 2245.63 3.15 0.20973 0.1824 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0276674 0.0240916 59 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 14.27 vpr 63.47 MiB 0.04 7056 -1 -1 1 0.05 -1 -1 30384 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 24.6 MiB 0.69 949 12711 4087 6844 1780 63.5 MiB 0.12 0.00 3.1285 -115.995 -3.1285 3.1285 0.66 0.00072159 0.000669844 0.0527315 0.0489987 40 2353 22 6.95648e+06 318465 706193. 2443.58 10.83 0.343695 0.29713 26914 176310 -1 2192 23 1591 2349 228866 46264 3.38347 3.38347 -130.956 -3.38347 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0320439 0.027924 79 60 60 30 57 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 8.48 vpr 63.39 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 24.6 MiB 0.69 684 10156 4202 5354 600 63.4 MiB 0.09 0.00 4.24545 -126.653 -4.24545 4.24545 0.73 0.000662507 0.000615554 0.0445966 0.04149 38 2620 28 6.95648e+06 231611 678818. 2348.85 5.05 0.200077 0.174752 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0295948 0.02581 74 34 84 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 6.40 vpr 63.30 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30152 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 24.4 MiB 0.77 607 9374 3879 5147 348 63.3 MiB 0.08 0.00 3.0545 -108.859 -3.0545 3.0545 0.72 0.000646488 0.000600087 0.0415839 0.0386656 38 1982 33 6.95648e+06 173708 678818. 2348.85 2.94 0.182672 0.158582 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0291518 0.0253729 61 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 6.99 vpr 63.47 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30452 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 1.22 777 7669 3175 4304 190 63.5 MiB 0.08 0.00 3.0765 -113.072 -3.0765 3.0765 0.66 0.000692012 0.000642604 0.037267 0.0346309 36 2390 29 6.95648e+06 144757 648988. 2245.63 3.16 0.186965 0.162546 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0310339 0.0270316 60 91 0 0 91 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 16.97 vpr 63.10 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30496 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.19 795 9448 3333 4743 1372 63.1 MiB 0.09 0.00 3.89245 -136.332 -3.89245 3.89245 0.66 0.000691261 0.000642715 0.0365182 0.0339892 50 2553 48 6.95648e+06 361892 902133. 3121.57 14.06 0.333722 0.287327 28642 213929 -1 2114 23 1902 2897 353929 87715 4.19162 4.19162 -148.003 -4.19162 0 0 1.08113e+06 3740.92 0.26 0.11 0.17 -1 -1 0.26 0.0308642 0.0269922 86 4 124 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 21.30 vpr 63.50 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30580 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 24.6 MiB 1.27 926 10495 2590 6894 1011 63.5 MiB 0.11 0.00 3.78219 -140.482 -3.78219 3.78219 0.69 0.000773045 0.000717616 0.042985 0.0399217 40 2962 40 6.95648e+06 390843 706193. 2443.58 17.24 0.388125 0.334748 26914 176310 -1 2636 23 2167 3633 463776 91732 4.56126 4.56126 -163.581 -4.56126 0 0 926341. 3205.33 0.23 0.13 0.15 -1 -1 0.23 0.0339955 0.029662 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 8.12 vpr 63.72 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 30368 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 24.8 MiB 1.53 831 9336 3198 4890 1248 63.7 MiB 0.09 0.00 3.70819 -135.715 -3.70819 3.70819 0.66 0.000777656 0.000721072 0.0389944 0.0361987 46 2950 33 6.95648e+06 376368 828058. 2865.25 3.85 0.206838 0.17993 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0347155 0.0303553 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.67 vpr 63.58 MiB 0.05 7088 -1 -1 1 0.04 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 1.02 822 13351 4683 6743 1925 63.6 MiB 0.13 0.00 3.75544 -130.593 -3.75544 3.75544 0.66 0.000772927 0.000714858 0.0540502 0.0502175 48 3144 32 6.95648e+06 390843 865456. 2994.66 3.72 0.219065 0.191265 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.28 0.12 0.19 -1 -1 0.28 0.0346366 0.0302909 86 65 60 30 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.41 vpr 62.98 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30344 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 24.3 MiB 0.65 551 9064 3696 4990 378 63.0 MiB 0.08 0.00 3.29416 -111.889 -3.29416 3.29416 0.68 0.000622206 0.000578436 0.0385868 0.0359164 40 2106 28 6.95648e+06 173708 706193. 2443.58 2.03 0.166571 0.144956 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.23 0.08 0.16 -1 -1 0.23 0.0261525 0.0227576 62 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 6.81 vpr 63.54 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30476 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 24.7 MiB 0.72 751 12465 5336 6622 507 63.5 MiB 0.12 0.00 4.015 -133.992 -4.015 4.015 0.66 0.000755864 0.000680262 0.0619023 0.0574829 40 2442 42 6.95648e+06 217135 706193. 2443.58 3.31 0.237494 0.207101 26914 176310 -1 2067 34 2814 3819 356731 77169 4.26826 4.26826 -149.469 -4.26826 0 0 926341. 3205.33 0.23 0.13 0.16 -1 -1 0.23 0.0448345 0.0388219 78 63 60 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.08 vpr 63.91 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 30832 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 25.1 MiB 1.43 807 14351 4061 7900 2390 63.9 MiB 0.13 0.00 3.71619 -135.355 -3.71619 3.71619 0.69 0.000858692 0.000797229 0.0605001 0.0561588 46 2908 40 6.95648e+06 448746 828058. 2865.25 3.78 0.249161 0.217249 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0372937 0.032416 88 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.65 vpr 63.70 MiB 0.07 7192 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65228 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 24.8 MiB 0.92 718 14035 5965 7479 591 63.7 MiB 0.13 0.00 3.9948 -135.983 -3.9948 3.9948 0.67 0.000773686 0.00071551 0.0638168 0.0592364 46 2454 32 6.95648e+06 318465 828058. 2865.25 3.83 0.235805 0.206275 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0303671 0.0265644 81 94 31 31 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.06 vpr 63.68 MiB 0.04 7244 -1 -1 1 0.04 -1 -1 30556 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 24.8 MiB 1.42 700 13668 5834 7221 613 63.7 MiB 0.15 0.00 3.27591 -109.838 -3.27591 3.27591 0.66 0.000755956 0.00070101 0.0751212 0.0697989 46 2600 45 6.95648e+06 260562 828058. 2865.25 2.85 0.25841 0.226917 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.034217 0.0297953 75 92 26 26 90 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 7.63 vpr 63.47 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30544 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.6 MiB 1.49 782 12628 3922 6830 1876 63.5 MiB 0.13 0.00 3.65989 -133.508 -3.65989 3.65989 0.57 0.000922507 0.000856314 0.0649009 0.0603194 48 2610 29 6.95648e+06 188184 865456. 2994.66 3.43 0.22429 0.197631 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.26 0.15 0.12 -1 -1 0.26 0.0412986 0.0359143 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.30 vpr 63.49 MiB 0.03 7136 -1 -1 1 0.03 -1 -1 30312 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 24.7 MiB 1.07 662 10163 3749 4795 1619 63.5 MiB 0.09 0.00 3.14182 -102.393 -3.14182 3.14182 0.65 0.000730764 0.000678505 0.0448402 0.0416658 48 1906 29 6.95648e+06 318465 865456. 2994.66 2.59 0.198782 0.173061 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.26 0.10 0.18 -1 -1 0.26 0.0310619 0.0270888 77 88 26 26 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 12.34 vpr 62.85 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30408 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.83 574 9219 3815 5040 364 62.9 MiB 0.08 0.00 2.94595 -112.182 -2.94595 2.94595 0.66 0.000622819 0.00057993 0.0393723 0.0367023 54 1709 44 6.95648e+06 144757 949917. 3286.91 8.76 0.340884 0.293818 29506 232905 -1 1314 20 1289 2001 164628 39075 3.22812 3.22812 -119.217 -3.22812 0 0 1.17392e+06 4061.99 0.28 0.08 0.20 -1 -1 0.28 0.0314778 0.0281022 61 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 8.99 vpr 63.57 MiB 0.04 7044 -1 -1 1 0.05 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 24.7 MiB 3.20 749 15688 6578 8529 581 63.6 MiB 0.14 0.00 3.77419 -136.605 -3.77419 3.77419 0.66 0.00077828 0.000721461 0.0689048 0.0639232 54 2315 29 6.95648e+06 347416 949917. 3286.91 2.84 0.232743 0.204299 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.32 0.10 0.20 -1 -1 0.32 0.0345556 0.0302283 84 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 5.19 vpr 63.67 MiB 0.03 7068 -1 -1 1 0.03 -1 -1 30608 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.9 MiB 0.37 800 13117 5732 6986 399 63.7 MiB 0.13 0.00 3.79019 -142.199 -3.79019 3.79019 0.65 0.000776593 0.000720287 0.0635771 0.0588791 44 2724 46 6.95648e+06 188184 787024. 2723.27 2.11 0.246084 0.214538 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.29 0.09 0.16 -1 -1 0.29 0.0321258 0.0286356 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 5.91 vpr 63.16 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30576 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 24.3 MiB 1.03 575 11609 4562 5941 1106 63.2 MiB 0.10 0.00 3.25495 -109.238 -3.25495 3.25495 0.65 0.000636295 0.000591527 0.0498343 0.0463619 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.16 0.190372 0.166014 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.23 0.07 0.18 -1 -1 0.23 0.027248 0.0238209 60 55 32 32 54 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 4.89 vpr 62.87 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30416 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.27 835 9529 3959 5371 199 62.9 MiB 0.08 0.00 3.0815 -119.168 -3.0815 3.0815 0.62 0.000600068 0.000558461 0.0391596 0.0364964 38 2078 34 6.95648e+06 159232 678818. 2348.85 2.05 0.172971 0.150865 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.25 0.09 0.14 -1 -1 0.25 0.0287636 0.025417 63 4 93 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.05 vpr 63.63 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30228 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 24.7 MiB 1.08 782 14483 5692 6794 1997 63.6 MiB 0.13 0.00 3.70334 -129.205 -3.70334 3.70334 0.68 0.000745533 0.000691208 0.0628421 0.0583984 38 2558 24 6.95648e+06 275038 678818. 2348.85 3.29 0.218849 0.191941 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.22 0.07 0.12 -1 -1 0.22 0.0276631 0.0243146 78 59 60 32 58 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 9.20 vpr 63.71 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30324 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 24.9 MiB 0.73 793 11474 4768 6294 412 63.7 MiB 0.11 0.00 3.90986 -132.869 -3.90986 3.90986 0.66 0.000782064 0.000721097 0.0529644 0.0492692 40 2890 43 6.95648e+06 260562 706193. 2443.58 5.53 0.231613 0.202155 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0290692 0.0257096 78 88 28 28 88 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 7.96 vpr 63.70 MiB 0.07 7084 -1 -1 1 0.04 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 25.0 MiB 0.40 1152 4375 861 3334 180 63.7 MiB 0.06 0.00 4.48239 -161.071 -4.48239 4.48239 0.72 0.000791395 0.000734941 0.0199656 0.0186126 46 3119 32 6.95648e+06 390843 828058. 2865.25 4.65 0.199845 0.173553 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.26 0.11 0.18 -1 -1 0.26 0.0326318 0.028675 100 3 156 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 5.81 vpr 63.54 MiB 0.04 7072 -1 -1 1 0.04 -1 -1 30476 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65068 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 24.8 MiB 0.97 698 14528 6104 7488 936 63.5 MiB 0.13 0.00 3.34296 -113.702 -3.34296 3.34296 0.66 0.000717091 0.000666075 0.063989 0.0594953 44 2314 27 6.95648e+06 260562 787024. 2723.27 2.08 0.21557 0.188858 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0338229 0.0294278 77 59 60 30 56 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 4.86 vpr 62.87 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30604 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 24.3 MiB 0.69 465 10459 4157 5359 943 62.9 MiB 0.08 0.00 3.15776 -95.8334 -3.15776 3.15776 0.67 0.000444349 0.00040769 0.0367995 0.0340578 38 1652 25 6.95648e+06 217135 678818. 2348.85 1.59 0.135008 0.117575 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.23 0.05 0.13 -1 -1 0.23 0.0210303 0.0183744 57 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 7.12 vpr 63.88 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 30628 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 25.6 MiB 0.72 956 13513 4288 6425 2800 63.9 MiB 0.15 0.00 4.037 -139.704 -4.037 4.037 0.74 0.000960914 0.000882125 0.074344 0.0690592 54 3228 47 6.95648e+06 434271 949917. 3286.91 3.45 0.288561 0.251752 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.28 0.12 0.15 -1 -1 0.28 0.0407435 0.0354206 103 95 62 31 95 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 8.85 vpr 63.85 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30616 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 25.1 MiB 3.45 899 8716 2535 4990 1191 63.8 MiB 0.10 0.00 4.57784 -152.287 -4.57784 4.57784 0.66 0.00083435 0.000775614 0.048477 0.0451101 40 2620 26 6.95648e+06 202660 706193. 2443.58 2.54 0.215211 0.18713 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.33 0.09 0.18 -1 -1 0.33 0.0293448 0.0259072 79 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 7.98 vpr 63.32 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30388 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 24.4 MiB 2.74 500 11389 4353 5738 1298 63.3 MiB 0.10 0.00 3.0346 -106.135 -3.0346 3.0346 0.67 0.000685998 0.000637011 0.0531175 0.0493546 42 2142 50 6.95648e+06 144757 744469. 2576.02 2.59 0.221529 0.192768 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.23 0.07 0.15 -1 -1 0.23 0.029 0.0252441 58 89 0 0 89 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.54 vpr 63.71 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 24.8 MiB 0.33 819 12938 5293 7361 284 63.7 MiB 0.12 0.00 4.12326 -140.658 -4.12326 4.12326 0.66 0.000824745 0.000755572 0.0479804 0.044275 46 2429 24 6.95648e+06 318465 828058. 2865.25 2.40 0.162775 0.142561 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0312379 0.027321 83 34 90 30 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.24 vpr 63.81 MiB 0.05 7280 -1 -1 1 0.03 -1 -1 30708 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 25.0 MiB 0.83 852 12560 4728 5964 1868 63.8 MiB 0.12 0.00 4.1192 -140.393 -4.1192 4.1192 0.68 0.000851021 0.000790612 0.059641 0.0554474 44 3193 49 6.95648e+06 332941 787024. 2723.27 2.44 0.270564 0.23535 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.27 0.10 0.17 -1 -1 0.27 0.0361565 0.0314477 95 64 87 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 5.97 vpr 63.57 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30408 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 24.7 MiB 0.90 739 10762 4429 5782 551 63.6 MiB 0.10 0.00 3.27396 -108.751 -3.27396 3.27396 0.65 0.000727706 0.000676204 0.0461019 0.0428211 50 2308 30 6.95648e+06 289514 902133. 3121.57 2.33 0.195197 0.170237 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.27 0.09 0.15 -1 -1 0.27 0.0316708 0.0276653 78 61 58 30 58 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 6.40 vpr 63.73 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 25.0 MiB 0.50 907 15848 6161 8045 1642 63.7 MiB 0.13 0.00 3.79319 -139.401 -3.79319 3.79319 0.66 0.000779286 0.000722778 0.0579356 0.0537598 48 2368 36 6.95648e+06 492173 865456. 2994.66 3.06 0.232932 0.203765 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.35 0.08 0.18 -1 -1 0.35 0.0182665 0.0162122 91 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 6.83 vpr 63.52 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30608 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 24.9 MiB 0.51 794 15215 5485 7366 2364 63.5 MiB 0.13 0.00 3.05335 -116.88 -3.05335 3.05335 0.66 0.00077615 0.00071411 0.0572911 0.0529955 38 2664 32 6.95648e+06 448746 678818. 2348.85 3.61 0.220214 0.191983 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0339131 0.0295389 90 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 7.41 vpr 62.78 MiB 0.04 6788 -1 -1 1 0.04 -1 -1 30432 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 24.2 MiB 3.31 577 8599 3570 4706 323 62.8 MiB 0.05 0.00 3.17976 -103.796 -3.17976 3.17976 0.69 0.000600538 0.000558018 0.0212484 0.0196412 34 1710 33 6.95648e+06 188184 618332. 2139.56 1.47 0.155108 0.133252 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0226184 0.019919 56 34 58 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 5.42 vpr 63.32 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30132 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 24.5 MiB 0.78 584 9839 4132 5456 251 63.3 MiB 0.09 0.00 2.9814 -102.92 -2.9814 2.9814 0.65 0.000657456 0.000610701 0.0446546 0.041499 42 1955 38 6.95648e+06 144757 744469. 2576.02 1.97 0.188135 0.163742 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.24 0.07 0.18 -1 -1 0.24 0.0251662 0.0220192 58 82 0 0 82 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 5.80 vpr 63.56 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30360 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 0.35 743 12331 4128 5906 2297 63.6 MiB 0.10 0.00 4.24545 -140.476 -4.24545 4.24545 0.65 0.000723478 0.000671986 0.0463322 0.0430797 52 2318 48 6.95648e+06 405319 926341. 3205.33 2.66 0.215962 0.187934 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.29 0.09 0.13 -1 -1 0.29 0.0305602 0.02668 86 34 93 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.33 vpr 62.86 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30480 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 24.3 MiB 1.09 494 12399 5297 6440 662 62.9 MiB 0.12 0.00 3.26295 -100.502 -3.26295 3.26295 0.65 0.00061651 0.000573571 0.0618932 0.0575124 40 2019 35 6.95648e+06 202660 706193. 2443.58 2.49 0.196932 0.17265 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.25 0.08 0.15 -1 -1 0.25 0.0266303 0.0231931 59 56 29 29 52 26 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 6.65 vpr 62.88 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30280 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 1.00 698 10149 3910 5225 1014 62.9 MiB 0.09 0.00 3.05815 -118.306 -3.05815 3.05815 0.66 0.000658698 0.000612929 0.044926 0.0417695 38 2191 39 6.95648e+06 144757 678818. 2348.85 2.99 0.179291 0.156211 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0269985 0.0235395 61 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 10.42 vpr 63.61 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30392 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 25.0 MiB 0.95 717 11607 3761 5813 2033 63.6 MiB 0.11 0.00 3.1175 -113.433 -3.1175 3.1175 0.66 0.000749416 0.000695965 0.0489661 0.0454743 40 2046 32 6.95648e+06 347416 706193. 2443.58 6.64 0.355485 0.306873 26914 176310 -1 1703 21 1731 2236 195586 47682 3.41277 3.41277 -124.646 -3.41277 0 0 926341. 3205.33 0.25 0.09 0.17 -1 -1 0.25 0.0312178 0.0273329 82 64 58 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.48 vpr 63.02 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30352 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 24.3 MiB 2.06 682 10459 3058 6921 480 63.0 MiB 0.10 0.00 3.13575 -104.344 -3.13575 3.13575 0.66 0.000659561 0.000614985 0.04815 0.0448486 36 1970 40 6.95648e+06 159232 648988. 2245.63 2.69 0.188081 0.163936 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.27 0.07 0.14 -1 -1 0.27 0.0277792 0.0241797 57 55 31 31 53 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.54 vpr 63.54 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 24.7 MiB 1.41 710 12323 5117 6727 479 63.5 MiB 0.11 0.00 3.0155 -107.222 -3.0155 3.0155 0.71 0.000739018 0.000686485 0.053241 0.0494478 48 2125 29 6.95648e+06 275038 865456. 2994.66 2.29 0.206655 0.18079 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0306844 0.0268187 76 65 52 26 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 6.57 vpr 63.74 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30416 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 25.1 MiB 1.36 717 15298 5325 7460 2513 63.7 MiB 0.14 0.00 3.41641 -118.296 -3.41641 3.41641 0.65 0.00115133 0.0010924 0.0650913 0.0604416 44 2443 41 6.95648e+06 361892 787024. 2723.27 2.29 0.242246 0.211684 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.0328698 0.0285708 85 93 31 31 92 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 5.29 vpr 63.25 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 0.78 564 10149 3066 5426 1657 63.3 MiB 0.10 0.00 2.9023 -103.177 -2.9023 2.9023 0.65 0.000664899 0.000617401 0.0489119 0.0455236 44 2002 28 6.95648e+06 144757 787024. 2723.27 1.82 0.182272 0.159285 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0308609 0.0268999 61 61 32 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 5.89 vpr 63.18 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30060 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 24.3 MiB 1.01 611 8289 3413 4626 250 63.2 MiB 0.08 0.00 3.0515 -113.367 -3.0515 3.0515 0.66 0.000686792 0.000638598 0.0395605 0.0368441 52 1978 31 6.95648e+06 144757 926341. 3205.33 2.11 0.185806 0.161943 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.29 0.08 0.19 -1 -1 0.29 0.0298204 0.0262716 63 63 32 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.00 vpr 63.62 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30668 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 24.7 MiB 0.86 951 8283 1857 5834 592 63.6 MiB 0.09 0.00 3.78219 -143.123 -3.78219 3.78219 0.66 0.000785399 0.000729796 0.0333155 0.0309581 40 2477 25 6.95648e+06 419795 706193. 2443.58 3.39 0.199641 0.173447 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.23 0.14 0.16 -1 -1 0.23 0.039667 0.0345172 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.61 vpr 63.36 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30520 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 24.8 MiB 0.90 739 8336 2662 4258 1416 63.4 MiB 0.08 0.00 3.1065 -104.923 -3.1065 3.1065 0.66 0.000708359 0.000658345 0.0369582 0.0343852 38 2387 48 6.95648e+06 275038 678818. 2348.85 4.03 0.209509 0.181675 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0294082 0.0257591 77 62 56 29 58 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.46 vpr 63.88 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 30796 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 25.1 MiB 1.52 819 16473 6066 7302 3105 63.9 MiB 0.14 0.00 3.81039 -138.347 -3.81039 3.81039 0.69 0.000867384 0.000804792 0.0716372 0.0664977 48 2605 47 6.95648e+06 419795 865456. 2994.66 4.95 0.284041 0.248003 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.27 0.15 0.19 -1 -1 0.27 0.0461677 0.0397452 89 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.15 vpr 62.79 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30360 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 24.2 MiB 1.27 588 9529 3953 5280 296 62.8 MiB 0.08 0.00 3.02776 -101.68 -3.02776 3.02776 0.69 0.00057124 0.000540393 0.03761 0.0350133 38 2072 26 6.95648e+06 159232 678818. 2348.85 2.21 0.153644 0.133896 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0330821 0.0288432 58 4 85 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.77 vpr 63.91 MiB 0.06 7036 -1 -1 1 0.04 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 25.0 MiB 0.90 751 13335 4844 6817 1674 63.9 MiB 0.12 0.00 3.74945 -128.098 -3.74945 3.74945 0.66 0.000788405 0.000730991 0.0567411 0.0524797 50 2285 32 6.95648e+06 332941 902133. 3121.57 3.04 0.222384 0.194103 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.26 0.08 0.18 -1 -1 0.26 0.0332403 0.0290069 81 92 28 28 92 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.28 vpr 63.29 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30172 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 2.75 613 11854 5235 6332 287 63.3 MiB 0.10 0.00 2.96105 -113.67 -2.96105 2.96105 0.66 0.000546313 0.000499437 0.056373 0.0522847 40 2066 46 6.95648e+06 144757 706193. 2443.58 2.80 0.225997 0.196887 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.23 0.10 0.18 -1 -1 0.23 0.0318516 0.0277945 61 96 0 0 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 5.86 vpr 63.64 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30340 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 1.03 784 11983 4223 5778 1982 63.6 MiB 0.11 0.00 3.13882 -116.487 -3.13882 3.13882 0.66 0.000772501 0.000716438 0.050022 0.0464075 48 2212 28 6.95648e+06 347416 865456. 2994.66 1.98 0.21085 0.183953 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.26 0.09 0.19 -1 -1 0.26 0.0337236 0.0294333 84 65 61 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 8.98 vpr 63.69 MiB 0.03 7352 -1 -1 1 0.04 -1 -1 30952 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 25.3 MiB 1.29 961 18301 6218 9454 2629 63.7 MiB 0.17 0.00 4.52824 -160.34 -4.52824 4.52824 0.67 0.000919043 0.000852124 0.0791877 0.0735032 46 3150 41 6.95648e+06 477698 828058. 2865.25 4.69 0.292937 0.256451 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.26 0.13 0.17 -1 -1 0.26 0.0390305 0.0337889 104 96 64 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.01 vpr 62.56 MiB 0.02 6772 -1 -1 1 0.02 -1 -1 30304 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 24.0 MiB 0.43 395 8267 2975 4043 1249 62.6 MiB 0.07 0.00 2.20646 -76.6701 -2.20646 2.20646 0.67 0.000636996 0.000592323 0.0362019 0.0336536 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.06 0.159408 0.137956 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.22 0.05 0.15 -1 -1 0.22 0.0224677 0.0194797 45 56 0 0 53 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 5.87 vpr 62.81 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30436 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 24.2 MiB 1.61 505 9994 3801 4923 1270 62.8 MiB 0.08 0.00 3.20866 -106.336 -3.20866 3.20866 0.66 0.000616985 0.000574089 0.0419172 0.0390189 40 1597 24 6.95648e+06 173708 706193. 2443.58 1.65 0.166391 0.144988 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.23 0.05 0.15 -1 -1 0.23 0.0156791 0.013824 58 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 5.06 vpr 63.39 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 24.5 MiB 0.23 594 9219 3126 4706 1387 63.4 MiB 0.09 0.00 2.93285 -111.664 -2.93285 2.93285 0.68 0.000648819 0.000602602 0.0442474 0.0411938 52 1888 25 6.95648e+06 144757 926341. 3205.33 2.02 0.176272 0.154075 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.28 0.09 0.20 -1 -1 0.28 0.0302459 0.0263813 65 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 10.04 vpr 62.70 MiB 0.07 6976 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 24.2 MiB 0.49 415 9310 3976 4598 736 62.7 MiB 0.08 0.00 3.24096 -89.6096 -3.24096 3.24096 0.68 0.000630908 0.000587555 0.0406688 0.0378903 40 1641 47 6.95648e+06 217135 706193. 2443.58 6.79 0.290968 0.249137 26914 176310 -1 1286 21 1168 1563 123902 30269 3.09002 3.09002 -98.7354 -3.09002 0 0 926341. 3205.33 0.24 0.06 0.16 -1 -1 0.24 0.0227539 0.0198202 56 34 50 25 25 25 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 7.74 vpr 63.91 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65440 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 1.05 849 10835 4559 6029 247 63.9 MiB 0.11 0.00 3.79924 -134.385 -3.79924 3.79924 0.57 0.00080774 0.000748651 0.0564517 0.0523913 44 3443 36 6.95648e+06 188184 787024. 2723.27 3.99 0.232864 0.202839 27778 195446 -1 2587 23 2101 3728 353454 70858 4.30096 4.30096 -155.876 -4.30096 0 0 997811. 3452.63 0.25 0.12 0.17 -1 -1 0.25 0.0356805 0.0310493 77 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.30 vpr 63.66 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30336 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 25.0 MiB 0.87 742 12512 4241 5927 2344 63.7 MiB 0.13 0.00 3.1116 -112.527 -3.1116 3.1116 0.74 0.000781147 0.000724011 0.0582048 0.0539414 40 2297 45 6.95648e+06 419795 706193. 2443.58 2.57 0.243824 0.212495 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0402471 0.0349383 87 94 29 29 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 5.80 vpr 63.40 MiB 0.02 7136 -1 -1 1 0.04 -1 -1 30600 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 24.8 MiB 0.57 1062 15584 5717 7278 2589 63.4 MiB 0.15 0.00 4.46104 -158.567 -4.46104 4.46104 0.66 0.00081645 0.000758503 0.0707713 0.0656883 50 2979 31 6.99608e+06 323745 902133. 3121.57 2.38 0.242973 0.212833 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.30 0.09 0.22 -1 -1 0.30 0.0331302 0.0291028 130 96 32 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 6.69 vpr 63.59 MiB 0.03 7080 -1 -1 1 0.03 -1 -1 30652 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 24.9 MiB 1.29 1018 13610 5732 7207 671 63.6 MiB 0.13 0.00 4.50158 -148.332 -4.50158 4.50158 0.65 0.000761825 0.000706997 0.0612353 0.0568528 54 3118 36 6.99608e+06 294314 949917. 3286.91 2.47 0.228463 0.199738 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.29 0.10 0.21 -1 -1 0.29 0.0313994 0.0275342 117 91 30 30 89 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 17.49 vpr 63.60 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 24.8 MiB 0.88 1040 13610 5701 7488 421 63.6 MiB 0.13 0.00 3.59279 -128.627 -3.59279 3.59279 0.65 0.000760172 0.000707191 0.060149 0.055907 40 3318 43 6.99608e+06 264882 706193. 2443.58 13.89 0.370632 0.320814 26914 176310 -1 2702 23 2033 2424 265080 55517 4.25296 4.25296 -147.611 -4.25296 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0329514 0.028739 106 65 54 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 6.35 vpr 63.05 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 24.5 MiB 0.66 806 14444 6101 7602 741 63.0 MiB 0.13 0.00 3.79615 -125.537 -3.79615 3.79615 0.68 0.000686037 0.00063742 0.0615305 0.0572096 40 2767 26 6.99608e+06 264882 706193. 2443.58 2.89 0.201639 0.176899 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0296071 0.0258638 89 34 87 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 6.26 vpr 63.38 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 24.5 MiB 0.52 871 12416 4669 6393 1354 63.4 MiB 0.13 0.00 4.27644 -154.345 -4.27644 4.27644 0.67 0.000744166 0.000691222 0.0594412 0.0552183 56 2565 50 6.99608e+06 220735 973134. 3367.25 2.76 0.245215 0.214568 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.30 0.12 0.20 -1 -1 0.30 0.0366584 0.0321185 93 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 5.97 vpr 63.56 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30404 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 24.9 MiB 0.52 1298 16069 5589 8587 1893 63.6 MiB 0.16 0.00 3.60699 -134.626 -3.60699 3.60699 0.68 0.0007667 0.000711394 0.0640642 0.0594511 48 3162 26 6.99608e+06 441471 865456. 2994.66 2.49 0.218217 0.191072 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.27 0.11 0.19 -1 -1 0.27 0.0342925 0.0299545 117 64 63 32 63 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 5.79 vpr 62.67 MiB 0.03 6904 -1 -1 1 0.03 -1 -1 30592 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 24.0 MiB 1.22 620 8289 3348 4414 527 62.7 MiB 0.08 0.00 3.30124 -103.988 -3.30124 3.30124 0.65 0.000677317 0.00063024 0.0365495 0.034047 44 2016 40 6.99608e+06 220735 787024. 2723.27 1.94 0.166544 0.144341 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0248881 0.0216495 68 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.52 vpr 63.15 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.5 MiB 0.45 708 9368 3795 5080 493 63.1 MiB 0.08 0.00 2.88485 -101.173 -2.88485 2.88485 0.66 0.00066735 0.000620804 0.0392732 0.0365734 46 2433 35 6.99608e+06 250167 828058. 2865.25 4.21 0.190732 0.166437 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.26 0.12 0.18 -1 -1 0.26 0.0350692 0.0304863 77 4 115 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 8.00 vpr 63.18 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30192 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 24.5 MiB 2.66 865 11366 4429 5807 1130 63.2 MiB 0.11 0.00 3.3156 -116.953 -3.3156 3.3156 0.66 0.000665616 0.000618279 0.0496394 0.046157 44 2856 40 6.99608e+06 220735 787024. 2723.27 2.60 0.201046 0.175342 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0311239 0.0271082 96 85 0 0 84 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 5.58 vpr 63.11 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30352 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 24.1 MiB 0.67 668 10346 4043 5155 1148 63.1 MiB 0.10 0.00 3.58059 -133.895 -3.58059 3.58059 0.66 0.000646155 0.000601029 0.0437576 0.0407396 46 2113 26 6.99608e+06 191304 828058. 2865.25 2.01 0.167608 0.14679 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0295843 0.0259148 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 8.42 vpr 63.14 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30216 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 24.4 MiB 2.22 858 10835 4264 5113 1458 63.1 MiB 0.10 0.00 3.85932 -133.017 -3.85932 3.85932 0.65 0.000649061 0.000603224 0.0466001 0.0433166 38 2753 35 6.99608e+06 220735 678818. 2348.85 3.54 0.193055 0.168216 26626 170182 -1 2153 22 1904 2554 252247 54303 3.751 3.751 -138.14 -3.751 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0284136 0.0247374 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 7.00 vpr 63.24 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30476 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 24.5 MiB 0.72 1078 12030 4277 6214 1539 63.2 MiB 0.11 0.00 3.0712 -121.401 -3.0712 3.0712 0.61 0.000658693 0.00061202 0.0505284 0.0469848 38 2768 42 6.99608e+06 206020 678818. 2348.85 3.64 0.20739 0.181113 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0303149 0.0263846 91 65 25 25 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.15 vpr 63.55 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 24.8 MiB 0.84 883 7132 1837 4428 867 63.5 MiB 0.08 0.00 3.50359 -126.552 -3.50359 3.50359 0.66 0.00074917 0.000695745 0.0341931 0.0318067 50 2388 31 6.99608e+06 235451 902133. 3121.57 2.57 0.196004 0.170519 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.27 0.09 0.15 -1 -1 0.27 0.0345373 0.0301544 101 58 64 32 57 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 7.04 vpr 63.77 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 25.1 MiB 0.80 1134 14123 4441 7724 1958 63.8 MiB 0.13 0.00 4.28564 -153.93 -4.28564 4.28564 0.66 0.000783937 0.000728008 0.0644521 0.0598661 48 3127 38 6.99608e+06 279598 865456. 2994.66 3.31 0.241495 0.211441 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.26 0.12 0.18 -1 -1 0.26 0.0386137 0.0337423 112 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 7.88 vpr 62.78 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 30648 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 24.2 MiB 2.12 572 11293 4723 5996 574 62.8 MiB 0.09 0.00 2.92195 -96.6009 -2.92195 2.92195 0.66 0.000575224 0.000534833 0.0429313 0.0399596 40 1775 30 6.99608e+06 206020 706193. 2443.58 3.20 0.170613 0.14835 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.23 0.07 0.10 -1 -1 0.23 0.0248046 0.0216046 67 29 58 29 24 24 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.62 vpr 63.60 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30584 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 24.8 MiB 1.83 1040 13324 4763 6768 1793 63.6 MiB 0.08 0.00 3.68279 -132.173 -3.68279 3.68279 0.67 0.000406344 0.000373317 0.0316411 0.0291207 50 2876 28 6.99608e+06 235451 902133. 3121.57 2.02 0.180162 0.156062 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.27 0.14 0.18 -1 -1 0.27 0.0478658 0.0426089 106 63 64 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 7.37 vpr 63.41 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 24.9 MiB 1.15 1122 6731 1649 4394 688 63.4 MiB 0.08 0.00 3.32994 -131.897 -3.32994 3.32994 0.66 0.00073941 0.000686582 0.0317383 0.029521 38 3062 22 6.99608e+06 250167 678818. 2348.85 3.39 0.182341 0.158497 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.23 0.09 0.16 -1 -1 0.23 0.0297174 0.0259998 99 57 64 32 56 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 5.46 vpr 63.30 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30088 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 24.4 MiB 0.70 871 13856 5887 7726 243 63.3 MiB 0.13 0.00 3.39034 -128.572 -3.39034 3.39034 0.65 0.000680821 0.000632571 0.0593126 0.0551658 44 3195 31 6.99608e+06 206020 787024. 2723.27 2.01 0.203122 0.177999 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0278798 0.0244046 91 65 29 29 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 6.38 vpr 62.42 MiB 0.04 6740 -1 -1 1 0.03 -1 -1 30132 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 23.8 MiB 2.09 536 9041 3932 4796 313 62.4 MiB 0.04 0.00 2.34646 -88.6787 -2.34646 2.34646 0.63 0.000224508 0.000206402 0.0147198 0.0135595 36 1652 38 6.99608e+06 161872 648988. 2245.63 1.79 0.127571 0.109242 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.21 0.05 0.17 -1 -1 0.21 0.0202662 0.017624 56 34 24 24 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 6.87 vpr 63.20 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30556 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 24.4 MiB 2.08 1018 11532 3380 6660 1492 63.2 MiB 0.10 0.00 3.58639 -133.629 -3.58639 3.58639 0.66 0.000666235 0.00061958 0.0482517 0.044876 40 2527 22 6.99608e+06 220735 706193. 2443.58 2.08 0.178475 0.156058 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0276308 0.0241249 91 64 31 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.32 vpr 63.42 MiB 0.02 7044 -1 -1 1 0.05 -1 -1 30348 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 24.6 MiB 0.43 1089 12759 4547 6573 1639 63.4 MiB 0.11 0.00 4.04748 -146.851 -4.04748 4.04748 0.68 0.000724068 0.000672777 0.0513131 0.0476978 46 2738 33 6.99608e+06 338461 828058. 2865.25 2.10 0.204908 0.179098 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0334569 0.0293014 97 34 91 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 6.41 vpr 63.62 MiB 0.04 7216 -1 -1 1 0.03 -1 -1 31008 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 25.3 MiB 1.15 1280 15206 4884 7262 3060 63.6 MiB 0.15 0.00 4.01908 -141.768 -4.01908 4.01908 0.65 0.000842705 0.000783788 0.0713301 0.0663243 46 3184 26 6.99608e+06 323745 828058. 2865.25 2.41 0.242815 0.212535 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0417096 0.0362386 138 124 0 0 125 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.74 vpr 62.41 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30628 -1 -1 15 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 23.9 MiB 0.70 401 7217 2934 3827 456 62.4 MiB 0.05 0.00 2.7074 -79.2163 -2.7074 2.7074 0.69 0.000441244 0.000410075 0.0224926 0.0209252 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.45 0.119014 0.102823 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.0154127 0.0135239 52 30 26 26 22 22 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 5.69 vpr 63.12 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30208 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 24.5 MiB 0.77 698 9036 3669 4978 389 63.1 MiB 0.12 0.00 3.97238 -133.231 -3.97238 3.97238 0.68 0.000688351 0.000639785 0.0634912 0.0591259 62 1908 21 6.99608e+06 176588 1.05005e+06 3633.38 1.96 0.198255 0.174522 30946 263737 -1 1546 22 1313 2069 150685 35340 3.89902 3.89902 -133.735 -3.89902 0 0 1.30136e+06 4502.97 0.31 0.08 0.23 -1 -1 0.31 0.0360682 0.0319935 75 3 122 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.11 vpr 62.21 MiB 0.02 6652 -1 -1 1 0.04 -1 -1 30352 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 23.7 MiB 0.23 736 9906 3603 5031 1272 62.2 MiB 0.07 0.00 2.06111 -84.6894 -2.06111 2.06111 0.67 0.000475922 0.00044278 0.0327309 0.0304482 34 1682 40 6.99608e+06 117725 618332. 2139.56 1.39 0.119201 0.104252 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0209472 0.0183284 44 3 53 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 6.48 vpr 63.72 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30536 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 24.9 MiB 1.13 836 12681 5269 6945 467 63.7 MiB 0.12 0.00 3.87925 -141.78 -3.87925 3.87925 0.66 0.000739996 0.000687363 0.0563669 0.0524048 44 3391 42 6.99608e+06 250167 787024. 2723.27 2.46 0.230536 0.202045 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0329114 0.0287859 95 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 4.88 vpr 63.33 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30152 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.5 MiB 0.26 1064 14375 4737 7721 1917 63.3 MiB 0.11 0.00 2.93295 -116.62 -2.93295 2.93295 0.65 0.00069251 0.000642787 0.0506511 0.0470429 40 2476 21 6.99608e+06 412039 706193. 2443.58 1.91 0.186871 0.163521 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.24 0.09 0.16 -1 -1 0.24 0.0285983 0.0250648 87 3 124 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 6.57 vpr 63.59 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30620 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1077 13105 3562 8179 1364 63.6 MiB 0.15 0.00 3.82425 -139.818 -3.82425 3.82425 0.65 0.000890744 0.000834222 0.0660261 0.0613206 46 3235 48 6.99608e+06 309029 828058. 2865.25 2.99 0.252722 0.221135 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0338563 0.0298086 115 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 6.25 vpr 62.84 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30064 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 24.2 MiB 1.10 701 9397 3869 5271 257 62.8 MiB 0.08 0.00 2.9841 -107.493 -2.9841 2.9841 0.65 0.000615013 0.000571898 0.0388789 0.0361651 40 2056 26 6.99608e+06 161872 706193. 2443.58 2.50 0.16791 0.146054 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0260136 0.0227245 72 34 54 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 13.32 vpr 62.76 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30116 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 24.1 MiB 7.15 650 7975 2399 4401 1175 62.8 MiB 0.04 0.00 3.55679 -118.022 -3.55679 3.55679 0.65 0.000276819 0.000254598 0.0155191 0.0143283 46 2056 46 6.99608e+06 191304 828058. 2865.25 3.36 0.167484 0.143808 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0321291 0.0283024 73 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.19 vpr 62.77 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 24.1 MiB 1.13 739 7975 3247 4371 357 62.8 MiB 0.09 0.00 3.69125 -116.127 -3.69125 3.69125 0.65 0.000585019 0.000544306 0.0406481 0.0377877 38 2264 33 6.99608e+06 220735 678818. 2348.85 2.40 0.173212 0.150756 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0235827 0.020533 72 34 56 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 4.97 vpr 62.75 MiB 0.05 6780 -1 -1 1 0.03 -1 -1 30392 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.2 MiB 0.21 696 7204 2957 4121 126 62.8 MiB 0.07 0.00 2.86245 -113.51 -2.86245 2.86245 0.70 0.000613359 0.000570273 0.0306445 0.0285266 42 2358 35 6.99608e+06 147157 744469. 2576.02 1.98 0.16356 0.141901 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.24 0.08 0.16 -1 -1 0.24 0.023784 0.0208085 64 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 6.00 vpr 62.73 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30288 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 24.3 MiB 0.66 709 9540 3934 5278 328 62.7 MiB 0.08 0.00 2.94395 -107.519 -2.94395 2.94395 0.70 0.000627913 0.000583827 0.0386868 0.0359895 46 2091 24 6.99608e+06 220735 828058. 2865.25 2.58 0.170633 0.148816 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.26 0.07 0.18 -1 -1 0.26 0.0272535 0.0238171 77 34 61 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.93 vpr 63.19 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 24.6 MiB 2.69 930 10835 4554 5858 423 63.2 MiB 0.10 0.00 2.88685 -103.645 -2.88685 2.88685 0.70 0.000631484 0.000587347 0.0441776 0.0410564 36 2556 47 6.99608e+06 235451 648988. 2245.63 3.55 0.193263 0.168078 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.21 0.07 0.19 -1 -1 0.21 0.0253984 0.0221193 86 61 29 29 57 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.43 vpr 63.90 MiB 0.05 7040 -1 -1 1 0.04 -1 -1 30564 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 25.2 MiB 0.94 1138 15273 6065 7495 1713 63.9 MiB 0.16 0.00 3.90815 -143.373 -3.90815 3.90815 0.65 0.000830365 0.000771992 0.0730857 0.0679415 46 3798 44 6.99608e+06 294314 828058. 2865.25 4.56 0.265474 0.23183 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.25 0.11 0.18 -1 -1 0.25 0.0365603 0.0319042 106 29 128 32 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 6.21 vpr 63.58 MiB 0.04 7088 -1 -1 1 0.03 -1 -1 30608 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.98 999 10762 3395 5388 1979 63.6 MiB 0.11 0.00 4.20458 -152.083 -4.20458 4.20458 0.66 0.000771363 0.000716365 0.0496059 0.0461193 64 2302 23 6.99608e+06 264882 1.08113e+06 3740.92 2.30 0.202718 0.17718 31522 276338 -1 1920 22 1973 2633 212687 48768 3.98155 3.98155 -144.262 -3.98155 0 0 1.36325e+06 4717.13 0.33 0.10 0.22 -1 -1 0.33 0.0338944 0.0296167 110 65 62 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 5.88 vpr 63.35 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30448 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 24.5 MiB 0.80 1070 8867 2185 5933 749 63.4 MiB 0.08 0.00 3.49385 -125.494 -3.49385 3.49385 0.66 0.000681264 0.000633276 0.0391236 0.0364011 38 2592 37 6.99608e+06 235451 678818. 2348.85 2.50 0.189359 0.164516 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0288946 0.0251809 99 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 5.66 vpr 63.54 MiB 0.08 7188 -1 -1 1 0.05 -1 -1 30552 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 24.9 MiB 0.79 1182 9006 2249 6265 492 63.5 MiB 0.10 0.00 3.66135 -134.693 -3.66135 3.66135 0.65 0.000756388 0.00070284 0.0426239 0.0396379 40 2955 30 6.99608e+06 264882 706193. 2443.58 2.09 0.201157 0.175041 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.23 0.10 0.17 -1 -1 0.23 0.0301862 0.0265043 105 64 60 30 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 6.05 vpr 63.59 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30508 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 25.2 MiB 0.92 1281 17663 7641 9474 548 63.6 MiB 0.17 0.00 4.62587 -160.146 -4.62587 4.62587 0.65 0.000843255 0.000783379 0.0827718 0.0768699 48 3305 25 6.99608e+06 338461 865456. 2994.66 2.23 0.248954 0.218231 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.31 0.13 0.19 -1 -1 0.31 0.038675 0.0336927 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 8.05 vpr 63.66 MiB 0.03 7188 -1 -1 1 0.04 -1 -1 30476 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 24.9 MiB 2.88 1159 10762 4075 5172 1515 63.7 MiB 0.11 0.00 4.92973 -159.817 -4.92973 4.92973 0.65 0.000780689 0.000724845 0.0497533 0.0462082 44 3431 27 6.99608e+06 279598 787024. 2723.27 2.36 0.210763 0.184035 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.25 0.13 0.17 -1 -1 0.25 0.0450943 0.039127 117 90 31 31 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.84 vpr 63.75 MiB 0.03 7128 -1 -1 1 0.04 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 25.0 MiB 2.22 1059 13763 5785 7510 468 63.8 MiB 0.13 0.00 3.58185 -130.714 -3.58185 3.58185 0.66 0.000750495 0.000696652 0.0610427 0.0566747 46 2920 39 6.99608e+06 294314 828058. 2865.25 2.84 0.23169 0.202647 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0325575 0.0284389 107 64 60 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.55 vpr 63.83 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30744 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 25.1 MiB 0.84 1271 6556 1686 3783 1087 63.8 MiB 0.07 0.00 3.81927 -146.587 -3.81927 3.81927 0.70 0.000767266 0.000712809 0.0317367 0.0295351 40 3290 49 6.99608e+06 250167 706193. 2443.58 3.99 0.215272 0.186404 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.23 0.15 0.10 -1 -1 0.23 0.0391876 0.0341166 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 8.70 vpr 63.61 MiB 0.06 7276 -1 -1 1 0.04 -1 -1 30624 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 25.1 MiB 2.13 1530 16529 5778 8459 2292 63.6 MiB 0.18 0.00 4.81093 -174.639 -4.81093 4.81093 0.67 0.000927381 0.000861553 0.0849029 0.0789041 46 4411 29 6.99608e+06 323745 828058. 2865.25 3.52 0.267808 0.235147 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.31 0.15 0.17 -1 -1 0.31 0.0436924 0.0380498 139 96 62 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 10.32 vpr 63.10 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30572 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 24.4 MiB 0.81 802 9996 3771 4383 1842 63.1 MiB 0.10 0.00 3.1395 -118.304 -3.1395 3.1395 0.68 0.000629305 0.000585174 0.0453582 0.0422303 40 1998 21 6.99608e+06 191304 706193. 2443.58 6.82 0.293299 0.252879 26914 176310 -1 1846 22 1556 1917 164650 33970 3.16707 3.16707 -125.758 -3.16707 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0273871 0.0239132 75 34 62 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.97 vpr 63.53 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30324 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 24.8 MiB 0.65 1237 14606 4845 8003 1758 63.5 MiB 0.14 0.00 4.54014 -162.571 -4.54014 4.54014 0.66 0.000768294 0.000713832 0.0670838 0.062325 44 3549 35 6.99608e+06 264882 787024. 2723.27 3.59 0.238086 0.208857 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0333396 0.029088 106 64 62 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 5.99 vpr 63.62 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30660 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 24.9 MiB 1.05 1279 13077 3808 7089 2180 63.6 MiB 0.13 0.00 3.54953 -133.609 -3.54953 3.54953 0.65 0.000763955 0.000709996 0.0576479 0.0536177 46 3226 21 6.99608e+06 294314 828058. 2865.25 2.19 0.207743 0.182355 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.25 0.08 0.16 -1 -1 0.25 0.0302954 0.0265118 108 63 62 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 6.58 vpr 62.97 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30536 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 24.5 MiB 0.74 797 9368 3826 5299 243 63.0 MiB 0.10 0.00 3.54729 -133.832 -3.54729 3.54729 0.66 0.000734371 0.000675093 0.0437773 0.0407151 46 2734 24 6.99608e+06 191304 828058. 2865.25 3.14 0.190573 0.166758 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0292219 0.0255247 77 3 128 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 6.64 vpr 63.71 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30356 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 24.9 MiB 1.25 1139 10883 2905 7208 770 63.7 MiB 0.11 0.00 3.32994 -127.882 -3.32994 3.32994 0.65 0.000786047 0.000729561 0.0505816 0.0469466 46 3143 36 6.99608e+06 279598 828058. 2865.25 2.54 0.232581 0.202769 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.28 0.09 0.20 -1 -1 0.28 0.033205 0.0290585 120 96 25 25 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.92 vpr 63.49 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30332 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 24.8 MiB 0.97 1139 12528 3436 7246 1846 63.5 MiB 0.12 0.00 3.59669 -136.453 -3.59669 3.59669 0.70 0.000772392 0.000716305 0.0554568 0.0515376 40 3651 35 6.99608e+06 294314 706193. 2443.58 4.23 0.229341 0.20103 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.23 0.12 0.16 -1 -1 0.23 0.03313 0.0289493 106 61 64 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 6.53 vpr 63.57 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30420 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 24.9 MiB 0.70 1314 14431 4781 7561 2089 63.6 MiB 0.16 0.00 3.61639 -141.899 -3.61639 3.61639 0.69 0.000799338 0.000742896 0.0736985 0.0682933 40 3393 43 6.99608e+06 250167 706193. 2443.58 2.82 0.250698 0.219817 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.33 0.11 0.17 -1 -1 0.33 0.0353718 0.0309905 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.19 vpr 63.42 MiB 0.03 6892 -1 -1 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 24.6 MiB 0.84 813 11432 3614 6147 1671 63.4 MiB 0.11 0.00 3.93015 -141.517 -3.93015 3.93015 0.67 0.000738821 0.000683383 0.0518395 0.0481751 48 3063 38 6.99608e+06 235451 865456. 2994.66 3.56 0.220954 0.193598 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.26 0.12 0.14 -1 -1 0.26 0.0331824 0.0290848 94 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 16.68 vpr 63.61 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30836 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65140 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 25.0 MiB 0.81 930 14500 5516 6956 2028 63.6 MiB 0.14 0.00 3.81585 -138.808 -3.81585 3.81585 0.69 0.00076894 0.000713957 0.0659461 0.0612289 44 3517 47 6.99608e+06 264882 787024. 2723.27 13.05 0.408475 0.354148 27778 195446 -1 2394 22 2308 2743 215267 47366 4.31072 4.31072 -159.984 -4.31072 0 0 997811. 3452.63 0.27 0.11 0.16 -1 -1 0.27 0.0396963 0.0345748 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 6.86 vpr 63.58 MiB 0.05 7268 -1 -1 1 0.04 -1 -1 30660 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 25.3 MiB 1.43 1399 14035 5589 6713 1733 63.6 MiB 0.14 0.00 3.97768 -141.845 -3.97768 3.97768 0.65 0.000831533 0.000772396 0.065657 0.0608105 44 3778 32 6.99608e+06 323745 787024. 2723.27 2.57 0.240097 0.209158 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.27 0.09 0.18 -1 -1 0.27 0.0329575 0.0287279 132 122 0 0 122 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.17 vpr 63.52 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 24.9 MiB 0.98 1318 15273 5215 8174 1884 63.5 MiB 0.15 0.00 3.73195 -141.182 -3.73195 3.73195 0.67 0.000809554 0.000751409 0.0700525 0.0650309 40 3892 28 6.99608e+06 294314 706193. 2443.58 4.20 0.242775 0.21262 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.33 0.17 0.17 -1 -1 0.33 0.0416189 0.0364636 126 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 5.89 vpr 63.27 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 24.3 MiB 0.49 921 12528 4814 6023 1691 63.3 MiB 0.11 0.00 2.98795 -120.412 -2.98795 2.98795 0.65 0.000642292 0.000597314 0.0508079 0.047296 46 2359 25 6.99608e+06 206020 828058. 2865.25 2.60 0.179009 0.156723 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.0271664 0.0237019 80 34 63 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.46 vpr 63.38 MiB 0.01 6992 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 24.7 MiB 0.74 1095 11776 4100 5415 2261 63.4 MiB 0.11 0.00 3.80663 -140.003 -3.80663 3.80663 0.66 0.00070677 0.00065603 0.0512866 0.0476907 46 2887 24 6.99608e+06 235451 828058. 2865.25 2.88 0.199073 0.173913 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.33 0.09 0.18 -1 -1 0.33 0.0268674 0.023867 108 94 0 0 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 6.59 vpr 63.56 MiB 0.03 7100 -1 -1 1 0.03 -1 -1 30812 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 25.1 MiB 0.85 1231 15273 6501 8321 451 63.6 MiB 0.16 0.00 4.57343 -162.846 -4.57343 4.57343 0.67 0.000884155 0.000821369 0.0787555 0.073228 54 3744 47 6.99608e+06 294314 949917. 3286.91 2.66 0.299433 0.262793 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.28 0.14 0.23 -1 -1 0.28 0.0435504 0.0379064 126 65 96 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 5.82 vpr 63.39 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.58 1100 10916 2969 6188 1759 63.4 MiB 0.11 0.00 3.58059 -138.842 -3.58059 3.58059 0.65 0.000728979 0.000676939 0.0501428 0.0466303 40 2715 36 6.99608e+06 235451 706193. 2443.58 2.52 0.216485 0.189154 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.23 0.09 0.12 -1 -1 0.23 0.0324451 0.0283235 93 34 92 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 5.62 vpr 62.90 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30444 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 24.4 MiB 0.64 716 11804 3687 5992 2125 62.9 MiB 0.10 0.00 3.75245 -123.293 -3.75245 3.75245 0.65 0.000615556 0.000572246 0.0405868 0.0377396 40 2192 44 6.99608e+06 353176 706193. 2443.58 2.30 0.183389 0.159204 26914 176310 -1 1852 25 1742 2609 294037 64139 3.89906 3.89906 -135.525 -3.89906 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0295224 0.0256409 80 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 6.10 vpr 63.88 MiB 0.05 7424 -1 -1 1 0.04 -1 -1 30976 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 25.6 MiB 0.83 1504 15883 5797 7858 2228 63.9 MiB 0.17 0.00 5.34997 -188.353 -5.34997 5.34997 0.65 0.000951193 0.000883193 0.0812633 0.0754952 56 3670 24 6.99608e+06 353176 973134. 3367.25 2.25 0.279855 0.24514 29794 239141 -1 3017 22 3279 4088 391656 83242 5.57659 5.57659 -197.891 -5.57659 0 0 1.19926e+06 4149.71 0.29 0.13 0.23 -1 -1 0.29 0.0411109 0.0359127 159 127 32 32 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 5.85 vpr 63.41 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 0.73 938 15044 6550 8115 379 63.4 MiB 0.14 0.00 4.27644 -157.663 -4.27644 4.27644 0.65 0.000742206 0.000689236 0.0680038 0.0632156 48 2674 27 6.99608e+06 235451 865456. 2994.66 2.28 0.223265 0.196109 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0318091 0.0278564 92 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 5.42 vpr 62.76 MiB 0.06 6820 -1 -1 1 0.03 -1 -1 30312 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.1 MiB 0.28 660 12763 5275 7138 350 62.8 MiB 0.10 0.00 2.98775 -114.509 -2.98775 2.98775 0.65 0.000617122 0.000573409 0.0425442 0.0395559 46 2129 35 6.99608e+06 353176 828058. 2865.25 2.43 0.175354 0.152889 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0277707 0.0241535 70 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 8.92 vpr 63.90 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 30796 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65436 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 25.1 MiB 0.68 1143 13432 5563 7207 662 63.9 MiB 0.14 0.00 4.46895 -161.038 -4.46895 4.46895 0.68 0.000854627 0.00079476 0.0680384 0.0632746 46 4011 41 6.99608e+06 264882 828058. 2865.25 5.32 0.266644 0.233091 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.26 0.12 0.14 -1 -1 0.26 0.0370189 0.032616 112 34 128 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.44 vpr 62.75 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30396 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.2 MiB 0.30 625 10614 4416 5947 251 62.8 MiB 0.09 0.00 2.85145 -111.794 -2.85145 2.85145 0.66 0.000607625 0.000564445 0.0440693 0.0409427 40 2195 42 6.99608e+06 147157 706193. 2443.58 2.49 0.183854 0.160152 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.23 0.09 0.12 -1 -1 0.23 0.0275761 0.0240165 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 5.19 vpr 62.65 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30200 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 24.2 MiB 0.65 755 9857 4076 5498 283 62.7 MiB 0.09 0.00 3.30794 -118.735 -3.30794 3.30794 0.65 0.000616739 0.000573488 0.0401466 0.0373486 44 2377 21 6.99608e+06 220735 787024. 2723.27 1.93 0.160575 0.139984 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0264088 0.023037 74 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 7.69 vpr 63.43 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30396 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 24.8 MiB 1.62 1003 15481 6003 6865 2613 63.4 MiB 0.14 0.00 3.85703 -126.704 -3.85703 3.85703 0.66 0.00074583 0.00069244 0.0703618 0.0653279 46 3294 37 6.99608e+06 294314 828058. 2865.25 3.24 0.234888 0.20583 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0342207 0.0298524 113 88 29 29 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 6.34 vpr 63.61 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30744 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 24.9 MiB 0.96 1068 14144 5407 6800 1937 63.6 MiB 0.13 0.00 4.29664 -157.784 -4.29664 4.29664 0.68 0.000769772 0.000714192 0.0640171 0.0594557 44 3303 30 6.99608e+06 264882 787024. 2723.27 2.50 0.226928 0.199222 27778 195446 -1 2309 23 2566 3447 284686 60687 4.63711 4.63711 -168.166 -4.63711 0 0 997811. 3452.63 0.25 0.10 0.18 -1 -1 0.25 0.0346218 0.0302876 109 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 6.23 vpr 63.69 MiB 0.05 7040 -1 -1 1 0.04 -1 -1 30612 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 25.0 MiB 1.00 1151 6846 1472 4993 381 63.7 MiB 0.08 0.00 4.30354 -157.84 -4.30354 4.30354 0.66 0.000772844 0.000717753 0.0326154 0.0303242 44 3666 26 6.99608e+06 264882 787024. 2723.27 2.40 0.193254 0.168014 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0331066 0.0289454 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 6.60 vpr 63.33 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 24.8 MiB 0.64 792 12585 5306 6906 373 63.3 MiB 0.11 0.00 3.44424 -128.433 -3.44424 3.44424 0.71 0.000685268 0.000636397 0.0535938 0.0498004 46 2594 31 6.99608e+06 220735 828058. 2865.25 3.18 0.197676 0.172267 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.25 0.09 0.12 -1 -1 0.25 0.0307413 0.0268935 92 65 32 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 7.40 vpr 63.16 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30468 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 24.5 MiB 2.28 885 11260 4668 6241 351 63.2 MiB 0.09 0.00 3.46644 -123.995 -3.46644 3.46644 0.67 0.000531088 0.000487088 0.0385122 0.0353721 44 3163 36 6.99608e+06 250167 787024. 2723.27 2.49 0.187786 0.162467 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.24 0.06 0.11 -1 -1 0.24 0.0210685 0.0185169 102 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 6.98 vpr 63.55 MiB 0.05 7072 -1 -1 1 0.04 -1 -1 30568 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 24.7 MiB 1.13 904 12506 5230 6653 623 63.6 MiB 0.13 0.00 3.42074 -117.96 -3.42074 3.42074 0.66 0.000732263 0.000679824 0.059686 0.0554151 44 3198 37 6.99608e+06 279598 787024. 2723.27 2.97 0.220827 0.193044 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.30 0.09 0.18 -1 -1 0.30 0.0314174 0.0274196 101 60 60 30 57 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 5.37 vpr 63.33 MiB 0.02 6992 -1 -1 1 0.02 -1 -1 30572 -1 -1 18 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 24.5 MiB 0.64 824 9872 4064 5274 534 63.3 MiB 0.09 0.00 3.73195 -121.956 -3.73195 3.73195 0.65 0.000666267 0.000619411 0.0420186 0.0391114 44 2539 27 6.99608e+06 264882 787024. 2723.27 2.00 0.185433 0.161918 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.031359 0.0273607 87 34 84 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 7.31 vpr 63.27 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30100 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 24.5 MiB 1.74 814 10672 3702 5165 1805 63.3 MiB 0.10 0.00 4.51934 -148.35 -4.51934 4.51934 0.66 0.000652314 0.000606298 0.0448768 0.041732 44 2874 44 6.99608e+06 220735 787024. 2723.27 2.75 0.197218 0.171306 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.25 0.08 0.18 -1 -1 0.25 0.0308294 0.0271557 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 8.30 vpr 63.67 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30392 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 24.8 MiB 2.63 1000 12585 4720 5647 2218 63.7 MiB 0.12 0.00 3.77345 -134.122 -3.77345 3.77345 0.65 0.000695151 0.000645565 0.054539 0.0506452 46 3110 45 6.99608e+06 220735 828058. 2865.25 2.90 0.202049 0.176759 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0298784 0.0260276 104 91 0 0 91 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.92 vpr 62.97 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30188 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.14 808 15688 5217 8110 2361 63.0 MiB 0.14 0.00 3.76925 -134.079 -3.76925 3.76925 0.66 0.000695669 0.000646679 0.059035 0.0548849 46 3039 46 6.99608e+06 367892 828058. 2865.25 3.95 0.228217 0.199962 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.25 0.10 0.18 -1 -1 0.25 0.0298464 0.0260472 86 4 124 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 24.27 vpr 63.50 MiB 0.05 7092 -1 -1 1 0.04 -1 -1 30528 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 24.8 MiB 0.68 1209 11281 3120 7720 441 63.5 MiB 0.12 0.00 4.19534 -154.628 -4.19534 4.19534 0.67 0.000782407 0.00072692 0.052718 0.0489263 40 3750 26 6.99608e+06 250167 706193. 2443.58 20.65 0.377919 0.327226 26914 176310 -1 3109 32 2987 3961 695507 232571 4.80515 4.80515 -184.309 -4.80515 0 0 926341. 3205.33 0.23 0.21 0.15 -1 -1 0.23 0.0452283 0.0392673 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 6.46 vpr 63.55 MiB 0.02 6968 -1 -1 1 0.04 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 24.8 MiB 0.59 1142 12364 5175 6807 382 63.5 MiB 0.12 0.00 5.12678 -171.348 -5.12678 5.12678 0.67 0.000780871 0.000725092 0.0576382 0.0535415 54 3283 29 6.99608e+06 264882 949917. 3286.91 2.94 0.221072 0.19353 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.31 0.11 0.19 -1 -1 0.31 0.0317002 0.0278034 108 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 8.05 vpr 63.58 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 24.8 MiB 0.63 1089 13788 4649 7550 1589 63.6 MiB 0.14 0.00 4.15408 -148.064 -4.15408 4.15408 0.67 0.000786922 0.0007304 0.0624545 0.0580102 44 3953 47 6.99608e+06 264882 787024. 2723.27 4.55 0.248508 0.217291 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.25 0.10 0.20 -1 -1 0.25 0.0320005 0.0279905 107 65 60 30 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.83 vpr 62.93 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30480 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 24.5 MiB 0.71 692 12241 5462 6300 479 62.9 MiB 0.10 0.00 3.58339 -124.571 -3.58339 3.58339 0.66 0.000618908 0.000575343 0.0500648 0.0465097 48 2391 37 6.99608e+06 191304 865456. 2994.66 2.35 0.188266 0.164147 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0251551 0.0219356 76 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.24 vpr 63.64 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 24.9 MiB 2.19 1070 13152 5486 7187 479 63.6 MiB 0.13 0.00 4.68713 -157.481 -4.68713 4.68713 0.69 0.000737267 0.000684368 0.0598965 0.0556801 46 3476 35 6.99608e+06 264882 828058. 2865.25 3.21 0.222052 0.194536 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0293912 0.0257568 105 63 60 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 6.54 vpr 63.71 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30812 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.72 1372 11615 4190 5568 1857 63.7 MiB 0.12 0.00 4.17744 -155.5 -4.17744 4.17744 0.67 0.000847355 0.000786429 0.0548038 0.0508955 46 3391 25 6.99608e+06 323745 828058. 2865.25 2.93 0.230589 0.201174 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.25 0.10 0.18 -1 -1 0.25 0.0388414 0.0337902 139 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 18.04 vpr 63.26 MiB 0.04 7196 -1 -1 1 0.04 -1 -1 30360 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 24.8 MiB 1.37 1101 12733 5285 6817 631 63.3 MiB 0.12 0.00 4.35899 -150.667 -4.35899 4.35899 0.65 0.000792562 0.00072893 0.0570857 0.0529784 50 3217 36 6.99608e+06 323745 902133. 3121.57 13.87 0.401511 0.346642 28642 213929 -1 2323 21 2201 2619 211762 52502 4.6934 4.6934 -161.769 -4.6934 0 0 1.08113e+06 3740.92 0.27 0.09 0.19 -1 -1 0.27 0.0326983 0.0286511 125 94 31 31 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 10.35 vpr 63.45 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30436 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 24.8 MiB 2.61 1072 15456 6595 7994 867 63.4 MiB 0.15 0.00 4.1343 -135.415 -4.1343 4.1343 0.67 0.000907806 0.000843234 0.0698627 0.0648584 48 3698 50 6.99608e+06 323745 865456. 2994.66 4.79 0.260726 0.228234 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.27 0.16 0.17 -1 -1 0.27 0.0377766 0.0330643 114 92 26 26 90 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 22.45 vpr 63.52 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30584 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.91 1174 14500 5592 7226 1682 63.5 MiB 0.14 0.00 4.33244 -160.384 -4.33244 4.33244 0.66 0.000773243 0.000717902 0.0684075 0.0635078 46 3851 34 6.99608e+06 264882 828058. 2865.25 18.70 0.426163 0.369221 28066 200906 -1 2925 22 2753 3801 392357 76843 5.15411 5.15411 -178.744 -5.15411 0 0 1.01997e+06 3529.29 0.25 0.12 0.17 -1 -1 0.25 0.0339885 0.0298259 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 10.04 vpr 63.57 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30340 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 24.8 MiB 1.64 1070 11106 4662 5983 461 63.6 MiB 0.11 0.00 3.53179 -119.754 -3.53179 3.53179 0.67 0.000734998 0.000682413 0.0490137 0.0455089 38 3405 45 6.99608e+06 294314 678818. 2348.85 5.55 0.227155 0.197628 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.29 0.11 0.15 -1 -1 0.29 0.0336259 0.0293662 112 88 26 26 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 5.68 vpr 62.60 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30468 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 24.0 MiB 0.65 592 9684 3186 4658 1840 62.6 MiB 0.09 0.00 2.86245 -110.719 -2.86245 2.86245 0.67 0.000619203 0.000575776 0.0404677 0.0376744 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.29 0.187687 0.163319 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.26 0.09 0.12 -1 -1 0.26 0.0270365 0.0235439 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 5.77 vpr 63.55 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30588 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 24.9 MiB 0.63 999 9872 3990 5501 381 63.6 MiB 0.10 0.00 4.9054 -173.166 -4.9054 4.9054 0.66 0.000778994 0.000723104 0.0466319 0.0433036 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 2.32 0.204461 0.178094 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.31 0.10 0.22 -1 -1 0.31 0.035841 0.0313029 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 6.15 vpr 63.54 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30468 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 24.9 MiB 0.72 1203 7431 1958 4126 1347 63.5 MiB 0.08 0.00 4.63877 -167.295 -4.63877 4.63877 0.66 0.000780204 0.000724023 0.0358477 0.0333449 44 3706 30 6.99608e+06 250167 787024. 2723.27 2.61 0.198382 0.172263 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.25 0.12 0.16 -1 -1 0.25 0.0349107 0.0304374 111 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 16.99 vpr 63.00 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30424 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 24.6 MiB 1.89 766 11324 4293 5664 1367 63.0 MiB 0.05 0.00 3.24452 -112.954 -3.24452 3.24452 0.67 0.000285627 0.000262496 0.0219418 0.0202074 48 2295 39 6.99608e+06 191304 865456. 2994.66 12.32 0.311851 0.26676 28354 207349 -1 1784 21 1600 1887 197435 47668 3.48726 3.48726 -120.115 -3.48726 0 0 1.05005e+06 3633.38 0.27 0.08 0.19 -1 -1 0.27 0.0275347 0.024109 85 55 32 32 54 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 5.12 vpr 62.65 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30392 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.1 MiB 0.45 592 7514 3020 4270 224 62.6 MiB 0.07 0.00 3.0031 -111.146 -3.0031 3.0031 0.69 0.0005977 0.000555618 0.0319781 0.0297328 44 2109 28 6.99608e+06 161872 787024. 2723.27 1.94 0.165995 0.144131 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0265781 0.0231406 63 4 93 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 6.44 vpr 63.56 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1014 12331 5131 6918 282 63.6 MiB 0.11 0.00 4.03648 -138.539 -4.03648 4.03648 0.65 0.000740415 0.000687504 0.0548958 0.0510204 40 2840 45 6.99608e+06 250167 706193. 2443.58 2.80 0.22817 0.199309 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.23 0.16 0.16 -1 -1 0.23 0.0420894 0.0365071 102 59 60 32 58 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 6.84 vpr 63.56 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 24.8 MiB 1.31 1077 13043 5447 7262 334 63.6 MiB 0.13 0.00 4.38874 -150.527 -4.38874 4.38874 0.65 0.000762646 0.000707661 0.0585376 0.0543542 48 2878 41 6.99608e+06 279598 865456. 2994.66 2.55 0.231405 0.201982 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.26 0.15 0.17 -1 -1 0.26 0.0420053 0.0365089 115 88 28 28 88 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 5.78 vpr 63.60 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 24.8 MiB 0.29 981 8047 1739 5489 819 63.6 MiB 0.08 0.00 4.28063 -149.977 -4.28063 4.28063 0.65 0.000937722 0.000870978 0.0347532 0.0323064 48 3128 28 6.99608e+06 397324 865456. 2994.66 2.79 0.201501 0.175275 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.26 0.13 0.14 -1 -1 0.26 0.0415076 0.0363231 100 3 156 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.43 vpr 63.39 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30464 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 24.6 MiB 0.90 884 14431 6074 7798 559 63.4 MiB 0.13 0.00 3.66815 -119.86 -3.66815 3.66815 0.66 0.000717058 0.000665876 0.0634399 0.0589523 40 3422 29 6.99608e+06 279598 706193. 2443.58 3.79 0.221143 0.194174 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0307884 0.0268797 101 59 60 30 56 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 5.70 vpr 62.72 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30788 -1 -1 16 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 24.2 MiB 1.20 589 11925 5033 6263 629 62.7 MiB 0.09 0.00 3.68305 -110.555 -3.68305 3.68305 0.65 0.000573815 0.00053397 0.0452249 0.0420847 40 1692 28 6.99608e+06 235451 706193. 2443.58 1.90 0.16348 0.142469 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0220367 0.0191993 67 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 21.38 vpr 63.75 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30620 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 25.3 MiB 0.79 1512 15151 5383 7381 2387 63.8 MiB 0.17 0.00 4.46404 -157.207 -4.46404 4.46404 0.68 0.000857296 0.000791129 0.0773741 0.0718183 50 4170 39 6.99608e+06 309029 902133. 3121.57 17.53 0.468734 0.405171 28642 213929 -1 3441 24 2733 3835 527406 117145 4.67941 4.67941 -171.114 -4.67941 0 0 1.08113e+06 3740.92 0.27 0.16 0.19 -1 -1 0.27 0.0429848 0.0374962 141 95 62 31 95 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 7.29 vpr 63.64 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65164 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 25.3 MiB 2.42 1389 9013 2681 4820 1512 63.6 MiB 0.10 0.00 4.97674 -167.764 -4.97674 4.97674 0.65 0.00084351 0.000783783 0.0438202 0.0407674 42 3808 25 6.99608e+06 323745 744469. 2576.02 2.07 0.211137 0.183442 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.24 0.11 0.15 -1 -1 0.24 0.0356478 0.0310588 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.95 vpr 63.40 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 24.5 MiB 2.73 1031 11233 4729 6294 210 63.4 MiB 0.10 0.00 3.87693 -140.03 -3.87693 3.87693 0.66 0.00068574 0.000636339 0.0478245 0.0443742 46 3029 25 6.99608e+06 220735 828058. 2865.25 2.51 0.189226 0.164956 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.25 0.08 0.11 -1 -1 0.25 0.0285745 0.0249765 102 89 0 0 89 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 5.98 vpr 63.40 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30552 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.90 1034 14184 5996 7912 276 63.4 MiB 0.13 0.00 3.78975 -136.67 -3.78975 3.78975 0.66 0.000725795 0.000674673 0.0625258 0.0581264 46 3037 39 6.99608e+06 235451 828058. 2865.25 2.31 0.224124 0.196323 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0321731 0.0280828 92 34 90 30 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.12 vpr 63.77 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30764 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65296 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 24.9 MiB 1.49 1068 13943 4857 7191 1895 63.8 MiB 0.14 0.00 3.9689 -135.877 -3.9689 3.9689 0.67 0.000860533 0.000800824 0.069505 0.0646898 38 3765 35 6.99608e+06 294314 678818. 2348.85 3.87 0.258977 0.226655 26626 170182 -1 2652 19 2280 3067 243980 51586 4.53931 4.53931 -159.576 -4.53931 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0322494 0.0282265 117 64 87 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 10.72 vpr 63.44 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30392 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1088 13788 5313 5928 2547 63.4 MiB 0.13 0.00 3.56069 -123.887 -3.56069 3.56069 0.65 0.000717011 0.000665902 0.0583453 0.0542059 36 3765 43 6.99608e+06 294314 648988. 2245.63 7.02 0.230394 0.201432 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.033625 0.0293349 101 61 58 30 58 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.50 vpr 63.42 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30480 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.8 MiB 0.63 1034 13906 5203 6656 2047 63.4 MiB 0.14 0.00 4.17744 -150.809 -4.17744 4.17744 0.66 0.000786314 0.0007256 0.0648143 0.0602028 46 3490 34 6.99608e+06 250167 828058. 2865.25 4.21 0.234526 0.205601 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.24 0.05 0.12 -1 -1 0.24 0.0181963 0.0162639 107 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 6.01 vpr 63.53 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30476 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1295 11830 3708 6867 1255 63.5 MiB 0.12 0.00 3.61179 -138.351 -3.61179 3.61179 0.65 0.000769653 0.000714443 0.0543596 0.0505316 44 3300 26 6.99608e+06 264882 787024. 2723.27 2.53 0.213095 0.186394 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0309392 0.0271109 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 5.81 vpr 62.73 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 30420 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 24.0 MiB 1.15 714 7817 3113 4376 328 62.7 MiB 0.07 0.00 3.29694 -113.946 -3.29694 3.29694 0.66 0.000598654 0.000556858 0.0319076 0.0297032 36 2003 34 6.99608e+06 206020 648988. 2245.63 2.04 0.161036 0.139612 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0250098 0.0217002 73 34 58 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.56 vpr 63.43 MiB 0.03 6872 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 24.6 MiB 2.31 796 13192 4518 6301 2373 63.4 MiB 0.11 0.00 3.75163 -124.237 -3.75163 3.75163 0.65 0.000666075 0.000619021 0.0554427 0.0514582 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.59 0.203166 0.177259 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.30 0.08 0.18 -1 -1 0.30 0.0281309 0.0246089 91 82 0 0 82 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.17 vpr 63.34 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 0.62 1104 8164 1792 5984 388 63.3 MiB 0.08 0.00 3.79614 -138.31 -3.79614 3.79614 0.65 0.000725755 0.000674776 0.0370122 0.034463 38 3147 50 6.99608e+06 250167 678818. 2348.85 3.80 0.21437 0.186139 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0335204 0.0292714 92 34 93 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 6.65 vpr 62.91 MiB 0.02 6872 -1 -1 1 0.04 -1 -1 30492 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 1.50 924 11813 4851 6237 725 62.9 MiB 0.10 0.00 3.23604 -112.025 -3.23604 3.23604 0.66 0.000600794 0.000558074 0.0462667 0.0429945 38 2436 26 6.99608e+06 235451 678818. 2348.85 2.51 0.164964 0.143726 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0277275 0.0240538 81 56 29 29 52 26 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.70 vpr 62.94 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30304 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 24.3 MiB 0.67 800 12628 5339 6973 316 62.9 MiB 0.11 0.00 3.56959 -131.903 -3.56959 3.56959 0.65 0.000654004 0.000600732 0.0533295 0.0496083 44 2487 30 6.99608e+06 191304 787024. 2723.27 2.31 0.188722 0.165108 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0231807 0.0203723 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.11 vpr 63.52 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30544 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 24.6 MiB 1.09 964 11296 3574 5293 2429 63.5 MiB 0.11 0.00 4.06828 -143.162 -4.06828 4.06828 0.66 0.000746844 0.000693295 0.0502357 0.0466926 40 3214 32 6.99608e+06 279598 706193. 2443.58 3.31 0.210033 0.183403 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.28 0.11 0.13 -1 -1 0.28 0.0328082 0.0285998 105 64 58 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 7.68 vpr 63.12 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30324 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 24.6 MiB 2.18 694 11756 4613 5996 1147 63.1 MiB 0.10 0.00 3.23724 -109.795 -3.23724 3.23724 0.66 0.000634383 0.00058962 0.048792 0.0453597 48 2270 42 6.99608e+06 191304 865456. 2994.66 2.73 0.19567 0.170575 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0260284 0.0226637 81 55 31 31 53 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 6.84 vpr 63.39 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30504 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 24.5 MiB 1.41 911 15034 6476 7971 587 63.4 MiB 0.13 0.00 3.61105 -126.923 -3.61105 3.61105 0.65 0.000752094 0.000699111 0.0661581 0.061449 52 2649 36 6.99608e+06 264882 926341. 3205.33 2.60 0.231913 0.203414 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.29 0.09 0.21 -1 -1 0.29 0.0311707 0.0272094 103 65 52 26 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 6.79 vpr 63.65 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30308 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65176 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 25.2 MiB 0.79 1135 16081 6006 7648 2427 63.6 MiB 0.17 0.00 4.67827 -157.924 -4.67827 4.67827 0.68 0.000792008 0.000734923 0.0802752 0.0747246 44 3513 45 6.99608e+06 323745 787024. 2723.27 3.07 0.263699 0.23117 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0302425 0.0265272 123 93 31 31 92 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 8.21 vpr 63.42 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30500 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 24.7 MiB 2.40 1185 10050 2506 6241 1303 63.4 MiB 0.09 0.00 3.59004 -135.268 -3.59004 3.59004 0.65 0.000665784 0.000618822 0.0419072 0.0389879 38 3007 50 6.99608e+06 220735 678818. 2348.85 3.16 0.201173 0.174813 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0279954 0.0244827 88 61 32 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 6.34 vpr 63.01 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30156 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 24.5 MiB 0.68 844 13856 5698 7170 988 63.0 MiB 0.15 0.00 3.30794 -123.058 -3.30794 3.30794 0.66 0.000673523 0.000625469 0.0698808 0.0647266 46 2571 29 6.99608e+06 206020 828058. 2865.25 2.87 0.215414 0.189179 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0297454 0.025875 91 63 32 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 5.65 vpr 63.45 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30668 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.84 1239 11118 3579 5407 2132 63.4 MiB 0.11 0.00 3.81515 -143.501 -3.81515 3.81515 0.65 0.000811389 0.000755376 0.0518509 0.0482252 46 2851 29 6.99608e+06 264882 828058. 2865.25 2.08 0.210074 0.183342 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.25 0.08 0.16 -1 -1 0.25 0.0341321 0.0297773 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 9.01 vpr 63.43 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30500 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 24.5 MiB 1.96 913 9160 3758 4976 426 63.4 MiB 0.09 0.00 3.41124 -117.262 -3.41124 3.41124 0.66 0.000713425 0.000661972 0.039312 0.0365267 38 3163 50 6.99608e+06 309029 678818. 2348.85 4.57 0.213015 0.184621 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.21 0.05 0.10 -1 -1 0.21 0.0172219 0.0153018 101 62 56 29 58 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 16.91 vpr 63.69 MiB 0.04 7212 -1 -1 1 0.04 -1 -1 30628 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.71 1399 13316 4006 7788 1522 63.7 MiB 0.14 0.00 4.54237 -164.626 -4.54237 4.54237 0.65 0.000861596 0.000800968 0.0638529 0.0593525 38 4423 46 6.99608e+06 323745 678818. 2348.85 13.46 0.409142 0.352873 26626 170182 -1 3297 22 3218 3824 326274 67307 5.28064 5.28064 -197.745 -5.28064 0 0 902133. 3121.57 0.22 0.12 0.14 -1 -1 0.22 0.0391886 0.0340593 140 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 5.89 vpr 62.53 MiB 0.02 6760 -1 -1 1 0.03 -1 -1 30396 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 24.0 MiB 1.13 486 10149 3821 5138 1190 62.5 MiB 0.08 0.00 2.81885 -95.7056 -2.81885 2.81885 0.66 0.000579251 0.000538879 0.0396532 0.0368955 44 2052 46 6.99608e+06 161872 787024. 2723.27 2.23 0.174783 0.151736 27778 195446 -1 1238 21 1095 1683 125081 30710 2.96677 2.96677 -105.273 -2.96677 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.02386 0.0207883 57 4 85 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 7.95 vpr 63.66 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30452 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 24.9 MiB 2.60 1299 14303 5218 6688 2397 63.7 MiB 0.14 0.00 4.76923 -166.635 -4.76923 4.76923 0.66 0.000780947 0.000724329 0.0661607 0.0614374 46 3535 24 6.99608e+06 279598 828058. 2865.25 2.54 0.222862 0.195402 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0316096 0.0277342 118 92 28 28 92 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 6.17 vpr 63.38 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1244 15216 5143 8703 1370 63.4 MiB 0.14 0.00 4.66407 -173.875 -4.66407 4.66407 0.65 0.00072261 0.000671356 0.0669381 0.0622027 44 3377 41 6.99608e+06 235451 787024. 2723.27 2.60 0.229549 0.201262 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.25 0.11 0.14 -1 -1 0.25 0.0321864 0.0280765 110 96 0 0 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 9.19 vpr 63.62 MiB 0.04 7096 -1 -1 1 0.03 -1 -1 30416 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1129 13403 5326 6238 1839 63.6 MiB 0.12 0.00 3.33684 -128.417 -3.33684 3.33684 0.89 0.000594434 0.000544882 0.047438 0.0435706 38 3758 46 6.99608e+06 279598 678818. 2348.85 5.29 0.223512 0.194629 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.22 0.19 0.11 -1 -1 0.22 0.051104 0.0443431 106 65 61 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 6.70 vpr 63.66 MiB 0.03 7224 -1 -1 1 0.04 -1 -1 30760 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 25.4 MiB 0.73 1500 14261 4373 7976 1912 63.7 MiB 0.15 0.00 4.89654 -177.942 -4.89654 4.89654 0.66 0.000916428 0.000851489 0.0727778 0.0675792 40 4008 30 6.99608e+06 323745 706193. 2443.58 3.08 0.264564 0.231667 26914 176310 -1 3530 20 2959 3413 351818 70177 5.7166 5.7166 -206.283 -5.7166 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0367643 0.0321517 140 96 64 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.02 vpr 62.66 MiB 0.02 6832 -1 -1 1 0.04 -1 -1 30324 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 24.1 MiB 1.99 577 8449 3482 4728 239 62.7 MiB 0.07 0.00 2.75275 -95.2487 -2.75275 2.75275 0.65 0.000622691 0.000578741 0.0303429 0.0281888 36 2266 49 6.99608e+06 191304 648988. 2245.63 2.52 0.156173 0.134535 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0219706 0.0190439 65 56 0 0 53 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 7.51 vpr 62.91 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30320 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 24.1 MiB 2.96 870 9516 3877 5353 286 62.9 MiB 0.08 0.00 3.41559 -121.499 -3.41559 3.41559 0.70 0.000621678 0.000577698 0.0394262 0.0367199 34 2262 25 6.99608e+06 206020 618332. 2139.56 1.93 0.155262 0.135243 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0219026 0.0191797 72 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 6.28 vpr 62.87 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30104 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 24.2 MiB 0.23 764 10316 3722 4683 1911 62.9 MiB 0.10 0.00 3.37904 -128.379 -3.37904 3.37904 0.66 0.000656069 0.000609362 0.0452644 0.0420766 44 3301 35 6.99608e+06 176588 787024. 2723.27 3.28 0.189806 0.165692 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.25 0.10 0.21 -1 -1 0.25 0.029171 0.0254909 80 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.04 vpr 62.72 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 24.2 MiB 0.68 497 10819 4307 4933 1579 62.7 MiB 0.09 0.00 3.31386 -89.9377 -3.31386 3.31386 0.66 0.000647088 0.000603037 0.0407049 0.0379379 38 1712 31 6.99608e+06 264882 678818. 2348.85 1.86 0.154522 0.134353 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0239852 0.0208942 68 34 50 25 25 25 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 7.03 vpr 63.52 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30540 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 25.0 MiB 0.87 1423 14358 4574 7658 2126 63.5 MiB 0.14 0.00 3.77875 -143.667 -3.77875 3.77875 0.66 0.000812114 0.000754269 0.0663138 0.0615622 46 3969 25 6.99608e+06 294314 828058. 2865.25 3.26 0.23514 0.205869 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.35 0.11 0.20 -1 -1 0.35 0.0291451 0.0258444 125 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 5.82 vpr 63.66 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30448 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1182 13663 4698 6384 2581 63.7 MiB 0.14 0.00 4.16978 -143.827 -4.16978 4.16978 0.66 0.000782365 0.000726129 0.0639972 0.0594537 46 3209 24 6.99608e+06 323745 828058. 2865.25 2.13 0.221252 0.193906 28066 200906 -1 2521 22 2567 3385 263451 56153 4.22545 4.22545 -148.772 -4.22545 0 0 1.01997e+06 3529.29 0.28 0.10 0.17 -1 -1 0.28 0.0337162 0.029429 121 94 29 29 93 31 +fixed_k6_frac_N8_22nm.xml mult_001.v common 7.82 vpr 62.77 MiB 0.05 6892 -1 -1 14 0.26 -1 -1 32872 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 24.2 MiB 1.92 1265 9263 2276 5364 1623 62.8 MiB 0.10 0.00 8.4853 -170.751 -8.4853 8.4853 0.65 0.000918685 0.000842563 0.0518695 0.047945 44 3187 47 6.79088e+06 255968 787024. 2723.27 2.81 0.27075 0.235219 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.25 0.16 0.16 -1 -1 0.25 0.0486984 0.0424814 134 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 7.72 vpr 62.73 MiB 0.05 6788 -1 -1 14 0.28 -1 -1 32844 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1228 8270 2008 5297 965 62.7 MiB 0.09 0.00 7.98833 -161.421 -7.98833 7.98833 0.65 0.000900735 0.000835664 0.0455987 0.0423016 38 3303 16 6.79088e+06 269440 678818. 2348.85 3.25 0.221943 0.193173 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0323699 0.0285516 132 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 9.54 vpr 62.64 MiB 0.05 6868 -1 -1 11 0.22 -1 -1 32724 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 24.1 MiB 1.62 1125 11613 3520 5862 2231 62.6 MiB 0.12 0.00 7.03202 -141.666 -7.03202 7.03202 0.66 0.00088626 0.000820018 0.060814 0.0562856 38 3591 44 6.79088e+06 269440 678818. 2348.85 4.94 0.275465 0.239832 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.28 0.08 0.14 -1 -1 0.28 0.0269666 0.0243256 138 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 12.22 vpr 62.88 MiB 0.05 6816 -1 -1 12 0.33 -1 -1 32728 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 24.2 MiB 1.34 1021 7643 1879 4700 1064 62.9 MiB 0.08 0.00 7.24011 -138.658 -7.24011 7.24011 0.65 0.000902471 0.00083621 0.0419129 0.038825 38 2805 20 6.79088e+06 296384 678818. 2348.85 7.90 0.347136 0.299365 25966 169698 -1 2367 17 1240 3768 185598 43157 6.41977 6.41977 -135.412 -6.41977 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0334068 0.0294597 136 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 26.54 vpr 63.18 MiB 0.02 6796 -1 -1 13 0.31 -1 -1 32900 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 24.6 MiB 2.01 1463 12568 3276 7023 2269 63.2 MiB 0.14 0.00 8.02445 -169.708 -8.02445 8.02445 0.65 0.00103692 0.000960661 0.0710613 0.0657986 40 3628 20 6.79088e+06 323328 706193. 2443.58 21.50 0.459173 0.397886 26254 175826 -1 3546 18 1747 4686 306027 66756 7.21431 7.21431 -166.609 -7.21431 0 0 926341. 3205.33 0.23 0.11 0.11 -1 -1 0.23 0.0397939 0.0351206 160 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 21.92 vpr 63.14 MiB 0.03 6672 -1 -1 12 0.30 -1 -1 32760 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 24.7 MiB 2.18 1344 4768 918 3685 165 63.1 MiB 0.06 0.00 7.61832 -163.245 -7.61832 7.61832 0.66 0.000956906 0.000885912 0.0273586 0.0254022 40 3616 33 6.79088e+06 323328 706193. 2443.58 16.69 0.435675 0.374235 26254 175826 -1 3273 18 1457 4340 288576 61849 6.72076 6.72076 -158.409 -6.72076 0 0 926341. 3205.33 0.26 0.10 0.15 -1 -1 0.26 0.036881 0.0324977 150 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 8.28 vpr 62.25 MiB 0.04 6524 -1 -1 12 0.17 -1 -1 32312 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 23.6 MiB 1.46 1000 7177 1656 4753 768 62.2 MiB 0.08 0.00 7.28149 -137.47 -7.28149 7.28149 0.70 0.000785571 0.000725222 0.0379845 0.0353239 36 2895 37 6.79088e+06 269440 648988. 2245.63 4.03 0.19796 0.172069 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0258128 0.0227753 101 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 7.06 vpr 62.97 MiB 0.03 6736 -1 -1 11 0.21 -1 -1 32708 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 1.22 1129 9531 2421 6090 1020 63.0 MiB 0.10 0.00 6.82017 -140.384 -6.82017 6.82017 0.65 0.00085361 0.000782909 0.0498167 0.0459766 38 3033 23 6.79088e+06 242496 678818. 2348.85 3.11 0.22151 0.192635 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0299203 0.0264289 118 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 8.58 vpr 62.41 MiB 0.02 6596 -1 -1 12 0.17 -1 -1 32432 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 24.0 MiB 2.35 1115 11631 3187 7135 1309 62.4 MiB 0.11 0.00 6.73244 -139.285 -6.73244 6.73244 0.66 0.000750036 0.000694909 0.0537423 0.0497747 36 2986 40 6.79088e+06 242496 648988. 2245.63 3.60 0.228049 0.198627 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.21 0.07 0.09 -1 -1 0.21 0.0240555 0.0215892 111 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 13.93 vpr 62.48 MiB 0.04 6492 -1 -1 13 0.19 -1 -1 32756 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 24.0 MiB 1.39 1011 5412 1090 4064 258 62.5 MiB 0.06 0.00 7.30367 -163.797 -7.30367 7.30367 0.68 0.000818333 0.000758248 0.0291177 0.0270238 34 3575 46 6.79088e+06 215552 618332. 2139.56 9.66 0.326418 0.280578 25102 150614 -1 2661 17 1187 2840 180392 41089 6.24757 6.24757 -161.543 -6.24757 0 0 787024. 2723.27 0.29 0.08 0.16 -1 -1 0.29 0.0283984 0.0255369 107 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 5.79 vpr 62.36 MiB 0.04 6696 -1 -1 12 0.20 -1 -1 32580 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 23.7 MiB 1.28 838 6386 1352 4871 163 62.4 MiB 0.06 0.00 7.31171 -145.298 -7.31171 7.31171 0.65 0.000704057 0.000652366 0.0298531 0.027698 38 2306 22 6.79088e+06 215552 678818. 2348.85 1.81 0.167761 0.145296 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0228644 0.02028 93 129 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 14.78 vpr 62.56 MiB 0.04 6576 -1 -1 12 0.13 -1 -1 32640 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 24.0 MiB 1.79 1055 4560 1014 3240 306 62.6 MiB 0.05 0.00 6.46989 -155.558 -6.46989 6.46989 0.65 0.000711279 0.000658672 0.0224351 0.0207874 40 2500 20 6.79088e+06 188608 706193. 2443.58 10.22 0.304683 0.261469 26254 175826 -1 2439 18 1033 2706 185859 39937 5.76047 5.76047 -146.93 -5.76047 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0273718 0.0240864 94 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 10.79 vpr 63.09 MiB 0.05 6788 -1 -1 13 0.26 -1 -1 32844 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.35 1239 11431 3102 6258 2071 63.1 MiB 0.12 0.00 7.91359 -165.523 -7.91359 7.91359 0.65 0.000982646 0.000909573 0.0643446 0.0595706 36 3864 39 6.79088e+06 282912 648988. 2245.63 6.50 0.292082 0.254274 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0406202 0.0356797 148 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 7.19 vpr 63.16 MiB 0.02 6712 -1 -1 14 0.32 -1 -1 33096 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 24.4 MiB 1.61 1366 11245 3016 6173 2056 63.2 MiB 0.12 0.00 9.12295 -182.881 -9.12295 9.12295 0.66 0.000987436 0.000913718 0.0634744 0.0587717 40 3379 26 6.79088e+06 282912 706193. 2443.58 2.41 0.264704 0.230631 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.23 0.18 0.15 -1 -1 0.23 0.0503228 0.0439428 149 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 12.93 vpr 62.42 MiB 0.05 6592 -1 -1 11 0.18 -1 -1 32400 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 24.0 MiB 1.36 857 12681 3929 6469 2283 62.4 MiB 0.11 0.00 6.92892 -133.02 -6.92892 6.92892 0.65 0.000754333 0.000698506 0.0580178 0.0537936 40 2281 19 6.79088e+06 269440 706193. 2443.58 8.81 0.35973 0.31113 26254 175826 -1 2219 18 1178 2818 179355 42380 6.07609 6.07609 -130.204 -6.07609 0 0 926341. 3205.33 0.22 0.06 0.10 -1 -1 0.22 0.0265573 0.0234187 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 9.35 vpr 63.44 MiB 0.04 6792 -1 -1 12 0.27 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1420 13992 4103 7703 2186 63.4 MiB 0.16 0.00 7.6046 -160.271 -7.6046 7.6046 0.68 0.000996273 0.000922694 0.0805561 0.0744952 46 4023 39 6.79088e+06 269440 828058. 2865.25 3.87 0.306314 0.267628 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0400629 0.0352882 146 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 8.49 vpr 63.16 MiB 0.02 6812 -1 -1 13 0.27 -1 -1 32760 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1236 10687 3174 5565 1948 63.2 MiB 0.12 0.00 8.28661 -168.45 -8.28661 8.28661 0.65 0.000994362 0.000915789 0.0612016 0.0566778 38 3417 39 6.79088e+06 282912 678818. 2348.85 4.07 0.294005 0.255666 25966 169698 -1 2856 18 1463 4224 225289 50661 7.25695 7.25695 -164.08 -7.25695 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0386639 0.0340435 144 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 6.71 vpr 62.29 MiB 0.02 6568 -1 -1 12 0.17 -1 -1 32444 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 23.6 MiB 1.87 945 7992 1779 4650 1563 62.3 MiB 0.08 0.00 6.70943 -154.61 -6.70943 6.70943 0.67 0.000749537 0.000691153 0.0379579 0.0351627 36 2644 29 6.79088e+06 215552 648988. 2245.63 2.06 0.196131 0.170264 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.21 0.06 0.15 -1 -1 0.21 0.0246236 0.0218536 104 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 6.98 vpr 61.93 MiB 0.02 6508 -1 -1 10 0.12 -1 -1 32304 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 23.3 MiB 2.40 878 7049 1926 4350 773 61.9 MiB 0.06 0.00 5.18321 -124.627 -5.18321 5.18321 0.66 0.000572093 0.000531662 0.0294834 0.0273781 38 2075 46 6.79088e+06 161664 678818. 2348.85 2.03 0.162851 0.140726 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0190775 0.0167779 67 88 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 6.75 vpr 62.41 MiB 0.04 6632 -1 -1 13 0.21 -1 -1 32700 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 23.8 MiB 1.81 974 6332 1469 4570 293 62.4 MiB 0.07 0.00 7.59608 -163.359 -7.59608 7.59608 0.67 0.000746479 0.000692004 0.0314776 0.0291664 38 2544 18 6.79088e+06 215552 678818. 2348.85 2.04 0.180037 0.156505 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0249529 0.0220905 99 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 7.45 vpr 62.77 MiB 0.02 6672 -1 -1 13 0.28 -1 -1 32912 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 24.3 MiB 1.20 1254 12371 3408 7445 1518 62.8 MiB 0.15 0.00 7.46133 -157.73 -7.46133 7.46133 0.72 0.000960148 0.000888014 0.076876 0.0710101 38 3224 45 6.79088e+06 296384 678818. 2348.85 3.12 0.306199 0.267499 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.22 0.10 0.16 -1 -1 0.22 0.0388915 0.0342658 143 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 7.67 vpr 63.13 MiB 0.02 6792 -1 -1 13 0.30 -1 -1 33132 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 24.7 MiB 1.84 1425 10883 2960 6054 1869 63.1 MiB 0.12 0.00 8.13867 -171.504 -8.13867 8.13867 0.65 0.000956134 0.000885132 0.0618236 0.0572714 40 3438 18 6.79088e+06 255968 706193. 2443.58 2.77 0.261008 0.227515 26254 175826 -1 3243 28 1533 4313 517934 211444 7.06211 7.06211 -164.608 -7.06211 0 0 926341. 3205.33 0.23 0.18 0.15 -1 -1 0.23 0.0510905 0.0445997 141 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 4.94 vpr 61.77 MiB 0.03 6404 -1 -1 9 0.10 -1 -1 32124 -1 -1 16 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63256 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 23.2 MiB 1.54 588 10149 2859 5591 1699 61.8 MiB 0.07 0.00 4.97273 -93.6629 -4.97273 4.97273 0.66 0.000499776 0.000464726 0.034537 0.0321232 30 1736 26 6.79088e+06 215552 556674. 1926.21 0.85 0.0980044 0.0860494 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.18 0.04 0.12 -1 -1 0.18 0.0176496 0.0154682 64 73 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 8.64 vpr 63.10 MiB 0.02 6696 -1 -1 13 0.34 -1 -1 32848 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 24.4 MiB 2.17 1289 7268 1575 5261 432 63.1 MiB 0.09 0.00 8.3813 -168.316 -8.3813 8.3813 0.65 0.000974086 0.000903302 0.0414575 0.0384207 38 3745 37 6.79088e+06 296384 678818. 2348.85 3.49 0.257695 0.22336 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.22 0.10 0.16 -1 -1 0.22 0.0426348 0.0373043 137 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 5.69 vpr 61.86 MiB 0.03 6352 -1 -1 8 0.10 -1 -1 30992 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63344 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 23.3 MiB 2.32 737 11631 4246 5219 2166 61.9 MiB 0.08 0.00 4.77835 -104.906 -4.77835 4.77835 0.65 0.000514294 0.000477895 0.0373539 0.0347392 30 1930 29 6.79088e+06 229024 556674. 1926.21 0.97 0.104463 0.0919141 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.18 0.03 0.08 -1 -1 0.18 0.0110387 0.00987682 64 61 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 6.92 vpr 62.70 MiB 0.04 6832 -1 -1 15 0.23 -1 -1 33148 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 24.2 MiB 1.82 1155 10581 3115 6097 1369 62.7 MiB 0.11 0.00 8.86251 -178.17 -8.86251 8.86251 0.69 0.000849706 0.000788254 0.0572703 0.0531995 46 2717 18 6.79088e+06 229024 828058. 2865.25 2.06 0.230695 0.201731 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0285159 0.0252333 118 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 9.74 vpr 63.09 MiB 0.02 6772 -1 -1 12 0.25 -1 -1 32780 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 24.4 MiB 1.52 1241 4433 817 3477 139 63.1 MiB 0.06 0.00 7.21583 -155.808 -7.21583 7.21583 0.70 0.000977367 0.000903724 0.0277414 0.025713 36 4047 49 6.79088e+06 296384 648988. 2245.63 5.46 0.266888 0.231106 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.20 0.09 0.09 -1 -1 0.20 0.027633 0.0245762 145 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 7.53 vpr 62.81 MiB 0.02 6708 -1 -1 13 0.28 -1 -1 32684 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.33 1284 4659 748 3690 221 62.8 MiB 0.06 0.00 8.13835 -165.274 -8.13835 8.13835 0.65 0.000914223 0.000845613 0.0282342 0.0261828 38 3292 49 6.79088e+06 269440 678818. 2348.85 3.31 0.258067 0.222906 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0353296 0.0310848 136 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 6.36 vpr 62.48 MiB 0.05 6576 -1 -1 12 0.19 -1 -1 32288 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 24.0 MiB 2.05 1045 5303 1002 3952 349 62.5 MiB 0.06 0.00 6.60115 -147.873 -6.60115 6.60115 0.65 0.000766293 0.000709242 0.0256175 0.023697 38 2622 19 6.79088e+06 255968 678818. 2348.85 1.76 0.175372 0.151829 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.21 0.04 0.09 -1 -1 0.21 0.0148605 0.0135481 106 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 7.28 vpr 62.15 MiB 0.02 6520 -1 -1 11 0.15 -1 -1 32716 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 23.5 MiB 1.87 954 11652 3379 7115 1158 62.1 MiB 0.10 0.00 6.23714 -130.615 -6.23714 6.23714 0.67 0.000692035 0.00064107 0.0481296 0.0446396 38 2452 30 6.79088e+06 269440 678818. 2348.85 2.69 0.194208 0.169217 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0258718 0.0228321 97 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 7.40 vpr 62.30 MiB 0.02 6604 -1 -1 11 0.15 -1 -1 32412 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 23.9 MiB 1.17 1013 7346 1810 4929 607 62.3 MiB 0.07 0.00 6.76313 -133.919 -6.76313 6.76313 0.65 0.000727466 0.000674401 0.0346294 0.0321114 36 2839 26 6.79088e+06 255968 648988. 2245.63 3.52 0.188786 0.164067 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0268238 0.0236634 107 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 7.50 vpr 62.93 MiB 0.04 6652 -1 -1 12 0.19 -1 -1 32424 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.93 1274 9443 2812 5690 941 62.9 MiB 0.10 0.00 6.88424 -161.28 -6.88424 6.88424 0.65 0.000859532 0.000796501 0.0497391 0.0460911 38 3239 49 6.79088e+06 255968 678818. 2348.85 2.74 0.260935 0.226094 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.034222 0.0300518 119 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 7.39 vpr 62.39 MiB 0.03 6508 -1 -1 11 0.17 -1 -1 32520 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 23.9 MiB 1.49 908 10056 3226 4794 2036 62.4 MiB 0.10 0.00 6.39517 -140.882 -6.39517 6.39517 0.66 0.000772882 0.000715927 0.0483496 0.0448044 36 2970 31 6.79088e+06 229024 648988. 2245.63 3.11 0.220481 0.192112 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.028406 0.025032 107 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 5.91 vpr 62.52 MiB 0.04 6676 -1 -1 10 0.17 -1 -1 32640 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 23.9 MiB 1.38 870 8022 2297 4713 1012 62.5 MiB 0.08 0.00 6.19022 -129.37 -6.19022 6.19022 0.69 0.00072027 0.000666601 0.0365349 0.0337065 34 2314 24 6.79088e+06 242496 618332. 2139.56 1.86 0.190137 0.165164 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0286698 0.0251962 103 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 9.82 vpr 63.10 MiB 0.02 6808 -1 -1 13 0.32 -1 -1 33424 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.48 1352 10103 2504 6636 963 63.1 MiB 0.12 0.00 7.85531 -169.709 -7.85531 7.85531 0.66 0.00106153 0.000980609 0.0609609 0.0563514 38 3914 48 6.79088e+06 296384 678818. 2348.85 5.45 0.320641 0.278858 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.21 0.06 0.09 -1 -1 0.21 0.0252382 0.0227633 162 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 12.02 vpr 63.28 MiB 0.05 6816 -1 -1 13 0.32 -1 -1 32952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 24.5 MiB 1.67 1274 13849 4315 6877 2657 63.3 MiB 0.15 0.00 7.85526 -169.716 -7.85526 7.85526 0.65 0.000983715 0.000910464 0.0767195 0.070801 36 4447 42 6.79088e+06 282912 648988. 2245.63 7.33 0.315242 0.275346 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.21 0.13 0.14 -1 -1 0.21 0.0427464 0.0374926 152 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 10.24 vpr 62.39 MiB 0.05 6552 -1 -1 12 0.15 -1 -1 32844 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 23.7 MiB 1.25 851 11631 4796 6628 207 62.4 MiB 0.11 0.00 7.11438 -152.359 -7.11438 7.11438 0.65 0.00074102 0.000685826 0.0524204 0.0485176 36 2928 40 6.79088e+06 242496 648988. 2245.63 6.20 0.231086 0.201834 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.20 0.07 0.09 -1 -1 0.20 0.0267652 0.0236954 102 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 6.63 vpr 63.24 MiB 0.02 6700 -1 -1 12 0.26 -1 -1 33056 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 24.5 MiB 1.18 1154 12749 3915 6368 2466 63.2 MiB 0.14 0.00 7.84323 -159.621 -7.84323 7.84323 0.59 0.000978239 0.000905998 0.0705089 0.0652143 40 3413 28 6.79088e+06 309856 706193. 2443.58 2.57 0.275407 0.240257 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.22 0.12 0.12 -1 -1 0.22 0.0450531 0.039395 148 219 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 14.38 vpr 62.95 MiB 0.05 6764 -1 -1 14 0.35 -1 -1 33104 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 24.4 MiB 1.19 1375 11247 2864 6672 1711 63.0 MiB 0.12 0.00 8.18012 -172.817 -8.18012 8.18012 0.65 0.000955624 0.000885556 0.0625237 0.0579839 36 4160 47 6.79088e+06 282912 648988. 2245.63 10.10 0.408809 0.353661 25390 158009 -1 3295 20 1448 4046 254393 55212 7.30047 7.30047 -166.625 -7.30047 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0394323 0.0346858 146 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 7.29 vpr 62.67 MiB 0.04 6880 -1 -1 13 0.26 -1 -1 32808 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 24.0 MiB 2.17 1310 10149 2655 5632 1862 62.7 MiB 0.11 0.00 7.78561 -164.423 -7.78561 7.78561 0.66 0.000879432 0.000814639 0.0527774 0.0489338 40 3171 33 6.79088e+06 282912 706193. 2443.58 2.17 0.241611 0.21026 26254 175826 -1 2932 18 1410 3652 240235 52553 7.08209 7.08209 -161.624 -7.08209 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0344146 0.0302114 126 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 19.05 vpr 62.61 MiB 0.02 6692 -1 -1 12 0.24 -1 -1 32904 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 24.0 MiB 0.92 1267 10859 2857 6722 1280 62.6 MiB 0.12 0.00 7.65156 -158.395 -7.65156 7.65156 0.66 0.00108257 0.000995625 0.0592775 0.0548986 40 3210 25 6.79088e+06 309856 706193. 2443.58 15.11 0.423023 0.36614 26254 175826 -1 3013 17 1224 3601 230109 50036 6.59546 6.59546 -152.651 -6.59546 0 0 926341. 3205.33 0.27 0.09 0.15 -1 -1 0.27 0.0351359 0.0311736 135 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 8.22 vpr 62.56 MiB 0.04 6732 -1 -1 12 0.20 -1 -1 32832 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 1.12 1093 11106 3659 5731 1716 62.6 MiB 0.11 0.00 7.11863 -144.901 -7.11863 7.11863 0.60 0.00083187 0.000770231 0.0562454 0.0521067 36 3341 42 6.79088e+06 229024 648988. 2245.63 4.34 0.251322 0.218438 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.033241 0.0291358 113 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 8.80 vpr 63.43 MiB 0.04 7024 -1 -1 14 0.47 -1 -1 32520 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 24.5 MiB 1.32 1406 13355 3498 8147 1710 63.4 MiB 0.16 0.00 8.18038 -175.8 -8.18038 8.18038 0.65 0.00108322 0.00100082 0.0825634 0.0763236 38 4021 47 6.79088e+06 336800 678818. 2348.85 4.21 0.348322 0.304694 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.27 0.10 0.14 -1 -1 0.27 0.0389529 0.0345345 169 245 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 8.93 vpr 62.46 MiB 0.02 6524 -1 -1 11 0.22 -1 -1 32520 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1088 9006 2212 5478 1316 62.5 MiB 0.09 0.00 6.58747 -141.672 -6.58747 6.58747 0.65 0.000814582 0.000754596 0.045453 0.042099 36 3313 23 6.79088e+06 242496 648988. 2245.63 4.53 0.215458 0.187331 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0309182 0.0271323 113 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 8.19 vpr 62.80 MiB 0.05 6744 -1 -1 13 0.29 -1 -1 32752 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1133 5422 1123 3954 345 62.8 MiB 0.07 0.00 7.76692 -152.212 -7.76692 7.76692 0.67 0.000891563 0.000825724 0.0307146 0.0285062 36 3213 29 6.79088e+06 255968 648988. 2245.63 3.63 0.219689 0.190027 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0330407 0.0291576 132 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 10.08 vpr 63.16 MiB 0.03 6636 -1 -1 12 0.25 -1 -1 32992 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 24.4 MiB 1.39 1437 6967 1505 4666 796 63.2 MiB 0.09 0.00 7.30746 -159.645 -7.30746 7.30746 0.65 0.00100091 0.000925063 0.0416451 0.038539 38 3828 35 6.79088e+06 282912 678818. 2348.85 5.73 0.278546 0.241791 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.22 0.11 0.14 -1 -1 0.22 0.041517 0.0364808 153 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 9.12 vpr 62.73 MiB 0.05 6748 -1 -1 13 0.26 -1 -1 32692 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 24.1 MiB 1.29 1157 7823 1835 4914 1074 62.7 MiB 0.11 0.00 7.47708 -158.746 -7.47708 7.47708 0.66 0.00089482 0.00082905 0.0528113 0.0489852 36 3541 41 6.79088e+06 255968 648988. 2245.63 4.85 0.274706 0.239579 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0317307 0.0280545 131 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 8.07 vpr 62.98 MiB 0.03 6876 -1 -1 13 0.21 -1 -1 32748 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.2 MiB 1.90 1097 11106 3753 5771 1582 63.0 MiB 0.13 0.00 7.69072 -162.222 -7.69072 7.69072 0.67 0.000987304 0.000922097 0.0615489 0.0569984 34 3515 39 6.79088e+06 229024 618332. 2139.56 3.12 0.257682 0.224207 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0426018 0.0372754 118 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 9.78 vpr 62.99 MiB 0.03 6720 -1 -1 12 0.25 -1 -1 32756 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 24.5 MiB 1.96 1359 8151 1869 5680 602 63.0 MiB 0.09 0.00 7.62073 -165.231 -7.62073 7.62073 0.66 0.00097055 0.000897938 0.0463755 0.0430064 36 3806 40 6.79088e+06 309856 648988. 2245.63 4.93 0.272105 0.235851 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.20 0.10 0.09 -1 -1 0.20 0.0388009 0.0341413 150 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 19.87 vpr 62.84 MiB 0.04 6828 -1 -1 13 0.32 -1 -1 32780 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 24.4 MiB 1.97 1315 9051 2036 5908 1107 62.8 MiB 0.10 0.00 7.55776 -165.084 -7.55776 7.55776 0.68 0.000960503 0.000887814 0.0515224 0.0476589 40 3325 24 6.79088e+06 269440 706193. 2443.58 14.80 0.442727 0.381893 26254 175826 -1 3145 28 1639 4912 495639 171665 6.99932 6.99932 -162.116 -6.99932 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0514664 0.0449435 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 17.77 vpr 62.54 MiB 0.02 6748 -1 -1 14 0.27 -1 -1 32900 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 2.01 1139 8270 1889 5806 575 62.5 MiB 0.09 0.00 8.36252 -172.285 -8.36252 8.36252 0.67 0.000861859 0.000799242 0.0446075 0.0414042 40 2999 22 6.79088e+06 242496 706193. 2443.58 12.81 0.402548 0.346931 26254 175826 -1 2868 16 1271 3527 223782 49875 7.46496 7.46496 -168.675 -7.46496 0 0 926341. 3205.33 0.25 0.08 0.16 -1 -1 0.25 0.0303815 0.0268631 123 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 8.82 vpr 62.96 MiB 0.02 6852 -1 -1 13 0.31 -1 -1 32880 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 24.1 MiB 3.04 1159 8868 1881 6136 851 63.0 MiB 0.10 0.00 8.02321 -165.348 -8.02321 8.02321 0.66 0.000937212 0.00086874 0.0490727 0.0455 36 3689 32 6.79088e+06 269440 648988. 2245.63 2.78 0.222677 0.19443 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.21 0.11 0.13 -1 -1 0.21 0.040276 0.0354975 134 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 6.88 vpr 63.26 MiB 0.02 6808 -1 -1 13 0.28 -1 -1 33108 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1323 8591 2185 5991 415 63.3 MiB 0.10 0.00 8.19403 -174.315 -8.19403 8.19403 0.65 0.000996346 0.000922088 0.0495303 0.0458475 40 3394 20 6.79088e+06 309856 706193. 2443.58 2.69 0.247883 0.21549 26254 175826 -1 3066 25 1743 5231 489753 175031 7.25772 7.25772 -167.404 -7.25772 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.049066 0.0430426 154 220 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 7.20 vpr 63.45 MiB 0.02 6736 -1 -1 12 0.33 -1 -1 32756 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 24.7 MiB 1.39 1325 11983 3288 6841 1854 63.4 MiB 0.13 0.00 7.62163 -166.383 -7.62163 7.62163 0.65 0.00102033 0.000944733 0.067737 0.0625685 44 3682 36 6.79088e+06 323328 787024. 2723.27 2.71 0.296889 0.25863 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.26 0.12 0.16 -1 -1 0.26 0.0452158 0.0401748 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 11.54 vpr 62.26 MiB 0.04 6576 -1 -1 11 0.13 -1 -1 32380 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 23.7 MiB 1.39 956 7249 1855 4884 510 62.3 MiB 0.07 0.00 6.10061 -138.097 -6.10061 6.10061 0.65 0.000681386 0.000630026 0.0339751 0.031483 40 2274 24 6.79088e+06 175136 706193. 2443.58 7.43 0.304264 0.262135 26254 175826 -1 2061 14 902 2231 149609 32911 5.5245 5.5245 -134.444 -5.5245 0 0 926341. 3205.33 0.23 0.06 0.11 -1 -1 0.23 0.0225574 0.0199568 90 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 7.92 vpr 62.59 MiB 0.04 6644 -1 -1 13 0.18 -1 -1 32672 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 24.1 MiB 2.47 1073 11631 3861 5991 1779 62.6 MiB 0.12 0.00 7.81611 -170.556 -7.81611 7.81611 0.66 0.00091697 0.000857745 0.0593602 0.0550011 38 2825 21 6.79088e+06 229024 678818. 2348.85 2.57 0.231004 0.202037 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0294951 0.0260914 113 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 8.79 vpr 63.41 MiB 0.03 6960 -1 -1 14 0.40 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1399 15493 4561 8338 2594 63.4 MiB 0.18 0.00 8.67312 -179.019 -8.67312 8.67312 0.67 0.00113674 0.00104557 0.0949061 0.0876823 40 4316 49 6.79088e+06 323328 706193. 2443.58 4.23 0.369944 0.323016 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.25 0.32 0.17 -1 -1 0.25 0.0814709 0.0708164 180 267 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 8.91 vpr 63.25 MiB 0.02 6828 -1 -1 13 0.31 -1 -1 32816 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 24.4 MiB 2.23 1244 13849 3731 7364 2754 63.3 MiB 0.15 0.00 8.43396 -178.911 -8.43396 8.43396 0.65 0.00102789 0.000950214 0.0808519 0.0747894 38 3697 23 6.79088e+06 282912 678818. 2348.85 3.59 0.299817 0.262257 25966 169698 -1 2755 16 1418 3990 204815 47150 7.34737 7.34737 -164.785 -7.34737 0 0 902133. 3121.57 0.24 0.09 0.14 -1 -1 0.24 0.0370009 0.0327971 154 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 4.90 vpr 62.41 MiB 0.02 6568 -1 -1 11 0.16 -1 -1 32620 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 23.8 MiB 0.66 899 5994 1459 3795 740 62.4 MiB 0.06 0.00 6.69493 -140.456 -6.69493 6.69493 0.65 0.000723002 0.000669835 0.0286268 0.026468 30 2669 49 6.79088e+06 229024 556674. 1926.21 1.65 0.147432 0.128286 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.18 0.06 0.08 -1 -1 0.18 0.0267135 0.0235382 99 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 7.87 vpr 63.60 MiB 0.04 6960 -1 -1 15 0.44 -1 -1 32912 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 24.7 MiB 1.30 1572 8083 1890 5078 1115 63.6 MiB 0.11 0.00 9.61575 -193.644 -9.61575 9.61575 0.71 0.00109983 0.00100924 0.0525623 0.0485348 44 4110 31 6.79088e+06 323328 787024. 2723.27 3.29 0.305529 0.265312 27118 194962 -1 3390 17 1634 4978 276321 60698 8.1454 8.1454 -178.826 -8.1454 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0402975 0.0356574 172 241 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 7.11 vpr 62.98 MiB 0.02 6664 -1 -1 13 0.37 -1 -1 33028 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 24.5 MiB 1.07 1447 9914 2954 6315 645 63.0 MiB 0.11 0.00 8.38843 -181.197 -8.38843 8.38843 0.65 0.000988445 0.000915501 0.055689 0.0516018 38 3572 19 6.79088e+06 296384 678818. 2348.85 3.03 0.248495 0.21691 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0389201 0.034419 149 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 5.61 vpr 62.23 MiB 0.02 6540 -1 -1 11 0.13 -1 -1 32636 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 23.6 MiB 1.52 1043 11604 3704 5973 1927 62.2 MiB 0.10 0.00 6.83225 -151.19 -6.83225 6.83225 0.65 0.000729788 0.000675276 0.0520692 0.0481738 30 2701 43 6.79088e+06 215552 556674. 1926.21 1.49 0.1639 0.144063 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0280305 0.0246262 97 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 7.03 vpr 63.10 MiB 0.03 6888 -1 -1 12 0.29 -1 -1 32796 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1321 11989 3057 7272 1660 63.1 MiB 0.13 0.00 7.80487 -167.158 -7.80487 7.80487 0.66 0.000984237 0.000904521 0.0670253 0.0617948 40 3150 27 6.79088e+06 282912 706193. 2443.58 2.48 0.270904 0.236111 26254 175826 -1 3019 17 1406 4153 254158 55179 6.74877 6.74877 -155.224 -6.74877 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0370457 0.0326176 152 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 8.81 vpr 62.44 MiB 0.04 6596 -1 -1 12 0.19 -1 -1 32384 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 23.9 MiB 1.83 1076 11776 3996 5804 1976 62.4 MiB 0.12 0.00 7.20737 -155.525 -7.20737 7.20737 0.65 0.000847847 0.000784424 0.0606436 0.056238 38 3023 28 6.79088e+06 215552 678818. 2348.85 4.16 0.236441 0.206429 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.036946 0.0323494 115 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 5.05 vpr 62.62 MiB 0.02 6592 -1 -1 12 0.18 -1 -1 32696 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 24.0 MiB 1.35 861 12331 3461 6927 1943 62.6 MiB 0.11 0.00 7.68992 -150.206 -7.68992 7.68992 0.65 0.000749869 0.000694947 0.0553767 0.0512959 30 2423 23 6.79088e+06 255968 556674. 1926.21 0.99 0.146864 0.129806 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0241836 0.0214652 105 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 8.24 vpr 62.67 MiB 0.02 6800 -1 -1 12 0.28 -1 -1 32860 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 24.3 MiB 1.30 1109 13105 4321 6403 2381 62.7 MiB 0.13 0.00 7.73882 -148.46 -7.73882 7.73882 0.65 0.000958017 0.000879371 0.0710996 0.0657443 36 3249 25 6.79088e+06 323328 648988. 2245.63 3.98 0.272708 0.238035 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0353883 0.0312504 144 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 7.79 vpr 63.12 MiB 0.04 6672 -1 -1 14 0.31 -1 -1 33036 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 24.3 MiB 2.29 1442 8024 2021 5399 604 63.1 MiB 0.10 0.00 8.63126 -174.325 -8.63126 8.63126 0.73 0.00101852 0.000942938 0.0476384 0.0440779 46 3512 20 6.79088e+06 296384 828058. 2865.25 2.34 0.254685 0.221315 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0376891 0.0333169 155 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 7.92 vpr 62.86 MiB 0.02 6780 -1 -1 12 0.23 -1 -1 32784 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 24.4 MiB 1.37 1323 12503 3954 6429 2120 62.9 MiB 0.13 0.00 7.68002 -164.527 -7.68002 7.68002 0.65 0.00110627 0.00102459 0.069317 0.06415 38 3480 45 6.79088e+06 255968 678818. 2348.85 3.62 0.294539 0.257186 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.22 0.15 0.14 -1 -1 0.22 0.0478282 0.0417141 137 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 7.00 vpr 62.36 MiB 0.04 6684 -1 -1 12 0.15 -1 -1 32728 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 23.7 MiB 1.27 883 6839 1546 5160 133 62.4 MiB 0.07 0.00 7.22527 -147.319 -7.22527 7.22527 0.66 0.000723939 0.000661849 0.0331961 0.0306145 34 2749 47 6.79088e+06 202080 618332. 2139.56 3.02 0.201823 0.174464 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.21 0.13 0.11 -1 -1 0.21 0.0363901 0.0317303 95 127 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 6.80 vpr 62.55 MiB 0.02 6724 -1 -1 12 0.21 -1 -1 32348 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 24.0 MiB 1.86 1016 11806 3829 5905 2072 62.6 MiB 0.12 0.00 7.21239 -153.602 -7.21239 7.21239 0.66 0.00084792 0.000786403 0.0614919 0.0570062 46 2377 20 6.79088e+06 242496 828058. 2865.25 2.04 0.225771 0.197152 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.25 0.07 0.18 -1 -1 0.25 0.0313243 0.0276727 114 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 18.43 vpr 62.73 MiB 0.02 6668 -1 -1 11 0.23 -1 -1 32756 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 24.1 MiB 2.61 1192 7587 1799 4901 887 62.7 MiB 0.08 0.00 6.65573 -139.172 -6.65573 6.65573 0.65 0.000899057 0.000833398 0.0399498 0.0369907 38 3199 19 6.79088e+06 296384 678818. 2348.85 12.99 0.347974 0.299089 25966 169698 -1 2692 17 1290 3976 208721 46066 5.73164 5.73164 -133.72 -5.73164 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0326184 0.0287622 129 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 20.83 vpr 62.67 MiB 0.02 6764 -1 -1 11 0.20 -1 -1 32636 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 1.49 990 12156 4943 6412 801 62.7 MiB 0.12 0.00 6.59863 -125.892 -6.59863 6.59863 0.66 0.000846774 0.000784253 0.0614511 0.0568988 40 3108 38 6.79088e+06 282912 706193. 2443.58 16.43 0.434536 0.374581 26254 175826 -1 2573 23 1685 4826 323430 71588 5.86453 5.86453 -127.099 -5.86453 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0383975 0.0334717 125 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 7.72 vpr 62.36 MiB 0.05 6736 -1 -1 13 0.18 -1 -1 32636 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 23.7 MiB 2.81 1023 6220 1452 4481 287 62.4 MiB 0.06 0.00 7.37394 -146.255 -7.37394 7.37394 0.65 0.000719139 0.000666296 0.0298326 0.0276704 36 2646 31 6.79088e+06 215552 648988. 2245.63 2.16 0.185248 0.160569 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0242371 0.0215957 104 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 7.87 vpr 62.65 MiB 0.02 6604 -1 -1 12 0.21 -1 -1 32604 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 24.1 MiB 2.15 1239 4476 858 3235 383 62.6 MiB 0.06 0.00 7.13568 -159.479 -7.13568 7.13568 0.66 0.000876021 0.000808667 0.0260865 0.0241892 36 3048 33 6.79088e+06 269440 648988. 2245.63 2.91 0.220181 0.18966 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.21 0.08 0.15 -1 -1 0.21 0.0312789 0.0276188 125 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 6.60 vpr 62.77 MiB 0.03 6804 -1 -1 13 0.29 -1 -1 32964 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 24.3 MiB 1.79 1176 7283 1697 4959 627 62.8 MiB 0.08 0.00 7.98183 -162.706 -7.98183 7.98183 0.64 0.000921218 0.000853488 0.0412566 0.0382389 38 2773 17 6.79088e+06 269440 678818. 2348.85 1.94 0.216817 0.188067 25966 169698 -1 2364 19 1086 3314 147941 34759 6.84611 6.84611 -150.495 -6.84611 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0370006 0.0326052 137 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 8.00 vpr 63.31 MiB 0.05 6656 -1 -1 14 0.30 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.6 MiB 1.51 1408 9013 2325 5592 1096 63.3 MiB 0.10 0.00 8.8032 -181.521 -8.8032 8.8032 0.66 0.000996657 0.000922751 0.0522658 0.0483439 36 3712 28 6.79088e+06 282912 648988. 2245.63 3.45 0.274069 0.238578 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.23 0.09 0.15 -1 -1 0.23 0.0355089 0.0314035 149 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 19.85 vpr 62.75 MiB 0.04 6784 -1 -1 14 0.26 -1 -1 32800 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 24.3 MiB 2.21 1168 12528 4001 6466 2061 62.8 MiB 0.13 0.00 8.11366 -160.164 -8.11366 8.11366 0.65 0.000907343 0.000839678 0.0676538 0.0626655 38 3448 46 6.79088e+06 269440 678818. 2348.85 14.65 0.419273 0.362094 25966 169698 -1 2636 20 1464 4364 221739 50683 7.34388 7.34388 -154.812 -7.34388 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.037957 0.0333438 136 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 7.91 vpr 62.77 MiB 0.05 6668 -1 -1 13 0.34 -1 -1 33396 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 24.3 MiB 1.95 1266 7823 1896 4973 954 62.8 MiB 0.09 0.00 7.98865 -167.696 -7.98865 7.98865 0.66 0.000946398 0.000874796 0.0462085 0.04274 44 3303 29 6.79088e+06 255968 787024. 2723.27 2.77 0.254475 0.221032 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0351314 0.0310337 139 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 6.66 vpr 62.51 MiB 0.04 6524 -1 -1 13 0.20 -1 -1 32784 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 23.8 MiB 1.49 955 5888 1275 4387 226 62.5 MiB 0.06 0.00 7.30909 -151.711 -7.30909 7.30909 0.66 0.000752619 0.000692434 0.0294945 0.0273368 40 2382 30 6.79088e+06 215552 706193. 2443.58 2.34 0.186868 0.162107 26254 175826 -1 2197 16 1037 2468 154235 34830 6.41977 6.41977 -144.343 -6.41977 0 0 926341. 3205.33 0.23 0.07 0.16 -1 -1 0.23 0.0270252 0.0239526 106 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 9.18 vpr 62.84 MiB 0.04 6868 -1 -1 13 0.43 -1 -1 32928 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 24.3 MiB 1.41 1281 12175 3045 7735 1395 62.8 MiB 0.13 0.00 8.2401 -167.978 -8.2401 8.2401 0.65 0.000986682 0.000915319 0.0685038 0.0634771 36 3566 29 6.79088e+06 309856 648988. 2245.63 4.61 0.281897 0.246267 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.21 0.14 0.14 -1 -1 0.21 0.045127 0.0395111 144 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 6.73 vpr 62.69 MiB 0.04 6868 -1 -1 14 0.28 -1 -1 31400 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 24.1 MiB 1.58 1252 6306 1410 4478 418 62.7 MiB 0.08 0.00 8.1933 -176.786 -8.1933 8.1933 0.66 0.000890066 0.000821668 0.034845 0.0322939 46 3049 24 6.79088e+06 269440 828058. 2865.25 2.09 0.217121 0.187978 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0359006 0.0316988 133 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 7.41 vpr 63.03 MiB 0.03 6708 -1 -1 12 0.25 -1 -1 32928 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 24.4 MiB 1.64 1214 6855 1626 4139 1090 63.0 MiB 0.08 0.00 7.87232 -159.238 -7.87232 7.87232 0.65 0.000946808 0.000878238 0.0392083 0.0363668 38 3142 49 6.79088e+06 282912 678818. 2348.85 2.88 0.265233 0.229415 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0344545 0.0304355 143 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 8.60 vpr 62.79 MiB 0.05 6784 -1 -1 13 0.21 -1 -1 32724 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1166 13583 4513 7114 1956 62.8 MiB 0.13 0.00 8.05477 -151.514 -8.05477 8.05477 0.65 0.00087284 0.000807684 0.0694914 0.0643185 38 3283 21 6.79088e+06 282912 678818. 2348.85 3.83 0.246843 0.215918 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.23 0.08 0.17 -1 -1 0.23 0.0320303 0.028247 126 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 8.81 vpr 63.29 MiB 0.02 6688 -1 -1 14 0.39 -1 -1 32952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 24.8 MiB 1.45 1356 6595 1328 4700 567 63.3 MiB 0.08 0.00 8.2637 -174.994 -8.2637 8.2637 0.65 0.00101205 0.000937719 0.0401248 0.0372516 38 3897 30 6.79088e+06 282912 678818. 2348.85 4.22 0.264622 0.229885 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.31 0.11 0.16 -1 -1 0.31 0.0400624 0.0357349 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 6.73 vpr 62.71 MiB 0.02 6824 -1 -1 11 0.33 -1 -1 32816 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 24.1 MiB 1.31 1061 13403 4351 6899 2153 62.7 MiB 0.13 0.00 6.99502 -136.053 -6.99502 6.99502 0.65 0.000873357 0.000809848 0.0685248 0.0635579 30 3783 49 6.79088e+06 296384 556674. 1926.21 2.48 0.212668 0.186631 24526 138013 -1 2675 25 1322 3998 313633 101063 5.87926 5.87926 -131.148 -5.87926 0 0 706193. 2443.58 0.19 0.12 0.12 -1 -1 0.19 0.0421213 0.0367616 130 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 8.92 vpr 62.56 MiB 0.02 6580 -1 -1 13 0.17 -1 -1 32800 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 23.9 MiB 2.89 995 4062 701 3272 89 62.6 MiB 0.05 0.00 6.9771 -161.617 -6.9771 6.9771 0.62 0.000736398 0.000682564 0.022381 0.0208204 36 2919 36 6.79088e+06 188608 648988. 2245.63 3.37 0.188296 0.162748 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.21 0.08 0.16 -1 -1 0.21 0.0266293 0.0234957 99 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 8.43 vpr 62.93 MiB 0.02 6884 -1 -1 14 0.23 -1 -1 32804 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 24.3 MiB 1.76 1302 5483 1117 4002 364 62.9 MiB 0.07 0.00 8.68565 -176.783 -8.68565 8.68565 0.65 0.000869959 0.000804854 0.0308036 0.0286151 36 3263 26 6.79088e+06 255968 648988. 2245.63 3.92 0.215526 0.186682 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.21 0.08 0.09 -1 -1 0.21 0.0313365 0.027698 129 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 7.29 vpr 63.37 MiB 0.05 6720 -1 -1 15 0.36 -1 -1 33228 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 24.6 MiB 1.80 1292 9914 2574 6184 1156 63.4 MiB 0.12 0.00 9.1052 -186.475 -9.1052 9.1052 0.66 0.00103079 0.000954193 0.0602428 0.0557801 40 3560 37 6.79088e+06 296384 706193. 2443.58 2.36 0.302198 0.263357 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0439346 0.0385692 153 228 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 7.43 vpr 62.18 MiB 0.02 6560 -1 -1 11 0.16 -1 -1 32468 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 23.6 MiB 1.92 829 6054 1305 4663 86 62.2 MiB 0.07 0.00 6.63906 -133.693 -6.63906 6.63906 0.66 0.000710304 0.000658491 0.0290988 0.0269194 34 2844 35 6.79088e+06 188608 618332. 2139.56 2.79 0.186679 0.161459 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0255808 0.022537 91 124 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 7.02 vpr 62.39 MiB 0.04 6540 -1 -1 12 0.19 -1 -1 32440 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 23.9 MiB 1.47 1045 8360 2472 4444 1444 62.4 MiB 0.09 0.00 7.09988 -155.106 -7.09988 7.09988 0.65 0.000798881 0.000740265 0.0431063 0.0399729 36 3087 23 6.79088e+06 215552 648988. 2245.63 2.74 0.199241 0.173284 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0319637 0.0280363 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 7.45 vpr 63.02 MiB 0.02 6772 -1 -1 12 0.30 -1 -1 32944 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1231 6306 1337 4274 695 63.0 MiB 0.08 0.00 7.48442 -156.804 -7.48442 7.48442 0.65 0.000981217 0.000908445 0.0380226 0.0352391 36 3798 37 6.79088e+06 269440 648988. 2245.63 3.17 0.257174 0.222356 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.20 0.12 0.09 -1 -1 0.20 0.0440589 0.0389136 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 8.51 vpr 62.75 MiB 0.05 6788 -1 -1 12 0.24 -1 -1 32812 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.59 1313 9443 2521 5826 1096 62.8 MiB 0.10 0.00 7.56551 -160.745 -7.56551 7.56551 0.65 0.000894614 0.000828851 0.0506707 0.0469297 36 3623 36 6.79088e+06 255968 648988. 2245.63 3.99 0.254871 0.22146 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.22 0.09 0.11 -1 -1 0.22 0.034846 0.0307756 133 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 8.33 vpr 63.55 MiB 0.04 6940 -1 -1 14 0.46 -1 -1 33396 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 24.6 MiB 1.28 1284 5079 907 4069 103 63.5 MiB 0.09 0.00 8.77515 -179.37 -8.77515 8.77515 0.65 0.00109846 0.00101288 0.0469696 0.0436119 38 4131 35 6.79088e+06 309856 678818. 2348.85 3.82 0.288553 0.250651 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.22 0.11 0.15 -1 -1 0.22 0.0454537 0.0401231 170 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 18.25 vpr 62.66 MiB 0.02 6812 -1 -1 11 0.28 -1 -1 32364 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 24.1 MiB 1.85 1159 11963 3648 6429 1886 62.7 MiB 0.12 0.00 7.06667 -142.983 -7.06667 7.06667 0.65 0.000870817 0.000806857 0.061618 0.0571294 38 2927 33 6.79088e+06 282912 678818. 2348.85 13.40 0.373272 0.323193 25966 169698 -1 2582 16 1118 3242 177675 39214 6.29442 6.29442 -136.052 -6.29442 0 0 902133. 3121.57 0.25 0.08 0.16 -1 -1 0.25 0.032027 0.0283375 128 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 10.50 vpr 62.36 MiB 0.04 6540 -1 -1 11 0.20 -1 -1 32420 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 23.8 MiB 1.11 770 7714 1883 5409 422 62.4 MiB 0.07 0.00 6.64923 -122.654 -6.64923 6.64923 0.65 0.000709526 0.000656662 0.0359064 0.0332524 38 2218 30 6.79088e+06 255968 678818. 2348.85 6.56 0.332114 0.285248 25966 169698 -1 1741 20 933 2501 122623 29125 6.02914 6.02914 -121.034 -6.02914 0 0 902133. 3121.57 0.22 0.07 0.16 -1 -1 0.22 0.0296906 0.026003 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 9.32 vpr 63.66 MiB 0.04 6860 -1 -1 13 0.47 -1 -1 32888 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 24.9 MiB 1.64 1654 14793 4090 8037 2666 63.7 MiB 0.18 0.00 8.15219 -167.23 -8.15219 8.15219 0.65 0.00119286 0.00109271 0.0894951 0.0824395 40 4464 26 6.79088e+06 390688 706193. 2443.58 4.07 0.335756 0.293341 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.23 0.39 0.15 -1 -1 0.23 0.0919851 0.0798388 191 279 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 6.38 vpr 62.82 MiB 0.05 6844 -1 -1 14 0.25 -1 -1 33132 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1216 6923 1704 4584 635 62.8 MiB 0.08 0.00 8.60637 -173.25 -8.60637 8.60637 0.65 0.000881511 0.000817615 0.0374556 0.0347465 30 3569 30 6.79088e+06 269440 556674. 1926.21 2.06 0.164119 0.144001 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0336854 0.029663 128 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 6.96 vpr 62.32 MiB 0.02 6632 -1 -1 12 0.14 -1 -1 32520 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 23.7 MiB 2.04 1144 8723 2365 5890 468 62.3 MiB 0.09 0.00 7.40683 -169.316 -7.40683 7.40683 0.65 0.000760785 0.000704796 0.039794 0.0368709 44 3005 29 6.79088e+06 255968 787024. 2723.27 2.17 0.199649 0.173954 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.25 0.07 0.18 -1 -1 0.25 0.0275522 0.0243322 109 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 20.11 vpr 62.63 MiB 0.03 6660 -1 -1 13 0.34 -1 -1 32804 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 2.56 1115 5066 1001 3852 213 62.6 MiB 0.06 0.00 8.33866 -169.136 -8.33866 8.33866 0.65 0.000881964 0.000817565 0.0285675 0.0265245 38 3306 39 6.79088e+06 242496 678818. 2348.85 14.54 0.391644 0.335993 25966 169698 -1 2672 26 1221 3475 344525 134931 7.04987 7.04987 -158.656 -7.04987 0 0 902133. 3121.57 0.22 0.14 0.15 -1 -1 0.22 0.0443258 0.0387524 125 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 21.00 vpr 63.13 MiB 0.03 6840 -1 -1 13 0.31 -1 -1 33436 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 24.4 MiB 1.93 1490 8083 1681 5214 1188 63.1 MiB 0.10 0.00 7.4732 -162.473 -7.4732 7.4732 0.81 0.00105775 0.00097991 0.0473236 0.0438176 38 4261 31 6.79088e+06 336800 678818. 2348.85 15.76 0.479036 0.412165 25966 169698 -1 3280 31 2001 6065 538299 199400 6.59197 6.59197 -155.291 -6.59197 0 0 902133. 3121.57 0.22 0.20 0.15 -1 -1 0.22 0.0598445 0.0521619 159 234 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 8.96 vpr 62.73 MiB 0.05 6832 -1 -1 11 0.23 -1 -1 32788 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1209 11059 2877 6113 2069 62.7 MiB 0.12 0.00 7.11391 -144.84 -7.11391 7.11391 0.68 0.000924005 0.000854906 0.0594386 0.0550371 38 3561 49 6.79088e+06 309856 678818. 2348.85 4.47 0.297232 0.258854 25966 169698 -1 2802 19 1231 4028 222812 48680 6.29442 6.29442 -138.469 -6.29442 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.036919 0.0324452 140 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 6.85 vpr 62.86 MiB 0.02 6704 -1 -1 15 0.32 -1 -1 33008 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1211 12503 3460 7559 1484 62.9 MiB 0.14 0.00 9.11536 -184.558 -9.11536 9.11536 0.66 0.000957695 0.000886033 0.0728687 0.0674037 40 2992 23 6.79088e+06 255968 706193. 2443.58 2.24 0.253575 0.22212 26254 175826 -1 2859 22 1385 3747 325915 107909 7.59386 7.59386 -167.071 -7.59386 0 0 926341. 3205.33 0.22 0.13 0.15 -1 -1 0.22 0.0409518 0.0363788 142 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 13.85 vpr 63.09 MiB 0.05 6708 -1 -1 13 0.30 -1 -1 33016 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 24.5 MiB 1.98 1357 5463 1001 4200 262 63.1 MiB 0.07 0.00 8.32676 -176.58 -8.32676 8.32676 0.67 0.00101777 0.000935024 0.0330101 0.0304794 36 4143 34 6.79088e+06 309856 648988. 2245.63 8.83 0.268636 0.233102 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0349146 0.0309497 154 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 6.54 vpr 62.66 MiB 0.01 6544 -1 -1 12 0.20 -1 -1 32216 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 24.1 MiB 1.86 941 10557 3755 4946 1856 62.7 MiB 0.10 0.00 7.68137 -155.362 -7.68137 7.68137 0.65 0.000757528 0.000702472 0.0521987 0.0484591 36 2695 26 6.79088e+06 242496 648988. 2245.63 1.91 0.214178 0.186965 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.22 0.07 0.15 -1 -1 0.22 0.0287767 0.0253272 109 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 6.26 vpr 62.63 MiB 0.05 6536 -1 -1 11 0.16 -1 -1 32440 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 24.0 MiB 1.40 1148 5224 1190 3763 271 62.6 MiB 0.06 0.00 6.84847 -147.97 -6.84847 6.84847 0.65 0.000727127 0.000673502 0.0258115 0.0239181 48 2763 18 6.79088e+06 188608 865456. 2994.66 2.04 0.176656 0.153093 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.27 0.07 0.17 -1 -1 0.27 0.0263788 0.0233756 98 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 8.42 vpr 63.08 MiB 0.04 6804 -1 -1 13 0.30 -1 -1 32976 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 24.6 MiB 1.06 1115 8455 2194 4906 1355 63.1 MiB 0.10 0.00 7.89179 -153.02 -7.89179 7.89179 0.65 0.000944991 0.00087284 0.0474494 0.0439367 38 3369 23 6.79088e+06 296384 678818. 2348.85 4.37 0.254673 0.220982 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0387025 0.0340688 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 6.41 vpr 62.30 MiB 0.04 6624 -1 -1 10 0.17 -1 -1 32800 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 23.7 MiB 1.63 851 10204 2504 7246 454 62.3 MiB 0.09 0.00 6.11518 -125.484 -6.11518 6.11518 0.66 0.000717875 0.000665162 0.0480387 0.044561 38 2368 25 6.79088e+06 229024 678818. 2348.85 1.96 0.193202 0.168449 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.0309449 0.0272841 98 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 10.45 vpr 62.34 MiB 0.05 6636 -1 -1 14 0.19 -1 -1 32668 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 23.9 MiB 2.57 1049 6312 1330 4556 426 62.3 MiB 0.07 0.00 7.76918 -161.081 -7.76918 7.76918 0.65 0.000767009 0.000709957 0.0302132 0.0279868 36 3203 45 6.79088e+06 242496 648988. 2245.63 5.02 0.219435 0.190197 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.21 0.20 0.13 -1 -1 0.21 0.0545022 0.047217 110 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 9.15 vpr 62.60 MiB 0.02 6764 -1 -1 12 0.31 -1 -1 32956 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 24.2 MiB 1.25 1262 12919 3620 7000 2299 62.6 MiB 0.13 0.00 7.60154 -161.988 -7.60154 7.60154 0.63 0.000945839 0.000875602 0.0696219 0.0643847 36 3634 39 6.79088e+06 296384 648988. 2245.63 4.79 0.291627 0.254687 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.25 0.09 0.15 -1 -1 0.25 0.0352955 0.0311369 143 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 7.11 vpr 62.33 MiB 0.02 6632 -1 -1 12 0.15 -1 -1 32360 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 23.7 MiB 2.20 992 10726 2823 7181 722 62.3 MiB 0.10 0.00 6.58069 -144.507 -6.58069 6.58069 0.65 0.000721007 0.000667529 0.0499757 0.0463652 30 2929 43 6.79088e+06 215552 556674. 1926.21 2.21 0.162971 0.143133 24526 138013 -1 2473 14 1119 2569 158771 34817 5.98999 5.98999 -142.769 -5.98999 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0272719 0.0242128 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 8.34 vpr 63.12 MiB 0.02 6864 -1 -1 12 0.17 -1 -1 32792 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 24.3 MiB 1.37 1163 7736 1889 5402 445 63.1 MiB 0.09 0.00 7.51176 -154.757 -7.51176 7.51176 0.70 0.00089032 0.00082465 0.0431257 0.0399267 38 3181 29 6.79088e+06 242496 678818. 2348.85 4.15 0.238941 0.20782 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0330206 0.0290881 123 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 6.44 vpr 62.71 MiB 0.05 6908 -1 -1 13 0.31 -1 -1 32936 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 24.1 MiB 1.43 1250 11296 2557 6849 1890 62.7 MiB 0.12 0.00 7.49717 -162.624 -7.49717 7.49717 0.65 0.000887658 0.000822129 0.0600729 0.0556774 40 2968 20 6.79088e+06 255968 706193. 2443.58 1.99 0.235329 0.205195 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.034331 0.0301982 134 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 6.33 vpr 62.40 MiB 0.02 6640 -1 -1 11 0.16 -1 -1 32280 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 24.0 MiB 1.27 937 7515 1724 5667 124 62.4 MiB 0.08 0.00 7.16165 -142.405 -7.16165 7.16165 0.66 0.000757994 0.000702342 0.037093 0.0343982 46 2683 20 6.79088e+06 202080 828058. 2865.25 2.20 0.191511 0.166523 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0268485 0.0237702 105 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 7.87 vpr 62.56 MiB 0.04 6656 -1 -1 13 0.19 -1 -1 32508 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 24.0 MiB 1.82 1005 13381 4639 6392 2350 62.6 MiB 0.13 0.00 7.38301 -157.601 -7.38301 7.38301 0.66 0.000844927 0.000783327 0.0698167 0.0647163 38 2883 22 6.79088e+06 229024 678818. 2348.85 3.20 0.249236 0.21871 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0313334 0.0276416 116 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 6.97 vpr 62.91 MiB 0.02 6832 -1 -1 13 0.33 -1 -1 32876 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1327 8092 2018 5457 617 62.9 MiB 0.09 0.00 7.14878 -159.209 -7.14878 7.14878 0.66 0.000911679 0.000845738 0.0456385 0.0423815 46 3203 25 6.79088e+06 242496 828058. 2865.25 2.31 0.231398 0.201114 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0367871 0.0324787 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 7.87 vpr 62.51 MiB 0.05 6740 -1 -1 11 0.17 -1 -1 32676 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 24.1 MiB 1.55 925 13403 4743 6446 2214 62.5 MiB 0.12 0.00 6.69836 -125.024 -6.69836 6.69836 0.66 0.000792215 0.000733799 0.0637596 0.0590521 36 2760 29 6.79088e+06 296384 648988. 2245.63 3.47 0.239158 0.208796 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0353595 0.0316033 115 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 7.07 vpr 63.23 MiB 0.02 6876 -1 -1 14 0.30 -1 -1 33396 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 24.4 MiB 1.45 1410 8213 2036 5597 580 63.2 MiB 0.10 0.00 9.10514 -189.548 -9.10514 9.10514 0.69 0.00102188 0.000945495 0.0490702 0.0453912 44 3396 25 6.79088e+06 296384 787024. 2723.27 2.44 0.268305 0.234053 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0366234 0.0324489 160 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 10.35 vpr 62.57 MiB 0.03 6552 -1 -1 12 0.20 -1 -1 32448 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 2.75 1093 11281 2937 6811 1533 62.6 MiB 0.12 0.00 6.61653 -142.296 -6.61653 6.61653 0.68 0.000739598 0.000684599 0.0556871 0.051583 34 3493 43 6.79088e+06 242496 618332. 2139.56 4.73 0.239341 0.209101 25102 150614 -1 2644 17 1058 2530 171616 37701 5.57833 5.57833 -135.866 -5.57833 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0277811 0.0245617 108 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 7.52 vpr 62.80 MiB 0.03 6784 -1 -1 13 0.28 -1 -1 32840 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1323 14123 4442 7710 1971 62.8 MiB 0.16 0.00 7.64293 -157.325 -7.64293 7.64293 0.65 0.000910992 0.000843453 0.0851464 0.0791705 44 3212 24 6.79088e+06 255968 787024. 2723.27 2.64 0.262284 0.230792 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.036052 0.0317784 132 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 7.66 vpr 62.36 MiB 0.02 6508 -1 -1 13 0.18 -1 -1 32748 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 23.7 MiB 1.97 1020 12120 3554 6383 2183 62.4 MiB 0.11 0.00 7.35402 -164.423 -7.35402 7.35402 0.67 0.000749268 0.000693755 0.05646 0.0522906 36 3009 44 6.79088e+06 215552 648988. 2245.63 3.01 0.236476 0.206462 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.20 0.05 0.09 -1 -1 0.20 0.0177433 0.0160074 104 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 7.35 vpr 62.93 MiB 0.04 6852 -1 -1 12 0.21 -1 -1 32688 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 24.1 MiB 1.93 1030 11783 4465 6036 1282 62.9 MiB 0.13 0.00 7.13827 -153.033 -7.13827 7.13827 0.76 0.000851435 0.00078783 0.063309 0.0585885 44 2856 22 6.79088e+06 255968 787024. 2723.27 2.36 0.233966 0.204359 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0305704 0.0270152 121 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 8.91 vpr 63.37 MiB 0.04 6908 -1 -1 15 0.46 -1 -1 32864 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 24.8 MiB 1.93 1457 12373 3076 6798 2499 63.4 MiB 0.15 0.00 9.48621 -188.88 -9.48621 9.48621 0.66 0.00115167 0.00106615 0.0765741 0.0707904 46 4011 21 6.79088e+06 323328 828058. 2865.25 3.66 0.317332 0.277743 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0471324 0.0414787 176 250 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 5.95 vpr 61.80 MiB 0.03 6388 -1 -1 10 0.10 -1 -1 32076 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63280 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 23.2 MiB 1.50 678 9345 2965 4615 1765 61.8 MiB 0.09 0.00 5.03415 -115.492 -5.03415 5.03415 0.66 0.000659133 0.000612134 0.0426856 0.039637 36 1722 23 6.79088e+06 148192 648988. 2245.63 1.75 0.154225 0.134529 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.23 0.05 0.15 -1 -1 0.23 0.0232266 0.0203336 63 85 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 7.58 vpr 62.45 MiB 0.04 6656 -1 -1 13 0.17 -1 -1 32472 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 24.0 MiB 1.70 930 9881 2975 5177 1729 62.4 MiB 0.09 0.00 7.15369 -149.901 -7.15369 7.15369 0.65 0.000752687 0.000697858 0.0462136 0.0428857 36 2757 44 6.79088e+06 255968 648988. 2245.63 3.11 0.219457 0.190866 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0297497 0.0261988 105 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 8.14 vpr 62.59 MiB 0.04 6508 -1 -1 12 0.19 -1 -1 32540 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 24.1 MiB 1.87 1026 12331 4984 6774 573 62.6 MiB 0.12 0.00 7.35057 -161.147 -7.35057 7.35057 0.66 0.000835594 0.000773534 0.0627522 0.0580946 38 3211 42 6.79088e+06 229024 678818. 2348.85 3.41 0.260059 0.226507 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0337063 0.0296842 115 167 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 4.71 vpr 62.12 MiB 0.04 6588 -1 -1 9 0.13 -1 -1 32368 -1 -1 20 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63608 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 23.6 MiB 1.06 772 8553 2593 4994 966 62.1 MiB 0.07 0.00 5.4216 -101.246 -5.4216 5.4216 0.70 0.000616888 0.000573226 0.0348058 0.0323538 32 2040 31 6.79088e+06 269440 586450. 2029.24 0.97 0.118619 0.104045 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.20 0.06 0.14 -1 -1 0.20 0.0206391 0.0181989 86 111 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 10.87 vpr 63.19 MiB 0.05 6828 -1 -1 12 0.25 -1 -1 32736 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 24.4 MiB 2.36 1475 10263 2607 5842 1814 63.2 MiB 0.11 0.00 7.81518 -176.908 -7.81518 7.81518 0.65 0.000961972 0.000890265 0.0555956 0.0514356 38 4034 49 6.79088e+06 309856 678818. 2348.85 5.55 0.298123 0.25967 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0358162 0.0316376 146 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 8.09 vpr 63.22 MiB 0.04 6876 -1 -1 14 0.33 -1 -1 33024 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1195 12733 3723 6434 2576 63.2 MiB 0.13 0.00 9.14434 -182.838 -9.14434 9.14434 0.66 0.00095869 0.000886502 0.0699998 0.0646894 38 3451 34 6.79088e+06 296384 678818. 2348.85 3.83 0.285693 0.24914 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.038403 0.0339505 151 204 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 5.18 vpr 63.46 MiB 0.03 7152 -1 -1 1 0.03 -1 -1 30736 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 24.8 MiB 1.20 895 12321 3076 8292 953 63.5 MiB 0.14 0.00 4.3249 -144.349 -4.3249 4.3249 0.66 0.000824308 0.000766581 0.0467388 0.0434153 30 2780 27 6.87369e+06 517032 556674. 1926.21 1.30 0.150131 0.131748 25186 138497 -1 1954 20 1593 2579 127329 33406 3.6718 3.6718 -141.768 -3.6718 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0309578 0.0269769 155 96 32 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 6.96 vpr 63.28 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30632 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 24.5 MiB 3.24 889 13477 4603 6656 2218 63.3 MiB 0.14 0.00 4.22285 -135.326 -4.22285 4.22285 0.65 0.000758029 0.000703394 0.0583357 0.0541799 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.02 0.154216 0.136041 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0323683 0.0280503 141 91 30 30 89 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 5.33 vpr 63.19 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30456 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 24.4 MiB 1.65 953 18428 5979 9684 2765 63.2 MiB 0.16 0.00 3.74716 -129.333 -3.74716 3.74716 0.67 0.000741727 0.000686721 0.061256 0.0566361 30 2530 23 6.87369e+06 503058 556674. 1926.21 0.99 0.150016 0.13263 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0308084 0.0267687 145 65 54 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.59 vpr 63.15 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30604 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 24.4 MiB 1.23 922 15090 5352 7218 2520 63.1 MiB 0.16 0.00 4.1666 -130.205 -4.1666 4.1666 0.70 0.000786983 0.000728851 0.0614599 0.0571558 34 2444 21 6.87369e+06 321398 618332. 2139.56 1.63 0.199329 0.174925 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0297362 0.0258013 136 34 87 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.03 vpr 63.31 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.69 1047 14965 5078 8038 1849 63.3 MiB 0.15 0.00 4.2175 -149.421 -4.2175 4.2175 0.65 0.000741226 0.000688539 0.0621227 0.0577285 34 2922 24 6.87369e+06 293451 618332. 2139.56 1.59 0.208179 0.182566 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.032851 0.0285934 147 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 4.74 vpr 63.32 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 30396 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 1.11 1041 20588 6432 11323 2833 63.3 MiB 0.19 0.00 3.55395 -124.862 -3.55395 3.55395 0.65 0.000766237 0.000709123 0.0682532 0.0632196 32 2871 28 6.87369e+06 544980 586450. 2029.24 0.94 0.165902 0.146965 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.19 0.10 0.11 -1 -1 0.19 0.0323527 0.0280992 154 64 63 32 63 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 5.56 vpr 62.62 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30672 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 24.1 MiB 1.99 640 10388 2730 6621 1037 62.6 MiB 0.10 0.00 3.6994 -105.15 -3.6994 3.6994 0.68 0.000564366 0.000524551 0.0363824 0.0338211 28 1921 25 6.87369e+06 279477 531479. 1839.03 0.93 0.106706 0.0936416 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.17 0.07 0.13 -1 -1 0.17 0.0253451 0.0218606 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 4.27 vpr 63.14 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30180 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.4 MiB 0.87 969 14273 4212 7662 2399 63.1 MiB 0.13 0.00 3.61131 -114.549 -3.61131 3.61131 0.65 0.000664295 0.000617927 0.0443504 0.0411473 30 2496 28 6.87369e+06 489084 556674. 1926.21 0.90 0.130101 0.114546 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.18 0.07 0.08 -1 -1 0.18 0.0259802 0.0226949 141 4 115 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 5.81 vpr 62.96 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 24.1 MiB 2.45 735 9712 2823 5738 1151 63.0 MiB 0.09 0.00 3.24697 -108.666 -3.24697 3.24697 0.69 0.00050926 0.000466416 0.0345157 0.0317336 28 1915 21 6.87369e+06 223581 531479. 1839.03 0.84 0.111252 0.0972724 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.17 0.06 0.11 -1 -1 0.17 0.0227074 0.0197891 103 85 0 0 84 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.72 vpr 62.69 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30300 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.54 706 12808 2978 8428 1402 62.7 MiB 0.10 0.00 3.8076 -131.302 -3.8076 3.8076 0.67 0.00051977 0.000477234 0.0483749 0.0448819 34 2315 45 6.87369e+06 223581 618332. 2139.56 1.57 0.196852 0.171433 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.027833 0.0241278 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.26 vpr 62.92 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30156 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 24.1 MiB 2.84 860 11776 3165 7564 1047 62.9 MiB 0.11 0.00 3.7375 -122.128 -3.7375 3.7375 0.66 0.000651147 0.00060539 0.0465814 0.0433071 32 2014 21 6.87369e+06 251529 586450. 2029.24 0.86 0.122218 0.108004 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.21 0.07 0.13 -1 -1 0.21 0.0240918 0.0209726 109 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 5.24 vpr 63.06 MiB 0.02 6856 -1 -1 1 0.03 -1 -1 30524 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 24.1 MiB 1.31 881 15207 4108 9975 1124 63.1 MiB 0.13 0.00 3.45001 -118.108 -3.45001 3.45001 0.66 0.000668208 0.000613345 0.0480654 0.0444845 34 2251 27 6.87369e+06 447163 618332. 2139.56 1.38 0.178478 0.155449 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0249312 0.021619 116 65 25 25 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 8.48 vpr 63.28 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30296 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 4.23 958 19935 5624 11872 2439 63.3 MiB 0.18 0.00 3.64005 -125.972 -3.64005 3.64005 0.69 0.000750177 0.000696164 0.0679397 0.062932 34 2786 25 6.87369e+06 489084 618332. 2139.56 1.56 0.21544 0.188842 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.026464 0.0230953 147 58 64 32 57 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 5.87 vpr 63.36 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30544 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 2.15 1059 21016 6637 11817 2562 63.4 MiB 0.20 0.00 4.34584 -150.842 -4.34584 4.34584 0.65 0.000778745 0.000719782 0.0742459 0.0687613 30 2683 24 6.87369e+06 517032 556674. 1926.21 0.96 0.16812 0.149083 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.19 0.09 0.12 -1 -1 0.19 0.0335842 0.0291474 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.10 vpr 62.49 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30772 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 23.9 MiB 1.74 791 11776 3380 6895 1501 62.5 MiB 0.10 0.00 3.6364 -112.843 -3.6364 3.6364 0.66 0.000577156 0.000536725 0.0415926 0.0386977 32 2110 22 6.87369e+06 265503 586450. 2029.24 0.85 0.110343 0.0973497 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.19 0.07 0.12 -1 -1 0.19 0.022329 0.0193585 102 29 58 29 24 24 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.98 vpr 63.40 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.44 930 14221 5969 7807 445 63.4 MiB 0.15 0.00 3.52575 -124.171 -3.52575 3.52575 0.70 0.000782763 0.000727059 0.0623666 0.0579136 36 2582 25 6.87369e+06 293451 648988. 2245.63 1.81 0.216391 0.188923 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.20 0.10 0.09 -1 -1 0.20 0.0319652 0.0278269 145 63 64 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.80 vpr 63.35 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30372 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 24.5 MiB 4.18 1056 17238 4537 10962 1739 63.3 MiB 0.15 0.00 3.55695 -127.024 -3.55695 3.55695 0.65 0.000743976 0.000691406 0.0564693 0.0523558 28 2543 24 6.87369e+06 531006 531479. 1839.03 0.93 0.146379 0.129385 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.17 0.09 0.12 -1 -1 0.17 0.0327378 0.0283884 148 57 64 32 56 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.19 vpr 63.04 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30040 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 24.1 MiB 2.20 836 17103 4501 10697 1905 63.0 MiB 0.17 0.00 3.09156 -112.02 -3.09156 3.09156 0.68 0.000677391 0.000629515 0.0649323 0.0602691 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.34 0.14913 0.132447 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0268488 0.0233194 117 65 29 29 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 3.95 vpr 62.16 MiB 0.03 6772 -1 -1 1 0.02 -1 -1 30228 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 23.6 MiB 0.54 560 9036 3714 4978 344 62.2 MiB 0.08 0.00 2.94056 -94.1681 -2.94056 2.94056 0.67 0.000599612 0.000557753 0.0329556 0.0306448 28 1745 31 6.87369e+06 195634 531479. 1839.03 0.90 0.102272 0.0895668 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.19 0.05 0.12 -1 -1 0.19 0.0174037 0.0151332 73 34 24 24 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 4.63 vpr 62.85 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30436 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 24.2 MiB 1.07 944 12636 3568 7641 1427 62.8 MiB 0.12 0.00 4.39847 -135.821 -4.39847 4.39847 0.67 0.000668939 0.000621373 0.0526463 0.048927 32 2277 24 6.87369e+06 237555 586450. 2029.24 0.91 0.14042 0.124216 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0286841 0.0250083 113 64 31 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.14 vpr 63.23 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30196 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.88 894 19124 5624 10425 3075 63.2 MiB 0.17 0.00 4.20059 -139.885 -4.20059 4.20059 0.67 0.00073568 0.000684357 0.0624691 0.0578932 34 2709 23 6.87369e+06 503058 618332. 2139.56 1.64 0.212976 0.186411 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.19 0.05 0.09 -1 -1 0.19 0.0161849 0.0142448 150 34 91 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 9.70 vpr 63.48 MiB 0.03 7188 -1 -1 1 0.05 -1 -1 30564 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 24.7 MiB 2.84 951 19380 5821 10599 2960 63.5 MiB 0.19 0.00 3.81248 -128.436 -3.81248 3.81248 0.66 0.000965596 0.000890459 0.0710356 0.0655544 30 2850 21 6.87369e+06 558954 556674. 1926.21 4.09 0.279563 0.242999 25186 138497 -1 2061 21 1429 2276 150987 35757 3.6544 3.6544 -128.383 -3.6544 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0338636 0.0294632 154 124 0 0 125 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.15 vpr 62.01 MiB 0.04 6820 -1 -1 1 0.02 -1 -1 30636 -1 -1 16 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 23.5 MiB 1.83 600 9219 3759 4898 562 62.0 MiB 0.09 0.00 2.91856 -82.7442 -2.91856 2.91856 0.66 0.000449184 0.000417831 0.0358766 0.0333842 28 1359 19 6.87369e+06 223581 531479. 1839.03 0.81 0.0874968 0.077471 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0192123 0.0165744 69 30 26 26 22 22 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.90 vpr 63.02 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 30112 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.3 MiB 1.26 1038 9757 2635 6591 531 63.0 MiB 0.11 0.00 4.1666 -141.416 -4.1666 4.1666 0.66 0.000690641 0.000642682 0.0384623 0.0357679 36 2506 23 6.87369e+06 293451 648988. 2245.63 1.76 0.177851 0.154779 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.21 0.08 0.16 -1 -1 0.21 0.0289807 0.0252395 141 3 122 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.95 vpr 62.21 MiB 0.02 6644 -1 -1 1 0.04 -1 -1 30532 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.7 MiB 0.37 506 9516 2238 6770 508 62.2 MiB 0.07 0.00 2.55523 -88.1124 -2.55523 2.55523 0.66 0.000477073 0.000444144 0.0296652 0.0275798 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.20 0.122826 0.107296 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0260763 0.0226997 71 3 53 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.61 vpr 63.24 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 24.4 MiB 0.74 1092 17964 4627 11625 1712 63.2 MiB 0.20 0.00 4.26205 -149.131 -4.26205 4.26205 0.68 0.000747215 0.000685284 0.0679371 0.0628589 32 3060 24 6.87369e+06 503058 586450. 2029.24 1.07 0.158056 0.140152 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0289582 0.0252195 155 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.49 vpr 63.21 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30100 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.5 MiB 0.81 964 9612 2267 6482 863 63.2 MiB 0.10 0.00 3.55269 -121.215 -3.55269 3.55269 0.66 0.000704692 0.000653942 0.0318044 0.0294946 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.03 0.131265 0.114954 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0283436 0.024758 151 3 124 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.31 vpr 63.33 MiB 0.03 7084 -1 -1 1 0.03 -1 -1 30524 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1088 13358 3512 8899 947 63.3 MiB 0.14 0.00 4.2809 -148.724 -4.2809 4.2809 0.66 0.000787531 0.00073061 0.0461596 0.0427486 26 3507 43 6.87369e+06 544980 503264. 1741.40 2.59 0.157384 0.138137 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.17 0.13 0.13 -1 -1 0.17 0.0351887 0.0306229 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 4.86 vpr 62.61 MiB 0.02 6724 -1 -1 1 0.03 -1 -1 30208 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 24.1 MiB 0.87 734 6839 1724 4743 372 62.6 MiB 0.07 0.00 3.07332 -108.035 -3.07332 3.07332 0.67 0.000618767 0.000575155 0.0279089 0.0259652 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.40 0.16177 0.140414 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0224363 0.0196942 104 34 54 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 4.67 vpr 62.52 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30232 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 24.0 MiB 1.01 856 11260 3834 5392 2034 62.5 MiB 0.12 0.00 3.7936 -125.971 -3.7936 3.7936 0.74 0.000615131 0.00057151 0.0480709 0.0446482 32 2233 22 6.87369e+06 251529 586450. 2029.24 0.96 0.128142 0.113442 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.21 0.09 0.13 -1 -1 0.21 0.0309663 0.0268571 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.65 vpr 62.55 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30364 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 24.0 MiB 1.00 743 13092 5209 6121 1762 62.6 MiB 0.14 0.00 3.48175 -108.034 -3.48175 3.48175 0.66 0.00104244 0.000970629 0.056577 0.0526437 28 2217 26 6.87369e+06 265503 531479. 1839.03 0.98 0.130704 0.115795 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.24 0.07 0.11 -1 -1 0.24 0.019505 0.0171101 104 34 56 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.21 vpr 62.56 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30348 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 1.16 861 14700 5460 6955 2285 62.6 MiB 0.13 0.00 3.58201 -129.205 -3.58201 3.58201 0.65 0.000610198 0.000567512 0.0540774 0.0503314 34 2321 22 6.87369e+06 223581 618332. 2139.56 1.41 0.172981 0.15157 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0250465 0.0217846 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.31 vpr 62.97 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 24.6 MiB 0.75 924 11975 3064 7554 1357 63.0 MiB 0.11 0.00 3.50375 -121.402 -3.50375 3.50375 0.65 0.000628985 0.000584458 0.0374879 0.0348522 32 2375 25 6.87369e+06 447163 586450. 2029.24 0.89 0.114705 0.100691 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0292368 0.0253047 119 34 61 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 6.35 vpr 62.88 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30060 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 24.0 MiB 2.47 824 15003 4455 7859 2689 62.9 MiB 0.13 0.00 2.90021 -94.838 -2.90021 2.90021 0.65 0.000625439 0.000579086 0.0476329 0.0441351 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.32 0.167999 0.146315 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.21 0.07 0.09 -1 -1 0.21 0.0249962 0.0216256 113 61 29 29 57 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.98 vpr 63.56 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 30500 -1 -1 44 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 24.9 MiB 3.67 1315 20411 5511 12546 2354 63.6 MiB 0.22 0.00 4.25391 -147.758 -4.25391 4.25391 0.66 0.000951756 0.000889169 0.0717005 0.066358 28 3619 31 6.87369e+06 614849 531479. 1839.03 2.38 0.185272 0.163801 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.18 0.13 0.12 -1 -1 0.18 0.0376156 0.0326261 184 29 128 32 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.40 vpr 63.34 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30428 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 24.5 MiB 2.74 1049 18419 4848 10881 2690 63.3 MiB 0.17 0.00 3.66825 -130.624 -3.66825 3.66825 0.65 0.000785432 0.000729863 0.0620304 0.0574961 32 2652 21 6.87369e+06 544980 586450. 2029.24 0.91 0.152535 0.135162 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0268916 0.0235475 154 65 62 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.32 vpr 62.79 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30468 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 24.4 MiB 3.18 881 17134 5393 9307 2434 62.8 MiB 0.15 0.00 3.56305 -119.83 -3.56305 3.56305 0.66 0.000679746 0.000630078 0.0569747 0.0527326 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.43 0.184421 0.161195 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0260103 0.0224943 116 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.33 vpr 63.25 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30380 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.93 1019 8641 2131 5612 898 63.3 MiB 0.12 0.00 3.59121 -120.774 -3.59121 3.59121 0.69 0.000901426 0.000837606 0.0419826 0.0390702 34 2671 24 6.87369e+06 307425 618332. 2139.56 1.59 0.200644 0.174369 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0319811 0.0277115 141 64 60 30 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 9.10 vpr 63.56 MiB 0.05 7308 -1 -1 1 0.03 -1 -1 30640 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 24.8 MiB 4.65 1071 16825 7101 8757 967 63.6 MiB 0.18 0.00 4.97069 -151.888 -4.97069 4.97069 0.67 0.000838496 0.00077902 0.078059 0.0725153 34 2813 21 6.87369e+06 307425 618332. 2139.56 1.68 0.231984 0.203309 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.22 0.07 0.14 -1 -1 0.22 0.0256751 0.0223169 145 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 5.98 vpr 63.32 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.72 980 12175 3299 8119 757 63.3 MiB 0.13 0.00 4.75154 -140.36 -4.75154 4.75154 0.65 0.00076967 0.000714377 0.0529953 0.0492247 34 2589 22 6.87369e+06 307425 618332. 2139.56 1.53 0.203831 0.177919 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0320425 0.0278831 141 90 31 31 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.48 vpr 63.31 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30480 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 24.5 MiB 2.34 1053 19023 5653 10954 2416 63.3 MiB 0.17 0.00 3.64005 -125.414 -3.64005 3.64005 0.66 0.000753904 0.000700112 0.0649646 0.0601688 34 2453 25 6.87369e+06 503058 618332. 2139.56 1.45 0.212462 0.186034 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0311568 0.0269399 148 64 60 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.60 vpr 63.21 MiB 0.05 7092 -1 -1 1 0.05 -1 -1 30436 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.4 MiB 1.65 1150 19618 5466 12522 1630 63.2 MiB 0.18 0.00 4.1996 -145.707 -4.1996 4.1996 0.66 0.000768546 0.000713743 0.0659248 0.0610962 30 2927 24 6.87369e+06 531006 556674. 1926.21 4.24 0.248663 0.217349 25186 138497 -1 2218 18 1562 2480 174353 38167 3.7701 3.7701 -147.596 -3.7701 0 0 706193. 2443.58 0.25 0.08 0.10 -1 -1 0.25 0.0271111 0.0236894 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 6.96 vpr 64.03 MiB 0.03 7236 -1 -1 1 0.04 -1 -1 30788 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65564 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 25.1 MiB 3.12 1303 13356 3327 8820 1209 64.0 MiB 0.16 0.00 4.31511 -149.42 -4.31511 4.31511 0.65 0.000928107 0.000854251 0.0529036 0.0489521 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.16 0.161466 0.141839 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.17 0.11 0.11 -1 -1 0.17 0.0373986 0.032535 186 96 62 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.85 vpr 62.59 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30552 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.81 908 12636 4255 7048 1333 62.6 MiB 0.13 0.00 3.7654 -130.371 -3.7654 3.7654 0.65 0.000629638 0.000585682 0.0506952 0.0471489 34 2191 32 6.87369e+06 237555 618332. 2139.56 1.51 0.182895 0.159836 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0233526 0.0202751 112 34 62 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.40 vpr 63.30 MiB 0.03 7128 -1 -1 1 0.03 -1 -1 30388 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 24.6 MiB 2.49 1036 19820 6398 10981 2441 63.3 MiB 0.18 0.00 4.25889 -142.345 -4.25889 4.25889 0.66 0.000766016 0.000711435 0.0692492 0.0642729 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.23 0.181169 0.160024 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.20 0.11 0.13 -1 -1 0.20 0.0321021 0.0278334 152 64 62 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 5.91 vpr 63.43 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30704 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 24.6 MiB 1.90 1118 16515 4839 10227 1449 63.4 MiB 0.16 0.00 3.56001 -125.702 -3.56001 3.56001 0.66 0.000775388 0.000720561 0.0582834 0.0540856 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.35 0.150679 0.13316 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0311658 0.0270078 150 63 62 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.27 vpr 63.19 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30340 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.39 942 16081 4088 11306 687 63.2 MiB 0.16 0.00 4.1996 -144.758 -4.1996 4.1996 0.66 0.000708782 0.000658644 0.0637822 0.0592522 34 3051 25 6.87369e+06 293451 618332. 2139.56 2.17 0.205772 0.180814 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0316372 0.0275019 147 3 128 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.77 vpr 63.33 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30560 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 3.56 1066 20980 7180 11264 2536 63.3 MiB 0.19 0.00 3.54349 -125.696 -3.54349 3.54349 0.65 0.000790765 0.000734141 0.0745136 0.0689941 34 2404 23 6.87369e+06 503058 618332. 2139.56 1.51 0.23023 0.202274 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0308858 0.0268074 148 96 25 25 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 7.37 vpr 63.30 MiB 0.02 7016 -1 -1 1 0.04 -1 -1 30480 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 3.52 1032 19142 4987 12020 2135 63.3 MiB 0.20 0.00 3.61805 -127.505 -3.61805 3.61805 0.67 0.000760629 0.000705234 0.0710442 0.0657893 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.28 0.182299 0.160931 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.17 0.05 0.07 -1 -1 0.17 0.0179675 0.0156835 152 61 64 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 6.43 vpr 63.38 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30400 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 24.5 MiB 2.72 1111 18648 5184 11229 2235 63.4 MiB 0.18 0.00 3.58025 -126.995 -3.58025 3.58025 0.66 0.000768883 0.00071323 0.0662197 0.0613132 32 2918 26 6.87369e+06 558954 586450. 2029.24 0.98 0.159213 0.140945 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0321075 0.0280837 156 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.58 vpr 63.29 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30648 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 24.4 MiB 0.84 973 12876 3455 7707 1714 63.3 MiB 0.11 0.00 4.3249 -147.802 -4.3249 4.3249 0.69 0.000753225 0.000700128 0.0426039 0.0395544 34 2850 24 6.87369e+06 544980 618332. 2139.56 1.99 0.191678 0.167373 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.20 0.09 0.14 -1 -1 0.20 0.0278979 0.0243932 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.14 vpr 63.24 MiB 0.05 6956 -1 -1 1 0.04 -1 -1 30664 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 24.4 MiB 2.62 1087 15172 3966 9854 1352 63.2 MiB 0.15 0.00 4.1996 -143.047 -4.1996 4.1996 0.69 0.000774825 0.000719516 0.0509635 0.0471673 34 2680 28 6.87369e+06 572927 618332. 2139.56 1.71 0.211864 0.184404 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0331884 0.0288214 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 7.46 vpr 63.77 MiB 0.03 7268 -1 -1 1 0.03 -1 -1 30580 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 25.1 MiB 3.71 988 19356 5396 10906 3054 63.8 MiB 0.19 0.00 4.16785 -135.645 -4.16785 4.16785 0.65 0.000830933 0.000770036 0.0712429 0.065899 30 2632 23 6.87369e+06 517032 556674. 1926.21 1.01 0.169308 0.149593 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0330511 0.0285719 150 122 0 0 122 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.15 vpr 63.47 MiB 0.02 7144 -1 -1 1 0.04 -1 -1 30568 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.6 MiB 2.67 1079 15709 4633 9421 1655 63.5 MiB 0.17 0.00 4.13359 -143.515 -4.13359 4.13359 0.66 0.000812796 0.000754658 0.0711953 0.0661087 34 3228 24 6.87369e+06 293451 618332. 2139.56 1.72 0.230343 0.201755 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0343442 0.0297476 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.40 vpr 62.59 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30540 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 24.0 MiB 0.84 919 15426 4260 9754 1412 62.6 MiB 0.13 0.00 3.51475 -125.544 -3.51475 3.51475 0.66 0.000638318 0.000593958 0.0478223 0.0443698 32 2428 31 6.87369e+06 447163 586450. 2029.24 0.94 0.134697 0.118574 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0273314 0.0236843 121 34 63 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.54 vpr 63.25 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 24.4 MiB 2.86 953 12980 4579 7047 1354 63.3 MiB 0.14 0.00 3.6884 -132.193 -3.6884 3.6884 0.68 0.000714009 0.000662914 0.0590387 0.0547913 32 2548 27 6.87369e+06 223581 586450. 2029.24 0.93 0.147839 0.13069 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.22 0.10 0.15 -1 -1 0.22 0.0341031 0.0296644 112 94 0 0 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 7.06 vpr 63.43 MiB 0.03 7212 -1 -1 1 0.03 -1 -1 30788 -1 -1 44 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 24.9 MiB 1.90 1419 16556 4403 10830 1323 63.4 MiB 0.18 0.00 4.99284 -170.715 -4.99284 4.99284 0.66 0.00106753 0.000993415 0.0614611 0.0569834 28 3950 45 6.87369e+06 614849 531479. 1839.03 2.46 0.19887 0.17469 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.20 0.14 0.08 -1 -1 0.20 0.037568 0.0325996 189 65 96 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.32 vpr 63.20 MiB 0.03 6988 -1 -1 1 0.03 -1 -1 30304 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 24.4 MiB 2.55 1069 15831 4027 10006 1798 63.2 MiB 0.15 0.00 3.59121 -127.943 -3.59121 3.59121 0.66 0.000780036 0.000723825 0.0544397 0.050286 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.13 0.142686 0.125882 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.17 0.11 0.11 -1 -1 0.17 0.0413221 0.0356822 150 34 92 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.27 vpr 63.02 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30296 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 24.1 MiB 0.67 823 15633 5297 7776 2560 63.0 MiB 0.13 0.00 3.51601 -116.196 -3.51601 3.51601 0.65 0.000617644 0.000573172 0.048343 0.0448172 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.03 0.123391 0.108888 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.17 0.04 0.07 -1 -1 0.17 0.0161521 0.0141071 116 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 9.93 vpr 63.50 MiB 0.05 7332 -1 -1 1 0.03 -1 -1 31072 -1 -1 47 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 24.9 MiB 5.40 1193 22455 6528 13018 2909 63.5 MiB 0.22 0.00 4.91264 -167.151 -4.91264 4.91264 0.69 0.000953751 0.00088506 0.0835759 0.0774261 32 3593 50 6.87369e+06 656770 586450. 2029.24 1.62 0.239314 0.210922 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.21 0.14 0.13 -1 -1 0.21 0.0437943 0.0378161 190 127 32 32 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.82 vpr 63.20 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30508 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 24.3 MiB 2.86 975 19868 5843 10688 3337 63.2 MiB 0.17 0.00 4.28153 -144.516 -4.28153 4.28153 0.67 0.000750213 0.000696956 0.0632288 0.0586669 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.19 0.183376 0.161556 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0289729 0.0251684 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.08 vpr 62.68 MiB 0.03 6748 -1 -1 1 0.03 -1 -1 30376 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.3 MiB 0.59 857 11197 2857 7409 931 62.7 MiB 0.10 0.00 3.64005 -128.736 -3.64005 3.64005 0.65 0.000622527 0.000579222 0.0331289 0.030761 30 2290 23 6.87369e+06 461137 556674. 1926.21 0.87 0.107121 0.0941421 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.21 0.08 0.13 -1 -1 0.21 0.0262032 0.0226931 123 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.70 vpr 63.43 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30856 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 24.7 MiB 2.38 1249 21169 5887 12519 2763 63.4 MiB 0.20 0.00 4.9297 -168.732 -4.9297 4.9297 0.66 0.00085602 0.00079554 0.0723584 0.06716 28 3487 31 6.87369e+06 628823 531479. 1839.03 1.51 0.183078 0.16176 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.19 0.14 0.11 -1 -1 0.19 0.0372862 0.0322512 189 34 128 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 4.91 vpr 62.81 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 0.87 806 12292 2857 8871 564 62.8 MiB 0.11 0.00 3.7764 -134.344 -3.7764 3.7764 0.65 0.000604044 0.000561094 0.0452227 0.0420221 34 2200 24 6.87369e+06 223581 618332. 2139.56 1.37 0.166068 0.145075 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.22 0.08 0.14 -1 -1 0.22 0.0264163 0.0228978 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.64 vpr 62.72 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30060 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 24.3 MiB 2.16 719 10463 2628 6946 889 62.7 MiB 0.10 0.00 3.56001 -114.458 -3.56001 3.56001 0.65 0.000614356 0.000571372 0.0315518 0.0292482 28 2094 21 6.87369e+06 461137 531479. 1839.03 0.92 0.104927 0.0919668 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.026353 0.022756 118 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 7.17 vpr 63.34 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30260 -1 -1 35 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 24.5 MiB 3.05 1008 14550 3923 8443 2184 63.3 MiB 0.14 0.00 3.54707 -114.227 -3.54707 3.54707 0.68 0.000741532 0.000688413 0.0515543 0.0478369 34 2543 22 6.87369e+06 489084 618332. 2139.56 1.47 0.195202 0.170421 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0292661 0.025383 141 88 29 29 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.46 vpr 63.44 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30608 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.6 MiB 2.03 854 12175 2685 7576 1914 63.4 MiB 0.11 0.00 4.2388 -146.065 -4.2388 4.2388 0.65 0.000753416 0.000701605 0.0531092 0.049309 34 2806 28 6.87369e+06 293451 618332. 2139.56 1.78 0.209919 0.183107 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.24 0.10 0.13 -1 -1 0.24 0.0352036 0.0305181 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.59 vpr 63.40 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30656 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 3.91 1100 18901 5336 11603 1962 63.4 MiB 0.18 0.00 4.27679 -150.534 -4.27679 4.27679 0.56 0.000790326 0.000727356 0.0651175 0.0603553 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.05 0.156513 0.13878 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.18 0.09 0.13 -1 -1 0.18 0.0330496 0.0286816 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 6.94 vpr 63.12 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30504 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 24.4 MiB 2.86 825 17191 6233 8742 2216 63.1 MiB 0.14 0.00 3.60705 -126.657 -3.60705 3.60705 0.65 0.000686204 0.00063105 0.0547869 0.0507557 36 2048 23 6.87369e+06 461137 648988. 2245.63 1.46 0.187298 0.163615 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0270182 0.02349 123 65 32 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.57 vpr 63.09 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30464 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 24.2 MiB 3.58 738 4456 873 3135 448 63.1 MiB 0.06 0.00 3.6994 -119.902 -3.6994 3.6994 0.65 0.00067665 0.000629265 0.0193315 0.0179786 34 2217 18 6.87369e+06 251529 618332. 2139.56 1.43 0.149279 0.128934 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0278404 0.0240939 108 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.73 vpr 63.17 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 24.4 MiB 2.68 914 16740 4391 9932 2417 63.2 MiB 0.16 0.00 3.59605 -116.379 -3.59605 3.59605 0.69 0.000726804 0.00067534 0.0586669 0.0544782 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.32 0.19726 0.172673 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.026658 0.0231992 143 60 60 30 57 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.67 vpr 62.95 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30468 -1 -1 35 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 24.2 MiB 1.48 905 12191 3346 7959 886 63.0 MiB 0.11 0.00 4.19891 -125.962 -4.19891 4.19891 0.66 0.000667003 0.000620877 0.0398213 0.0369411 26 2593 24 6.87369e+06 489084 503264. 1741.40 1.61 0.121865 0.106907 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.16 0.11 0.11 -1 -1 0.16 0.0340326 0.0294761 139 34 84 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 5.69 vpr 62.96 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30308 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 24.1 MiB 2.24 882 11432 3518 6484 1430 63.0 MiB 0.11 0.00 3.7324 -126.153 -3.7324 3.7324 0.67 0.00064665 0.000600903 0.0452925 0.042106 30 2191 20 6.87369e+06 251529 556674. 1926.21 0.86 0.119422 0.105373 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0261104 0.0226434 110 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.23 vpr 63.13 MiB 0.04 6872 -1 -1 1 0.04 -1 -1 30364 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 24.2 MiB 3.05 904 14256 4718 7453 2085 63.1 MiB 0.14 0.00 3.6144 -123.374 -3.6144 3.6144 0.66 0.000703585 0.000650192 0.0597809 0.0555272 34 2227 20 6.87369e+06 237555 618332. 2139.56 1.37 0.19492 0.170785 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0279126 0.024247 110 91 0 0 91 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.88 vpr 62.88 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 30184 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.79 962 16804 5215 8614 2975 62.9 MiB 0.15 0.00 4.24789 -140.354 -4.24789 4.24789 0.65 0.000808979 0.000759869 0.0529431 0.0491689 28 3199 26 6.87369e+06 517032 531479. 1839.03 1.45 0.13249 0.11744 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.18 0.09 0.12 -1 -1 0.18 0.0260193 0.0227999 151 4 124 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.00 vpr 63.53 MiB 0.05 6968 -1 -1 1 0.05 -1 -1 30536 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.7 MiB 3.93 1093 19380 5712 11198 2470 63.5 MiB 0.18 0.00 4.29189 -149.386 -4.29189 4.29189 0.66 0.000773174 0.000717835 0.0658998 0.0610278 28 2995 25 6.87369e+06 531006 531479. 1839.03 1.37 0.162521 0.143906 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.17 0.12 0.11 -1 -1 0.17 0.0352847 0.030557 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 7.19 vpr 63.41 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30324 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 3.51 1146 17256 4889 10338 2029 63.4 MiB 0.18 0.00 4.30289 -150.744 -4.30289 4.30289 0.65 0.000781793 0.00072618 0.0666785 0.0618434 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.01 0.160697 0.142402 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0308231 0.0268498 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 6.97 vpr 63.17 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 30528 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 24.4 MiB 2.81 1114 16491 4519 10066 1906 63.2 MiB 0.15 0.00 4.16249 -142.489 -4.16249 4.16249 0.65 0.000763161 0.000708717 0.0554139 0.051306 28 3159 33 6.87369e+06 544980 531479. 1839.03 1.51 0.162854 0.143553 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0313768 0.0272022 152 65 60 30 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 5.86 vpr 62.68 MiB 0.05 6808 -1 -1 1 0.03 -1 -1 30376 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 24.1 MiB 2.33 746 10406 2932 6420 1054 62.7 MiB 0.10 0.00 3.7324 -121.378 -3.7324 3.7324 0.65 0.000616316 0.000573793 0.0385431 0.0358612 32 2264 21 6.87369e+06 265503 586450. 2029.24 0.89 0.110609 0.0974482 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.21 0.09 0.14 -1 -1 0.21 0.0256651 0.0223086 110 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 6.54 vpr 63.23 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30324 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 24.4 MiB 2.95 980 15709 4819 8970 1920 63.2 MiB 0.15 0.00 4.23999 -140.261 -4.23999 4.23999 0.66 0.00073329 0.000680726 0.0643365 0.0597156 30 2357 25 6.87369e+06 321398 556674. 1926.21 0.93 0.155382 0.137461 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0283602 0.0246686 140 63 60 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.93 vpr 63.62 MiB 0.04 7188 -1 -1 1 0.04 -1 -1 30872 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 24.8 MiB 4.94 1155 15540 3963 10188 1389 63.6 MiB 0.16 0.00 4.23385 -146.284 -4.23385 4.23385 0.67 0.00086016 0.000796699 0.0557272 0.0515611 32 3029 43 6.87369e+06 600875 586450. 2029.24 1.21 0.183672 0.160561 25474 144626 -1 2474 24 2205 3740 360243 77125 3.7941 3.7941 -146.23 -3.7941 0 0 744469. 2576.02 0.19 0.12 0.13 -1 -1 0.19 0.0372594 0.0321419 158 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 4.92 vpr 63.46 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30656 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 24.6 MiB 1.08 1029 18273 5989 9373 2911 63.5 MiB 0.18 0.00 4.26989 -143.564 -4.26989 4.26989 0.65 0.000797005 0.000740538 0.0693751 0.064245 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.20 0.145321 0.129603 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.0337583 0.0293146 149 94 31 31 93 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 5.90 vpr 63.26 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 30648 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 24.4 MiB 2.15 942 16921 5030 8706 3185 63.3 MiB 0.17 0.00 3.63595 -118.056 -3.63595 3.63595 0.67 0.000762288 0.000700316 0.0626343 0.0579815 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.02 0.160772 0.14198 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.19 0.08 0.13 -1 -1 0.19 0.0309738 0.0268622 141 92 26 26 90 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.70 vpr 63.63 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30508 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.8 MiB 4.20 1087 14593 4252 9147 1194 63.6 MiB 0.16 0.00 4.1996 -148.308 -4.1996 4.1996 0.65 0.000780075 0.000724251 0.0637187 0.0591754 34 3260 29 6.87369e+06 293451 618332. 2139.56 1.88 0.226378 0.198045 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.20 0.12 0.09 -1 -1 0.20 0.0342308 0.0297091 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 5.67 vpr 63.16 MiB 0.04 7128 -1 -1 1 0.05 -1 -1 30332 -1 -1 36 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 24.5 MiB 2.12 943 12751 3363 8405 983 63.2 MiB 0.12 0.00 3.54105 -112.818 -3.54105 3.54105 0.63 0.000737109 0.000682388 0.0452754 0.0419034 26 2618 24 6.87369e+06 503058 503264. 1741.40 0.95 0.140566 0.123506 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.17 0.10 0.11 -1 -1 0.17 0.0312349 0.027035 138 88 26 26 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.55 vpr 62.57 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30356 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 0.62 862 12292 3174 7904 1214 62.6 MiB 0.11 0.00 3.7104 -131.958 -3.7104 3.7104 0.65 0.000612204 0.000569761 0.0456634 0.0425053 34 2313 18 6.87369e+06 223581 618332. 2139.56 1.35 0.161486 0.141329 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0241587 0.0210505 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 8.00 vpr 63.34 MiB 0.05 7076 -1 -1 1 0.04 -1 -1 30344 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 4.19 1088 19841 5443 12522 1876 63.3 MiB 0.19 0.00 4.3249 -149.309 -4.3249 4.3249 0.66 0.000772559 0.000715829 0.0680462 0.0629887 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.00 0.162678 0.144142 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.19 0.11 0.14 -1 -1 0.19 0.0345776 0.0299965 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.23 vpr 63.29 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30452 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 3.84 1071 15151 5130 8107 1914 63.3 MiB 0.16 0.00 4.2388 -148.068 -4.2388 4.2388 0.66 0.00077875 0.000722277 0.0661096 0.0613743 36 2570 23 6.87369e+06 293451 648988. 2245.63 1.61 0.219556 0.192488 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.21 0.09 0.15 -1 -1 0.21 0.0325765 0.0283577 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 7.26 vpr 62.93 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30412 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.0 MiB 3.32 885 16708 4981 9424 2303 62.9 MiB 0.14 0.00 3.50501 -121.209 -3.50501 3.50501 0.68 0.000658966 0.000612815 0.0536003 0.0497633 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.32 0.177315 0.155474 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0262076 0.0227107 112 55 32 32 54 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.30 vpr 62.47 MiB 0.03 6844 -1 -1 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 23.9 MiB 0.82 723 6960 1528 4773 659 62.5 MiB 0.09 0.00 3.7434 -125.643 -3.7434 3.7434 0.66 0.000751047 0.000699405 0.0280819 0.026162 32 2245 24 6.87369e+06 237555 586450. 2029.24 0.91 0.102889 0.0900109 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.023112 0.0200812 112 4 93 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 6.26 vpr 63.30 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 2.69 1023 18795 5447 10788 2560 63.3 MiB 0.17 0.00 4.30799 -144.78 -4.30799 4.30799 0.65 0.000755549 0.000702316 0.0643126 0.0596367 28 2603 22 6.87369e+06 489084 531479. 1839.03 0.90 0.151806 0.134682 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.0281979 0.024527 144 59 60 32 58 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.09 vpr 63.22 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30336 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 24.4 MiB 1.09 1094 18745 5603 10775 2367 63.2 MiB 0.17 0.00 4.21185 -141.009 -4.21185 4.21185 0.65 0.000761726 0.000706579 0.0669063 0.0619691 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.22 0.167508 0.148047 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.18 0.10 0.12 -1 -1 0.18 0.0360327 0.0312447 142 88 28 28 88 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.71 vpr 63.41 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30500 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.7 MiB 0.92 1329 17642 5677 9392 2573 63.4 MiB 0.18 0.00 4.98719 -165.596 -4.98719 4.98719 0.63 0.000797412 0.000740577 0.0597168 0.0554178 34 3730 48 6.87369e+06 572927 618332. 2139.56 3.00 0.255546 0.223881 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0340414 0.0296232 183 3 156 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 6.67 vpr 63.21 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30512 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 24.4 MiB 2.54 1005 13300 3782 8501 1017 63.2 MiB 0.14 0.00 3.59605 -120.715 -3.59605 3.59605 0.66 0.000717272 0.000665628 0.0502434 0.0465363 34 2294 27 6.87369e+06 447163 618332. 2139.56 1.47 0.194386 0.169441 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0264931 0.0230704 141 59 60 30 56 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.12 vpr 62.46 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 24.0 MiB 0.70 735 12247 4571 5926 1750 62.5 MiB 0.11 0.00 3.6866 -109.378 -3.6866 3.6866 0.66 0.000438321 0.000402263 0.0441998 0.0409729 32 1771 18 6.87369e+06 279477 586450. 2029.24 0.83 0.108583 0.0959298 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.19 0.06 0.13 -1 -1 0.19 0.0254477 0.0222748 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 6.56 vpr 63.50 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30608 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 25.0 MiB 2.40 1290 11856 2585 8478 793 63.5 MiB 0.14 0.00 4.1886 -144.868 -4.1886 4.1886 0.65 0.000911214 0.000843078 0.0472187 0.0437474 30 3626 23 6.87369e+06 586901 556674. 1926.21 1.43 0.1571 0.137866 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.19 0.10 0.12 -1 -1 0.19 0.0385309 0.0333936 184 95 62 31 95 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 8.01 vpr 63.35 MiB 0.04 7240 -1 -1 1 0.03 -1 -1 30552 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 24.7 MiB 3.14 874 9914 2276 6234 1404 63.4 MiB 0.11 0.00 4.91157 -150.663 -4.91157 4.91157 0.66 0.000827605 0.000768579 0.0461521 0.042895 34 2604 24 6.87369e+06 321398 618332. 2139.56 2.13 0.221078 0.191836 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0339433 0.0293362 144 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 7.04 vpr 62.92 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 24.1 MiB 3.01 802 14356 5267 6628 2461 62.9 MiB 0.14 0.00 4.598 -126.496 -4.598 4.598 0.68 0.000683953 0.000634897 0.0601246 0.0558216 34 2153 24 6.87369e+06 223581 618332. 2139.56 1.38 0.195489 0.171096 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0236867 0.0209187 107 89 0 0 89 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.18 vpr 63.28 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30520 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 24.5 MiB 0.91 1114 14723 4652 8968 1103 63.3 MiB 0.17 0.00 4.1955 -143.003 -4.1955 4.1955 0.66 0.000727696 0.00067575 0.0569265 0.0526309 28 2955 24 6.87369e+06 475111 531479. 1839.03 1.57 0.146848 0.130104 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.18 0.11 0.12 -1 -1 0.18 0.0290997 0.0253113 147 34 90 30 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.90 vpr 63.64 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30584 -1 -1 40 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 24.9 MiB 1.94 1006 19865 6118 9930 3817 63.6 MiB 0.20 0.00 4.28153 -140.004 -4.28153 4.28153 0.73 0.000856362 0.000787946 0.0737644 0.0680664 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.04 0.261921 0.228464 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.03676 0.0317884 176 64 87 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.09 vpr 63.18 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 30384 -1 -1 36 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 1.77 1085 17873 5357 10009 2507 63.2 MiB 0.16 0.00 3.50639 -115.998 -3.50639 3.50639 0.65 0.000720965 0.000669362 0.0599912 0.0555172 34 2647 22 6.87369e+06 503058 618332. 2139.56 1.60 0.204157 0.178497 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0300644 0.0260486 144 61 58 30 58 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 6.76 vpr 63.40 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30592 -1 -1 46 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 24.7 MiB 2.49 1127 20887 5685 13197 2005 63.4 MiB 0.19 0.00 4.26133 -148.826 -4.26133 4.26133 0.66 0.000788578 0.000731863 0.0657779 0.0609127 28 2839 24 6.87369e+06 642796 531479. 1839.03 1.48 0.159922 0.141491 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0342995 0.0297039 160 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 6.93 vpr 63.66 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30384 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 24.8 MiB 2.69 1115 19606 5308 11826 2472 63.7 MiB 0.17 0.00 3.52575 -126.542 -3.52575 3.52575 0.71 0.000774671 0.000719273 0.0636793 0.0590545 26 2952 46 6.87369e+06 586901 503264. 1741.40 1.47 0.184439 0.162356 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.17 0.11 0.11 -1 -1 0.17 0.0351058 0.0304891 157 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.55 vpr 62.57 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30404 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 24.0 MiB 1.61 669 12808 5105 6141 1562 62.6 MiB 0.11 0.00 3.73366 -117.212 -3.73366 3.73366 0.69 0.000600059 0.000558053 0.0481315 0.0447571 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.29 0.172589 0.150466 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.20 0.06 0.11 -1 -1 0.20 0.0231166 0.0200212 107 34 58 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.24 vpr 63.00 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 24.2 MiB 2.16 808 7256 1653 5365 238 63.0 MiB 0.08 0.00 4.2805 -117.484 -4.2805 4.2805 0.66 0.000655947 0.000609585 0.0291951 0.0271077 34 2056 25 6.87369e+06 237555 618332. 2139.56 1.50 0.165215 0.143015 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.23 0.05 0.13 -1 -1 0.23 0.0174827 0.0153623 102 82 0 0 82 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.08 vpr 63.35 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 24.5 MiB 1.74 1136 19618 6151 11073 2394 63.3 MiB 0.18 0.00 4.1886 -141.394 -4.1886 4.1886 0.67 0.000739426 0.000687628 0.0625609 0.0580227 28 2901 39 6.87369e+06 544980 531479. 1839.03 1.67 0.168992 0.149286 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.0306524 0.0267349 152 34 93 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.02 vpr 62.55 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30492 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 23.9 MiB 3.12 794 17103 5256 9538 2309 62.5 MiB 0.13 0.00 3.45975 -106.144 -3.45975 3.45975 0.66 0.000732981 0.000681337 0.0512668 0.0475683 24 2312 34 6.87369e+06 447163 470940. 1629.55 1.30 0.136931 0.120641 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.15 0.10 0.10 -1 -1 0.15 0.0277466 0.0239175 108 56 29 29 52 26 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 7.47 vpr 62.82 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.23 809 12464 3077 8852 535 62.8 MiB 0.12 0.00 3.7104 -131.395 -3.7104 3.7104 0.71 0.000651743 0.000606525 0.0497787 0.0462442 34 2309 26 6.87369e+06 223581 618332. 2139.56 1.46 0.183816 0.160462 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.22 0.08 0.17 -1 -1 0.22 0.026802 0.0232539 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 6.46 vpr 63.34 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30324 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 24.5 MiB 2.43 1003 13598 3664 8482 1452 63.3 MiB 0.13 0.00 3.61625 -124.489 -3.61625 3.61625 0.67 0.000756087 0.000695232 0.0489639 0.0453438 34 2208 22 6.87369e+06 489084 618332. 2139.56 1.36 0.193099 0.168457 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.028702 0.0248798 146 64 58 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.31 vpr 62.78 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30260 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 24.2 MiB 2.79 698 11402 3727 5924 1751 62.8 MiB 0.11 0.00 3.33623 -109.833 -3.33623 3.33623 0.72 0.000630362 0.000585237 0.0446494 0.0414952 26 2239 28 6.87369e+06 223581 503264. 1741.40 0.96 0.124848 0.109778 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0251477 0.0217892 103 55 31 31 53 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.25 vpr 63.30 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 24.4 MiB 2.61 1019 17256 4700 9815 2741 63.3 MiB 0.17 0.00 3.59195 -122.625 -3.59195 3.59195 0.66 0.000775791 0.000725351 0.0543374 0.0501793 32 2782 36 6.87369e+06 517032 586450. 2029.24 0.97 0.124028 0.109911 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.20 0.09 0.08 -1 -1 0.20 0.0328952 0.028551 143 65 52 26 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 6.80 vpr 63.36 MiB 0.03 7260 -1 -1 1 0.03 -1 -1 30348 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 3.10 929 10336 2368 6764 1204 63.4 MiB 0.12 0.00 3.59605 -120.102 -3.59605 3.59605 0.67 0.000954493 0.000879385 0.0384382 0.0355927 32 2620 21 6.87369e+06 544980 586450. 2029.24 0.99 0.140274 0.123039 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.20 0.10 0.14 -1 -1 0.20 0.0340739 0.0295237 151 93 31 31 92 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.40 vpr 62.92 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 24.1 MiB 2.42 812 13206 3975 7418 1813 62.9 MiB 0.13 0.00 3.26897 -114.681 -3.26897 3.26897 0.65 0.000661677 0.000614619 0.0525356 0.0488033 34 2174 27 6.87369e+06 237555 618332. 2139.56 1.36 0.187335 0.16367 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.24 0.08 0.14 -1 -1 0.24 0.0291006 0.0254726 110 61 32 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.71 vpr 63.18 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30200 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 24.3 MiB 3.09 923 10056 2840 6443 773 63.2 MiB 0.12 0.00 3.6884 -128.712 -3.6884 3.6884 0.72 0.000683846 0.000636064 0.0453038 0.0421213 32 2547 22 6.87369e+06 223581 586450. 2029.24 0.94 0.129975 0.114587 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0288887 0.025074 112 63 32 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 6.96 vpr 63.20 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30660 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 24.4 MiB 2.74 1032 14988 3846 9829 1313 63.2 MiB 0.14 0.00 4.29009 -147.998 -4.29009 4.29009 0.65 0.000771264 0.000715448 0.0504058 0.0466934 34 2540 20 6.87369e+06 558954 618332. 2139.56 1.58 0.19899 0.173873 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0341398 0.029763 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 6.53 vpr 63.13 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30412 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 24.4 MiB 2.21 880 11759 2826 8215 718 63.1 MiB 0.10 0.00 3.59605 -112.745 -3.59605 3.59605 0.68 0.000717498 0.000664608 0.031817 0.0293698 26 2672 41 6.87369e+06 475111 503264. 1741.40 1.71 0.142312 0.123945 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.17 0.10 0.11 -1 -1 0.17 0.0306797 0.0265987 140 62 56 29 58 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.45 vpr 63.50 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30692 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 24.7 MiB 4.75 930 19136 5654 10352 3130 63.5 MiB 0.21 0.00 4.25669 -144.754 -4.25669 4.25669 0.66 0.000868862 0.000798952 0.0792822 0.0734335 34 2868 25 6.87369e+06 558954 618332. 2139.56 1.92 0.26059 0.228082 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.20 0.10 0.09 -1 -1 0.20 0.0357247 0.030804 157 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.16 vpr 62.33 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30232 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.9 MiB 0.65 801 6501 1452 4525 524 62.3 MiB 0.07 0.00 3.09052 -106.923 -3.09052 3.09052 0.73 0.00057597 0.000535847 0.0249699 0.0232568 32 2327 32 6.87369e+06 223581 586450. 2029.24 0.87 0.10285 0.0898931 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.19 0.08 0.10 -1 -1 0.19 0.0261874 0.0228877 104 4 85 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.80 vpr 63.65 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30360 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65180 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 24.8 MiB 1.53 977 17961 5555 9821 2585 63.7 MiB 0.16 0.00 4.24789 -140.827 -4.24789 4.24789 0.65 0.000778746 0.000715034 0.0618852 0.05732 34 2366 23 6.87369e+06 517032 618332. 2139.56 1.48 0.210948 0.18454 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0270205 0.0235709 147 92 28 28 92 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 7.96 vpr 63.06 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.90 961 12808 4157 6979 1672 63.1 MiB 0.13 0.00 3.7416 -135.274 -3.7416 3.7416 0.65 0.000716397 0.000664129 0.0562931 0.052254 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.38 0.195542 0.17106 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0310427 0.0269383 114 96 0 0 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.73 vpr 63.26 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30408 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 24.4 MiB 2.74 1013 13117 3136 9263 718 63.3 MiB 0.13 0.00 3.62407 -127.528 -3.62407 3.62407 0.65 0.000867654 0.000801319 0.0446385 0.0413264 28 2551 39 6.87369e+06 544980 531479. 1839.03 1.29 0.155098 0.135901 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.17 0.09 0.12 -1 -1 0.17 0.0340171 0.0295209 153 65 61 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.61 vpr 63.51 MiB 0.03 7292 -1 -1 1 0.03 -1 -1 30724 -1 -1 47 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 25.1 MiB 4.25 1138 14475 3597 10051 827 63.5 MiB 0.15 0.00 4.97494 -166.026 -4.97494 4.97494 0.68 0.000922833 0.000857177 0.0534347 0.0494461 32 3530 43 6.87369e+06 656770 586450. 2029.24 1.50 0.190793 0.166873 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.19 0.13 0.14 -1 -1 0.19 0.0407452 0.0353433 190 96 64 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.22 vpr 62.23 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 23.6 MiB 1.90 613 9036 2242 6211 583 62.2 MiB 0.07 0.00 2.94746 -92.2629 -2.94746 2.94746 0.69 0.000529727 0.000492728 0.0315819 0.0293703 32 1520 24 6.87369e+06 195634 586450. 2029.24 0.80 0.0948377 0.0831344 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.20 0.05 0.13 -1 -1 0.20 0.0177852 0.015482 72 56 0 0 53 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.38 vpr 62.54 MiB 0.03 6912 -1 -1 1 0.03 -1 -1 30392 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 24.0 MiB 0.86 764 12120 4745 5717 1658 62.5 MiB 0.11 0.00 3.7196 -120.247 -3.7196 3.7196 0.68 0.000619074 0.000575869 0.0465721 0.0433318 32 2131 23 6.87369e+06 251529 586450. 2029.24 0.89 0.121427 0.10727 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.20 0.09 0.14 -1 -1 0.20 0.0308532 0.0267 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.60 vpr 63.00 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.23 884 12464 4265 6183 2016 63.0 MiB 0.13 0.00 3.52575 -127.584 -3.52575 3.52575 0.69 0.000648627 0.00060256 0.0494308 0.0459043 34 2591 20 6.87369e+06 223581 618332. 2139.56 1.61 0.179223 0.156751 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.21 0.10 0.18 -1 -1 0.21 0.0291762 0.0252425 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.13 vpr 62.48 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 23.9 MiB 0.70 742 15004 4316 8330 2358 62.5 MiB 0.11 0.00 3.44875 -93.4127 -3.44875 3.44875 0.69 0.000536234 0.000499064 0.0406833 0.0378205 30 1638 20 6.87369e+06 517032 556674. 1926.21 0.82 0.102713 0.0905946 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0239987 0.0207911 105 34 50 25 25 25 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 6.93 vpr 63.42 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.53 1035 11989 3061 8035 893 63.4 MiB 0.14 0.00 4.14459 -143.245 -4.14459 4.14459 0.67 0.000917043 0.000859411 0.056505 0.0524247 34 2922 23 6.87369e+06 293451 618332. 2139.56 1.68 0.214136 0.186802 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0311656 0.0271431 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.71 vpr 63.41 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30348 -1 -1 40 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 24.5 MiB 2.48 969 12394 3038 8536 820 63.4 MiB 0.13 0.00 3.62425 -121.977 -3.62425 3.62425 0.72 0.000632201 0.000576616 0.044336 0.0409093 34 2208 23 6.87369e+06 558954 618332. 2139.56 1.44 0.199252 0.173141 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.034764 0.0302143 151 94 29 29 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 5.93 vpr 63.36 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30596 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 24.6 MiB 1.50 1383 18363 6134 9531 2698 63.4 MiB 0.18 0.00 5.11247 -173.262 -5.11247 5.11247 0.68 0.000814662 0.000756751 0.0745697 0.0692271 36 3373 46 6.89349e+06 408721 648988. 2245.63 1.52 0.198317 0.174686 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.23 0.09 0.14 -1 -1 0.23 0.0316248 0.0275274 192 96 32 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.33 vpr 63.33 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30632 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1338 16411 5641 8181 2589 63.3 MiB 0.17 0.00 5.22297 -160.634 -5.22297 5.22297 0.66 0.000771333 0.000716127 0.0646034 0.0600002 36 3246 31 6.89349e+06 408721 648988. 2245.63 2.17 0.225976 0.197639 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0340051 0.0294828 177 91 30 30 89 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.57 vpr 63.04 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 24.3 MiB 1.73 1277 15533 4267 9018 2248 63.0 MiB 0.17 0.00 4.0146 -140.879 -4.0146 4.0146 0.66 0.000904504 0.000841248 0.0651527 0.0604988 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.08 0.231806 0.202867 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0301146 0.0262361 167 65 54 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.19 vpr 62.88 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30412 -1 -1 25 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1071 16718 5447 9404 1867 62.9 MiB 0.17 0.00 4.53305 -141.516 -4.53305 4.53305 0.65 0.000678768 0.000629657 0.0629253 0.0584318 34 2586 28 6.89349e+06 352346 618332. 2139.56 1.60 0.206028 0.18034 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0298366 0.0256272 148 34 87 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 6.90 vpr 63.05 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30380 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.2 MiB 1.80 1361 14518 4265 8140 2113 63.0 MiB 0.17 0.00 5.03124 -172.909 -5.03124 5.03124 0.68 0.000744171 0.000691603 0.0624521 0.0580995 36 3336 26 6.89349e+06 338252 648988. 2245.63 2.23 0.218016 0.191295 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0287129 0.0250095 163 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 6.20 vpr 63.26 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30452 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 24.4 MiB 1.69 1499 20359 6047 11800 2512 63.3 MiB 0.19 0.00 4.44565 -148.532 -4.44565 4.44565 0.70 0.000765735 0.000710406 0.0659912 0.060989 34 3677 25 6.89349e+06 577847 618332. 2139.56 1.63 0.225103 0.197021 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.22 0.11 0.16 -1 -1 0.22 0.0377332 0.0327929 179 64 63 32 63 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 4.72 vpr 62.41 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 30572 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 23.9 MiB 1.40 730 14528 4147 9388 993 62.4 MiB 0.12 0.00 3.83226 -109.129 -3.83226 3.83226 0.66 0.000570349 0.000530453 0.0502473 0.046429 30 2039 26 6.89349e+06 295971 556674. 1926.21 0.85 0.12109 0.106741 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.020886 0.0181141 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.79 vpr 62.97 MiB 0.03 7004 -1 -1 1 0.04 -1 -1 30192 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.1 MiB 0.70 921 14273 4335 7347 2591 63.0 MiB 0.12 0.00 3.53335 -112.01 -3.53335 3.53335 0.66 0.000667263 0.00061852 0.0445223 0.0412815 34 2397 23 6.89349e+06 493284 618332. 2139.56 1.50 0.173638 0.151537 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0251962 0.0218916 141 4 115 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 5.63 vpr 62.80 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30316 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 1141 14358 3961 8348 2049 62.8 MiB 0.14 0.00 3.63141 -123.531 -3.63141 3.63141 0.65 0.000667176 0.000620384 0.0549113 0.0510073 34 2852 46 6.89349e+06 295971 618332. 2139.56 1.46 0.207373 0.1806 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.27 0.07 0.15 -1 -1 0.27 0.0258118 0.0224631 140 85 0 0 84 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.65 vpr 62.68 MiB 0.02 6832 -1 -1 1 0.02 -1 -1 30308 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 24.1 MiB 1.53 873 6923 1573 5100 250 62.7 MiB 0.08 0.00 3.71245 -131.003 -3.71245 3.71245 0.69 0.000653017 0.000607625 0.027036 0.0251553 34 2505 33 6.89349e+06 267783 618332. 2139.56 1.45 0.164051 0.141865 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.30 0.07 0.16 -1 -1 0.30 0.022868 0.0200957 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 5.82 vpr 62.95 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30152 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 24.1 MiB 1.87 942 6923 1677 4944 302 62.9 MiB 0.08 0.00 4.3965 -138.695 -4.3965 4.3965 0.65 0.000653269 0.000607913 0.027475 0.0255772 34 2532 21 6.89349e+06 295971 618332. 2139.56 1.37 0.155406 0.134354 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0246215 0.0215017 135 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.09 vpr 63.02 MiB 0.02 6988 -1 -1 1 0.02 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 883 15822 6326 7340 2156 63.0 MiB 0.16 0.00 3.8129 -121.35 -3.8129 3.8129 0.65 0.000667063 0.000620052 0.0654446 0.0605474 36 2401 21 6.89349e+06 281877 648988. 2245.63 1.97 0.194438 0.170413 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0215603 0.0188545 135 65 25 25 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.78 vpr 63.29 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30308 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 24.5 MiB 1.18 987 17513 5731 7853 3929 63.3 MiB 0.15 0.00 4.23419 -140.25 -4.23419 4.23419 0.71 0.000752529 0.000698813 0.0690538 0.0641029 38 3008 43 6.89349e+06 352346 678818. 2348.85 3.79 0.243409 0.213178 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0301451 0.0262744 161 58 64 32 57 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 5.72 vpr 63.29 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30500 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 24.4 MiB 1.34 1162 11063 2970 6995 1098 63.3 MiB 0.13 0.00 5.02024 -166.562 -5.02024 5.02024 0.69 0.000784876 0.000729547 0.0447949 0.0416092 36 3019 23 6.89349e+06 394628 648988. 2245.63 1.65 0.198332 0.172675 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0297018 0.0258776 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.25 vpr 62.37 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 23.9 MiB 1.34 754 11296 2879 7697 720 62.4 MiB 0.10 0.00 3.61645 -112 -3.61645 3.61645 0.68 0.000574843 0.000535077 0.0385279 0.0358409 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.32 0.158036 0.137188 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0237539 0.0205872 112 29 58 29 24 24 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 6.91 vpr 63.25 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30556 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 24.4 MiB 2.06 1259 17315 5682 9212 2421 63.3 MiB 0.19 0.00 4.31019 -146.5 -4.31019 4.31019 0.67 0.000771233 0.000716628 0.0706687 0.0655446 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.01 0.234803 0.205348 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0320295 0.0278038 174 63 64 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 5.23 vpr 63.23 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 24.4 MiB 1.11 1183 12365 3291 7811 1263 63.2 MiB 0.14 0.00 3.69045 -130.871 -3.69045 3.69045 0.70 0.000750409 0.000697488 0.0535743 0.0497959 34 2840 24 6.89349e+06 352346 618332. 2139.56 1.44 0.199528 0.17421 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0252498 0.0220485 160 57 64 32 56 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 5.90 vpr 62.96 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30036 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 24.3 MiB 1.62 1015 15395 4903 8010 2482 63.0 MiB 0.15 0.00 3.61051 -123.557 -3.61051 3.61051 0.66 0.000676303 0.000628844 0.0576347 0.0535386 38 2435 45 6.89349e+06 310065 678818. 2348.85 1.55 0.211748 0.184358 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0242771 0.0212977 139 65 29 29 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 4.92 vpr 62.16 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30116 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 23.6 MiB 0.91 569 8227 1998 5670 559 62.2 MiB 0.07 0.00 3.06366 -95.1937 -3.06366 3.06366 0.71 0.000504474 0.000469591 0.0305402 0.0284067 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.33 0.136929 0.118765 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.20 0.05 0.09 -1 -1 0.20 0.0205741 0.0177333 85 34 24 24 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 5.28 vpr 62.94 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30404 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 24.0 MiB 1.24 1101 13663 4048 7780 1835 62.9 MiB 0.13 0.00 4.32835 -147.32 -4.32835 4.32835 0.65 0.000663957 0.000616671 0.0509524 0.0473151 34 2756 25 6.89349e+06 310065 618332. 2139.56 1.44 0.183452 0.160239 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0255511 0.0222404 141 64 31 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.23 vpr 63.00 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30136 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 24.3 MiB 0.94 1052 20112 6009 11047 3056 63.0 MiB 0.18 0.00 4.67003 -155.404 -4.67003 4.67003 0.69 0.000730979 0.000679574 0.0635106 0.058872 34 2792 26 6.89349e+06 563754 618332. 2139.56 1.55 0.212695 0.186528 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0277791 0.0241897 166 34 91 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 5.70 vpr 63.43 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30552 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 24.7 MiB 1.18 1507 16511 4972 9774 1765 63.4 MiB 0.18 0.00 4.34661 -147.62 -4.34661 4.34661 0.65 0.00085323 0.000793618 0.0688169 0.0639282 36 3423 27 6.89349e+06 436909 648988. 2245.63 1.61 0.238115 0.207872 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.21 0.09 0.15 -1 -1 0.21 0.0353182 0.0306665 201 124 0 0 125 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.51 vpr 62.10 MiB 0.04 6656 -1 -1 1 0.03 -1 -1 30556 -1 -1 18 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 23.6 MiB 1.23 692 10476 3888 5359 1229 62.1 MiB 0.08 0.00 2.84541 -81.5212 -2.84541 2.84541 0.69 0.000453685 0.000422005 0.0314768 0.0292775 30 1478 31 6.89349e+06 253689 556674. 1926.21 1.70 0.139016 0.120288 25186 138497 -1 1263 14 466 590 39612 9015 1.93805 1.93805 -75.764 -1.93805 0 0 706193. 2443.58 0.21 0.03 0.13 -1 -1 0.21 0.0134009 0.0117558 77 30 26 26 22 22 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.01 vpr 63.02 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30140 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.2 MiB 1.10 1016 9571 2543 6414 614 63.0 MiB 0.10 0.00 4.12784 -139.243 -4.12784 4.12784 0.65 0.000689839 0.000641581 0.0376758 0.0350422 30 2786 37 6.89349e+06 295971 556674. 1926.21 1.33 0.134323 0.117734 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.18 0.08 0.09 -1 -1 0.18 0.0308415 0.0267066 141 3 122 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 3.53 vpr 61.88 MiB 0.04 6708 -1 -1 1 0.02 -1 -1 30336 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63360 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.5 MiB 0.31 514 9356 2285 6456 615 61.9 MiB 0.07 0.00 2.43188 -86.7872 -2.43188 2.43188 0.65 0.000470195 0.000437111 0.0289716 0.0269239 28 1509 16 6.89349e+06 169126 531479. 1839.03 0.80 0.0810777 0.0716888 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.17 0.05 0.11 -1 -1 0.17 0.017299 0.0151035 71 3 53 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 4.84 vpr 63.11 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30616 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 24.4 MiB 1.24 1097 15929 4551 10101 1277 63.1 MiB 0.17 0.00 4.62958 -159.64 -4.62958 4.62958 0.67 0.00074212 0.00069041 0.061923 0.0575796 30 2755 25 6.89349e+06 352346 556674. 1926.21 0.92 0.152959 0.135604 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0272663 0.0239687 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.28 vpr 62.97 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30040 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.1 MiB 0.68 885 10772 2583 7345 844 63.0 MiB 0.11 0.00 3.4709 -116.935 -3.4709 3.4709 0.65 0.000699184 0.000648524 0.0347602 0.0322028 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.01 0.141413 0.123618 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0284688 0.0247894 151 3 124 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.18 vpr 63.29 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30452 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1365 8130 1863 5269 998 63.3 MiB 0.10 0.00 4.69935 -162.091 -4.69935 4.69935 0.65 0.000811709 0.000751433 0.0353053 0.0328058 34 3698 26 6.89349e+06 366440 618332. 2139.56 1.87 0.19101 0.166039 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.25 0.10 0.14 -1 -1 0.25 0.0321296 0.0279349 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.24 vpr 62.50 MiB 0.02 6780 -1 -1 1 0.03 -1 -1 30216 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 23.9 MiB 1.69 863 14256 5690 7135 1431 62.5 MiB 0.13 0.00 3.57625 -122.952 -3.57625 3.57625 0.66 0.000617675 0.000574261 0.0524083 0.0487129 36 2395 27 6.89349e+06 239595 648988. 2245.63 1.87 0.178267 0.155801 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0261654 0.0227301 118 34 54 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.88 vpr 62.54 MiB 0.03 6896 -1 -1 1 0.05 -1 -1 30244 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 24.0 MiB 1.58 1065 12331 4460 6746 1125 62.5 MiB 0.12 0.00 4.27029 -139.911 -4.27029 4.27029 0.68 0.000618654 0.000575045 0.0456839 0.0424895 34 2653 21 6.89349e+06 267783 618332. 2139.56 1.55 0.167686 0.146275 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0236671 0.0205487 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.44 vpr 62.50 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30336 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 24.0 MiB 1.93 839 10231 2827 6777 627 62.5 MiB 0.10 0.00 4.26535 -126.926 -4.26535 4.26535 0.67 0.000588695 0.000547534 0.037111 0.034541 30 2437 23 6.89349e+06 295971 556674. 1926.21 0.92 0.108192 0.0951554 25186 138497 -1 1837 21 1164 1980 126771 30045 3.5641 3.5641 -124.418 -3.5641 0 0 706193. 2443.58 0.19 0.09 0.13 -1 -1 0.19 0.0315655 0.0272671 115 34 56 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.24 vpr 62.36 MiB 0.03 6820 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 1.24 860 14700 5342 7547 1811 62.4 MiB 0.13 0.00 3.60535 -129.612 -3.60535 3.60535 0.65 0.000613571 0.0005711 0.0548607 0.0510648 34 2261 23 6.89349e+06 225501 618332. 2139.56 1.38 0.175613 0.154105 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.20 0.08 0.15 -1 -1 0.20 0.0235494 0.0204532 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 4.77 vpr 62.36 MiB 0.05 6796 -1 -1 1 0.03 -1 -1 30284 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 23.8 MiB 1.26 985 14322 4727 7440 2155 62.4 MiB 0.13 0.00 3.69435 -127.028 -3.69435 3.69435 0.66 0.000625972 0.000582575 0.0525159 0.0488251 30 2355 32 6.89349e+06 267783 556674. 1926.21 0.92 0.136137 0.120401 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0246196 0.0214825 121 34 61 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 5.49 vpr 62.54 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30184 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 23.9 MiB 1.37 1052 14724 4760 7779 2185 62.5 MiB 0.16 0.00 3.57215 -115.596 -3.57215 3.57215 0.66 0.0006679 0.000615592 0.0615132 0.0571439 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.36 0.203841 0.178033 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0236364 0.0206202 130 61 29 29 57 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.87 vpr 63.40 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30468 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 24.5 MiB 1.83 1199 18247 5521 9891 2835 63.4 MiB 0.20 0.00 4.73855 -160.484 -4.73855 4.73855 0.61 0.000944782 0.000886486 0.077647 0.0721764 34 3612 43 6.89349e+06 380534 618332. 2139.56 2.32 0.273519 0.239992 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0323775 0.0281225 184 29 128 32 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.27 vpr 63.33 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30440 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 24.5 MiB 1.65 1143 14147 4354 7296 2497 63.3 MiB 0.15 0.00 4.17974 -143.168 -4.17974 4.17974 0.66 0.000780443 0.000724921 0.0583653 0.0542628 34 3686 37 6.89349e+06 352346 618332. 2139.56 1.80 0.22626 0.197571 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0372731 0.0322047 173 65 62 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 4.92 vpr 63.00 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30632 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 24.3 MiB 0.84 1094 14965 4562 8063 2340 63.0 MiB 0.14 0.00 3.67235 -123.222 -3.67235 3.67235 0.68 0.00067781 0.000630017 0.0565901 0.0525905 34 2583 23 6.89349e+06 310065 618332. 2139.56 1.42 0.193196 0.169104 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0259383 0.0225191 143 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.62 vpr 63.14 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30388 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 24.3 MiB 2.20 1244 16523 4277 10843 1403 63.1 MiB 0.18 0.00 4.45875 -146.616 -4.45875 4.45875 0.67 0.00075042 0.000696704 0.0643215 0.0596278 34 3212 33 6.89349e+06 366440 618332. 2139.56 1.65 0.224049 0.195669 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.22 0.09 0.09 -1 -1 0.22 0.0315598 0.0274849 170 64 60 30 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 6.45 vpr 63.64 MiB 0.02 7236 -1 -1 1 0.04 -1 -1 30540 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 24.8 MiB 1.79 1489 17560 4957 10293 2310 63.6 MiB 0.20 0.00 5.02254 -165.43 -5.02254 5.02254 0.67 0.000844596 0.000785597 0.0727489 0.0675953 34 3603 25 6.89349e+06 436909 618332. 2139.56 1.88 0.22124 0.193928 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.20 0.08 0.15 -1 -1 0.20 0.0315655 0.0273469 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 9.65 vpr 63.33 MiB 0.05 7200 -1 -1 1 0.04 -1 -1 30412 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 24.5 MiB 2.17 1401 11923 3470 7236 1217 63.3 MiB 0.13 0.00 5.49816 -175.294 -5.49816 5.49816 0.74 0.000599742 0.000548754 0.0421888 0.0389026 34 3760 29 6.89349e+06 394628 618332. 2139.56 4.67 0.305638 0.263652 25762 151098 -1 2849 21 2337 3169 226449 53884 5.30184 5.30184 -177.291 -5.30184 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0312856 0.0272792 181 90 31 31 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.14 vpr 63.07 MiB 0.03 7148 -1 -1 1 0.04 -1 -1 30416 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 24.2 MiB 1.70 1340 14763 4284 8311 2168 63.1 MiB 0.17 0.00 3.76655 -130.012 -3.76655 3.76655 0.69 0.000758729 0.000704496 0.0621432 0.0576911 34 3258 47 6.89349e+06 380534 618332. 2139.56 1.68 0.238548 0.208237 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0325238 0.0283092 168 64 60 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.98 vpr 63.34 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30496 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.6 MiB 2.02 1284 16207 4365 9844 1998 63.3 MiB 0.16 0.00 4.62085 -160.706 -4.62085 4.62085 0.89 0.000595015 0.000546169 0.0507187 0.0466176 34 3366 50 6.89349e+06 380534 618332. 2139.56 2.02 0.235743 0.204373 25762 151098 -1 2675 20 2097 2768 213441 47597 4.08816 4.08816 -158.057 -4.08816 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0310796 0.0270776 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.54 vpr 63.60 MiB 0.05 7228 -1 -1 1 0.04 -1 -1 30724 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 25.1 MiB 2.44 1764 15215 4236 8627 2352 63.6 MiB 0.19 0.00 5.15348 -175.341 -5.15348 5.15348 0.69 0.000845263 0.000778541 0.067427 0.0624955 34 4947 37 6.89349e+06 436909 618332. 2139.56 3.20 0.275509 0.240112 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.21 0.14 0.13 -1 -1 0.21 0.036504 0.0317521 220 96 62 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.81 vpr 62.51 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30640 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 23.9 MiB 1.56 822 6743 1455 4759 529 62.5 MiB 0.08 0.00 3.853 -129.297 -3.853 3.853 0.66 0.000640445 0.000595956 0.0260511 0.0242337 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.39 0.168767 0.145881 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.22 0.07 0.15 -1 -1 0.22 0.0254668 0.0221603 127 34 62 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.55 vpr 63.32 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30384 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 24.5 MiB 1.54 1294 17376 6419 8627 2330 63.3 MiB 0.18 0.00 5.00234 -161.335 -5.00234 5.00234 0.67 0.000773185 0.000717775 0.070126 0.0651223 34 3454 30 6.89349e+06 380534 618332. 2139.56 2.25 0.225203 0.197945 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0301526 0.0263922 168 64 62 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 6.72 vpr 63.14 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30544 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1356 15391 5368 7626 2397 63.1 MiB 0.17 0.00 4.39449 -148.549 -4.39449 4.39449 0.72 0.000761155 0.000706715 0.0613051 0.0568303 36 3343 28 6.89349e+06 380534 648988. 2245.63 2.09 0.220736 0.193029 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.028877 0.0253072 172 63 62 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.13 vpr 62.62 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30448 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.0 MiB 1.18 953 14407 3720 10033 654 62.6 MiB 0.14 0.00 4.3344 -147.594 -4.3344 4.3344 0.66 0.000549258 0.000503653 0.0453129 0.0416019 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.12 0.175794 0.152898 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0262622 0.0231332 147 3 128 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.04 vpr 63.30 MiB 0.05 7164 -1 -1 1 0.04 -1 -1 30572 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 24.6 MiB 1.39 1279 18101 5797 9598 2706 63.3 MiB 0.18 0.00 4.41459 -148.068 -4.41459 4.41459 0.68 0.000785157 0.00072935 0.0714047 0.0663381 34 3456 36 6.89349e+06 394628 618332. 2139.56 1.84 0.244635 0.214167 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0264702 0.0230928 184 96 25 25 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.03 vpr 63.11 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30300 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 24.3 MiB 1.94 1221 17635 5673 8836 3126 63.1 MiB 0.17 0.00 4.28929 -146.442 -4.28929 4.28929 0.70 0.000765099 0.000710982 0.068382 0.0635126 36 3258 26 6.89349e+06 380534 648988. 2245.63 3.16 0.227184 0.199386 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0304305 0.0266997 169 61 64 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 5.98 vpr 63.20 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30428 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.4 MiB 1.53 1303 7027 1560 5110 357 63.2 MiB 0.09 0.00 3.72045 -130.455 -3.72045 3.72045 0.68 0.000773989 0.000718967 0.0295816 0.0274594 34 3432 32 6.89349e+06 380534 618332. 2139.56 1.64 0.194466 0.168186 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.28 0.08 0.15 -1 -1 0.28 0.0254669 0.022511 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 5.77 vpr 63.31 MiB 0.03 6896 -1 -1 1 0.02 -1 -1 30516 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.6 MiB 1.47 1190 14518 4171 8562 1785 63.3 MiB 0.15 0.00 4.63815 -161.109 -4.63815 4.63815 0.65 0.000739279 0.000686759 0.0578805 0.0537937 34 2867 24 6.89349e+06 338252 618332. 2139.56 1.57 0.205645 0.180198 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0285819 0.0248603 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.42 vpr 63.32 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30668 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1201 13351 3240 8446 1665 63.3 MiB 0.14 0.00 4.60525 -158.398 -4.60525 4.60525 0.65 0.000781109 0.000726329 0.0528392 0.0490879 36 3088 18 6.89349e+06 380534 648988. 2245.63 1.58 0.197814 0.17268 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0333611 0.02902 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.72 vpr 63.45 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30492 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 24.7 MiB 1.28 1470 18625 5270 10765 2590 63.4 MiB 0.19 0.00 5.00359 -155.604 -5.00359 5.00359 0.68 0.000824741 0.000766393 0.075484 0.0701894 34 3523 29 6.89349e+06 436909 618332. 2139.56 1.61 0.245376 0.214839 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.032127 0.0279234 195 122 0 0 122 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 7.14 vpr 63.41 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 24.6 MiB 2.43 1648 15391 4130 9133 2128 63.4 MiB 0.18 0.00 4.77885 -161.828 -4.77885 4.77885 0.58 0.000808666 0.000750706 0.0660986 0.0614237 36 3608 22 6.89349e+06 380534 648988. 2245.63 1.91 0.223825 0.195887 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0354378 0.0308238 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.44 vpr 62.45 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30488 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 23.9 MiB 1.39 1067 16081 5068 9178 1835 62.5 MiB 0.15 0.00 3.68745 -131.866 -3.68745 3.68745 0.69 0.00063878 0.000594292 0.057265 0.0532629 34 2400 20 6.89349e+06 295971 618332. 2139.56 1.37 0.17875 0.156902 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0226333 0.0197451 127 34 63 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.85 vpr 63.04 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30416 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1122 7711 1541 6020 150 63.0 MiB 0.09 0.00 4.29439 -143.523 -4.29439 4.29439 0.67 0.000713226 0.000658812 0.0316974 0.0294515 34 3249 25 6.89349e+06 295971 618332. 2139.56 3.80 0.252353 0.216896 25762 151098 -1 2403 19 1818 2118 159690 36677 3.76829 3.76829 -140.768 -3.76829 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0283052 0.0246409 154 94 0 0 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.15 vpr 63.59 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30816 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 24.7 MiB 1.62 1537 17347 5978 9037 2332 63.6 MiB 0.21 0.00 5.35709 -181.872 -5.35709 5.35709 0.66 0.000898264 0.000835384 0.0771597 0.0718201 38 3731 22 6.89349e+06 422815 678818. 2348.85 1.70 0.250313 0.219649 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0353743 0.0308159 209 65 96 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.40 vpr 63.04 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30376 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1176 14295 4272 7910 2113 63.0 MiB 0.15 0.00 3.7808 -134.415 -3.7808 3.7808 0.66 0.000737146 0.00068476 0.0594284 0.0552571 34 2997 45 6.89349e+06 324158 618332. 2139.56 2.05 0.219935 0.192145 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0335909 0.029144 156 34 92 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.00 vpr 62.57 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30324 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 23.9 MiB 1.10 932 11809 3108 7963 738 62.6 MiB 0.11 0.00 4.33203 -134.423 -4.33203 4.33203 0.66 0.000620462 0.000577476 0.0360648 0.0334708 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.31 0.154345 0.134096 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.23 0.06 0.14 -1 -1 0.23 0.0240635 0.0208005 129 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 7.46 vpr 63.36 MiB 0.05 7424 -1 -1 1 0.04 -1 -1 31064 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 25.1 MiB 1.66 1787 18111 5206 10704 2201 63.4 MiB 0.22 0.00 5.73258 -193.193 -5.73258 5.73258 0.65 0.00095312 0.000885592 0.0802955 0.0745641 36 4099 45 6.89349e+06 493284 648988. 2245.63 2.93 0.306627 0.267899 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.23 0.11 0.16 -1 -1 0.23 0.0408635 0.0354266 239 127 32 32 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.73 vpr 63.03 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.30 1091 13143 3864 7923 1356 63.0 MiB 0.14 0.00 4.41749 -154.465 -4.41749 4.41749 0.70 0.000755398 0.000702227 0.0531662 0.0494078 34 2892 26 6.89349e+06 324158 618332. 2139.56 1.64 0.202496 0.177006 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.20 0.09 0.14 -1 -1 0.20 0.030776 0.0268782 159 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.11 vpr 62.37 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30356 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 23.8 MiB 0.53 849 10087 2557 6780 750 62.4 MiB 0.10 0.00 3.73565 -131.011 -3.73565 3.73565 0.69 0.000607691 0.00056421 0.0302899 0.0280971 30 2269 22 6.89349e+06 465097 556674. 1926.21 0.91 0.103581 0.0907569 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.21 0.07 0.12 -1 -1 0.21 0.0226924 0.0197163 123 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.01 vpr 63.49 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30888 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 24.8 MiB 1.71 1275 12273 3390 7733 1150 63.5 MiB 0.15 0.00 5.39711 -179.414 -5.39711 5.39711 0.65 0.000825004 0.000764344 0.0525839 0.0488961 34 3822 27 6.89349e+06 408721 618332. 2139.56 2.52 0.226504 0.197057 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0347328 0.0302902 194 34 128 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 4.98 vpr 62.51 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30420 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 0.88 787 10056 2193 7590 273 62.5 MiB 0.10 0.00 3.8468 -135.678 -3.8468 3.8468 0.67 0.000609598 0.000567276 0.0374044 0.0348083 34 2224 26 6.89349e+06 225501 618332. 2139.56 1.48 0.161203 0.140457 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0252483 0.0218891 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.28 vpr 62.51 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30504 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.06 801 8131 1824 5536 771 62.5 MiB 0.08 0.00 3.71635 -120.03 -3.71635 3.71635 0.65 0.000619491 0.00057624 0.03094 0.0287925 36 2120 22 6.89349e+06 267783 648988. 2245.63 1.65 0.151238 0.131217 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.21 0.06 0.13 -1 -1 0.21 0.0227629 0.0197732 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 5.49 vpr 63.44 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30340 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 24.6 MiB 1.32 1254 15203 3953 9019 2231 63.4 MiB 0.16 0.00 4.1318 -129.307 -4.1318 4.1318 0.68 0.000756186 0.000703455 0.0608763 0.056558 34 2921 25 6.89349e+06 436909 618332. 2139.56 1.46 0.207846 0.18168 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0295208 0.0256722 171 88 29 29 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 6.26 vpr 63.29 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30656 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.80 1381 16974 4929 9664 2381 63.3 MiB 0.16 0.00 5.29596 -177.687 -5.29596 5.29596 0.66 0.000772564 0.000717011 0.0675648 0.0626923 36 3381 23 6.89349e+06 366440 648988. 2245.63 1.80 0.222756 0.195445 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0331964 0.0290045 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.42 vpr 63.41 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30688 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.63 1376 18180 6112 9250 2818 63.4 MiB 0.20 0.00 5.13064 -174.448 -5.13064 5.13064 0.67 0.000775111 0.000719759 0.0749303 0.0695437 34 3618 39 6.89349e+06 366440 618332. 2139.56 1.94 0.24831 0.217417 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0338205 0.0296997 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.47 vpr 63.02 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30520 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 24.4 MiB 1.16 1013 14221 3579 9597 1045 63.0 MiB 0.14 0.00 4.30029 -147.314 -4.30029 4.30029 0.67 0.000686692 0.000637367 0.0565328 0.0525669 34 2793 24 6.89349e+06 295971 618332. 2139.56 1.68 0.17555 0.154024 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0256387 0.0222136 141 65 32 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 5.81 vpr 63.06 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30408 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 24.3 MiB 1.53 1168 10501 2617 6825 1059 63.1 MiB 0.10 0.00 4.23729 -139.76 -4.23729 4.23729 0.80 0.000599761 0.000555292 0.0325614 0.0299336 34 2811 21 6.89349e+06 310065 618332. 2139.56 1.54 0.169565 0.146518 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0270898 0.0234813 146 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.12 vpr 63.22 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30368 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 24.4 MiB 1.73 1158 18043 5948 9235 2860 63.2 MiB 0.18 0.00 3.9471 -130.183 -3.9471 3.9471 0.68 0.000724236 0.000672838 0.0664106 0.0616246 36 2742 19 6.89349e+06 408721 648988. 2245.63 1.64 0.206139 0.181084 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0301111 0.0261603 164 60 60 30 57 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 4.67 vpr 62.96 MiB 0.03 7120 -1 -1 1 0.04 -1 -1 30508 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 24.0 MiB 1.14 970 11031 2869 6600 1562 63.0 MiB 0.10 0.00 4.51585 -132.654 -4.51585 4.51585 0.65 0.00067334 0.000626267 0.0405629 0.0377353 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.00 0.121685 0.106867 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0269296 0.0234438 145 34 84 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 6.38 vpr 62.90 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30156 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 24.0 MiB 1.78 1087 9083 2557 5800 726 62.9 MiB 0.09 0.00 4.36859 -139.508 -4.36859 4.36859 0.78 0.000506865 0.000467057 0.0344534 0.0319675 36 2461 21 6.89349e+06 295971 648988. 2245.63 1.88 0.15765 0.137056 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0230874 0.020111 136 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 5.91 vpr 63.06 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1180 8827 2269 5871 687 63.1 MiB 0.10 0.00 3.8008 -130.21 -3.8008 3.8008 0.65 0.000697827 0.000648362 0.0353878 0.0328445 34 2947 27 6.89349e+06 295971 618332. 2139.56 1.69 0.170767 0.148019 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0245359 0.0216055 150 91 0 0 91 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.11 vpr 63.02 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30152 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.66 1032 15180 4497 8229 2454 63.0 MiB 0.14 0.00 4.35445 -144.691 -4.35445 4.35445 0.67 0.000702391 0.000651045 0.0479968 0.0444774 28 3116 24 6.89349e+06 521472 531479. 1839.03 1.79 0.136155 0.120052 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.18 0.10 0.11 -1 -1 0.18 0.0293902 0.025461 151 4 124 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 5.56 vpr 63.25 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30588 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 24.4 MiB 1.13 1263 12351 3110 8140 1101 63.2 MiB 0.14 0.00 4.78058 -162.367 -4.78058 4.78058 0.66 0.000779867 0.000724425 0.0514792 0.0478223 34 3370 34 6.89349e+06 366440 618332. 2139.56 1.67 0.216361 0.188747 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0306781 0.0267664 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 6.63 vpr 63.27 MiB 0.04 7044 -1 -1 1 0.04 -1 -1 30360 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1405 10743 3107 6650 986 63.3 MiB 0.13 0.00 4.9601 -169.723 -4.9601 4.9601 0.66 0.000782458 0.000726051 0.0442406 0.0410427 36 3352 21 6.89349e+06 366440 648988. 2245.63 2.37 0.193773 0.168572 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.21 0.11 0.15 -1 -1 0.21 0.0350189 0.0304775 171 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 6.76 vpr 63.09 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30444 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 24.2 MiB 1.63 1306 10087 2279 7315 493 63.1 MiB 0.12 0.00 4.3224 -145.723 -4.3224 4.3224 0.65 0.000765612 0.00071099 0.0387853 0.0359745 34 4019 38 6.89349e+06 380534 618332. 2139.56 2.34 0.205393 0.178093 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.27 0.11 0.15 -1 -1 0.27 0.0317707 0.0278175 172 65 60 30 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 5.53 vpr 62.43 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30536 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.50 814 9181 2458 5686 1037 62.4 MiB 0.09 0.00 3.809 -121.257 -3.809 3.809 0.66 0.000618892 0.000575783 0.0342749 0.0318868 34 2414 23 6.89349e+06 267783 618332. 2139.56 1.44 0.156651 0.136129 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0219365 0.0190904 122 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.56 vpr 63.11 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30544 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 2.05 1287 12568 3293 7724 1551 63.1 MiB 0.13 0.00 5.05854 -160.711 -5.05854 5.05854 0.66 0.000740285 0.000687467 0.0501106 0.0465692 34 3215 23 6.89349e+06 366440 618332. 2139.56 1.77 0.196956 0.171803 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0308118 0.0267599 165 63 60 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.81 vpr 63.68 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30840 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 24.8 MiB 1.04 1479 11383 3062 7492 829 63.7 MiB 0.13 0.00 4.57601 -155.587 -4.57601 4.57601 0.67 0.00105856 0.000978628 0.0495089 0.0460141 36 3485 21 6.89349e+06 422815 648988. 2245.63 1.98 0.214935 0.186912 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0353186 0.0305541 204 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.10 vpr 63.36 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 30688 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 24.6 MiB 1.44 1301 16445 5093 9336 2016 63.4 MiB 0.18 0.00 5.17904 -171.173 -5.17904 5.17904 0.67 0.000943993 0.000877503 0.0661523 0.0613718 36 3067 22 6.89349e+06 408721 648988. 2245.63 1.83 0.221465 0.193967 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.23 0.11 0.17 -1 -1 0.23 0.0385531 0.0335524 186 94 31 31 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 6.86 vpr 63.21 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30564 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 24.3 MiB 1.85 1252 12351 3368 8179 804 63.2 MiB 0.14 0.00 4.25135 -136.296 -4.25135 4.25135 0.66 0.000772645 0.00071895 0.0498195 0.0462778 34 3685 43 6.89349e+06 394628 618332. 2139.56 2.24 0.226691 0.196903 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.26 0.08 0.14 -1 -1 0.26 0.0278975 0.024293 175 92 26 26 90 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 6.30 vpr 63.30 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30676 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.57 1349 14160 4180 8412 1568 63.3 MiB 0.16 0.00 5.11687 -171.214 -5.11687 5.11687 0.67 0.000781613 0.000725574 0.0604479 0.0561111 34 3581 27 6.89349e+06 366440 618332. 2139.56 1.96 0.21853 0.19107 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0309337 0.0270696 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.08 vpr 63.16 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30424 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 24.3 MiB 1.77 1337 17431 5595 9274 2562 63.2 MiB 0.17 0.00 4.49555 -136.793 -4.49555 4.49555 0.67 0.000845239 0.000792664 0.0648763 0.0602063 34 3073 24 6.89349e+06 422815 618332. 2139.56 1.49 0.214704 0.187933 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0293322 0.0255011 170 88 26 26 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.50 vpr 62.27 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 0.48 851 10744 3065 7267 412 62.3 MiB 0.11 0.00 3.7888 -133.854 -3.7888 3.7888 0.66 0.000614028 0.000571497 0.0415225 0.0385499 34 2305 21 6.89349e+06 225501 618332. 2139.56 1.39 0.163716 0.142801 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0225579 0.019614 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.57 vpr 63.27 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30548 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 24.3 MiB 1.44 1266 16411 5685 8276 2450 63.3 MiB 0.18 0.00 5.17997 -174.972 -5.17997 5.17997 0.65 0.000779496 0.000723423 0.0675635 0.0627493 34 3964 24 6.89349e+06 380534 618332. 2139.56 2.32 0.22524 0.197591 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0327204 0.0285389 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 7.35 vpr 63.37 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30524 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 24.5 MiB 2.40 1294 9791 2343 6863 585 63.4 MiB 0.12 0.00 5.01095 -168.663 -5.01095 5.01095 0.67 0.000779052 0.000723442 0.0432461 0.040209 34 3734 27 6.89349e+06 352346 618332. 2139.56 2.16 0.205585 0.179192 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0313068 0.0272672 176 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 5.51 vpr 62.70 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 24.1 MiB 1.47 971 13043 4021 6975 2047 62.7 MiB 0.12 0.00 3.51612 -116.281 -3.51612 3.51612 0.65 0.000637815 0.000592886 0.0486843 0.0453133 34 2366 21 6.89349e+06 267783 618332. 2139.56 1.39 0.17343 0.15127 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0261222 0.022552 128 55 32 32 54 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.24 vpr 62.42 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30384 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 0.71 734 11604 2641 7381 1582 62.4 MiB 0.11 0.00 3.8218 -128.161 -3.8218 3.8218 0.65 0.000600294 0.000558988 0.0423281 0.0394172 32 2249 20 6.89349e+06 239595 586450. 2029.24 0.86 0.112232 0.099313 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0239617 0.0207526 112 4 93 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 5.47 vpr 63.23 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30260 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 24.5 MiB 1.29 1234 14147 4178 8444 1525 63.2 MiB 0.14 0.00 4.31849 -141.833 -4.31849 4.31849 0.66 0.00074055 0.000688048 0.0553447 0.051401 34 3001 25 6.89349e+06 352346 618332. 2139.56 1.51 0.203815 0.178228 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0334719 0.029112 158 59 60 32 58 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 5.88 vpr 63.21 MiB 0.03 7144 -1 -1 1 0.02 -1 -1 30268 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 24.4 MiB 1.42 1314 10341 2747 6842 752 63.2 MiB 0.12 0.00 5.10864 -160.907 -5.10864 5.10864 0.65 0.00077034 0.000714279 0.0430161 0.0398155 34 3382 28 6.89349e+06 366440 618332. 2139.56 1.81 0.201561 0.175094 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0304018 0.0264744 170 88 28 28 88 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 5.19 vpr 63.27 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30568 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.4 MiB 0.72 1292 15419 3797 10101 1521 63.3 MiB 0.16 0.00 4.85078 -164.688 -4.85078 4.85078 0.65 0.000800683 0.000744646 0.053115 0.0492494 34 3291 24 6.89349e+06 577847 618332. 2139.56 1.74 0.201032 0.175853 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.23 0.10 0.09 -1 -1 0.23 0.0326577 0.0284132 183 3 156 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.83 vpr 63.21 MiB 0.02 7024 -1 -1 1 0.05 -1 -1 30564 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1124 9395 2323 6078 994 63.2 MiB 0.11 0.00 3.8961 -125.22 -3.8961 3.8961 0.66 0.000718096 0.000667181 0.0375023 0.0348973 34 2687 35 6.89349e+06 380534 618332. 2139.56 1.63 0.196532 0.170741 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0296547 0.0257776 160 59 60 30 56 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 4.94 vpr 62.48 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30580 -1 -1 22 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 24.0 MiB 1.09 915 13031 5095 6351 1585 62.5 MiB 0.11 0.00 4.34539 -126.288 -4.34539 4.34539 0.66 0.000573393 0.000534107 0.0446719 0.0415869 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.31 0.15341 0.133857 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.19 0.04 0.09 -1 -1 0.19 0.0135077 0.0118618 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 6.91 vpr 63.32 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30656 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 24.8 MiB 1.67 1748 16302 4126 10044 2132 63.3 MiB 0.21 0.00 5.09354 -170.611 -5.09354 5.09354 0.69 0.000913683 0.000848699 0.0754689 0.0700495 34 4285 25 6.89349e+06 451003 618332. 2139.56 2.23 0.263129 0.230048 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.21 0.11 0.10 -1 -1 0.21 0.0376485 0.0326776 219 95 62 31 95 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 6.86 vpr 63.34 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30612 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 24.7 MiB 1.93 1467 12661 2948 8528 1185 63.3 MiB 0.14 0.00 5.14784 -166.315 -5.14784 5.14784 0.65 0.000835935 0.000777052 0.0524276 0.0487052 36 3334 29 6.89349e+06 436909 648988. 2245.63 2.12 0.239097 0.208474 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.22 0.10 0.15 -1 -1 0.22 0.0365614 0.0317343 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 6.25 vpr 63.07 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1133 9914 2313 7132 469 63.1 MiB 0.10 0.00 4.28535 -139.234 -4.28535 4.28535 0.66 0.000690364 0.000641708 0.0385024 0.0357575 34 3076 43 6.89349e+06 310065 618332. 2139.56 1.72 0.192896 0.167087 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0254125 0.0221273 150 89 0 0 89 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 5.83 vpr 63.18 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30304 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1114 12951 3612 7720 1619 63.2 MiB 0.14 0.00 4.53785 -150.754 -4.53785 4.53785 0.71 0.000715818 0.000664725 0.0514777 0.0477639 34 2799 24 6.89349e+06 324158 618332. 2139.56 1.45 0.195754 0.170853 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0278901 0.0242964 151 34 90 30 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 5.97 vpr 63.52 MiB 0.05 7276 -1 -1 1 0.04 -1 -1 30808 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 24.9 MiB 1.43 1475 19413 5609 11709 2095 63.5 MiB 0.22 0.00 4.64537 -154.979 -4.64537 4.64537 0.67 0.000848432 0.000774615 0.0824658 0.0764143 34 3553 32 6.89349e+06 422815 618332. 2139.56 1.68 0.259517 0.227124 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0358803 0.0311398 193 64 87 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 6.22 vpr 63.11 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30372 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 24.3 MiB 1.80 1223 16773 5429 8542 2802 63.1 MiB 0.17 0.00 4.28025 -135.791 -4.28025 4.28025 0.67 0.000710746 0.000659044 0.0645845 0.0599933 36 2894 24 6.89349e+06 394628 648988. 2245.63 1.70 0.211616 0.185501 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0254733 0.0221865 162 61 58 30 58 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 6.20 vpr 63.20 MiB 0.02 7116 -1 -1 1 0.04 -1 -1 30520 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 24.3 MiB 1.34 1373 17066 5393 8866 2807 63.2 MiB 0.19 0.00 5.03124 -168.563 -5.03124 5.03124 0.65 0.000771233 0.000715691 0.0662816 0.0615148 34 3693 35 6.89349e+06 394628 618332. 2139.56 2.07 0.235689 0.20599 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0321644 0.0278831 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 6.03 vpr 63.36 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30448 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.5 MiB 1.65 1418 13147 3928 7969 1250 63.4 MiB 0.14 0.00 3.78872 -134.171 -3.78872 3.78872 0.65 0.000773749 0.000718387 0.0523408 0.0485918 34 3370 23 6.89349e+06 380534 618332. 2139.56 1.58 0.204366 0.178316 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0316773 0.0276089 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.10 vpr 62.51 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30564 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 1.22 802 14322 5252 6511 2559 62.5 MiB 0.12 0.00 3.809 -119.785 -3.809 3.809 0.66 0.000599199 0.000557055 0.0497353 0.0462152 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.30 0.168639 0.147509 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.022427 0.0194646 118 34 58 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 5.27 vpr 62.84 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 24.2 MiB 0.99 1059 7038 1561 5080 397 62.8 MiB 0.08 0.00 4.31213 -129.707 -4.31213 4.31213 0.67 0.000689935 0.000643465 0.0278587 0.0259047 34 2689 32 6.89349e+06 281877 618332. 2139.56 1.60 0.165497 0.142971 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0228659 0.0199174 136 82 0 0 82 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.02 vpr 63.19 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30428 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.24 1144 15255 6301 7544 1410 63.2 MiB 0.15 0.00 4.60015 -151.135 -4.60015 4.60015 0.71 0.000724668 0.000673279 0.06073 0.0565168 36 2816 23 6.89349e+06 338252 648988. 2245.63 1.86 0.204606 0.179496 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0269208 0.0234775 154 34 93 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.03 vpr 62.59 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 23.9 MiB 1.09 955 13610 4945 6467 2198 62.6 MiB 0.12 0.00 3.4839 -106.878 -3.4839 3.4839 0.67 0.00060445 0.000561901 0.0487858 0.0453608 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.31 0.168695 0.147071 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0214843 0.0186098 123 56 29 29 52 26 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 5.94 vpr 62.61 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30272 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 24.1 MiB 1.65 1000 12186 3922 6390 1874 62.6 MiB 0.12 0.00 3.839 -135.657 -3.839 3.839 0.67 0.0006523 0.000605655 0.0467834 0.0434786 34 2613 22 6.89349e+06 253689 618332. 2139.56 1.58 0.17476 0.15239 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0267946 0.0232994 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.38 vpr 63.18 MiB 0.02 7012 -1 -1 1 0.05 -1 -1 30448 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 24.4 MiB 1.64 1201 16773 5048 9300 2425 63.2 MiB 0.18 0.00 4.20938 -143.511 -4.20938 4.20938 0.72 0.000751088 0.000697637 0.0707558 0.0657831 36 2859 23 6.89349e+06 380534 648988. 2245.63 1.91 0.222262 0.195433 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.031477 0.0274093 164 64 58 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.20 vpr 62.47 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30272 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 1.27 877 7953 1966 5579 408 62.5 MiB 0.08 0.00 3.31212 -108.619 -3.31212 3.31212 0.63 0.000627417 0.000584103 0.0293072 0.0272561 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.34 0.153871 0.133352 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.20 0.06 0.10 -1 -1 0.20 0.0223677 0.019471 125 55 31 31 53 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.08 vpr 63.14 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30456 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1287 17711 6388 9306 2017 63.1 MiB 0.19 0.00 4.20729 -140.905 -4.20729 4.20729 0.67 0.000575323 0.000526356 0.0654438 0.0603268 34 3044 21 6.89349e+06 352346 618332. 2139.56 1.81 0.211317 0.185098 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0284906 0.0248235 162 65 52 26 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.69 vpr 63.29 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 24.6 MiB 1.63 1441 16921 4862 9627 2432 63.3 MiB 0.18 0.00 5.00842 -163.951 -5.00842 5.00842 0.68 0.000794888 0.000737576 0.0661728 0.0612932 36 3492 23 6.89349e+06 436909 648988. 2245.63 2.25 0.225335 0.197201 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.0352343 0.0305635 185 93 31 31 92 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.62 vpr 62.87 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 24.2 MiB 2.34 1150 11245 3095 6987 1163 62.9 MiB 0.11 0.00 3.53115 -123.245 -3.53115 3.53115 0.67 0.000663854 0.000615866 0.0421587 0.0391318 34 2943 19 6.89349e+06 295971 618332. 2139.56 1.68 0.172017 0.149719 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0224854 0.0196273 137 61 32 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 5.59 vpr 62.94 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30096 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 24.3 MiB 1.18 1121 13443 3684 8167 1592 62.9 MiB 0.14 0.00 3.817 -131.483 -3.817 3.817 0.67 0.000682202 0.000634343 0.0513523 0.0476972 34 2949 27 6.89349e+06 281877 618332. 2139.56 1.69 0.189867 0.166386 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.20 0.04 0.09 -1 -1 0.20 0.0146559 0.0129044 139 63 32 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 5.79 vpr 63.17 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30728 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.3 MiB 1.29 1272 13147 3375 7731 2041 63.2 MiB 0.13 0.00 4.61515 -160.202 -4.61515 4.61515 0.67 0.000777982 0.000722589 0.0523372 0.0486044 36 3093 23 6.89349e+06 380534 648988. 2245.63 1.74 0.208077 0.181763 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0297772 0.0259352 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.28 vpr 62.97 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30540 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 24.2 MiB 1.57 1161 15639 4794 8641 2204 63.0 MiB 0.16 0.00 3.67945 -117.378 -3.67945 3.67945 0.66 0.000714878 0.000664131 0.0604291 0.0561476 30 2520 23 6.89349e+06 366440 556674. 1926.21 0.93 0.14709 0.130266 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0263567 0.0229532 157 62 56 29 58 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 6.16 vpr 63.41 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30624 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 24.7 MiB 1.26 1517 16893 4857 9388 2648 63.4 MiB 0.18 0.00 4.97404 -168.093 -4.97404 4.97404 0.68 0.000862907 0.000802851 0.0726144 0.0674697 36 3623 47 6.89349e+06 408721 648988. 2245.63 1.95 0.271562 0.236577 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.24 0.10 0.14 -1 -1 0.24 0.0352143 0.0305116 203 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 3.94 vpr 62.39 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30436 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.7 MiB 0.54 803 5149 1186 3599 364 62.4 MiB 0.06 0.00 2.99217 -104.791 -2.99217 2.99217 0.66 0.000579995 0.00053995 0.0189923 0.0176763 30 2012 19 6.89349e+06 225501 556674. 1926.21 0.83 0.0848815 0.074009 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0235743 0.0204233 104 4 85 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 6.11 vpr 63.33 MiB 0.05 7080 -1 -1 1 0.04 -1 -1 30320 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1396 18101 5815 9868 2418 63.3 MiB 0.18 0.00 5.41163 -177.078 -5.41163 5.41163 0.65 0.000790206 0.000734033 0.0713302 0.0661524 34 3746 48 6.89349e+06 394628 618332. 2139.56 1.81 0.254653 0.222124 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0346148 0.0300479 179 92 28 28 92 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.39 vpr 63.10 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30208 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 24.4 MiB 1.96 1193 17248 5142 9796 2310 63.1 MiB 0.17 0.00 4.89074 -162.672 -4.89074 4.89074 0.68 0.000715418 0.000663996 0.0659456 0.0611808 36 3213 26 6.89349e+06 338252 648988. 2245.63 2.61 0.215899 0.189306 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.21 0.12 0.14 -1 -1 0.21 0.0353093 0.0306815 161 96 0 0 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 5.67 vpr 63.15 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30312 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 24.3 MiB 1.54 1163 10187 2742 6187 1258 63.1 MiB 0.12 0.00 3.75965 -128.904 -3.75965 3.75965 0.66 0.000765216 0.000710701 0.0427696 0.0397187 34 3025 27 6.89349e+06 352346 618332. 2139.56 1.47 0.198324 0.17252 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0286161 0.0249786 170 65 61 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 6.93 vpr 63.37 MiB 0.05 7312 -1 -1 1 0.04 -1 -1 30924 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 24.9 MiB 1.50 1578 21409 7235 11132 3042 63.4 MiB 0.24 0.00 5.18464 -176.869 -5.18464 5.18464 0.65 0.000904094 0.000839176 0.0913222 0.0847569 36 3817 25 6.89349e+06 465097 648988. 2245.63 2.47 0.271983 0.238701 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.0377031 0.0327356 224 96 64 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 4.73 vpr 62.16 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30292 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63648 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 23.5 MiB 0.98 774 12860 4018 7384 1458 62.2 MiB 0.10 0.00 3.08706 -94.2237 -3.08706 3.08706 0.66 0.000538033 0.000501127 0.0429908 0.0399963 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.18 0.14515 0.1267 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.20 0.04 0.11 -1 -1 0.20 0.0164764 0.0143541 93 56 0 0 53 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.05 vpr 62.50 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 23.9 MiB 1.06 936 13763 4663 7110 1990 62.5 MiB 0.12 0.00 4.23979 -138.497 -4.23979 4.23979 0.65 0.00062033 0.000577311 0.0493624 0.0459567 34 2090 22 6.89349e+06 295971 618332. 2139.56 1.34 0.170095 0.148815 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0267058 0.0231481 124 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.85 vpr 62.80 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30084 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 24.1 MiB 1.97 1009 8448 2021 6048 379 62.8 MiB 0.10 0.00 4.33609 -148.866 -4.33609 4.33609 0.67 0.000651327 0.000605289 0.0330376 0.0307111 36 2726 23 6.89349e+06 253689 648988. 2245.63 2.17 0.162991 0.141553 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0277595 0.0240871 129 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 4.99 vpr 62.28 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30396 -1 -1 24 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63772 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 1.11 636 10231 2621 6138 1472 62.3 MiB 0.09 0.00 3.787 -96.2626 -3.787 3.787 0.65 0.000532951 0.00049636 0.0326782 0.0303697 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.29 0.13608 0.117899 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0214047 0.0184975 107 34 50 25 25 25 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 7.26 vpr 63.37 MiB 0.04 7112 -1 -1 1 0.04 -1 -1 30512 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1453 17273 5845 8574 2854 63.4 MiB 0.19 0.00 4.55715 -154.068 -4.55715 4.55715 0.65 0.000623687 0.00057108 0.0635065 0.0586403 38 3543 25 6.89349e+06 394628 678818. 2348.85 1.99 0.225873 0.197435 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.23 0.11 0.17 -1 -1 0.23 0.0344365 0.0299281 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 6.30 vpr 63.44 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 24.8 MiB 1.74 1285 13758 3623 8223 1912 63.4 MiB 0.15 0.00 4.84654 -156.987 -4.84654 4.84654 0.66 0.000781438 0.000725232 0.0564222 0.0523852 34 3577 46 6.89349e+06 380534 618332. 2139.56 1.80 0.236814 0.206271 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0408528 0.0354271 183 94 29 29 93 31 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/golden_results.txt index eefbc507b7b..ff1ef00e2e0 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/golden_results.txt @@ -1,21 +1,21 @@ - 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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_mem32K_40nm.xml arm_core.v common 331.07 vpr 251.66 MiB -1 -1 25.50 124384 25 62.05 -1 -1 71304 -1 -1 880 133 24 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 257704 133 179 13858 14037 1 6950 1216 37 37 1369 clb auto 143.3 MiB 29.86 119218 177.3 MiB 12.28 0.11 16.8221 -179760 -16.8221 16.8221 4.91 0.024897 0.0207667 2.90686 2.39692 110 181688 23 7.54166e+07 6.05797e+07 9.46594e+06 6914.49 164.62 12.278 10.2454 198012 2024479 -1 167445 16 32465 129313 40479102 9786367 0 0 40479102 9786367 115993 45293 0 0 580867 550454 0 0 660336 587183 0 0 121987 50528 0 0 19595899 4258999 0 0 19404020 4293910 0 0 115993 0 0 86620 709493 724472 3800525 15352 1371 18.8069 18.8069 -201662 -18.8069 -3.34957 -0.292146 1.20852e+07 8827.75 3.43 9.51 1.60 -1 -1 3.43 1.3884 1.25149 8205 9816 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml bgm.v common 89.62 parmys 237.31 MiB -1 -1 41.41 243004 13 14.02 -1 -1 50952 -1 -1 277 257 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 103792 257 32 5061 5093 1 2823 566 22 22 484 clb auto 64.4 MiB 5.16 19037 101.4 MiB 3.13 0.04 7.532 -3426.62 -7.532 7.532 1.94 0.0123415 0.0105706 0.80791 0.674211 56 32869 21 2.50602e+07 1.49286e+07 1.74986e+06 3615.40 10.88 3.4558 2.95808 51906 351851 -1 29754 17 11898 37468 1183057 228527 0 0 1183057 228527 37468 19736 0 0 47877 37914 0 0 71573 47920 0 0 39706 22568 0 0 492365 49512 0 0 494068 50877 0 0 37468 0 0 25613 47612 52102 367949 0 0 9.01859 9.01859 -3986.46 -9.01859 0 0 2.23304e+06 4613.71 0.93 0.85 0.38 -1 -1 0.93 0.540476 0.495183 2580 2832 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml blob_merge.v common 120.58 parmys 299.75 MiB -1 -1 15.30 306944 7 21.06 -1 -1 60652 -1 -1 566 36 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 139692 36 100 6840 6940 1 3200 702 30 30 900 clb auto 89.6 MiB 5.40 43736 126.5 MiB 6.37 0.07 5.10014 -2014.54 -5.10014 5.10014 4.21 0.018015 0.0149433 1.87685 1.55304 64 69889 41 4.8774e+07 3.0504e+07 3.87092e+06 4301.02 50.73 7.47254 6.24453 103136 784142 -1 64679 16 15948 72029 3403089 438932 0 0 3403089 438932 72029 25148 0 0 94036 72494 0 0 135640 94181 0 0 76795 27067 0 0 1514903 112546 0 0 1509686 107496 0 0 72029 0 0 59140 565524 538368 3322403 0 0 5.75529 5.75529 -2266.15 -5.75529 0 0 4.83441e+06 5371.56 1.54 1.70 0.56 -1 -1 1.54 0.815596 0.745607 4872 6190 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml boundtop.v common 21.67 vpr 71.89 MiB -1 -1 12.93 34152 4 0.30 -1 -1 37684 -1 -1 42 195 1 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 73612 195 193 1088 1281 1 593 431 15 15 225 io auto 34.1 MiB 0.43 2826 71.9 MiB 0.73 0.01 2.15453 -959.938 -2.15453 2.15453 0.65 0.00217983 0.0019678 0.200591 0.18107 38 5989 23 1.03862e+07 2.81155e+06 544128. 2418.35 4.00 0.850141 0.770548 21038 109288 -1 5191 12 1628 2319 175678 46820 0 0 175678 46820 2319 1858 0 0 7726 7101 0 0 8410 7732 0 0 2424 1974 0 0 76777 14086 0 0 78022 14069 0 0 2319 0 0 697 2057 2073 14192 0 0 2.61515 2.61515 -1160.11 -2.61515 -0.438572 -0.179493 690492. 3068.85 0.30 0.14 0.13 -1 -1 0.30 0.0951135 0.0896374 347 525 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.64 vpr 68.38 MiB -1 -1 0.29 20884 3 0.10 -1 -1 36308 -1 -1 68 99 1 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 70020 99 130 343 473 1 225 298 12 12 144 clb auto 29.6 MiB 0.15 599 68.4 MiB 0.18 0.00 1.62851 -108.153 -1.62851 1.62851 0.30 0.000389295 0.000352612 0.0370537 0.0334683 36 1445 27 5.66058e+06 4.21279e+06 305235. 2119.69 1.37 0.264753 0.242377 12238 58442 -1 1263 12 429 686 37045 11418 0 0 37045 11418 686 536 0 0 1992 1802 0 0 2359 1992 0 0 742 603 0 0 15126 3546 0 0 16140 2939 0 0 686 0 0 257 388 336 2661 0 0 1.99752 1.99752 -139.829 -1.99752 -0.305022 -0.0771249 378970. 2631.74 0.14 0.04 0.07 -1 -1 0.14 0.0228981 0.0215011 144 96 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml diffeq1.v common 19.17 vpr 71.54 MiB -1 -1 0.45 26128 15 0.46 -1 -1 37944 -1 -1 36 162 0 5 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 73252 162 96 994 935 1 694 299 16 16 256 mult_36 auto 33.6 MiB 0.33 5116 71.5 MiB 0.63 0.01 20.0144 -1558.29 -20.0144 20.0144 0.79 0.00213179 0.00192593 0.198733 0.17979 56 12472 41 1.21132e+07 3.92018e+06 870502. 3400.40 13.34 1.23752 1.12808 26504 172068 -1 9597 21 3314 6473 1915300 561075 0 0 1915300 561075 6473 4257 0 0 79176 77413 0 0 83503 79536 0 0 7040 4760 0 0 876728 200002 0 0 862380 195107 0 0 6473 0 0 3187 9442 8998 50446 0 0 22.6342 22.6342 -1798.21 -22.6342 0 0 1.11200e+06 4343.75 0.43 0.58 0.18 -1 -1 0.43 0.134312 0.125165 337 478 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml diffeq2.v common 18.95 vpr 69.71 MiB -1 -1 0.40 24984 16 0.35 -1 -1 36572 -1 -1 27 66 0 5 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 71380 66 96 610 551 1 452 194 16 16 256 mult_36 auto 31.3 MiB 0.32 3619 69.7 MiB 0.36 0.01 15.7903 -878.673 -15.7903 15.7903 0.89 0.00193757 0.00177868 0.128858 0.117956 48 10126 49 1.21132e+07 3.43514e+06 756778. 2956.16 13.69 0.788738 0.723907 25228 149258 -1 7854 26 3671 8608 2818483 858811 0 0 2818483 858811 8608 5965 0 0 108541 106943 0 0 121330 109071 0 0 9356 6937 0 0 1320917 326126 0 0 1249731 303769 0 0 8608 0 0 4958 13474 13631 60359 0 0 18.1389 18.1389 -1039.1 -18.1389 0 0 968034. 3781.38 0.35 0.62 0.10 -1 -1 0.35 0.09051 0.084697 235 286 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v common 113.15 vpr 308.10 MiB -1 -1 12.81 128316 5 5.29 -1 -1 59960 -1 -1 460 506 47 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 315492 506 553 3055 3608 1 2790 1566 50 50 2500 memory auto 56.9 MiB 4.16 14964 308.1 MiB 6.93 0.07 7.09624 -1748.49 -7.09624 7.09624 34.52 0.0153364 0.0138158 2.10618 1.87565 38 22686 16 1.47946e+08 5.05479e+07 6.86584e+06 2746.33 22.84 6.59621 6.03313 251304 1421084 -1 21885 15 3661 4728 3459647 869150 0 0 3459647 869150 4455 4205 0 0 94514 93340 0 0 97140 94966 0 0 4690 4289 0 0 1636782 331137 0 0 1622066 341213 0 0 4455 0 0 799 10716 7260 15887 378 1167 7.95918 7.95918 -2103 -7.95918 -5.50836 -0.295467 8.69095e+06 3476.38 4.95 1.61 1.52 -1 -1 4.95 0.775133 0.711026 953 407 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml mkPktMerge.v common 19.71 vpr 73.59 MiB -1 -1 1.24 28416 2 0.16 -1 -1 37268 -1 -1 27 311 15 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 75356 311 156 972 1128 1 953 509 28 28 784 memory auto 35.4 MiB 0.61 8908 73.6 MiB 1.08 0.01 3.91091 -4218.66 -3.91091 3.91091 2.84 0.00230926 0.00200984 0.359046 0.308642 40 15717 19 4.25198e+07 9.67514e+06 1.94918e+06 2486.20 7.22 1.34863 1.19471 74338 387760 -1 14542 14 3080 3479 2680140 773137 0 0 2680140 773137 3479 3217 0 0 83837 82957 0 0 85441 84103 0 0 3518 3281 0 0 1254782 296821 0 0 1249083 302758 0 0 3479 0 0 399 2545 2929 12232 0 0 4.23237 4.23237 -5056.72 -4.23237 -15.8076 -0.339827 2.88571e+06 3375 1.04 0.88 0.29 -1 -1 1.04 0.17844 0.164245 109 172 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v common 31.43 vpr 80.86 MiB -1 -1 5.88 58256 7 3.39 -1 -1 40880 -1 -1 153 193 5 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 82800 193 205 2152 2357 1 1161 556 20 20 400 memory auto 43.4 MiB 1.94 8943 80.9 MiB 1.66 0.02 4.78473 -2696.64 -4.78473 4.78473 1.53 0.00400297 0.0034052 0.472395 0.410113 48 16781 24 2.07112e+07 1.09858e+07 1.23055e+06 3076.38 11.24 1.93493 1.69409 40448 245963 -1 14742 16 4328 10873 1200255 281400 0 0 1200255 281400 10461 6031 0 0 40538 37788 0 0 45332 40719 0 0 11069 6828 0 0 547455 95851 0 0 545400 94183 0 0 10461 0 0 6311 23915 22852 163514 486 39 5.16776 5.16776 -3186.51 -5.16776 -5.4156 -0.29768 1.57502e+06 3937.55 0.75 0.54 0.30 -1 -1 0.75 0.239954 0.221467 947 1120 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml or1200.v common 89.48 vpr 115.21 MiB -1 -1 4.85 69064 27 5.97 -1 -1 45296 -1 -1 251 385 2 1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 117980 385 394 3884 4215 1 2355 1033 27 27 729 io auto 59.1 MiB 3.65 30973 96.2 MiB 6.03 0.06 13.1188 -12463.4 -13.1188 13.1188 3.21 0.0109579 0.0097997 1.35065 1.18507 80 49382 38 3.93038e+07 1.50194e+07 3.74040e+06 5130.86 51.71 5.72447 5.12141 91129 774047 -1 43968 14 9967 34459 2922044 557916 0 0 2922044 557916 33383 13994 0 0 74658 66867 0 0 93740 74784 0 0 34958 16026 0 0 1347423 190400 0 0 1337882 195845 0 0 33383 0 0 23997 107693 110664 651095 1126 170 15.0745 15.0745 -14171.5 -15.0745 0 0 4.71674e+06 6470.15 2.20 1.38 0.96 -1 -1 2.20 0.569131 0.530093 2220 2691 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml raygentop.v common 33.96 vpr 83.09 MiB -1 -1 3.94 47416 8 1.08 -1 -1 42200 -1 -1 116 235 1 6 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 85080 235 305 2594 2755 1 1443 663 19 19 361 io auto 45.4 MiB 1.74 11728 83.1 MiB 1.71 0.03 4.56197 -2459.7 -4.56197 4.56197 1.02 0.00514274 0.00446085 0.426807 0.379367 60 24673 37 1.72706e+07 9.1757e+06 1.37250e+06 3801.94 16.44 2.37913 2.12622 39239 274781 -1 20375 14 5989 16204 2539325 570437 0 0 2539325 570437 16204 9559 0 0 98499 94860 0 0 105825 98612 0 0 17294 10778 0 0 1155691 177930 0 0 1145812 178698 0 0 16204 0 0 10307 33334 32584 209541 0 0 4.97453 4.97453 -2881.32 -4.97453 -4.68518 -0.168146 1.72845e+06 4787.94 0.71 0.85 0.31 -1 -1 0.71 0.273433 0.254423 1038 1288 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml sha.v common 24.93 vpr 83.68 MiB -1 -1 2.44 49324 21 3.11 -1 -1 42448 -1 -1 149 38 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 85688 38 36 2570 2606 1 1074 223 17 17 289 clb auto 46.5 MiB 1.66 9514 83.7 MiB 0.74 0.01 12.4644 -2393.4 -12.4644 12.4644 1.02 0.00481272 0.00415747 0.300222 0.253292 48 16665 38 1.34605e+07 8.03021e+06 864508. 2991.38 7.21 1.51678 1.30377 28519 171069 -1 13641 14 4140 12331 398989 73362 0 0 398989 73362 10963 5247 0 0 16034 12603 0 0 20718 16034 0 0 11418 5863 0 0 174349 16137 0 0 165507 17478 0 0 10963 0 0 7027 33342 33275 197050 1783 212 14.5478 14.5478 -2910.6 -14.5478 0 0 1.10659e+06 3829.03 0.48 0.38 0.19 -1 -1 0.48 0.276267 0.253697 1458 1647 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml stereovision0.v common 164.71 vpr 218.30 MiB -1 -1 10.05 121516 5 61.88 -1 -1 68980 -1 -1 744 169 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 223544 169 197 21166 21363 1 7142 1110 34 34 1156 clb auto 152.3 MiB 10.44 46165 184.9 MiB 9.27 0.06 3.01927 -12729.8 -3.01927 3.01927 5.26 0.0167966 0.0137124 2.80423 2.30907 56 70282 24 6.50233e+07 4.00974e+07 4.37687e+06 3786.22 40.15 12.3035 10.3507 127124 890184 -1 65055 15 20021 32399 1255132 239317 0 0 1255132 239317 30131 21962 0 0 44899 34059 0 0 60291 44951 0 0 30916 22999 0 0 543661 57588 0 0 545234 57758 0 0 30131 0 0 10297 45427 47407 259322 2718 1311 3.57211 3.57211 -15077.5 -3.57211 0 0 5.58150e+06 4828.29 2.89 1.93 0.81 -1 -1 2.89 1.75263 1.60445 7006 9645 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml stereovision1.v common 250.30 vpr 242.63 MiB -1 -1 11.90 136124 6 24.83 -1 -1 72356 -1 -1 757 113 0 44 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 248456 113 145 21669 19534 1 9921 1059 40 40 1600 mult_36 auto 155.2 MiB 11.02 84966 189.9 MiB 13.52 0.12 5.13703 -21640.5 -5.13703 5.13703 6.10 0.0254963 0.0205479 3.55014 2.96238 80 136248 32 9.16046e+07 5.82227e+07 8.41679e+06 5260.49 144.01 13.5423 11.5404 201376 1751416 -1 121716 14 32286 54656 25487611 4986490 0 0 25487611 4986490 49794 37559 0 0 615639 601806 0 0 643432 616200 0 0 50968 38944 0 0 11616420 1869516 0 0 12511358 1822465 0 0 49794 0 0 18185 237271 200073 850021 5397 6870 5.33749 5.33749 -24758.4 -5.33749 0 0 1.06125e+07 6632.80 3.78 5.71 1.37 -1 -1 3.78 1.34153 1.23692 7327 9008 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml stereovision2.v common 1056.65 vpr 943.41 MiB -1 -1 31.50 331100 16 133.21 -1 -1 135988 -1 -1 1888 149 0 179 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 966048 149 182 46684 38970 1 28472 2398 80 80 6400 mult_36 auto 332.0 MiB 31.28 393214 899.7 MiB 42.95 0.32 15.9487 -50914 -15.9487 15.9487 71.15 0.0597852 0.0512421 7.37159 6.33625 110 515126 25 3.90281e+08 1.72634e+08 4.62465e+07 7226.02 649.24 29.7808 25.664 947776 10037526 -1 486806 15 92407 154782 52999200 10768095 0 0 52999200 10768095 149927 105762 0 0 1007198 962859 0 0 1079400 1010284 0 0 156232 110440 0 0 25404625 4221842 0 0 25201818 4356908 0 0 149927 0 0 57676 219177 213704 847726 5290 6377 17.987 17.987 -58723 -17.987 0 0 5.90184e+07 9221.63 21.20 12.07 7.35 -1 -1 21.20 2.78895 2.56434 17776 23295 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml stereovision3.v common 9.25 vpr 66.33 MiB -1 -1 0.57 25160 5 0.11 -1 -1 37068 -1 -1 7 10 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 67924 10 2 181 183 1 37 19 6 6 36 clb auto 27.9 MiB 0.06 131 66.3 MiB 0.01 0.00 1.93751 -82.3688 -1.93751 1.93751 0.04 0.000169238 0.000130915 0.00259954 0.0023627 20 190 13 646728 377258 34888.9 969.136 0.07 0.0130989 0.012017 2216 6354 -1 156 6 69 100 1591 585 0 0 1591 585 100 81 0 0 139 100 0 0 155 139 0 0 105 85 0 0 632 70 0 0 460 110 0 0 100 0 0 31 29 32 280 0 0 2.0211 2.0211 -91.3362 -2.0211 0 0 45676.2 1268.78 0.01 0.01 0.01 -1 -1 0.01 0.00803925 0.00765069 52 88 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml LU8PEEng.v common 466.95 vpr 445.93 MiB -1 -1 59.63 335624 122 82.28 -1 -1 81980 -1 -1 1335 114 45 8 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 456628 114 102 21867 21777 1 11032 1604 50 50 2500 memory auto 208.8 MiB 26.32 155124 406.2 MiB 24.67 0.19 67.5178 -51175 -67.5178 67.5178 25.42 0.0453485 0.0387181 5.09578 4.21828 94 232477 22 1.47946e+08 9.97789e+07 1.55181e+07 6207.23 193.62 18.9489 15.9124 341268 3271592 -1 212120 19 40727 161630 45058607 10746751 0 0 45058607 10746751 154686 53843 0 0 613506 564597 0 0 724880 621333 0 0 160007 63242 0 0 21674885 4640633 0 0 21730643 4803103 0 0 154686 0 0 116598 469846 457812 2910250 7265 5157 79.6938 79.6938 -67331.5 -79.6938 -4.63469 -0.293253 1.95446e+07 7817.85 6.28 12.61 2.37 -1 -1 6.28 2.32899 2.05913 12499 14088 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml LU32PEEng.v common 2140.54 vpr 1.57 GiB -1 -1 186.04 998368 121 513.06 -1 -1 235996 -1 -1 4471 114 168 32 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 1642344 114 102 72397 71731 1 37195 4887 92 92 8464 memory auto 651.9 MiB 64.23 725538 1324.1 MiB 147.06 0.93 69.2775 -297336 -69.2775 69.2775 77.41 0.112838 0.0964397 15.7361 13.0779 124 963655 20 5.19428e+08 3.45674e+08 6.83823e+07 8079.19 962.28 58.8085 49.5209 1330926 14951874 -1 905364 20 130555 572169 232286285 61691524 0 0 232286285 61691524 524807 160878 0 0 2225561 2059152 0 0 2651212 2247498 0 0 539806 190687 0 0 112394185 27988380 0 0 113950714 29044929 0 0 524807 0 0 403174 2369250 2339003 11512966 48866 136531 80.1891 80.1891 -428654 -80.1891 -29.9739 -0.29436 8.66909e+07 10242.3 26.17 61.95 11.56 -1 -1 26.17 7.33236 6.54016 42436 46992 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml mcml.v common 3520.65 vpr 1.45 GiB -1 -1 414.23 1375900 63 2354.27 -1 -1 351976 -1 -1 4791 36 159 27 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 1517048 36 356 125074 123859 1 31592 5369 92 92 8464 memory auto 848.1 MiB 44.56 386934 1462.7 MiB 88.58 0.54 58.3963 -256243 -58.3963 58.3963 70.20 0.102126 0.0862249 15.2881 12.8959 78 552717 29 5.19428e+08 3.56007e+08 4.53556e+07 5358.65 392.74 50.871 43.3978 1077038 9588492 -1 516113 20 107011 333616 86438658 20655757 0 0 86438658 20655757 293838 140032 0 0 1564305 1471314 0 0 1739818 1576025 0 0 305295 159752 0 0 41379355 8551879 0 0 41156047 8756755 0 0 293838 0 0 189249 879941 879963 3765557 42162 383411 65.7748 65.7748 -332915 -65.7748 -0.225514 -0.0292962 5.73940e+07 6780.95 18.07 21.16 6.08 -1 -1 18.07 7.29225 6.61107 46619 73802 -1 -1 -1 -1 +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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_mem32K_40nm.xml arm_core.v common 280.20 vpr 257.79 MiB -1 -1 25.75 122844 25 38.75 -1 -1 67596 -1 -1 880 133 24 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 263980 133 179 13858 14037 1 6950 1216 37 37 1369 clb auto 139.2 MiB 38.72 121109 624064 206086 398117 19861 181.0 MiB 12.25 0.12 18.1031 -192864 -18.1031 18.1031 3.43 0.0372554 0.0323182 4.18441 3.50112 110 190128 48 7.54166e+07 6.05797e+07 9.46594e+06 6914.49 136.75 18.0878 15.0006 198012 2024479 -1 169999 16 34106 138688 11533618 1984932 18.7961 18.7961 -198290 -18.7961 -1.49014 -0.292146 1.20852e+07 8827.75 3.07 4.13 1.84 -1 -1 3.07 1.65134 1.45084 8205 9816 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml bgm.v common 81.05 parmys 231.22 MiB -1 -1 42.19 236768 13 8.21 -1 -1 47672 -1 -1 277 257 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99912 257 32 5061 5093 1 2823 566 22 22 484 clb auto 60.3 MiB 4.06 19462 199466 58246 130455 10765 97.6 MiB 2.58 0.03 8.83591 -3915.72 -8.83591 8.83591 1.08 0.0115025 0.00994773 1.03584 0.908806 58 32389 32 2.50602e+07 1.49286e+07 1.81652e+06 3753.13 13.19 4.54237 3.95427 52870 368945 -1 28855 15 10906 34558 982071 189322 9.64046 9.64046 -3932.02 -9.64046 0 0 2.31597e+06 4785.06 0.53 0.76 0.31 -1 -1 0.53 0.488917 0.443615 2580 2833 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml blob_merge.v common 89.76 parmys 291.04 MiB -1 -1 15.38 298020 7 11.99 -1 -1 57968 -1 -1 566 36 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 163404 36 100 6840 6940 1 3200 702 30 30 900 clb auto 85.5 MiB 4.42 44186 278204 76945 183206 18053 122.5 MiB 4.81 0.05 5.85686 -2192.32 -5.85686 5.85686 2.38 0.0180181 0.0160503 1.85784 1.60892 68 71187 28 4.8774e+07 3.0504e+07 4.08678e+06 4540.87 35.59 8.94537 7.61686 104936 820930 -1 63255 15 15176 68305 3028418 384879 6.04948 6.04948 -2275.21 -6.04948 0 0 5.07014e+06 5633.48 1.15 1.64 0.67 -1 -1 1.15 0.867118 0.785571 4872 6243 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml boundtop.v common 19.71 vpr 67.77 MiB -1 -1 12.00 31536 4 0.23 -1 -1 34556 -1 -1 42 195 1 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69400 195 193 1088 1281 1 593 431 15 15 225 io auto 29.8 MiB 0.40 2789 140353 37684 89836 12833 67.8 MiB 0.68 0.01 2.5026 -1068.95 -2.5026 2.5026 0.45 0.0035004 0.00326724 0.318219 0.29679 42 5940 17 1.03862e+07 2.81155e+06 589524. 2620.11 3.76 1.43455 1.31489 21486 116796 -1 5209 12 1582 2286 164748 45289 2.70224 2.70224 -1159.85 -2.70224 -0.575265 -0.201936 739091. 3284.85 0.16 0.16 0.11 -1 -1 0.16 0.112943 0.105183 347 531 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.90 vpr 64.06 MiB -1 -1 0.34 18776 3 0.09 -1 -1 33160 -1 -1 68 99 1 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65600 99 130 343 473 1 225 298 12 12 144 clb auto 25.6 MiB 0.15 593 66963 19571 35031 12361 64.1 MiB 0.23 0.00 1.865 -117.456 -1.865 1.865 0.27 0.00127756 0.00120824 0.0904413 0.0855813 42 1503 16 5.66058e+06 4.21279e+06 345702. 2400.71 1.53 0.430255 0.394458 12810 66778 -1 1212 8 350 556 27894 7863 2.02345 2.02345 -142.963 -2.02345 -0.458472 -0.106489 434679. 3018.61 0.09 0.04 0.07 -1 -1 0.09 0.0281257 0.026127 144 154 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml diffeq1.v common 11.92 vpr 67.45 MiB -1 -1 0.54 23452 15 0.32 -1 -1 34120 -1 -1 36 162 0 5 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69068 162 96 994 935 1 694 299 16 16 256 mult_36 auto 29.4 MiB 0.28 5022 91208 31929 52152 7127 67.4 MiB 0.66 0.01 21.1771 -1637.49 -21.1771 21.1771 0.51 0.0034124 0.00320223 0.331093 0.310751 56 12767 47 1.21132e+07 3.92018e+06 870502. 3400.40 6.96 1.28868 1.18762 26504 172068 -1 9174 19 3073 5862 965990 269588 22.2519 22.2519 -1734.32 -22.2519 0 0 1.11200e+06 4343.75 0.24 0.38 0.17 -1 -1 0.24 0.15888 0.147497 337 479 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml diffeq2.v common 12.80 vpr 65.55 MiB -1 -1 0.20 22176 16 0.24 -1 -1 33572 -1 -1 27 66 0 5 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67124 66 96 610 551 1 452 194 16 16 256 mult_36 auto 27.3 MiB 0.30 3491 41708 11675 25394 4639 65.6 MiB 0.36 0.01 16.8255 -937.879 -16.8255 16.8255 0.51 0.00238587 0.00225299 0.189255 0.178809 50 9637 45 1.21132e+07 3.43514e+06 780512. 3048.87 8.84 1.16511 1.07001 25484 153448 -1 7566 22 3118 6840 1168639 359265 17.7302 17.7302 -1031.17 -17.7302 0 0 1.00276e+06 3917.05 0.21 0.38 0.14 -1 -1 0.21 0.120297 0.111441 235 288 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v common 81.17 vpr 332.60 MiB -1 -1 13.40 124716 5 3.43 -1 -1 56692 -1 -1 460 506 47 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 340580 506 553 3055 3608 1 2790 1566 50 50 2500 memory auto 52.9 MiB 4.44 15016 1146906 560934 403027 182945 332.6 MiB 5.64 0.06 7.02534 -1950.88 -7.02534 7.02534 18.86 0.0232393 0.0210229 3.05303 2.74244 38 22534 14 1.47946e+08 5.05479e+07 6.86584e+06 2746.33 17.59 8.34828 7.5787 251304 1421084 -1 21732 15 3907 5076 1040584 239224 7.06661 7.06661 -2232.41 -7.06661 -3.54638 -0.295467 8.69095e+06 3476.38 2.71 1.06 1.22 -1 -1 2.71 0.855401 0.790478 953 1207 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkPktMerge.v common 20.83 vpr 75.12 MiB -1 -1 1.22 25852 2 0.36 -1 -1 33772 -1 -1 27 311 15 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76920 311 156 972 1128 1 953 509 28 28 784 memory auto 30.4 MiB 0.49 9059 189392 67096 112947 9349 71.6 MiB 1.08 0.02 4.05723 -4390.2 -4.05723 4.05723 1.83 0.00563434 0.00500276 0.552809 0.49016 48 14303 15 4.25198e+07 9.67514e+06 2.50616e+06 3196.63 10.09 2.37376 2.1062 80602 506684 -1 13827 14 2506 2832 619608 160214 4.25681 4.25681 -4915.31 -4.25681 -18.6727 -0.360359 3.20999e+06 4094.38 0.77 0.33 0.43 -1 -1 0.77 0.195921 0.177483 109 186 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v common 26.49 vpr 76.90 MiB -1 -1 6.16 54304 7 2.23 -1 -1 39368 -1 -1 153 193 5 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78748 193 205 2152 2357 1 1161 556 20 20 400 memory auto 39.4 MiB 1.52 8858 231341 79266 127842 24233 76.9 MiB 1.59 0.02 4.96605 -2953.62 -4.96605 4.96605 0.81 0.00676456 0.00610519 0.727478 0.653919 50 16222 33 2.07112e+07 1.09858e+07 1.26944e+06 3173.59 9.27 2.9981 2.67772 40848 252947 -1 14533 15 4363 10859 617682 132576 4.91884 4.91884 -3085.46 -4.91884 -7.99782 -0.340786 1.63222e+06 4080.54 0.37 0.42 0.23 -1 -1 0.37 0.267345 0.244193 947 1174 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml or1200.v common 57.25 vpr 106.50 MiB -1 -1 5.56 66516 27 4.10 -1 -1 41788 -1 -1 251 385 2 1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 109052 385 394 3884 4215 1 2355 1033 27 27 729 io auto 55.4 MiB 3.25 30389 543809 195671 324050 24088 92.4 MiB 4.43 0.05 14.2915 -14497.5 -14.2915 14.2915 1.78 0.0159307 0.0147229 1.73485 1.59441 76 49108 37 3.93038e+07 1.50194e+07 3.58343e+06 4915.54 28.21 6.60013 6.08071 88945 732515 -1 44455 16 10274 35988 2241978 383269 14.6402 14.6402 -15147.4 -14.6402 0 0 4.48127e+06 6147.14 1.14 1.23 0.62 -1 -1 1.14 0.658728 0.615958 2220 2704 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml raygentop.v common 27.43 vpr 78.75 MiB -1 -1 4.42 44676 8 1.07 -1 -1 37480 -1 -1 116 235 1 6 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80640 235 305 2594 2755 1 1443 663 19 19 361 io auto 41.4 MiB 1.93 11469 249117 81672 155282 12163 78.8 MiB 1.77 0.02 5.02261 -2656.49 -5.02261 5.02261 0.76 0.0080707 0.00746005 0.743191 0.684756 62 23379 36 1.72706e+07 9.1757e+06 1.42202e+06 3939.11 12.37 3.57352 3.25894 39599 281069 -1 19716 13 5626 15462 1415752 327524 5.02806 5.02806 -2816.27 -5.02806 -1.25369 -0.0304031 1.76637e+06 4892.99 0.44 0.61 0.25 -1 -1 0.44 0.300482 0.280819 1038 1294 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml sha.v common 16.37 vpr 79.59 MiB -1 -1 2.93 46276 21 2.14 -1 -1 41028 -1 -1 149 38 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81500 38 36 2570 2606 1 1074 223 17 17 289 clb auto 42.3 MiB 1.33 9358 36727 8203 26236 2288 79.6 MiB 0.70 0.01 13.9422 -2847.26 -13.9422 13.9422 0.59 0.0057032 0.00504453 0.365255 0.3232 46 17017 35 1.34605e+07 8.03021e+06 830882. 2875.03 4.35 1.59721 1.3833 28231 166010 -1 14224 16 4373 13089 440600 78841 14.6248 14.6248 -3199.06 -14.6248 0 0 1.06831e+06 3696.59 0.23 0.41 0.15 -1 -1 0.23 0.273543 0.245358 1458 1647 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision0.v common 120.06 vpr 211.45 MiB -1 -1 12.46 118612 5 38.23 -1 -1 65512 -1 -1 744 169 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 216520 169 197 21166 21363 1 7142 1110 34 34 1156 clb auto 148.3 MiB 8.67 45861 598590 201276 373880 23434 180.8 MiB 8.20 0.08 3.51874 -13718.2 -3.51874 3.51874 3.18 0.0315804 0.0269482 3.60117 3.03896 50 72032 40 6.50233e+07 4.00974e+07 3.91608e+06 3387.61 29.88 11.7812 9.90136 122504 796036 -1 63680 13 19399 32912 1202068 232349 3.99587 3.99587 -14950.3 -3.99587 0 0 5.04415e+06 4363.45 1.17 1.65 0.64 -1 -1 1.17 1.41413 1.26102 7006 9660 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision1.v common 149.64 vpr 255.67 MiB -1 -1 13.28 133600 6 15.86 -1 -1 68812 -1 -1 757 113 0 44 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 261808 113 145 21669 19534 1 9921 1059 40 40 1600 mult_36 auto 151.3 MiB 8.85 84857 572929 187668 359255 26006 218.2 MiB 9.69 0.10 5.28341 -22594.6 -5.28341 5.28341 4.27 0.0329171 0.0273991 3.78077 3.17952 78 133452 45 9.16046e+07 5.82227e+07 8.23230e+06 5145.19 72.58 15.4019 13.0152 199776 1720042 -1 120901 15 32194 54580 8831164 1886670 5.47538 5.47538 -24275.7 -5.47538 0 0 1.04203e+07 6512.68 2.53 3.33 1.44 -1 -1 2.53 1.5499 1.3837 7327 9014 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision2.v common 635.75 vpr 996.02 MiB -1 -1 36.83 328740 16 70.21 -1 -1 133104 -1 -1 1876 149 0 179 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1019928 149 182 46661 38947 1 28355 2386 80 80 6400 mult_36 auto 328.4 MiB 30.28 389491 1882952 686590 1144232 52130 996.0 MiB 38.45 0.31 16.4918 -53244.5 -16.4918 16.4918 52.21 0.0935859 0.0784214 11.9317 10.1222 104 510700 36 3.90281e+08 1.71987e+08 4.40397e+07 6881.20 320.76 47.4113 40.4603 922180 9498422 -1 485911 15 96178 161941 21019070 3995106 16.9093 16.9093 -58249.2 -16.9093 0 0 5.58521e+07 8726.89 15.76 8.57 8.77 -1 -1 15.76 3.90485 3.48743 17801 23404 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision3.v common 3.68 vpr 61.75 MiB -1 -1 0.66 22116 5 0.56 -1 -1 33120 -1 -1 7 10 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63228 10 2 181 183 1 37 19 6 6 36 clb auto 23.3 MiB 0.07 141 69 24 38 7 61.7 MiB 0.01 0.00 2.09635 -88.5998 -2.09635 2.09635 0.03 0.000440273 0.000400129 0.00344373 0.00327563 22 153 8 646728 377258 38051.9 1057.00 0.22 0.0706388 0.0596697 2252 6684 -1 146 6 59 78 1250 509 1.9813 1.9813 -92.4243 -1.9813 0 0 48335.4 1342.65 0.01 0.02 0.01 -1 -1 0.01 0.0110679 0.0100532 52 90 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml LU8PEEng.v common 380.28 vpr 447.63 MiB -1 -1 63.14 330592 122 52.12 -1 -1 78388 -1 -1 1335 114 45 8 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 458376 114 102 21867 21777 1 11032 1604 50 50 2500 memory auto 204.8 MiB 23.62 152279 1043339 380268 642201 20870 447.6 MiB 21.42 0.17 78.4204 -50987.4 -78.4204 78.4204 18.09 0.0559181 0.0485358 7.05789 5.89715 92 227942 22 1.47946e+08 9.97789e+07 1.52089e+07 6083.58 157.66 24.3402 20.3808 338772 3221652 -1 206756 21 42610 166663 10460851 1877538 80.03 80.03 -60801.1 -80.03 -37.6276 -0.296573 1.93279e+07 7731.17 5.48 5.23 2.85 -1 -1 5.48 3.20026 2.7896 12499 14107 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml LU32PEEng.v common 3075.17 vpr 1.51 GiB -1 -1 189.96 982752 123 549.53 -1 -1 232976 -1 -1 4468 114 168 32 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1579944 114 102 72376 71710 1 37280 4884 92 92 8464 memory auto 646.1 MiB 89.95 732413 5099544 2065394 2999776 34374 1453.7 MiB 162.73 1.10 79.8891 -312568 -79.8891 79.8891 75.41 0.228722 0.186131 29.8829 24.2673 120 983849 32 5.19428e+08 3.45512e+08 6.67849e+07 7890.46 1835.24 97.1313 79.4348 1305538 14414463 -1 910412 19 138241 602112 42567703 7206155 81.5412 81.5412 -447020 -81.5412 -28.0615 -0.217744 8.37475e+07 9894.55 29.95 24.32 13.39 -1 -1 29.95 11.7864 10.1246 42353 47014 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mcml.v common 4265.25 vpr 1.57 GiB -1 -1 492.00 1362020 63 2913.81 -1 -1 353612 -1 -1 4799 36 159 27 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1648392 36 356 125109 123894 1 31753 5377 92 92 8464 memory auto 846.0 MiB 59.60 392580 6126557 2461082 3596228 69247 1609.8 MiB 109.27 0.81 61.5857 -306901 -61.5857 61.5857 68.45 0.226264 0.194004 31.9559 26.766 76 562122 45 5.19428e+08 3.56438e+08 4.44025e+07 5246.05 459.61 107.258 89.1941 1060110 9229922 -1 526565 19 113526 355232 24122936 4589796 63.0032 63.0032 -372579 -63.0032 -0.368789 -0.0921972 5.54969e+07 6556.82 16.04 18.01 7.95 -1 -1 16.04 12.4825 10.8292 46698 73839 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor/config/golden_results.txt index d245ed79bf2..75973eec4cc 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor/config/golden_results.txt @@ -1,21 +1,21 @@ -arch circuit script_params vtr_flow_elapsed_time error odin_synth_time max_odin_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_time placed_wirelength_est 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_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_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -k6_frac_N10_mem32K_40nm.xml arm_core.v common 356.83 4.53 128480 25 94.21 -1 -1 70116 -1 -1 979 133 24 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 247996 133 179 17305 17484 1 8665 1315 39 39 1521 clb auto 17.18 141361 23.52 0.18 16.6835 -152417 -16.6835 16.6835 5.58 0.0524786 0.0465874 7.33731 6.20856 106 203023 32 8.65315e+07 6.59154e+07 1.02796e+07 6758.45 140.17 25.4972 22.0345 183893 17 36068 136455 30169818 7067245 18.9861 18.9861 -166921 -18.9861 0 0 1.30216e+07 8561.22 4.73 10.76 2.98048 2.69302 9206 12062 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml bgm.v common 907.48 54.14 380336 22 487.77 -1 -1 156164 -1 -1 2624 257 0 11 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 613860 257 32 32168 31683 1 18612 2924 62 62 3844 clb auto 45.68 246219 75.84 0.59 15.0101 -22015.9 -15.0101 15.0101 39.91 0.114265 0.0979551 13.843 12.0233 76 389448 28 2.30929e+08 1.45776e+08 1.99380e+07 5186.80 128.31 41.5613 36.4763 368061 19 98103 447192 25878852 4108900 17.6559 17.6559 -25160.6 -17.6559 0 0 2.49294e+07 6485.27 8.99 13.49 6.78003 6.1553 23841 26295 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml blob_merge.v common 170.45 1.14 63304 18 106.96 -1 -1 71428 -1 -1 572 36 0 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 115488 36 100 6600 6700 1 2804 708 30 30 900 clb auto 6.56 45694 7.85 0.06 8.87513 -2477.07 -8.87513 8.87513 2.93 0.0224755 0.0205609 2.88822 2.58236 64 70823 35 4.8774e+07 3.08274e+07 3.87092e+06 4301.02 29.65 8.29354 7.44156 65611 14 12583 64672 2970985 387175 10.3373 10.3373 -2797.46 -10.3373 0 0 4.83441e+06 5371.56 1.65 1.80 1.10667 1.02713 4999 5961 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml boundtop.v common 6.80 1.92 47636 2 0.50 -1 -1 41416 -1 -1 82 114 0 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 51536 114 193 455 648 1 312 389 13 13 169 clb auto 0.16 754 0.54 0.00 1.67684 -203.787 -1.67684 1.67684 0.37 0.00122649 0.00113807 0.185488 0.172297 34 2309 32 6.63067e+06 4.41931e+06 352978. 2088.63 0.91 0.40893 0.382567 1895 14 796 1080 88394 27968 2.35173 2.35173 -263.176 -2.35173 0 0 434699. 2572.18 0.13 0.07 0.0431658 0.0409262 181 175 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 2.86 0.09 9844 3 0.29 -1 -1 37572 -1 -1 65 99 1 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 38472 99 130 363 493 1 251 295 12 12 144 clb auto 0.12 605 0.35 0.00 2.08915 -200.578 -2.08915 2.08915 0.29 0.000613685 0.000558259 0.107587 0.0981945 40 1472 11 5.66058e+06 4.05111e+06 333335. 2314.82 0.67 0.254211 0.23421 1328 8 606 783 65360 21967 2.65439 2.65439 -236.142 -2.65439 0 0 419432. 2912.72 0.11 0.04 0.0219569 0.020869 132 124 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml diffeq1.v common 10.20 0.07 9964 15 0.42 -1 -1 39788 -1 -1 36 162 0 5 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 57700 162 96 999 932 1 693 299 16 16 256 mult_36 auto 0.38 5304 0.93 0.01 19.7038 -1798.95 -19.7038 19.7038 0.66 0.00333179 0.00311154 0.481119 0.452465 50 11871 38 1.21132e+07 3.92018e+06 780512. 3048.87 5.37 1.46677 1.38886 9626 16 2981 5809 1451038 374154 22.7334 22.7334 -2024.41 -22.7334 0 0 1.00276e+06 3917.05 0.28 0.43 0.151544 0.145403 342 474 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml diffeq2.v common 10.80 0.05 8800 14 0.31 -1 -1 38436 -1 -1 29 66 0 7 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 45112 66 96 719 590 1 525 198 18 18 324 mult_36 auto 0.31 4790 0.76 0.01 15.3213 -871.24 -15.3213 15.3213 0.87 0.00294721 0.00281999 0.444336 0.423821 38 11682 25 1.57076e+07 4.33493e+06 803540. 2480.06 5.84 1.28812 1.23303 9918 19 2890 6341 2431166 578423 18.1641 18.1641 -1024.59 -18.1641 0 0 1.01953e+06 3146.70 0.33 0.62 0.160831 0.155289 246 323 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v common 85.42 2.29 71680 5 9.46 -1 -1 56108 -1 -1 456 506 47 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 296628 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 4.26 13844 7.27 0.05 5.95267 -1737.1 -5.95267 5.95267 24.59 0.0179712 0.016073 3.73709 3.39129 38 21834 15 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 18.12 8.18616 7.55802 20620 16 4027 5047 3622996 886535 6.85724 6.85724 -2206.18 -6.85724 -7.78106 -0.293253 8.69095e+06 3476.38 3.35 1.60 0.869681 0.825424 1053 407 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml mkPktMerge.v common 16.94 0.28 16912 2 0.12 -1 -1 38892 -1 -1 27 311 15 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 56156 311 156 972 1128 1 953 509 28 28 784 memory auto 0.58 7827 1.35 0.01 3.90797 -4026.08 -3.90797 3.90797 2.58 0.00443703 0.00397258 0.641984 0.568996 36 14479 14 4.25198e+07 9.67514e+06 1.94918e+06 2486.20 6.65 1.79069 1.62622 13472 13 2891 3230 2215365 647096 4.52093 4.52093 -4789.05 -4.52093 -25.8456 -0.339827 2.40571e+06 3068.51 0.84 0.66 0.172252 0.160874 109 172 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v common 21.43 0.70 30616 7 3.86 -1 -1 42932 -1 -1 170 193 5 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 68484 193 205 2232 2437 1 1192 573 20 20 400 memory auto 1.71 8897 2.71 0.02 4.45635 -2582.59 -4.45635 4.45635 1.19 0.00575493 0.00507686 1.12145 1.00627 50 16509 33 2.07112e+07 1.1902e+07 1.26944e+06 3173.59 6.63 2.95641 2.6932 14652 14 4258 10254 923060 226299 5.19652 5.19652 -3027.67 -5.19652 -5.64945 -0.341744 1.63222e+06 4080.54 0.60 0.50 0.302451 0.28578 992 1183 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml or1200.v common 68.80 1.15 41372 27 7.32 -1 -1 47644 -1 -1 254 385 2 1 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 85664 385 394 3979 4310 1 2380 1036 27 27 729 io auto 4.16 32239 6.23 0.05 13.0151 -11494.2 -13.0151 13.0151 2.48 0.0139512 0.0129079 2.10596 1.94083 76 53278 33 3.93038e+07 1.51811e+07 3.58343e+06 4915.54 37.21 6.40964 5.93114 47028 16 10623 38195 3911075 744236 14.7237 14.7237 -13187.9 -14.7237 0 0 4.48127e+06 6147.14 1.58 1.69 0.76117 0.719716 2290 2782 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml raygentop.v common 30.15 0.97 33244 8 1.98 -1 -1 41556 -1 -1 104 214 0 9 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 72012 214 305 2625 2741 1 1440 632 22 22 484 mult_36 auto 2.39 11858 2.26 0.02 4.2149 -2326.88 -4.2149 4.2149 1.51 0.00738184 0.00691764 0.953749 0.884076 50 27613 37 2.50602e+07 9.16898e+06 1.56759e+06 3238.82 15.26 3.10507 2.9031 21526 18 6421 14585 3598061 779432 4.73537 4.73537 -3011.83 -4.73537 0 0 2.01671e+06 4166.75 0.64 1.05 0.379925 0.361558 907 1153 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml sha.v common 1045.54 1.76 39224 20 1013.95 -1 -1 100324 -1 -1 208 38 0 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 71576 38 36 3404 3440 1 1290 282 19 19 361 clb auto 2.55 13833 2.21 0.02 11.3756 -4060.62 -11.3756 11.3756 1.00 0.00772605 0.00693281 1.00266 0.893237 56 23225 39 1.72706e+07 1.121e+07 1.27879e+06 3542.35 12.79 3.41097 3.0541 20487 17 5327 19874 693200 118538 13.9599 13.9599 -4596.68 -13.9599 0 0 1.63234e+06 4521.70 0.45 0.59 0.434657 0.40348 2026 2480 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml stereovision0.v common 200.24 5.04 126968 5 123.12 -1 -1 78852 -1 -1 744 157 0 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 188068 157 197 21024 21221 1 6987 1098 34 34 1156 clb auto 9.94 46419 11.25 0.09 2.82568 -12604 -2.82568 2.82568 3.93 0.0359157 0.0323 5.00958 4.36027 52 73212 43 6.50233e+07 4.00974e+07 4.04437e+06 3498.59 26.08 14.975 13.239 65366 14 19246 32302 1362296 259411 3.20194 3.20194 -14793.7 -3.20194 0 0 5.32397e+06 4605.51 1.77 2.09 1.93927 1.79987 6997 9532 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml stereovision1.v common 253.38 5.97 113348 6 65.13 -1 -1 82460 -1 -1 761 113 0 44 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 228140 113 145 21818 19683 1 9787 1063 40 40 1600 mult_36 auto 11.85 85270 16.97 0.14 5.22041 -22246.3 -5.22041 5.22041 5.96 0.0439101 0.0381828 6.44025 5.64155 80 133607 44 9.16046e+07 5.84383e+07 8.41679e+06 5260.49 116.08 22.9748 20.5071 121434 14 30149 50085 21046263 4281969 5.57068 5.57068 -25174.1 -5.57068 0 0 1.06125e+07 6632.80 3.39 6.55 2.12998 1.98707 7407 9170 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml stereovision2.v common 1140.00 8.25 173304 17 409.45 -1 -1 191912 -1 -1 2285 149 0 324 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 1443728 149 182 57159 46739 1 35655 2940 104 104 10816 mult_36 auto 42.20 451074 88.37 0.52 17.6426 -61785.4 -17.6426 17.6426 123.96 0.178836 0.158806 24.6857 22.0895 70 613267 31 6.67561e+08 2.51439e+08 5.35869e+07 4954.41 329.67 65.7059 59.3661 571390 14 120311 203530 42045578 8585896 19.4369 19.4369 -72495.7 -19.4369 0 0 6.74310e+07 6234.38 29.09 17.24 7.8477 7.30142 21927 28492 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml stereovision3.v common 1.58 0.11 10312 4 0.14 -1 -1 36968 -1 -1 13 11 0 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 38000 11 30 262 292 2 110 54 7 7 49 clb auto 0.13 348 0.09 0.00 2.24517 -154.275 -2.24517 2.08568 0.06 0.000443774 0.000379 0.0511289 0.0431404 30 985 35 1.07788e+06 700622 77118.5 1573.85 0.23 0.135204 0.116472 718 11 379 582 25764 8842 2.56549 2.31105 -184.613 -2.56549 0 0 95414.1 1947.23 0.02 0.03 0.0206663 0.0190706 100 149 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml LU8PEEng.v common 983.62 59.33 219908 129 336.03 -1 -1 100224 -1 -1 2010 114 44 8 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 491412 114 102 29578 29304 1 15347 2278 54 54 2916 clb auto 41.63 221461 60.72 0.41 71.8736 -53930.2 -71.8736 71.8736 29.91 0.102008 0.0921139 13.6923 11.7851 92 336935 48 1.70873e+08 1.35611e+08 1.77525e+07 6087.96 388.93 50.0433 43.4045 303826 18 61022 244114 36691481 7210279 81.5132 81.5132 -67282.9 -81.5132 -13.076 -0.172573 2.25674e+07 7739.16 8.53 14.90 5.76102 5.17594 18822 21469 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml LU32PEEng.v common 8261.45 448.15 736700 128 1525.66 -1 -1 345032 -1 -1 7148 114 167 32 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 1821492 114 102 102506 101104 1 53933 7563 100 100 10000 clb auto 164.09 1071446 532.16 3.11 70.431 -335083 -70.431 70.431 118.46 0.451281 0.407586 63.5451 55.0881 130 1413041 49 6.13558e+08 4.89384e+08 8.42269e+07 8422.69 5136.10 199.176 173.187 1339131 17 201056 864744 264365622 66736099 80.9022 80.9022 -471894 -80.9022 -18.7674 -0.174787 1.06720e+08 10672.0 48.41 118.69 21.8496 19.6586 67544 75921 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml mcml.v common 8853.80 155.92 926496 76 7380.31 -1 -1 453340 -1 -1 5494 36 159 27 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 1717016 36 356 134771 133552 1 39984 6072 92 92 8464 memory auto 85.06 480881 227.08 1.45 62.1424 -304109 -62.1424 62.1424 95.39 0.301798 0.268738 46.8079 40.4527 88 677655 26 5.19428e+08 3.9389e+08 5.06236e+07 5981.05 680.92 178.329 155.451 638523 21 146069 445993 93322071 22865752 68.3048 68.3048 -386433 -68.3048 -0.0372486 -0.0372486 6.34899e+07 7501.17 24.37 44.52 19.4919 17.6965 53220 83081 -1 -1 -1 -1 +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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_mem32K_40nm.xml arm_core.v common 331.03 vpr 352.79 MiB 3.43 127948 -1 -1 25 78.58 -1 -1 67016 -1 -1 988 133 24 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 361256 133 179 17481 17660 1 8826 1324 39 39 1521 clb auto 160.6 MiB 14.98 140724 706223 235986 453985 16252 217.7 MiB 15.98 0.16 18.2294 -157339 -18.2294 18.2294 4.31 0.0518175 0.0450103 5.48347 4.5904 110 202350 37 8.65315e+07 6.64005e+07 1.06449e+07 6998.62 154.54 29.2861 24.3174 222560 2289922 -1 184414 17 36765 135743 9204794 1475613 18.3923 18.3923 -165829 -18.3923 0 0 1.35876e+07 8933.31 4.13 5.35 2.21 -1 -1 4.13 2.69475 2.35321 9278 12238 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml bgm.v common 834.05 vpr 642.73 MiB 23.14 379732 -1 -1 22 502.09 -1 -1 153948 -1 -1 2620 257 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 658156 257 32 32041 31556 1 18456 2920 62 62 3844 clb auto 318.0 MiB 41.01 237680 2068258 732418 1306840 29000 642.7 MiB 52.35 0.51 16.8851 -24027.9 -16.8851 16.8851 30.42 0.115204 0.102624 10.9878 9.29095 76 374916 33 2.30929e+08 1.45561e+08 1.99380e+07 5186.80 105.35 34.5012 28.95 479924 4133688 -1 358354 22 104865 494561 21718506 3219817 17.2566 17.2566 -24604.3 -17.2566 0 0 2.49294e+07 6485.27 7.37 12.59 3.80 -1 -1 7.37 5.77228 5.01962 23873 26169 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml blob_merge.v common 149.69 vpr 160.30 MiB 0.45 62840 -1 -1 18 81.57 -1 -1 65724 -1 -1 572 36 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 164148 36 100 6600 6700 1 2804 708 30 30 900 clb auto 85.7 MiB 5.72 45721 268798 80554 171964 16280 124.6 MiB 4.99 0.05 10.4727 -2786.41 -10.4727 10.4727 2.75 0.0200331 0.0180885 1.99302 1.75483 70 68828 17 4.8774e+07 3.08274e+07 4.18297e+06 4647.75 38.18 9.47628 8.14735 106732 854442 -1 63223 13 11344 57272 2422333 307988 10.6677 10.6677 -2866.66 -10.6677 0 0 5.26086e+06 5845.40 1.45 1.65 0.78 -1 -1 1.45 0.939592 0.842842 4998 5998 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml boundtop.v common 8.26 vpr 65.03 MiB 0.87 47140 -1 -1 2 0.48 -1 -1 36316 -1 -1 82 114 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66588 114 193 455 648 1 312 389 13 13 169 clb auto 26.7 MiB 0.17 802 108233 33568 56261 18404 65.0 MiB 0.37 0.01 1.88794 -246.251 -1.88794 1.88794 0.33 0.00186092 0.00175937 0.151895 0.144031 38 2149 23 6.63067e+06 4.41931e+06 384612. 2275.81 2.35 0.759072 0.705262 14836 75665 -1 1790 9 702 874 53242 16399 2.21419 2.21419 -266.429 -2.21419 0 0 489150. 2894.38 0.11 0.07 0.05 -1 -1 0.11 0.0449638 0.0422049 181 244 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.24 vpr 64.18 MiB 0.08 9412 -1 -1 3 0.26 -1 -1 34484 -1 -1 65 99 1 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65720 99 130 363 493 1 251 295 12 12 144 clb auto 25.7 MiB 0.14 615 70927 24796 34921 11210 64.2 MiB 0.27 0.00 2.43858 -230.023 -2.43858 2.43858 0.28 0.00133288 0.00126041 0.10648 0.100689 38 1593 12 5.66058e+06 4.05111e+06 319130. 2216.18 0.75 0.28798 0.266074 12522 62564 -1 1357 10 588 758 45873 15482 2.77005 2.77005 -247.51 -2.77005 0 0 406292. 2821.48 0.09 0.06 0.07 -1 -1 0.09 0.0352687 0.0327216 132 185 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml diffeq1.v common 12.61 vpr 67.94 MiB 0.04 9420 -1 -1 15 0.36 -1 -1 34508 -1 -1 36 162 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69568 162 96 999 932 1 693 299 16 16 256 mult_36 auto 29.7 MiB 0.32 5381 78221 22147 49025 7049 67.9 MiB 0.60 0.01 21.4844 -2025.35 -21.4844 21.4844 0.53 0.00353138 0.0033285 0.301629 0.284379 44 12717 48 1.21132e+07 3.92018e+06 694168. 2711.59 8.17 1.49032 1.3807 24716 140770 -1 9997 17 3154 6105 1107735 286105 23.0758 23.0758 -2167.57 -23.0758 0 0 904549. 3533.39 0.21 0.42 0.15 -1 -1 0.21 0.161785 0.151298 342 476 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml diffeq2.v common 10.98 vpr 66.47 MiB 0.05 8452 -1 -1 14 0.26 -1 -1 34060 -1 -1 29 66 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68068 66 96 719 590 1 525 198 18 18 324 mult_36 auto 28.1 MiB 0.29 5003 39366 11098 23162 5106 66.5 MiB 0.41 0.01 16.8905 -942.556 -16.8905 16.8905 0.73 0.00301361 0.00286023 0.22651 0.214985 38 12494 26 1.57076e+07 4.33493e+06 803540. 2480.06 6.42 0.981565 0.914309 30672 162320 -1 10651 21 3296 7276 1937647 456823 18.2599 18.2599 -1031.83 -18.2599 0 0 1.01953e+06 3146.70 0.24 0.52 0.14 -1 -1 0.24 0.144996 0.1356 246 325 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v common 80.02 vpr 338.64 MiB 1.61 71288 -1 -1 5 7.54 -1 -1 52624 -1 -1 456 506 47 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 346764 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 54.8 MiB 4.49 16772 1188291 579108 420547 188636 338.6 MiB 5.69 0.06 7.52336 -2007.99 -7.52336 7.52336 23.49 0.0247799 0.021684 3.03556 2.72709 38 24770 15 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 17.69 8.44692 7.67987 251304 1421084 -1 23797 13 3936 5034 1179459 257068 7.60219 7.60219 -2349.3 -7.60219 -1.49842 -0.293253 8.69095e+06 3476.38 2.81 1.06 1.31 -1 -1 2.81 0.802173 0.741757 1053 1437 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkPktMerge.v common 14.00 vpr 70.31 MiB 0.20 16576 -1 -1 2 0.14 -1 -1 33656 -1 -1 27 311 15 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71996 311 156 972 1128 1 953 509 28 28 784 memory auto 31.5 MiB 0.54 8998 209702 77254 122184 10264 70.0 MiB 1.20 0.01 4.23256 -4357.58 -4.23256 4.23256 1.74 0.00578529 0.00514134 0.613363 0.542316 34 15374 23 4.25198e+07 9.67514e+06 1.87146e+06 2387.06 5.14 1.67421 1.48375 73554 370855 -1 14843 14 2937 3374 932174 243500 4.54085 4.54085 -4981.61 -4.54085 -15.5516 -0.360359 2.30233e+06 2936.64 0.67 0.41 0.33 -1 -1 0.67 0.199913 0.180477 109 186 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v common 18.14 vpr 77.63 MiB 0.50 30084 -1 -1 7 2.85 -1 -1 37852 -1 -1 170 193 5 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79492 193 205 2232 2437 1 1192 573 20 20 400 memory auto 39.9 MiB 1.49 8958 236094 85720 123986 26388 77.6 MiB 1.67 0.02 5.12011 -2815.76 -5.12011 5.12011 0.89 0.00726935 0.00659979 0.763734 0.688995 50 16307 23 2.07112e+07 1.1902e+07 1.26944e+06 3173.59 5.90 2.5021 2.24176 40848 252947 -1 14634 15 4267 10491 604217 130042 5.25995 5.25995 -2915.81 -5.25995 -12.1755 -0.298787 1.63222e+06 4080.54 0.46 0.53 0.25 -1 -1 0.46 0.337866 0.309025 992 1253 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml or1200.v common 55.31 vpr 101.43 MiB 1.03 40752 -1 -1 27 5.19 -1 -1 44020 -1 -1 254 385 2 1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103864 385 394 3979 4310 1 2380 1036 27 27 729 io auto 56.5 MiB 3.53 31438 582676 229985 327813 24878 93.6 MiB 5.87 0.06 14.464 -12679.1 -14.464 14.464 1.81 0.0168583 0.0157323 2.41927 2.20794 76 50667 30 3.93038e+07 1.51811e+07 3.58343e+06 4915.54 27.31 7.08075 6.47591 88945 732515 -1 45674 16 10220 36828 2287037 394282 15.3034 15.3034 -13648.9 -15.3034 0 0 4.48127e+06 6147.14 1.24 1.53 0.70 -1 -1 1.24 0.858044 0.791872 2290 2795 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml raygentop.v common 26.16 vpr 79.11 MiB 0.41 32740 -1 -1 8 1.64 -1 -1 40644 -1 -1 106 214 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81004 214 305 2625 2741 1 1441 634 22 22 484 mult_36 auto 41.6 MiB 2.15 11423 248336 87263 147895 13178 79.1 MiB 1.73 0.02 4.73175 -2658.82 -4.73175 4.73175 1.10 0.00794985 0.00736927 0.772393 0.712671 50 25512 37 2.50602e+07 9.27676e+06 1.56759e+06 3238.82 12.94 2.89412 2.64456 49974 314245 -1 20927 16 6119 13113 1697035 381019 5.14527 5.14527 -2949.57 -5.14527 0 0 2.01671e+06 4166.75 0.48 0.74 0.29 -1 -1 0.48 0.346163 0.322829 907 1165 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml sha.v common 503.69 abc 94.04 MiB 2.12 38616 -1 -1 20 475.54 -1 -1 96296 -1 -1 208 38 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88068 38 36 3404 3440 1 1290 282 19 19 361 clb auto 49.4 MiB 2.07 14108 53874 12313 38848 2713 86.0 MiB 1.09 0.02 13.6658 -4518.29 -13.6658 13.6658 0.78 0.00784088 0.00699127 0.534724 0.472223 54 26186 50 1.72706e+07 1.121e+07 1.22727e+06 3399.63 11.93 3.64687 3.17142 37799 249493 -1 20591 17 5434 21477 772432 128368 13.843 13.843 -4808.41 -13.843 0 0 1.59430e+06 4416.33 0.35 0.62 0.22 -1 -1 0.35 0.390672 0.351272 2026 2480 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision0.v common 167.05 vpr 212.49 MiB 2.58 126412 -1 -1 5 96.83 -1 -1 75356 -1 -1 745 157 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 217592 157 197 21024 21221 1 6988 1099 34 34 1156 clb auto 152.1 MiB 8.79 44807 573668 187887 362143 23638 185.6 MiB 8.73 0.08 3.23016 -13484 -3.23016 3.23016 3.21 0.0340955 0.0289256 3.89227 3.2895 52 68288 43 6.50233e+07 4.01513e+07 4.04437e+06 3498.59 24.26 13.3846 11.3252 124812 842136 -1 62712 12 17963 29385 1158999 226567 3.50178 3.50178 -14418.4 -3.50178 0 0 5.32397e+06 4605.51 1.49 1.74 0.73 -1 -1 1.49 1.4827 1.34125 6997 9547 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision1.v common 210.63 vpr 317.78 MiB 2.93 112856 -1 -1 6 62.33 -1 -1 78984 -1 -1 761 113 0 44 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 325404 113 145 21818 19683 1 9787 1063 40 40 1600 mult_36 auto 161.4 MiB 10.10 88063 554209 177104 351669 25436 210.4 MiB 10.02 0.10 5.43112 -23845.9 -5.43112 5.43112 5.06 0.0361759 0.03004 3.96947 3.37221 82 138977 49 9.16046e+07 5.84383e+07 8.58300e+06 5364.38 89.59 21.9537 18.6322 202972 1784604 -1 122592 14 30969 51692 7983992 1662976 5.75048 5.75048 -25861.9 -5.75048 0 0 1.07704e+07 6731.50 2.85 3.19 1.54 -1 -1 2.85 1.56655 1.40595 7407 9174 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision2.v common 907.49 vpr 1.54 GiB 3.51 172816 -1 -1 17 351.09 -1 -1 189172 -1 -1 2313 149 0 324 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1613372 149 182 57159 46739 1 35593 2968 104 104 10816 mult_36 auto 417.4 MiB 35.97 429468 2454768 901752 1499417 53599 1575.6 MiB 59.06 0.47 18.4982 -66644.4 -18.4982 18.4982 102.94 0.138497 0.125166 17.3486 15.198 66 594816 32 6.67561e+08 2.52948e+08 5.11340e+07 4727.63 224.31 57.7495 50.3396 1292806 10479811 -1 558221 15 131684 222571 24603768 4821645 18.6952 18.6952 -73343.6 -18.6952 0 0 6.34291e+07 5864.38 22.13 13.17 9.60 -1 -1 22.13 6.61541 5.94981 21954 28576 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision3.v common 2.21 vpr 63.22 MiB 0.10 9832 -1 -1 4 0.18 -1 -1 33236 -1 -1 13 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 11 30 262 292 2 110 54 7 7 49 clb auto 24.6 MiB 0.11 415 1686 329 1303 54 63.2 MiB 0.03 0.00 2.61498 -172.487 -2.61498 2.34958 0.06 0.000815855 0.000737685 0.017643 0.0161388 36 796 16 1.07788e+06 700622 87745.0 1790.71 0.49 0.189632 0.159803 3724 16032 -1 661 10 255 405 14233 4546 2.6932 2.39824 -186.99 -2.6932 0 0 109473. 2234.15 0.02 0.05 0.02 -1 -1 0.02 0.0340739 0.0310888 100 151 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml LU8PEEng.v common 652.58 vpr 611.60 MiB 19.67 218920 -1 -1 127 257.00 -1 -1 94148 -1 -1 2021 114 44 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 626276 114 102 29627 29353 1 15280 2289 54 54 2916 clb auto 286.1 MiB 36.81 219911 1645900 603513 1020506 21881 549.8 MiB 42.36 0.33 79.3023 -53583.5 -79.3023 79.3023 24.27 0.0930451 0.0822899 11.3695 9.58971 94 330134 40 1.70873e+08 1.36203e+08 1.81141e+07 6211.98 208.99 52.6328 43.6476 396616 3818630 -1 300574 22 57657 233002 14871100 2514239 79.0561 79.0561 -64418.9 -79.0561 -22.9917 -0.198467 2.28201e+07 7825.81 6.73 9.62 3.89 -1 -1 6.73 5.44106 4.69858 18928 21550 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml LU32PEEng.v common 4766.16 vpr 2.03 GiB 168.74 735880 -1 -1 127 1188.15 -1 -1 344076 -1 -1 7136 114 167 32 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2124148 114 102 102417 101015 1 54033 7551 100 100 10000 clb auto 959.4 MiB 136.75 1051249 9115455 3831817 5243233 40405 1844.7 MiB 256.46 1.66 79.8219 -338294 -79.8219 79.8219 83.37 0.314738 0.27168 42.4324 35.1761 124 1436425 49 6.13558e+08 4.88737e+08 8.09642e+07 8096.42 2691.86 145.792 120.522 1572434 17705466 -1 1328979 19 203193 875531 61282535 9700369 81.6665 81.6665 -468839 -81.6665 -18.163 -0.29436 1.02582e+08 10258.2 33.34 35.28 17.51 -1 -1 33.34 17.9159 15.4581 67393 75912 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mcml.v common 7696.51 vpr 1.65 GiB 86.67 923648 -1 -1 75 6858.10 -1 -1 447884 -1 -1 5521 36 159 27 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1730316 36 356 135102 133883 1 40236 6099 92 92 8464 memory auto 954.5 MiB 72.43 477761 6968599 2734837 4155159 78603 1680.8 MiB 141.80 1.03 66.039 -311122 -66.039 66.039 71.33 0.264088 0.227664 36.9566 30.8752 82 693411 36 5.19428e+08 3.95345e+08 4.72968e+07 5588.00 277.89 116.952 97.4142 1093962 9944682 -1 639996 18 157403 482541 31373602 5767095 67.4547 67.4547 -366508 -67.4547 -0.130468 -0.0326169 5.93075e+07 7007.03 18.95 21.58 8.77 -1 -1 18.95 14.3408 12.5047 53404 83427 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/golden_results.txt index 67112161c11..2c43b56eb77 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/golden_results.txt @@ -1,3 +1,3 @@ - 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_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_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 1.20 vpr 62.24 MiB -1 -1 0.07 20964 1 0.00 -1 -1 33108 -1 -1 3 9 0 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63732 9 8 75 70 1 35 20 5 5 25 clb auto 23.6 MiB 0.53 86 62.2 MiB 0.00 0.00 2.25119 -23.8925 -2.25119 2.25119 0.02 4.1023e-05 3.1539e-05 0.00122774 0.00111409 34 203 14 151211 75605.7 45067.1 1802.68 0.10 0.0179246 0.0149981 167 11 115 154 5391 2823 2.41865 2.41865 -33.4427 -2.41865 0 0 54748.7 2189.95 0.00 0.01 0.00322286 0.00301138 14 16 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 3.61 vpr 63.33 MiB -1 -1 0.09 21268 1 0.01 -1 -1 33200 -1 -1 9 19 0 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64852 19 18 308 249 1 147 46 6 6 36 clb auto 25.1 MiB 2.32 488 63.3 MiB 0.03 0.00 3.72642 -71.3132 -3.72642 3.72642 0.03 0.000152812 0.000121271 0.0114902 0.00973617 54 1211 26 403230 226817 113905. 3164.04 0.46 0.0908276 0.0791763 883 22 949 1423 57002 21423 5.96246 5.96246 -123.664 -5.96246 0 0 146644. 4073.44 0.01 0.03 0.0171281 0.0157138 63 81 -1 -1 -1 -1 +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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 3.59 vpr 61.01 MiB -1 -1 0.11 16896 1 0.63 -1 -1 29740 -1 -1 3 9 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62476 9 8 75 70 1 37 20 5 5 25 clb auto 22.4 MiB 0.47 82 533 165 363 5 61.0 MiB 0.01 0.00 2.68643 -29.137 -2.68643 2.68643 0.02 0.000188348 0.000174205 0.00474572 0.0044363 26 182 18 151211 75605.7 37105.9 1484.24 0.15 0.0423228 0.0352957 1908 5841 -1 155 11 111 124 5133 2870 2.88739 2.88739 -34.0156 -2.88739 0 0 45067.1 1802.68 0.00 0.01 0.01 -1 -1 0.00 0.00698364 0.00619778 14 18 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 6.04 vpr 62.27 MiB -1 -1 0.19 17208 1 0.64 -1 -1 30124 -1 -1 9 19 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 19 18 308 249 1 147 46 6 6 36 clb auto 23.8 MiB 2.01 502 2916 768 2087 61 62.3 MiB 0.05 0.00 4.80297 -98.0082 -4.80297 4.80297 0.05 0.000629548 0.000584294 0.0259583 0.0242455 48 1077 40 403230 226817 104013. 2889.24 0.79 0.275306 0.234615 3910 18599 -1 770 17 746 1059 42320 17076 4.66916 4.66916 -105.494 -4.66916 0 0 131137. 3642.71 0.01 0.04 0.02 -1 -1 0.01 0.026422 0.0235947 63 83 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt index 3fd4fe85b17..0d6c15dbf02 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt @@ -1,7 +1,7 @@ - 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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 0.80 vpr 65.64 MiB -1 -1 0.05 20132 1 0.01 -1 -1 35492 -1 -1 3 9 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 67216 9 8 75 70 1 37 20 5 5 25 clb auto 27.2 MiB 0.37 87 65.6 MiB 0.00 0.00 2.25879 -24.067 -2.25879 2.25879 0.02 2.8365e-05 2.1278e-05 0.000793206 0.000721571 38 184 14 151211 75605.7 48493.3 1939.73 0.09 0.0133335 0.0110025 2100 8065 -1 153 12 112 136 3959 2021 0 0 3959 2021 136 129 0 0 442 412 0 0 631 559 0 0 137 135 0 0 1357 328 0 0 1256 458 0 0 136 0 0 24 4 23 235 0 0 2.68643 2.68643 -33.1966 -2.68643 0 0 61632.8 2465.31 0.00 0.00 0.00 -1 -1 0.00 0.0023005 0.00214713 14 16 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 4.54 vpr 66.09 MiB -1 -1 0.06 20148 1 0.00 -1 -1 33308 -1 -1 2 11 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 67672 11 10 108 97 1 45 23 4 4 16 clb auto 27.6 MiB 4.13 99 66.1 MiB 0.00 0.00 2.99513 -33.5297 -2.99513 2.99513 0.01 3.8376e-05 2.9951e-05 0.0015057 0.00132617 34 211 26 50403.8 50403.8 21558.4 1347.40 0.05 0.0140163 0.0118251 1020 3049 -1 144 16 139 172 4520 2686 0 0 4520 2686 172 149 0 0 611 547 0 0 873 782 0 0 172 151 0 0 1369 541 0 0 1323 516 0 0 172 0 0 33 30 26 349 0 0 3.42277 3.42277 -45.1479 -3.42277 0 0 26343.3 1646.46 0.00 0.01 0.00 -1 -1 0.00 0.00351111 0.00325521 14 25 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 2.64 vpr 66.34 MiB -1 -1 0.09 20360 1 0.01 -1 -1 33116 -1 -1 4 13 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 67928 13 12 149 129 1 73 29 5 5 25 clb auto 27.9 MiB 1.80 186 66.3 MiB 0.01 0.00 3.20662 -44.3706 -3.20662 3.20662 0.02 5.3265e-05 4.2042e-05 0.00192146 0.00172037 38 359 21 151211 100808 48493.3 1939.73 0.14 0.0261909 0.0222783 2100 8065 -1 355 20 405 583 20015 9844 0 0 20015 9844 583 498 0 0 1879 1764 0 0 3204 2650 0 0 593 545 0 0 6920 2328 0 0 6836 2059 0 0 583 0 0 178 271 163 1783 0 0 4.37604 4.37604 -67.2741 -4.37604 0 0 61632.8 2465.31 0.00 0.01 0.00 -1 -1 0.00 0.0052765 0.00487745 25 36 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 1.95 vpr 66.48 MiB -1 -1 0.06 20280 1 0.00 -1 -1 33480 -1 -1 6 15 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 68080 15 14 196 165 1 95 35 5 5 25 clb auto 28.1 MiB 1.37 279 66.5 MiB 0.01 0.00 3.11103 -51.0846 -3.11103 3.11103 0.02 6.8979e-05 5.5751e-05 0.00344116 0.003024 52 453 15 151211 151211 63348.9 2533.96 0.16 0.0352304 0.0299382 2316 10503 -1 364 17 347 499 18306 8355 0 0 18306 8355 499 399 0 0 1652 1557 0 0 2365 2079 0 0 523 405 0 0 6237 1995 0 0 7030 1920 0 0 499 0 0 152 172 182 1475 0 0 3.91996 3.91996 -70.391 -3.91996 0 0 82390.3 3295.61 0.01 0.01 0.01 -1 -1 0.01 0.00675161 0.0063223 37 49 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 2.38 vpr 66.80 MiB -1 -1 0.06 20404 1 0.00 -1 -1 35664 -1 -1 6 17 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 68404 17 16 251 206 1 122 39 5 5 25 clb auto 28.3 MiB 1.73 403 66.8 MiB 0.01 0.00 3.26818 -62.072 -3.26818 3.26818 0.02 8.7435e-05 7.1081e-05 0.00506313 0.00441863 52 751 31 151211 151211 63348.9 2533.96 0.19 0.0431888 0.0369288 2316 10503 -1 602 18 571 922 30990 13669 0 0 30990 13669 922 668 0 0 2952 2755 0 0 4594 3827 0 0 962 740 0 0 9964 2681 0 0 11596 2998 0 0 922 0 0 351 350 549 3622 0 0 4.58466 4.58466 -97.1505 -4.58466 0 0 82390.3 3295.61 0.01 0.01 0.01 -1 -1 0.01 0.0087006 0.00814138 50 64 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 3.94 vpr 66.96 MiB -1 -1 0.11 20608 1 0.02 -1 -1 33432 -1 -1 9 19 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 68564 19 18 308 249 1 148 46 6 6 36 clb auto 28.9 MiB 1.40 467 67.0 MiB 0.02 0.00 3.86024 -72.0568 -3.86024 3.86024 0.03 0.000105412 8.6704e-05 0.00551129 0.00484581 48 1117 46 403230 226817 104013. 2889.24 0.16 0.0416688 0.0360682 3910 18599 -1 762 20 817 1362 47477 18799 0 0 47477 18799 1362 963 0 0 4283 3912 0 0 6634 5668 0 0 1421 1022 0 0 17522 3558 0 0 16255 3676 0 0 1362 0 0 545 619 734 5532 0 0 5.49372 5.49372 -116.089 -5.49372 0 0 131137. 3642.71 0.01 0.02 0.01 -1 -1 0.01 0.0117573 0.0109032 63 81 -1 -1 -1 -1 +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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.62 vpr 61.70 MiB -1 -1 0.13 16668 1 0.02 -1 -1 29972 -1 -1 3 9 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63180 9 8 75 70 1 37 20 5 5 25 clb auto 23.2 MiB 0.48 95 74 32 40 2 61.7 MiB 0.01 0.00 2.68643 -29.5771 -2.68643 2.68643 0.02 0.000193898 0.000179351 0.00152641 0.00145955 28 196 12 151211 75605.7 38887.3 1555.49 0.15 0.0378608 0.0313115 1932 6055 -1 209 18 175 225 9837 5105 3.11407 3.11407 -40.4298 -3.11407 0 0 46719.2 1868.77 0.00 0.02 0.01 -1 -1 0.00 0.00868436 0.00758208 14 18 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 6.30 vpr 62.16 MiB -1 -1 0.14 17008 1 0.03 -1 -1 30152 -1 -1 2 11 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 11 10 108 97 1 45 23 4 4 16 clb auto 23.7 MiB 5.18 99 407 139 221 47 62.2 MiB 0.01 0.00 3.44595 -41.9644 -3.44595 3.44595 0.01 0.000258109 0.000239425 0.00468244 0.00440828 34 245 29 50403.8 50403.8 21558.4 1347.40 0.14 0.0594086 0.0498622 1020 3049 -1 142 12 173 207 5475 3281 3.42277 3.42277 -45.8589 -3.42277 0 0 26343.3 1646.46 0.00 0.01 0.00 -1 -1 0.00 0.00898942 0.00801169 14 27 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 4.11 vpr 62.27 MiB -1 -1 0.12 17080 1 0.02 -1 -1 30020 -1 -1 4 13 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 13 12 149 129 1 73 29 5 5 25 clb auto 23.7 MiB 2.65 192 381 127 251 3 62.3 MiB 0.01 0.00 3.48998 -53.0292 -3.48998 3.48998 0.02 0.000338674 0.000314303 0.00490093 0.0046428 34 503 31 151211 100808 45067.1 1802.68 0.38 0.116405 0.0970984 2028 7167 -1 407 20 431 625 24178 11392 5.07146 5.07146 -74.1695 -5.07146 0 0 54748.7 2189.95 0.00 0.03 0.01 -1 -1 0.00 0.0158522 0.0139123 25 38 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 3.47 vpr 62.56 MiB -1 -1 0.13 17224 1 0.02 -1 -1 29968 -1 -1 6 15 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 15 14 196 165 1 95 35 5 5 25 clb auto 24.0 MiB 1.88 286 2714 768 1894 52 62.6 MiB 0.04 0.00 3.87456 -65.1837 -3.87456 3.87456 0.02 0.000509721 0.000473947 0.025612 0.0239231 44 581 22 151211 151211 54748.7 2189.95 0.40 0.154659 0.132163 2196 9177 -1 434 20 573 829 28510 12964 3.86328 3.86328 -73.8872 -3.86328 0 0 71025.7 2841.03 0.01 0.03 0.01 -1 -1 0.01 0.0199185 0.0175684 37 51 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 4.20 vpr 62.68 MiB -1 -1 0.15 17364 1 0.03 -1 -1 30268 -1 -1 6 17 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 17 16 251 206 1 122 39 5 5 25 clb auto 24.6 MiB 2.39 416 1887 582 1291 14 62.7 MiB 0.03 0.00 4.05904 -79.8186 -4.05904 4.05904 0.02 0.000532613 0.000494824 0.0181598 0.017006 46 735 41 151211 151211 57775.2 2311.01 0.60 0.221478 0.187165 2220 9391 -1 643 20 796 1230 51124 23938 4.73925 4.73925 -98.8727 -4.73925 0 0 73020.3 2920.81 0.01 0.05 0.01 -1 -1 0.01 0.0244756 0.0215782 50 66 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 3.77 vpr 63.00 MiB -1 -1 0.15 17580 1 0.03 -1 -1 30304 -1 -1 9 19 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 19 18 308 249 1 148 46 6 6 36 clb auto 24.8 MiB 2.03 445 2342 523 1770 49 63.0 MiB 0.04 0.00 4.80297 -97.7905 -4.80297 4.80297 0.05 0.000635601 0.000590543 0.021547 0.020168 48 1100 30 403230 226817 104013. 2889.24 0.40 0.154133 0.13247 3910 18599 -1 788 22 950 1415 49803 19805 6.26666 6.26666 -116.462 -6.26666 0 0 131137. 3642.71 0.01 0.05 0.02 -1 -1 0.01 0.0310375 0.0274329 63 83 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt index a07c4a29029..26460c5f0f9 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt @@ -1,7 +1,7 @@ - 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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 0.79 vpr 63.87 MiB 0.01 6016 -1 -1 1 0.01 -1 -1 33636 -1 -1 3 9 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 65400 9 8 75 70 1 35 20 5 5 25 clb auto 25.5 MiB 0.36 85 209 62 145 2 63.9 MiB 0.00 0.00 2.68643 -28.8499 -2.68643 2.68643 0.02 6.8808e-05 5.9561e-05 0.00139175 0.00130199 36 204 9 151211 75605.7 46719.2 1868.77 0.06 0.0153054 0.0131064 2052 7582 -1 141 12 90 118 3703 1842 2.89265 2.89265 -32.9265 -2.89265 0 0 57775.2 2311.01 0.00 0.01 0.01 -1 -1 0.00 0.00425888 0.00398285 14 16 19 7 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 4.57 vpr 64.08 MiB 0.01 5888 -1 -1 1 0.01 -1 -1 33796 -1 -1 2 11 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 65620 11 10 108 97 1 46 23 4 4 16 clb auto 25.6 MiB 4.14 105 151 48 85 18 64.1 MiB 0.00 0.00 3.44069 -41.5938 -3.44069 3.44069 0.01 9.1e-05 7.9949e-05 0.00156829 0.00149277 34 215 23 50403.8 50403.8 21558.4 1347.40 0.06 0.0226398 0.0194476 1020 3049 -1 163 17 241 316 10449 6378 3.44069 3.44069 -46.5708 -3.44069 0 0 26343.3 1646.46 0.00 0.01 0.00 -1 -1 0.00 0.00617236 0.00569328 14 25 29 8 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 2.22 vpr 64.41 MiB 0.01 6144 -1 -1 1 0.01 -1 -1 33776 -1 -1 4 13 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 65960 13 12 149 129 1 75 29 5 5 25 clb auto 26.0 MiB 1.72 195 645 192 444 9 64.4 MiB 0.01 0.00 3.48998 -52.589 -3.48998 3.48998 0.02 0.000131256 0.000115837 0.003329 0.00308647 52 403 19 151211 100808 63348.9 2533.96 0.10 0.0299639 0.026074 2316 10503 -1 307 14 341 420 14028 6216 3.72698 3.72698 -59.3943 -3.72698 0 0 82390.3 3295.61 0.01 0.01 0.01 -1 -1 0.01 0.00739793 0.00691058 25 36 42 9 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 1.94 vpr 64.58 MiB 0.01 6016 -1 -1 1 0.01 -1 -1 35964 -1 -1 6 15 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 15 14 196 165 1 95 35 5 5 25 clb auto 26.1 MiB 1.37 286 3056 860 2105 91 64.6 MiB 0.02 0.00 3.69424 -64.7847 -3.69424 3.69424 0.02 0.000142126 0.000125485 0.0096674 0.00873232 40 595 29 151211 151211 50368.7 2014.75 0.12 0.0454702 0.0396536 2124 8279 -1 437 17 562 789 28085 13148 4.36345 4.36345 -80.333 -4.36345 0 0 63348.9 2533.96 0.01 0.02 0.01 -1 -1 0.01 0.00982301 0.00911877 37 49 57 11 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 1.98 vpr 64.78 MiB 0.01 6144 -1 -1 1 0.01 -1 -1 35872 -1 -1 5 17 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 17 16 251 206 1 119 38 5 5 25 clb auto 26.6 MiB 1.29 402 668 227 439 2 64.8 MiB 0.01 0.00 4.0643 -79.9796 -4.0643 4.0643 0.02 0.000191408 0.000170559 0.00453449 0.00427077 52 683 22 151211 126010 63348.9 2533.96 0.23 0.0597829 0.0521103 2316 10503 -1 560 15 525 822 26107 11638 4.75212 4.75212 -93.5848 -4.75212 0 0 82390.3 3295.61 0.01 0.02 0.01 -1 -1 0.01 0.0115027 0.0107458 50 64 75 13 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 2.41 vpr 65.02 MiB 0.01 6144 -1 -1 1 0.01 -1 -1 34232 -1 -1 9 19 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 19 18 308 249 1 148 46 6 6 36 clb auto 26.9 MiB 1.43 468 4802 1503 3198 101 65.0 MiB 0.04 0.00 4.80297 -98.1146 -4.80297 4.80297 0.04 0.000209582 0.000186198 0.0150798 0.0136287 50 1242 41 403230 226817 107229. 2978.57 0.43 0.105385 0.0918853 3946 19047 -1 875 23 853 1439 55414 21296 6.32056 6.32056 -123.176 -6.32056 0 0 134937. 3748.26 0.01 0.03 0.01 -1 -1 0.01 0.0163553 0.0151088 63 81 93 14 0 0 +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 num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 2.41 vpr 61.02 MiB 0.02 5812 -1 -1 1 0.58 -1 -1 29656 -1 -1 3 9 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62488 9 8 75 70 1 35 20 5 5 25 clb auto 22.4 MiB 0.48 85 209 62 145 2 61.0 MiB 0.01 0.00 2.68643 -28.8499 -2.68643 2.68643 0.02 0.000193577 0.000179067 0.00247745 0.00233845 36 204 9 151211 75605.7 46719.2 1868.77 0.12 0.037883 0.0315939 2052 7582 -1 141 12 90 118 3703 1842 2.89265 2.89265 -32.9265 -2.89265 0 0 57775.2 2311.01 0.00 0.01 0.01 -1 -1 0.00 0.00689513 0.00614229 14 18 19 7 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 7.00 vpr 61.54 MiB 0.03 5872 -1 -1 1 0.58 -1 -1 29736 -1 -1 2 11 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63016 11 10 108 97 1 46 23 4 4 16 clb auto 22.9 MiB 4.99 105 151 48 85 18 61.5 MiB 0.01 0.00 3.44069 -41.5938 -3.44069 3.44069 0.01 0.000258982 0.000240047 0.00274971 0.00262487 34 215 23 50403.8 50403.8 21558.4 1347.40 0.14 0.0590883 0.0493231 1020 3049 -1 163 17 241 316 10449 6378 3.44069 3.44069 -46.5708 -3.44069 0 0 26343.3 1646.46 0.00 0.02 0.01 -1 -1 0.00 0.0108366 0.00950526 14 27 29 8 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 4.49 vpr 61.69 MiB 0.03 6024 -1 -1 1 0.58 -1 -1 30148 -1 -1 4 13 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63168 13 12 149 129 1 75 29 5 5 25 clb auto 22.8 MiB 2.40 195 645 192 444 9 61.7 MiB 0.02 0.00 3.48998 -52.589 -3.48998 3.48998 0.02 0.000342117 0.000318284 0.00707487 0.00666916 52 403 19 151211 100808 63348.9 2533.96 0.18 0.0737677 0.0625561 2316 10503 -1 307 14 341 420 14028 6216 3.72698 3.72698 -59.3943 -3.72698 0 0 82390.3 3295.61 0.01 0.02 0.01 -1 -1 0.01 0.0127566 0.0113516 25 38 42 9 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 4.09 vpr 62.02 MiB 0.03 5956 -1 -1 1 0.58 -1 -1 29964 -1 -1 6 15 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 15 14 196 165 1 95 35 5 5 25 clb auto 23.2 MiB 1.90 286 3056 860 2105 91 62.0 MiB 0.04 0.00 3.69424 -64.7847 -3.69424 3.69424 0.02 0.000424866 0.000394444 0.0252096 0.0235149 40 595 29 151211 151211 50368.7 2014.75 0.23 0.114222 0.0984262 2124 8279 -1 437 17 562 789 28085 13148 4.36345 4.36345 -80.333 -4.36345 0 0 63348.9 2533.96 0.00 0.03 0.01 -1 -1 0.00 0.0176338 0.0156167 37 51 57 11 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 4.09 vpr 61.86 MiB 0.03 6212 -1 -1 1 0.59 -1 -1 29860 -1 -1 5 17 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63340 17 16 251 206 1 119 38 5 5 25 clb auto 23.5 MiB 1.86 402 668 227 439 2 61.9 MiB 0.02 0.00 4.0643 -79.9796 -4.0643 4.0643 0.02 0.000534075 0.000496147 0.00859971 0.00813109 52 683 22 151211 126010 63348.9 2533.96 0.26 0.114134 0.0972372 2316 10503 -1 560 15 525 822 26107 11638 4.75212 4.75212 -93.5848 -4.75212 0 0 82390.3 3295.61 0.01 0.03 0.01 -1 -1 0.01 0.0206421 0.0184345 50 66 75 13 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 4.58 vpr 62.37 MiB 0.03 6232 -1 -1 1 0.59 -1 -1 30264 -1 -1 9 19 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 19 18 308 249 1 148 46 6 6 36 clb auto 24.0 MiB 2.03 468 4802 1503 3198 101 62.4 MiB 0.07 0.00 4.80297 -98.1146 -4.80297 4.80297 0.05 0.00063379 0.00058871 0.0407857 0.0380453 50 1242 41 403230 226817 107229. 2978.57 0.43 0.179858 0.155995 3946 19047 -1 875 23 853 1439 55414 21296 6.32056 6.32056 -123.176 -6.32056 0 0 134937. 3748.26 0.01 0.05 0.02 -1 -1 0.01 0.0316187 0.02788 63 83 93 14 0 0